TextureDelegateProvider
new TextureDelegateProvider() is an invalid constructor. If you need a Delegate texture, you can get a texture by calling TextureUtil.createTextureDelegate()
| Type | Name | Interface Description |
|---|---|---|
| Functions | constructor() |
Examples
constructor()
let obj = new APJS.TextureDelegateProvider();
Use Case
@component()
export class NewBehaviourScript extends APJS.BasicScriptComponent {
onStart() {
// TODO: instantiate / use TextureDelegateProvider here
}
onUpdate(deltaTime: number) {
}
}