Updating a Method when it gets called

I want to Update this method every frame, but only when I call the method. This is easy to know, but I am new to C#, so… can someone please help?

MonoBehaviours have Update, which is called every frame.
Just call you function from that. If you don’t want to call it sometimes, wrap it in an if statement based on the condition you care about.