Split client and server

This commit is contained in:
2024-01-24 00:09:50 +01:00
parent 532a1faa21
commit 26c52a00b3
59 changed files with 335 additions and 142 deletions

6
client/world/RotateY.gd Normal file
View File

@ -0,0 +1,6 @@
extends Node3D
@export var speed: float = 1.0
func _process(delta):
rotate_y(speed * delta)