Skip to main content

Class: GroundPlugin<TMesh>

Plugins.GroundPlugin

Type parameters

NameType
TMeshextends Mesh<BufferGeometry, MeshStandardMaterial> | Reflector2 = Mesh<BufferGeometry, MeshStandardMaterial> | Reflector2

Hierarchy

Implements

Properties

PluginType

Static Readonly PluginType: "Ground"

Defined in

webgi/src/plugins/GroundPlugin.ts:35


dependencies

dependencies: Class<IViewerPlugin<IViewerApp, boolean>>[]

Implementation of

IViewerPlugin.dependencies

Inherited from

BaseGroundPlugin.dependencies

Defined in

webgi/src/plugins/BaseGroundPlugin.ts:60


visible

visible: boolean = true

Inherited from

BaseGroundPlugin.visible

Defined in

webgi/src/plugins/BaseGroundPlugin.ts:85


size

size: number = 8

Inherited from

BaseGroundPlugin.size

Defined in

webgi/src/plugins/BaseGroundPlugin.ts:88


yOffset

yOffset: number = 0

Inherited from

BaseGroundPlugin.yOffset

Defined in

webgi/src/plugins/BaseGroundPlugin.ts:91


renderToDepth

renderToDepth: boolean = true

Inherited from

BaseGroundPlugin.renderToDepth

Defined in

webgi/src/plugins/BaseGroundPlugin.ts:94


tonemapGround

tonemapGround: boolean = true

Inherited from

BaseGroundPlugin.tonemapGround

Defined in

webgi/src/plugins/BaseGroundPlugin.ts:97


limitCameraAboveGround

limitCameraAboveGround: boolean = false

Inherited from

BaseGroundPlugin.limitCameraAboveGround

Defined in

webgi/src/plugins/BaseGroundPlugin.ts:100


enableRefreshTransform

enableRefreshTransform: boolean = true

Extra flag for plugins to disable transform refresh like when animating or dragging

Inherited from

BaseGroundPlugin.enableRefreshTransform

Defined in

webgi/src/plugins/BaseGroundPlugin.ts:192


bakedShadows

bakedShadows: boolean = true

Defined in

webgi/src/plugins/GroundPlugin.ts:38


groundReflection

groundReflection: boolean = false

Defined in

webgi/src/plugins/GroundPlugin.ts:40


physicalReflections

physicalReflections: boolean = false

Defined in

webgi/src/plugins/GroundPlugin.ts:42


autoBakeShadows

autoBakeShadows: boolean = true

autoBakeShadows - when true, shadows are baked automatically on scene update(whenever any object in the scene changes), set it to false to trigger baking manually with {@see bakeShadows()}

Defined in

webgi/src/plugins/GroundPlugin.ts:51


_dirty

Protected _dirty: boolean = false

Inherited from

BaseGroundPlugin._dirty

Defined in

webgi/src/core/AViewerPlugin.ts:23


_viewer

Protected Optional _viewer: ViewerApp

Inherited from

BaseGroundPlugin._viewer

Defined in

webgi/src/core/AViewerPlugin.ts:27


_geometry

Protected _geometry: BufferGeometry<NormalBufferAttributes, Event, string>

Inherited from

BaseGroundPlugin._geometry

Defined in

webgi/src/plugins/BaseGroundPlugin.ts:49


_material

Protected Optional _material: MeshStandardMaterial2

Inherited from

BaseGroundPlugin._material

Defined in

webgi/src/plugins/BaseGroundPlugin.ts:52


_mesh

Protected Optional _mesh: TMesh

Inherited from

BaseGroundPlugin._mesh

Defined in

webgi/src/plugins/BaseGroundPlugin.ts:55


_options

Protected _options: GroundOptions

Inherited from

BaseGroundPlugin._options

Defined in

webgi/src/plugins/BaseGroundPlugin.ts:56


_manager

Protected Optional _manager: AssetManagerPlugin

Inherited from

BaseGroundPlugin._manager

Defined in

webgi/src/plugins/BaseGroundPlugin.ts:57


_uiConfig

Protected Optional _uiConfig: UiObjectConfig<any, string>

Inherited from

BaseGroundPlugin._uiConfig

Defined in

webgi/src/plugins/BaseGroundPlugin.ts:342

Accessors

dirty

get dirty(): boolean

