7 lines
145 B
GDScript3
Raw Normal View History

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