Going on with our work, we will keep on adding things to the Level 0 example we created and developed in previous chapters. We will learn the basics of collision, adding components and moving objects, and with these, create a better level. Let's go.
3D Game Kit
Moving platforms
Adding moving platforms is much simpler than we think, because 3D Game Kit has prepared prefabs for us. A moving platform is an object that follows a waypoint system in order to move. It can do this in multiple ways, moving in the following paths:
- One time movement
- Cyclic
- Repetitive back and forth
Now, let's start adding some challenges to our game. Try to create an impossible jump between the static platform and the terrain. If I don...