Learning Unity for the First Time. This will be a text based RPG game to learn the mechanics of Unity (2D).
Key Notes (#1)
- Do not make any changes in play mode since Unity will not save anything!
- You must add the scene you want to in build settings.
- In the build setting, the topmost one is the scene you will start from.
- Prefabs are game object that you can use in multiple scenes.
- Event system controls the UI stuff like buttons... Must have for all your scenes.
Key Notes (#2)
- Sorting layers can help you to sort which one is foreground and background... You could use order in layer too (higher number is greater priority)...
- Note that you can also change the order via the z axis...