TweenOrientation
TweenOrientation - Object orientation control method in path mode
| Type | Name | Interface Description |
|---|---|---|
| Enum | Fixed | |
| Enum | Path |
Examples
Fixed
let value = APJS.TweenOrientation.Fixed;
Path
let value = APJS.TweenOrientation.Path;
Use Case
@component()
export class NewBehaviourScript extends APJS.BasicScriptComponent {
onStart() {
// TODO: instantiate / use TweenOrientation here
}
onUpdate(deltaTime: number) {
}
}