Returns

boolean

Implementation of

IViewerPlugin.dirty

Inherited from

BaseGroundPlugin.dirty

Defined in

webgi/src/core/AViewerPlugin.ts:16

set dirty(value): void

Parameters

NameType
valueboolean

Returns

void

Implementation of

IViewerPlugin.dirty

Inherited from

BaseGroundPlugin.dirty

Defined in

webgi/src/core/AViewerPlugin.ts:20


enabled

get enabled(): boolean

Returns

boolean

Inherited from

BaseGroundPlugin.enabled

Defined in

webgi/src/plugins/BaseGroundPlugin.ts:30

set enabled(value): void

Parameters

NameType
valueboolean

Returns

void

Inherited from

BaseGroundPlugin.enabled

Defined in

webgi/src/plugins/BaseGroundPlugin.ts:34


material

get material(): undefined | MeshStandardMaterial2

Returns

undefined | MeshStandardMaterial2

Inherited from

BaseGroundPlugin.material

Defined in

webgi/src/plugins/BaseGroundPlugin.ts:38


mesh

get mesh(): undefined | IModel<TMesh>

Returns

undefined | IModel<TMesh>

Inherited from

BaseGroundPlugin.mesh

Defined in

webgi/src/plugins/BaseGroundPlugin.ts:42


autoAdjustTransform

get autoAdjustTransform(): boolean

Returns

boolean

Inherited from

BaseGroundPlugin.autoAdjustTransform

Defined in

webgi/src/plugins/BaseGroundPlugin.ts:102

set autoAdjustTransform(value): void

Parameters

NameType
valueboolean

Returns

void

Inherited from

BaseGroundPlugin.autoAdjustTransform

Defined in

webgi/src/plugins/BaseGroundPlugin.ts:105


uiConfig

get uiConfig(): UiObjectConfig<any, string>

Returns

UiObjectConfig<any, string>

Implementation of

IViewerPlugin.uiConfig

Inherited from

BaseGroundPlugin.uiConfig

Defined in

webgi/src/plugins/BaseGroundPlugin.ts:350


shadowBaker

get shadowBaker(): undefined | ShadowMapBaker

Returns

undefined | ShadowMapBaker

Defined in

webgi/src/plugins/GroundPlugin.ts:28

Methods

toJSON

toJSON(meta?): any

Parameters

NameType
meta?any

Returns

any

Implementation of

IViewerPlugin.toJSON

Inherited from

BaseGroundPlugin.toJSON

Defined in

webgi/src/core/AViewerPlugin.ts:45


exportState

exportState(): any

Returns

any

Inherited from

BaseGroundPlugin.exportState

Defined in

webgi/src/core/AViewerPlugin.ts:64


importState

importState(state): Promise<void>

Parameters

NameType
stateany

Returns

Promise<void>

Inherited from

BaseGroundPlugin.importState

Defined in

webgi/src/core/AViewerPlugin.ts:67


storeState

storeState(prefix?, storage?, data?): void

Parameters

NameType
prefix?string
storage?Storage
data?any

Returns

void

Implementation of

IViewerPlugin.storeState

Inherited from

BaseGroundPlugin.storeState

Defined in

webgi/src/core/AViewerPlugin.ts:74


loadState

loadState(prefix?, storage?): Promise<void>

Parameters

NameType
prefix?string
storage?Storage

Returns

Promise<void>

Implementation of

IViewerPlugin.loadState

Inherited from

BaseGroundPlugin.loadState

Defined in

webgi/src/core/AViewerPlugin.ts:84


refreshTransform

refreshTransform(): void

Returns

void

Inherited from

BaseGroundPlugin.refreshTransform

Defined in

webgi/src/plugins/BaseGroundPlugin.ts:194


setOptions

setOptions(options): void

Parameters

NameType
optionsPartial<GroundOptions>

Returns

void

Inherited from

BaseGroundPlugin.setOptions

Defined in

webgi/src/plugins/BaseGroundPlugin.ts:321


fromJSON

fromJSON(data, meta?): null | GroundPlugin<TMesh>

Parameters

NameType
dataany
meta?any

Returns

null | GroundPlugin<TMesh>

Implementation of

IViewerPlugin.fromJSON

Inherited from

BaseGroundPlugin.fromJSON

Defined in

