Rebuilt hallway meshes and added floor and wall sprites.

This commit is contained in:
Henry 2026-05-09 16:45:13 +01:00
parent feb467c832
commit e98ba4ef27
12 changed files with 201 additions and 27 deletions

View file

@ -1,6 +1,6 @@
extends CharacterBody3D
var speed: int = 10
var speed: int = 5
var clumsiness: int = 0
@ -9,5 +9,5 @@ func start(xform):
velocity = (-xform.basis.z * speed).rotated(Vector3.UP, randf_range(-PI/4, PI/4))
func _physics_process(delta):
velocity.z -= 10 * delta
velocity.z -= speed * delta
move_and_slide()