7 lines
145 B
GDScript3
Raw Normal View History

2024-01-16 22:01:16 +00:00
class_name Player
2024-01-18 22:35:17 +00:00
extends Character
2024-01-22 16:12:26 +00:00
func _ready():
var controller := PlayerController.new()
controller.character = self
add_child(controller)