Description:
Being able to move a cube when the user press the arrow keys or "w"/"s" ( more accurately the actual "Vertical" Input define in Unity Input settings).
The screencast is here: http://www.screencast.com/t/0N6nZQsRcjt
The related original question in UA is : http://answers.unity3d.com/questions/51827/playmaker-basic-tutorial/51863#51863
The target audience for this are beginners and curious people willing to know more, or be convinced somehow before purchasing. This is of course not intended the be ultimate/best way to go about it, but shows how easy and to the point PlayMaker is.
Going further:
Several ways to improve this Fsm if you want to take it further:
- When user input is 0, maybe we don't need to translate the cube of a null amount. That can/should be improved based on how you intend to use this (if the cube is meant to be moved around all the time during the game play, then this is fine as is).
- Moving speed setting and fine tuning is missing. A speed variable should be created and multiplied by the user input before translating the cube.
- If you plan on adding yet more flexibility, we would need to be able to choose the axis and direction of the move.