godot_boids/addons/boids/boids.gd
2024-08-29 15:49:23 +03:00

11 lines
210 B
GDScript

@tool
extends EditorPlugin
func _enter_tree() -> void:
add_autoload_singleton("ProcessBoids", "res://addons/boids/process_boids.tscn")
func _exit_tree() -> void:
remove_autoload_singleton("ProcessBoids")