A problem with unity essentials path

i was completing the unity essentials pathway and i the coding part the playercontroler script did not contain void Update. i snuck past the issue by creating my own void Update script.

Thanks for sharing this! In this part of the Unity Essentials pathway, void Update() isn’t required for the script to work.

The script is set up to respond to specific events instead of running code every frame. For example, it may use methods like Start() to initialize components and OnTriggerEnter() to react when the player enters a trigger area.

So if void Update() wasn’t included in the PlayerController script, that’s expected for this tutorial. You only need to add Update() when the lesson specifically asks for code that should run every frame.