diff --git a/Assets/Scripts/PlayerController.cs b/Assets/Scripts/PlayerController.cs index 2d15621..10fc063 100644 --- a/Assets/Scripts/PlayerController.cs +++ b/Assets/Scripts/PlayerController.cs @@ -62,7 +62,7 @@ public class PlayerController : MonoBehaviour { if (collision.gameObject.tag == "platform") { - this.gameObject.tranform.rotation = collision.gameObject.transform.rotation; + this.gameObject.transform.rotation = collision.gameObject.transform.rotation; } } }