AObject
APJS Script API reference for the AObject class.
| Type | Name | Interface Description |
|---|---|---|
| Variables | name: string | • Function: Get the name of the object. |
| Functions | constructor() |
Examples
constructor()
let obj = new APJS.AObject();
Use Case
@component()
export class NewBehaviourScript extends APJS.BasicScriptComponent {
onStart() {
// TODO: instantiate / use AObject here
}
onUpdate(deltaTime: number) {
}
}