Added Godot based server

This commit is contained in:
2024-01-20 22:18:58 +01:00
parent ce699ee6db
commit 1f73d22cd6
28 changed files with 338 additions and 135 deletions

View File

@ -1,5 +1,5 @@
class_name PlayerController
extends CharacterController
extends Node
@export var character: Character
var move: Vector2
@ -12,7 +12,7 @@ func _input(_event):
if Input.is_action_just_pressed("jump"):
character.jump()
if Input.is_action_just_pressed("dash"):
character.dash()