9 lines
244 B
GDScript3
9 lines
244 B
GDScript3
![]() |
@tool
|
||
|
extends EditorPlugin
|
||
|
|
||
|
func _enter_tree():
|
||
|
add_custom_type("Basic FPS Player", "CharacterBody3D", preload("Src/basic_player_startup.gd"), preload("Assets/Basic FPS Player.svg"))
|
||
|
|
||
|
func _exit_tree():
|
||
|
remove_custom_type("Basic FPS Player")
|