Few questions about updating asset in asset store (169302)

Hi, i would like to know do I have to always wait those “2 weeks” to update an asset if I want to:

  1. Change only price.
  2. Change description.
  3. Add some more screenshots / videos.

public List<Transform> transformList; foreach (Transform item in gameObject.transform) { transformList.Add(item); } You could just use a foreach and transform list.

I guess Bunny83 gave you the best solution

1 Answer

1

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.

This 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); } } }