Hi everyone, I am new to Unity. This project is to test two programming/ software structure methods.
- How do I enter the next level without interrupting the background music?
- My solution is "don't change the Unity scene."
- I destroy all the game objects from the previous level and spawn the objects from the next level.
- How do I add level-changing animation?
- My solution is to generate a black circle on the top layer that covers everything on the screen.
This is a simple prototype that took two days to develop. Therefore, I used some techniques to speed up development.
- Everything is a circle, so I don't have to deal with rotation.
- Most objects move relative to the boss. This makes the coordinate system simpler since the boss is located at (0, 0, 0) and cannot move.
We are all beginners. Feel free to share any game development techniques here!