top of page

2nd december

clone screenshot.PNG

This is the prototype for the first "clone". The red square will copy every move the player controller white square makes. A "freeze" mechanic has also been implemented, allowing the player to freeze every clone on the screen so that the white square can move without the red square copying.

clone script.PNG
freeze screenshot.PNG

The "BasicCloneController" script contains the movement functions for the clones, which are currently the exact same as in the "PlayerController" script, since the movements need to be identical. The onl exception is that the movement only applies if they are not frozen. A "CloneFreeze" function has been added to the PlayerController, allowing the player to freeze and unfreeze the clones using the return key.  

bottom of page