8 lines
226 B
GDScript
8 lines
226 B
GDScript
@tool
|
|
extends EditorPlugin
|
|
|
|
func _enter_tree():
|
|
add_custom_type("Free fly camera", "CharacterBody3D", preload("Src/free_fly_startup.gd"), preload("Assets/icon.png"))
|
|
|
|
func _exit_tree():
|
|
remove_custom_type("Free fly camera")
|