Install Asset
Install via Godot
To maintain one source of truth, Godot Asset Library is just a mirror of the old asset library so you can download directly on Godot via the integrated asset library browser
Quick Information
Invokes a callback when inspector values have most likely changed.Tracks mouse clicks/drags and undo/redo actions in the inspector, which indicate the intention to change a property.
Godot Inspector Interaction
Invokes a callback when inspector values have most likely changed.
Made to bypass #87840 and several other issues.
Tracks mouse clicks/drags and undo/redo actions in the inspector, which indicate the intention to change a property.
Usage
Copy inspector_interaction into your res://addons/, enable under Project > Project Settings > Plugins.
func _enter_tree() -> void: InspectorInteraction.register(self, callback)
func _exit_tree() -> void: InspectorInteraction.unregister(self)
func callback() -> void: print('Inspector interaction on node: ', name)
Invokes a callback when inspector values have most likely changed.
Tracks mouse clicks/drags and undo/redo actions in the inspector, which indicate the intention to change a property.
Reviews
Quick Information
Invokes a callback when inspector values have most likely changed.Tracks mouse clicks/drags and undo/redo actions in the inspector, which indicate the intention to change a property.