Skip to main content

AssetLoadingStatusEvent

@3dverse/livelink v0.8.10


@3dverse/livelink / Events / AssetLoadingStatusEvent

Class: AssetLoadingStatusEvent

Defined in: node_modules/@3dverse/livelink.core/dist/sources/controllers/GatewayEvents.d.ts:41

Extends

  • Event

Constructors

new AssetLoadingStatusEvent()

new AssetLoadingStatusEvent(type, eventInitDict?): AssetLoadingStatusEvent

Defined in: node_modules/typescript/lib/lib.dom.d.ts:8198

Parameters

type

string

eventInitDict?

EventInit

Returns

AssetLoadingStatusEvent

Inherited from

Event.constructor

Properties

loading_payloads

readonly loading_payloads: boolean

Defined in: node_modules/@3dverse/livelink.core/dist/sources/controllers/GatewayEvents.d.ts:45

Whether the server is currently loading payloads.


pending_requests

readonly pending_requests: number

Defined in: node_modules/@3dverse/livelink.core/dist/sources/controllers/GatewayEvents.d.ts:49

The number of pending requests.


pending_scenes

readonly pending_scenes: number

Defined in: node_modules/@3dverse/livelink.core/dist/sources/controllers/GatewayEvents.d.ts:53

The number of loading scenes.


bubbles

readonly bubbles: boolean

Defined in: node_modules/typescript/lib/lib.dom.d.ts:8087

Returns true or false depending on how event was initialized. True if event goes through its target's ancestors in reverse tree order, and false otherwise.

MDN Reference

Inherited from

Event.bubbles


cancelBubble

cancelBubble: boolean

Defined in: node_modules/typescript/lib/lib.dom.d.ts:8093

Deprecated

MDN Reference

Inherited from

Event.cancelBubble


cancelable

readonly cancelable: boolean

Defined in: node_modules/typescript/lib/lib.dom.d.ts:8099

Returns true or false depending on how event was initialized. Its return value does not always carry meaning, but true can indicate that part of the operation during which event was dispatched, can be canceled by invoking the preventDefault() method.

MDN Reference

Inherited from

Event.cancelable


composed

readonly composed: boolean

Defined in: node_modules/typescript/lib/lib.dom.d.ts:8105

Returns true or false depending on how event was initialized. True if event invokes listeners past a ShadowRoot node that is the root of its target, and false otherwise.

MDN Reference

Inherited from

Event.composed


currentTarget

readonly currentTarget: null | EventTarget

Defined in: node_modules/typescript/lib/lib.dom.d.ts:8111

Returns the object whose event listener's callback is currently being invoked.

MDN Reference

Inherited from

Event.currentTarget


defaultPrevented

readonly defaultPrevented: boolean

Defined in: node_modules/typescript/lib/lib.dom.d.ts:8117

Returns true if preventDefault() was invoked successfully to indicate cancelation, and false otherwise.

MDN Reference

Inherited from

Event.defaultPrevented


eventPhase

readonly eventPhase: number

Defined in: node_modules/typescript/lib/lib.dom.d.ts:8123

Returns the event's phase, which is one of NONE, CAPTURING_PHASE, AT_TARGET, and BUBBLING_PHASE.

MDN Reference

Inherited from

Event.eventPhase


isTrusted

readonly isTrusted: boolean

Defined in: node_modules/typescript/lib/lib.dom.d.ts:8129

Returns true if event was dispatched by the user agent, and false otherwise.

MDN Reference

Inherited from

Event.isTrusted


returnValue

returnValue: boolean

Defined in: node_modules/typescript/lib/lib.dom.d.ts:8135

Deprecated

MDN Reference

Inherited from

Event.returnValue


srcElement

readonly srcElement: null | EventTarget

Defined in: node_modules/typescript/lib/lib.dom.d.ts:8141

Deprecated

MDN Reference

Inherited from

Event.srcElement


target

readonly target: null | EventTarget

Defined in: node_modules/typescript/lib/lib.dom.d.ts:8147

Returns the object to which event is dispatched (its target).

MDN Reference

Inherited from

Event.target


timeStamp

readonly timeStamp: number

Defined in: node_modules/typescript/lib/lib.dom.d.ts:8153

Returns the event's timestamp as the number of milliseconds measured relative to the time origin.

MDN Reference

Inherited from

Event.timeStamp


type

readonly type: string

Defined in: node_modules/typescript/lib/lib.dom.d.ts:8159

Returns the type of event, e.g. "click", "hashchange", or "submit".

MDN Reference

Inherited from

Event.type


NONE

readonly NONE: 0

Defined in: node_modules/typescript/lib/lib.dom.d.ts:8190

Inherited from

Event.NONE


CAPTURING_PHASE

readonly CAPTURING_PHASE: 1

Defined in: node_modules/typescript/lib/lib.dom.d.ts:8191

Inherited from

Event.CAPTURING_PHASE


AT_TARGET

readonly AT_TARGET: 2

Defined in: node_modules/typescript/lib/lib.dom.d.ts:8192

Inherited from

Event.AT_TARGET


BUBBLING_PHASE

readonly BUBBLING_PHASE: 3

Defined in: node_modules/typescript/lib/lib.dom.d.ts:8193

Inherited from

Event.BUBBLING_PHASE


NONE

readonly static NONE: 0

Defined in: node_modules/typescript/lib/lib.dom.d.ts:8199

Inherited from

Event.NONE


CAPTURING_PHASE

readonly static CAPTURING_PHASE: 1

Defined in: node_modules/typescript/lib/lib.dom.d.ts:8200

Inherited from

Event.CAPTURING_PHASE


AT_TARGET

readonly static AT_TARGET: 2

Defined in: node_modules/typescript/lib/lib.dom.d.ts:8201

Inherited from

Event.AT_TARGET


BUBBLING_PHASE

readonly static BUBBLING_PHASE: 3

Defined in: node_modules/typescript/lib/lib.dom.d.ts:8202

Inherited from

Event.BUBBLING_PHASE

Methods

composedPath()

composedPath(): EventTarget[]

Defined in: node_modules/typescript/lib/lib.dom.d.ts:8165

Returns the invocation target objects of event's path (objects on which listeners will be invoked), except for any nodes in shadow trees of which the shadow root's mode is "closed" that are not reachable from event's currentTarget.

MDN Reference

Returns

EventTarget[]

Inherited from

Event.composedPath


initEvent()

initEvent(type, bubbles?, cancelable?): void

Defined in: node_modules/typescript/lib/lib.dom.d.ts:8171

Parameters

type

string

bubbles?

boolean

cancelable?

boolean

Returns

void

Deprecated

MDN Reference

Inherited from

Event.initEvent


preventDefault()

preventDefault(): void

Defined in: node_modules/typescript/lib/lib.dom.d.ts:8177

If invoked when the cancelable attribute value is true, and while executing a listener for the event with passive set to false, signals to the operation that caused event to be dispatched that it needs to be canceled.

MDN Reference

Returns

void

Inherited from

Event.preventDefault


stopImmediatePropagation()

stopImmediatePropagation(): void

Defined in: node_modules/typescript/lib/lib.dom.d.ts:8183

Invoking this method prevents event from reaching any registered event listeners after the current one finishes running and, when dispatched in a tree, also prevents event from reaching any other objects.

MDN Reference

Returns

void

Inherited from

Event.stopImmediatePropagation


stopPropagation()

stopPropagation(): void

Defined in: node_modules/typescript/lib/lib.dom.d.ts:8189

When dispatched in a tree, invoking this method prevents event from reaching any objects other than the current object.

MDN Reference

Returns

void

Inherited from

Event.stopPropagation