Transform changed callback in Editor

Hi,

i want a script to fire an update method if it is moved in the editor. Is there a proper listener for this case yet? The threads i found didnt had a proper solution, but they were from back in 2011 or 2012.

You could add the ExecuteInEdit mode tag to your script which will cause update to run in your script. Then you can use !EditorApplication.isPlaying to ensure its during edit time and check if the position has changed.

But na so far as i know there is no other specific listener for this case

Thanks, this kinda works, but its a lot of overhead. Is there a way to implement my own Listener?

Not that I know of. There is also SceneView.onSceneGUIDelegate

I use that to track whenever the player moves their mouse inside a scene view