FixedJoint
A 3D fixed joint.
| Type | Name | Interface Description |
|---|---|---|
| Functions | constructor() |
Examples
constructor()
let obj = new APJS.FixedJoint();
Use Case
@component()
export class NewBehaviourScript extends APJS.BasicScriptComponent {
onStart() {
// TODO: instantiate / use FixedJoint here
}
onUpdate(deltaTime: number) {
}
}