Interface: PanelReadyEvent
Defined in: webxr-uiextensions/src/adapter.ts:112
A window whose panel has finished loading and is ready to be wired. Delivered by WindowHost.onPanelReady.
Properties
| Property | Type | Description | Defined in |
|---|---|---|---|
id | string | The window's id, as given to the scene descriptor / create call. | webxr-uiextensions/src/adapter.ts:114 |
kind? | "window" | "panel" | What became ready. - window - created through the adapter's window factory and managed by the window manager, so id is the id the caller asked for. - panel - a bare panel the adapter noticed. id is then the adapter's best stable identifier for it, which on IWSDK is the panel's config path. Left optional so existing listeners keep compiling; adapters set it. | webxr-uiextensions/src/adapter.ts:128 |
panel | PanelHandle | The live panel - traverse it, or look elements up by markup id. | webxr-uiextensions/src/adapter.ts:116 |