webgi/src/plugins/BaseGroundPlugin.ts:334


bakeShadows

bakeShadows(): void

bake shadows manually, to be used with {@see autoBakeShadows} set to false

Returns

void

Defined in

webgi/src/plugins/GroundPlugin.ts:56


onAdded

onAdded(viewer): Promise<void>

Parameters

NameType
viewerViewerApp

Returns

Promise<void>

Implementation of

IViewerPlugin.onAdded

Overrides

BaseGroundPlugin.onAdded

Defined in

webgi/src/plugins/GroundPlugin.ts:101


onDispose

onDispose(viewer): Promise<void>

Parameters

NameType
viewerViewerApp

Returns

Promise<void>

Implementation of

IViewerPlugin.onDispose

Overrides

BaseGroundPlugin.onDispose

Defined in

webgi/src/plugins/GroundPlugin.ts:128


onRemove

onRemove(viewer): Promise<void>

Parameters

NameType
viewerViewerApp

Returns

Promise<void>

Implementation of

IViewerPlugin.onRemove

Overrides

BaseGroundPlugin.onRemove

Defined in

webgi/src/plugins/GroundPlugin.ts:132


refreshOptions

refreshOptions(): void

Returns

void

Overrides

BaseGroundPlugin.refreshOptions

Defined in

webgi/src/plugins/GroundPlugin.ts:159


_storeKey

Protected _storeKey(prefix?): string

Parameters

NameType
prefix?string

Returns

string

Inherited from

BaseGroundPlugin._storeKey

Defined in

webgi/src/core/AViewerPlugin.ts:60


_refreshTransform

Protected _refreshTransform(): void

Returns

void

Inherited from

BaseGroundPlugin._refreshTransform

Defined in

webgi/src/plugins/BaseGroundPlugin.ts:231


_createMesh

Protected _createMesh(): Mesh<BufferGeometry<NormalBufferAttributes, Event, string>, Material<Event, string> | Material<Event, string>[]>

Returns

Mesh<BufferGeometry<NormalBufferAttributes, Event, string>, Material<Event, string> | Material<Event, string>[]>

Overrides

BaseGroundPlugin._createMesh

Defined in

webgi/src/plugins/GroundPlugin.ts:69


_postFrame

Protected _postFrame(): void

Returns

void

Overrides

BaseGroundPlugin._postFrame

Defined in

webgi/src/plugins/GroundPlugin.ts:113


_preRender

Protected _preRender(): void

Returns

void

Overrides

BaseGroundPlugin._preRender

Defined in

webgi/src/plugins/GroundPlugin.ts:122


_removeMaterial

Protected _removeMaterial(): void

Returns

void

Overrides

BaseGroundPlugin._removeMaterial

Defined in

webgi/src/plugins/GroundPlugin.ts:136


_onSceneUpdate

Protected _onSceneUpdate(event): void

Parameters

NameType
eventIEvent<string>

Returns

void

Overrides

BaseGroundPlugin._onSceneUpdate

Defined in

webgi/src/plugins/GroundPlugin.ts:153


_refreshMaterial

Protected _refreshMaterial(): boolean

Returns

boolean

Overrides

BaseGroundPlugin._refreshMaterial

Defined in

webgi/src/plugins/GroundPlugin.ts:183


_extraUiConfig

Protected _extraUiConfig(): (UiObjectConfig<any, string> | () => UiObjectConfig<any, string> | UiObjectConfig<any, string>[])[]

Returns

(UiObjectConfig<any, string> | () => UiObjectConfig<any, string> | UiObjectConfig<any, string>[])[]

Overrides

BaseGroundPlugin._extraUiConfig

Defined in

webgi/src/plugins/GroundPlugin.ts:205

Constructors

constructor

new GroundPlugin<TMesh>(options?, showDebug?)

Type parameters

NameType
TMeshextends Mesh<BufferGeometry<NormalBufferAttributes, Event, string>, MeshStandardMaterial<Event, string>> | Reflector2 = Mesh<BufferGeometry<NormalBufferAttributes, Event, string>, MeshStandardMaterial<Event, string>> | Reflector2

Parameters

NameTypeDefault value
optionsPartial<GroundOptions>{}
showDebugbooleanfalse

Overrides

BaseGroundPlugin.constructor

Defined in

webgi/src/plugins/GroundPlugin.ts:60