Implement playable Mac client and rendering validation

This commit is contained in:
shen
2026-09-11 14:58:22 +08:00
parent 1ab68bd06e
commit 374d4165d8
233 changed files with 6546 additions and 284 deletions
+6
View File
@@ -0,0 +1,6 @@
extends RefCounted
# All MSE/MDE vectors are Z-up. Convert orientation before the cm->m scale.
static func direction(source: Vector3) -> Vector3:
return Vector3(source.x, source.z, -source.y)
static func position(source: Vector3) -> Vector3:
return direction(source) * 0.01