2023-09-15 04:49:31 +08:00
|
|
|
export class physicsObject{
|
|
|
|
name : string
|
|
|
|
//array of floats [3]
|
2023-09-16 14:57:54 +08:00
|
|
|
position : number[] = [0,0,0]
|
|
|
|
rotation : number[] = [0,0,0]
|
|
|
|
velocity : number[] = [0,0,0]
|
|
|
|
angularVelocity : number[] = [0,0,0]
|
2023-09-15 04:49:31 +08:00
|
|
|
}
|