Initial synchronization fixes

This commit is contained in:
2023-09-16 08:57:54 +02:00
parent 7e6bfdbd98
commit ba5f3df01b
2 changed files with 14 additions and 16 deletions

View File

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