EyeApplyingScope
The scope of applying the eye color effect.
| Type | Name | Interface Description |
|---|---|---|
| Enum | BothEyes | |
| Enum | LeftEyeOnly | |
| Enum | RightEyeOnly |
Examples
BothEyes
let value = APJS.EyeApplyingScope.BothEyes;
LeftEyeOnly
let value = APJS.EyeApplyingScope.LeftEyeOnly;
RightEyeOnly
let value = APJS.EyeApplyingScope.RightEyeOnly;
Use Case
@component()
export class NewBehaviourScript extends APJS.BasicScriptComponent {
onStart() {
// TODO: instantiate / use EyeApplyingScope here
}
onUpdate(deltaTime: number) {
}
}