mirror of
https://github.com/Relintai/pandemonium_demo_projects.git
synced 2024-12-21 13:56:50 +01:00
14 lines
376 B
GDScript
14 lines
376 B
GDScript
tool
|
|
extends EditorPlugin
|
|
|
|
func _enter_tree():
|
|
# Plugin Initialization here!
|
|
add_custom_type("IK_LookAt", "Spatial", preload("ik_look_at.gd"), preload("ik_look_at.png"))
|
|
add_custom_type("IK_FABRIK", "Spatial", preload("ik_fabrik.gd"), preload("ik_fabrik.png"))
|
|
|
|
|
|
func _exit_tree():
|
|
# Plugin Clean-up here!
|
|
remove_custom_type("IK_LookAt")
|
|
remove_custom_type("IK_FABRIK")
|