1. Replace 4k models with low-poly once 2. Use bare mixamo for testing 3. Add a basic menu 4. Add a map with collisions and spawn areas
13 lines
199 B
GDScript
13 lines
199 B
GDScript
@tool
|
|
extends EditorPlugin
|
|
|
|
|
|
func _enter_tree():
|
|
add_custom_type("Mirror", "Node3D", preload("Mirror/Mirror.gd"), preload("icon.svg"))
|
|
pass
|
|
|
|
|
|
func _exit_tree():
|
|
remove_custom_type("Mirror")
|
|
pass
|