Unity - How To - Make - Platformer - 14 - Static items

#unity #how #to #make #static #items How to make Static items on the Unity scene? Items are used to be collectibles, standalone objects and other interactable entities. Try to add single sprite on the scene then apply Collider. To repeat: 0. Create empty game object in the ’Map’ 1. Rename it to ’Items’ 2. Drag single sprite from assets folder to ’Items’ game object 3. Notice that your item appeared on the scene 4. Place your item in the desired position using move arrows 5. Scale your item as desired 6. Label item with meaningful name 7. Add ’Box Collider 2D’ via Inspector - Add Component 8. Adjust the collider with your item sprite
Back to Top