Unity - How To - Make - Platformer - 19 - Level organization

#unity #how #to #make #platformer #level #organization How to organize objects at the level in the Unity? Unity game engine provides well suited tree scene hierarchy. We can filter the items to work on with collapse arrows. There are two key strategies to work with: - module: items belongs to the appropriate level part - hierarchical: items belongs to single object regardless of the part of the level In the video we will cover module strategy To repeat: 1. In the ’Field’ gameObject create ’Items’ empty object 2. Place all ’Melon’ located in the ’Field’ to created ’Items’ object 3. Repeat first and second step until all level parts will have its collectibles Note: you can always combine both strategies to achieve the best results, for example, place collectibles in the ’Items’ gameObject as shown in the video
Back to Top