Step 2: Tutorial Scene
Last updated
Last updated
Locate and open the tutorial scene
Learn the scene hierarchy
Go to Assets/PenguinActionToolkit/Demos/Scenes/Tutorial, open it, you should see a scene like this:
If you start the game, you will find yourself playing as a penguin-look character. You can move around with WASD or Controller Stick, roll dodge with Space Bar or B button on XBOX controller (or other east buttons if you are using other controllers).
From the hierarchy panel, you can find the MyFirstCharacter contains the following game objects:
Locomotion It holds components which control how the character is moving around, including walking and roll dodging.
Model Container It contains the model of the character with some components to handle weapon models and animations.
Attributes It stores the health and stamina attributes. These attributes are reflected on the Inspector. Your roll dodging will consume Stamina.
Under the GameFlow object, you can see a Player prefab.
The Player prefab decides which character the player is currently controlling and handles the player input and camera for it.
Player Cam
Input Units: it handles several input Elements.
Element: it includes an Input Tag (We will talk about its meaning very soon!) and an Input Action Reference. It bounds the Input Action to the selected Input Tag.
In the inspector, you can see that we actually set up the Attack input in Player, which is mapped to Left Click on your mouse (or west button on controllers). If you click your mouse in the game, you will find the character doing a simple attack.
The following steps will try to walk through you how to correctly bound an input with an Action.