pir-serious-game-ethics/addons/dialogic/Editor/Events/Common/SpinBoxPreventDnD.gd
2021-04-12 10:26:50 +02:00

8 lines
188 B
GDScript

tool
extends SpinBox
func can_drop_data(position, data):
# this prevents locking the mouse
# on some operating systems
# due to a godot editor bug with SpinBox drag/drop
return false