Physics sync support

This commit is contained in:
2023-09-14 22:49:31 +02:00
parent 77ffe04e2f
commit 2bcdb780c3
8 changed files with 77 additions and 47 deletions

8
Classes/physicsObject.ts Normal file
View File

@@ -0,0 +1,8 @@
export class physicsObject{
name : string
//array of floats [3]
position : number[] = []
rotation : number[] = []
velocity : number[] = []
angularVelocity : number[] = []
}