Editor script that always runs

Hi there,
I’d like to write a script that runs always, while the user is in the editor.
The water script uses [ExecuteInEditMode] and OnWillRenderObject(), but that only updates when a redraw is needed.
Any way to get continuous action going ?

Thanks in advance, Patrick

I never used it, but the manual claims that each script instance with ExecuteInEditMode “has its Update, FixedUpdate, and OnGUI functions executed every frame while the Editor is running.”

Thanks for pointing that out, time to do some experimenting.

Too bad, andeeee’s reply in this thread says that the Update() function is only called when the user navigates or manipulates.
So alas, no continuous action…