Hi, i would like to know do I have to always wait those “2 weeks” to update an asset if I want to:
- Change only price.
- Change description.
- Add some more screenshots / videos.
Hi, i would like to know do I have to always wait those “2 weeks” to update an asset if I want to:
So for changing price just send normally and the same day was approved. I didn’t changed version and add in comment “changed price from 50$ to 35$”.
Thanks, but wont this still return all sub children too? I don''t want to include Children-of-Children, etc. Only the first level.
– oliver-jonesThis won't add children of children to the list. Only the root's childs will return. Edit: If you also want to add child of childs to the list, use another if and foreach, like that; public List<Transform> transformList; foreach (Transform item in gameObject.transform) { transformList.Add(item); if(item.childCount > 0) { foreach(Transform child in item) { transformList.Add(child); } } }
– Ardaaytac
public List<Transform> transformList; foreach (Transform item in gameObject.transform) { transformList.Add(item); } You could just use a foreach and transform list.
– ArdaaytacI guess Bunny83 gave you the best solution
– Lenakeiz