TweenPathType
TweenPathType - Path type
| Type | Name | Interface Description |
|---|---|---|
| Enum | Curve | |
| Enum | Straight |
Examples
Curve
let value = APJS.TweenPathType.Curve;
Straight
let value = APJS.TweenPathType.Straight;
Use Case
@component()
export class NewBehaviourScript extends APJS.BasicScriptComponent {
onStart() {
// TODO: instantiate / use TweenPathType here
}
onUpdate(deltaTime: number) {
}
}