The script is simple. (And this example script is not the same as mine)
void Update()
{
Debug.Log("Hello.");
}
The script is very much attached to a game object
The object that has this scrips is very much active
The script is also very much active
Everything should very much work, but instead it very much doesn’t work
I only tested it in FixedUpdate (fail), Update (fail) and Awake and only Awake worked and printed it out.
Please help me with this I just need to check something to see if my code works at all and if it doesn’t I guess I’m gonna throw my pc out the window and instead build a new one using scraps cuz thats still easier then making this code work because I am a complete noob trying to challenge myself ;-;
This code works for me, and outputs Hello about 100 times a second. Update is called on every frame. Please share your entire script. Have you confirmed Start() ?