I'm not familiar with Unity, but
the documentation[
^] says that the
Update
method is
"called every frame, if the MonoBehaviour is enabled".
That suggests that something within Unity is specifically looking for a method called
Update
on your behaviour. If you call the method something else, it won't be called, because Unity doesn't know about it.