Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

Index

Constructors

constructor

  • new ATexture(texture?: string | Texture, name?: string): ATexture

Properties

Protected _eventCallbackDicts

_eventCallbackDicts: {} = {}

Type declaration

Protected _subscriptions

_subscriptions: {} = {}

Type declaration

_texdata

_texdata: GenericDict

_url

_url: string

name

name: string

state

state: {} = {}

Type declaration

  • [name: string]: any

threejs

threejs: Texture

uid

uid: string

Static AObjectStateKeys

AObjectStateKeys: string[] = []

Static AObjectVersion

AObjectVersion: number = 1

Accessors

ClassConstructor

  • get ClassConstructor(): typeof AObject

height

  • get height(): number

serializationLabel

  • get serializationLabel(): any

stateSnapshop

  • get stateSnapshop(): {}

width

  • get width(): number

Methods

_getEventCallbackDict

_getListeners

  • _getListeners(): {}

_setTHREETexture

  • _setTHREETexture(tex: Texture): void

activateSubscription

  • activateSubscription(name: string): void

addEventListener

  • addEventListener(eventName: string, callback: (...args: any[]) => void, handle?: string): AEventCallbackSwitch

addEventListeners

  • addEventListeners(eventName: string, callbacks: ((...args: any[]) => void)[], handle?: string): AEventCallbackSwitch

addOneTimeEventListener

  • addOneTimeEventListener(eventName: string, callback: (...args: any[]) => void, handle?: string): AEventCallbackSwitch

addStateKeyListener

  • addStateKeyListener(state_key: string, callback: (self: AObject) => void, handle?: string, synchronous?: boolean): AStateCallbackSwitch
  • Sets a callback function to be called whenever the state specified in state_key changes. The return value callbackSwitch is a callback switch. You can activate the listener with callbackSwitch.activate() and deactive with callbackSwitch.deactivate(). Example Usage:

    var callbackswitch = model.addStateKeyListener('name',()=>{
    n_name_changes = n_name_changes+1;
    })

    Parameters

    • state_key: string

      the name of the state to listen to

    • callback: (self: AObject) => void

      the callback to be executed when state changes

    • Optional handle: string

      the handle / unique identifier for

    • synchronous: boolean = true

      whether callbacks should happen synchronously or allow for batching

    Returns AStateCallbackSwitch

addStateListener

  • addStateListener(callback: (self: AObject) => void, handle?: string, synchronous?: boolean): AStateCallbackSwitch

clearSubscriptions

  • clearSubscriptions(): void

deactivateSubscription

  • deactivateSubscription(name: string): void

dispose

  • dispose(): void

getTexData

  • getTexData(key: string): any

loadFromURL

  • loadFromURL(url: string): void

removeEventListener

  • removeEventListener(eventName: string, handle: string): void

removeListener

  • removeListener(handle: string): void

setTexData

  • setTexData(key: string, value: any): void

setWrapToClamp

  • setWrapToClamp(): void

setWrapToRepeat

  • setWrapToRepeat(repeats?: number | number[]): void

signalEvent

  • signalEvent(eventName: string, ...args: any[]): void

subscribe

toJSON

  • toJSON(): {}

unsubscribe

  • unsubscribe(name: string, errorIfAbsent?: boolean): void

Static CreateWithState

  • CreateWithState(state: {}): AObject

Static LoadAsync

  • LoadAsync(texturePath: string, name?: string): Promise<ATexture>

Static SerializationLabel

  • SerializationLabel(): any

Static fromJSON

Generated using TypeDoc