@woosh/meep-engine 2.119.80 → 2.119.82
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/bundle-worker-image-decoder.js +1 -1
- package/editor/Editor.d.ts.map +1 -1
- package/editor/SelectionVisualizer.d.ts +0 -6
- package/editor/SelectionVisualizer.d.ts.map +1 -1
- package/editor/actions/concrete/ComponentAddAction.d.ts +0 -3
- package/editor/actions/concrete/ComponentAddAction.d.ts.map +1 -1
- package/editor/actions/concrete/ComponentRemoveAction.d.ts +0 -4
- package/editor/actions/concrete/ComponentRemoveAction.d.ts.map +1 -1
- package/editor/actions/concrete/EntityCreateAction.d.ts +0 -3
- package/editor/actions/concrete/EntityCreateAction.d.ts.map +1 -1
- package/editor/actions/concrete/EntityRemoveAction.d.ts.map +1 -1
- package/editor/actions/concrete/SelectionAddAction.d.ts.map +1 -1
- package/editor/actions/concrete/SelectionClearAction.d.ts +0 -3
- package/editor/actions/concrete/SelectionClearAction.d.ts.map +1 -1
- package/editor/actions/concrete/SelectionRemoveAction.d.ts +0 -3
- package/editor/actions/concrete/SelectionRemoveAction.d.ts.map +1 -1
- package/editor/ecs/EditorEntity.d.ts +0 -7
- package/editor/ecs/EditorEntity.d.ts.map +1 -1
- package/editor/ecs/component/createObjectEditor.d.ts.map +1 -1
- package/editor/ecs/component/editors/ImagePathEditor.d.ts +7 -0
- package/editor/ecs/component/editors/ImagePathEditor.d.ts.map +1 -0
- package/editor/ecs/component/editors/LargeStringEditor.d.ts +16 -0
- package/editor/ecs/component/editors/LargeStringEditor.d.ts.map +1 -0
- package/editor/ecs/component/editors/Sampler2DEditor.d.ts.map +1 -1
- package/editor/ecs/component/editors/common/EnumEditor.d.ts +8 -0
- package/editor/ecs/component/editors/common/EnumEditor.d.ts.map +1 -0
- package/editor/ecs/component/editors/ecs/GridObstacleEditor.d.ts +7 -0
- package/editor/ecs/component/editors/ecs/GridObstacleEditor.d.ts.map +1 -0
- package/editor/ecs/component/editors/ecs/MinimapMarkerEditor.d.ts +14 -0
- package/editor/ecs/component/editors/ecs/MinimapMarkerEditor.d.ts.map +1 -0
- package/editor/ecs/component/editors/ecs/ParameterLookupTableEditor.d.ts +67 -0
- package/editor/ecs/component/editors/ecs/ParameterLookupTableEditor.d.ts.map +1 -0
- package/editor/ecs/component/editors/ecs/ParameterTrackEditor.d.ts +12 -0
- package/editor/ecs/component/editors/ecs/ParameterTrackEditor.d.ts.map +1 -0
- package/editor/ecs/component/editors/ecs/ParticleEmitterEditor.d.ts +52 -0
- package/editor/ecs/component/editors/ecs/ParticleEmitterEditor.d.ts.map +1 -0
- package/editor/ecs/component/editors/ecs/ParticleEmitterLayerEditor.d.ts +48 -0
- package/editor/ecs/component/editors/ecs/ParticleEmitterLayerEditor.d.ts.map +1 -0
- package/editor/ecs/component/editors/ecs/SimulationStepDefinitionEditor.d.ts +16 -0
- package/editor/ecs/component/editors/ecs/SimulationStepDefinitionEditor.d.ts.map +1 -0
- package/editor/ecs/component/editors/ecs/Trail2DEditor.d.ts +30 -0
- package/editor/ecs/component/editors/ecs/Trail2DEditor.d.ts.map +1 -0
- package/editor/ecs/component/editors/ecs/TransformEditor.d.ts +20 -0
- package/editor/ecs/component/editors/ecs/TransformEditor.d.ts.map +1 -0
- package/editor/ecs/component/editors/ecs/terrain/SplatMappingEditor.d.ts +19 -0
- package/editor/ecs/component/editors/ecs/terrain/SplatMappingEditor.d.ts.map +1 -0
- package/editor/ecs/component/editors/ecs/terrain/TerrainEditor.d.ts +39 -0
- package/editor/ecs/component/editors/ecs/terrain/TerrainEditor.d.ts.map +1 -0
- package/editor/ecs/component/editors/ecs/terrain/TerrainLayerEditor.d.ts +16 -0
- package/editor/ecs/component/editors/ecs/terrain/TerrainLayerEditor.d.ts.map +1 -0
- package/editor/ecs/component/editors/ecs/terrain/TerrainLayersEditor.d.ts +19 -0
- package/editor/ecs/component/editors/ecs/terrain/TerrainLayersEditor.d.ts.map +1 -0
- package/editor/ecs/component/editors/ecs/terrain/TerrainOverlayEditor.d.ts +18 -0
- package/editor/ecs/component/editors/ecs/terrain/TerrainOverlayEditor.d.ts.map +1 -0
- package/editor/ecs/component/editors/three/BufferGeometryEditor.d.ts +7 -0
- package/editor/ecs/component/editors/three/BufferGeometryEditor.d.ts.map +1 -0
- package/editor/ecs/component/editors/three/MaterialEditor.d.ts +7 -0
- package/editor/ecs/component/editors/three/MaterialEditor.d.ts.map +1 -0
- package/editor/ecs/component/editors/three/MeshEditor.d.ts +7 -0
- package/editor/ecs/component/editors/three/MeshEditor.d.ts.map +1 -0
- package/editor/ecs/component/editors/three/TextureEditor.d.ts +7 -0
- package/editor/ecs/component/editors/three/TextureEditor.d.ts.map +1 -0
- package/editor/process/DisableGameUIProcess.d.ts +8 -0
- package/editor/process/DisableGameUIProcess.d.ts.map +1 -0
- package/editor/process/ObstacleGridDisplayProcess.d.ts +13 -0
- package/editor/process/ObstacleGridDisplayProcess.d.ts.map +1 -0
- package/editor/process/SymbolicDisplayProcess.d.ts +19 -0
- package/editor/process/SymbolicDisplayProcess.d.ts.map +1 -0
- package/editor/process/symbolic/ComponentSymbolicDisplay.d.ts +11 -0
- package/editor/process/symbolic/ComponentSymbolicDisplay.d.ts.map +1 -0
- package/editor/process/symbolic/SymbolicDisplayInternalAPI.d.ts +65 -0
- package/editor/process/symbolic/SymbolicDisplayInternalAPI.d.ts.map +1 -0
- package/editor/process/symbolic/buildThreeJSHelperEntity.d.ts +9 -0
- package/editor/process/symbolic/buildThreeJSHelperEntity.d.ts.map +1 -0
- package/editor/process/symbolic/make3DSymbolicDisplay.d.ts +10 -0
- package/editor/process/symbolic/make3DSymbolicDisplay.d.ts.map +1 -0
- package/editor/process/symbolic/makeCameraSymbolicDisplay.d.ts +7 -0
- package/editor/process/symbolic/makeCameraSymbolicDisplay.d.ts.map +1 -0
- package/editor/process/symbolic/makeGridPositionSymbolDisplay.d.ts +6 -0
- package/editor/process/symbolic/makeGridPositionSymbolDisplay.d.ts.map +1 -0
- package/editor/process/symbolic/makeLightSymbolicDisplay.d.ts +7 -0
- package/editor/process/symbolic/makeLightSymbolicDisplay.d.ts.map +1 -0
- package/editor/process/symbolic/makeParticleEmitterSymbolicDisplay.d.ts +6 -0
- package/editor/process/symbolic/makeParticleEmitterSymbolicDisplay.d.ts.map +1 -0
- package/editor/process/symbolic/makePathSymbolicDisplay.d.ts +7 -0
- package/editor/process/symbolic/makePathSymbolicDisplay.d.ts.map +1 -0
- package/editor/process/symbolic/makePositionedIconDisplaySymbol.d.ts +9 -0
- package/editor/process/symbolic/makePositionedIconDisplaySymbol.d.ts.map +1 -0
- package/editor/process/symbolic/makeSocketsSymbolicDisplay.d.ts +7 -0
- package/editor/process/symbolic/makeSocketsSymbolicDisplay.d.ts.map +1 -0
- package/editor/process/symbolic/makeSoundEmitterSymbolicDisplay.d.ts +6 -0
- package/editor/process/symbolic/makeSoundEmitterSymbolicDisplay.d.ts.map +1 -0
- package/editor/process/symbolic/synchronizeTransform.d.ts +12 -0
- package/editor/process/symbolic/synchronizeTransform.d.ts.map +1 -0
- package/editor/tools/GridPaintTool.d.ts.map +1 -1
- package/editor/tools/SelectionTool.d.ts +27 -0
- package/editor/tools/SelectionTool.d.ts.map +1 -1
- package/editor/tools/TopDownCameraControlTool.d.ts.map +1 -1
- package/editor/tools/engine/Tool.d.ts +1 -1
- package/editor/tools/engine/Tool.d.ts.map +1 -1
- package/editor/tools/engine/ToolEngine.d.ts +1 -8
- package/editor/tools/engine/ToolEngine.d.ts.map +1 -1
- package/editor/tools/paint/TerrainHeightPaintTool.d.ts.map +1 -1
- package/editor/tools/paint/TerrainPaintTool.d.ts.map +1 -1
- package/editor/tools/paint/TerrainTexturePaintTool.d.ts.map +1 -1
- package/editor/view/EditorView.d.ts.map +1 -1
- package/editor/view/ecs/ComponentControlFactory.d.ts +0 -5
- package/editor/view/ecs/ComponentControlFactory.d.ts.map +1 -1
- package/editor/view/ecs/EntityEditor.d.ts +2 -3
- package/editor/view/ecs/EntityEditor.d.ts.map +1 -1
- package/editor/view/ecs/EntityList.d.ts.map +1 -1
- package/editor/view/ecs/components/GridObstacleController.d.ts +14 -0
- package/editor/view/ecs/components/GridObstacleController.d.ts.map +1 -0
- package/editor/view/tools/ToolView.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/core/binary/BinaryBuffer.d.ts +19 -0
- package/src/core/binary/BinaryBuffer.d.ts.map +1 -1
- package/src/core/binary/BinaryBuffer.js +31 -0
- package/src/core/binary/half_to_float_uint16.d.ts +9 -0
- package/src/core/binary/half_to_float_uint16.d.ts.map +1 -0
- package/src/core/binary/half_to_float_uint16.js +50 -0
- package/src/core/events/signal/Signal.d.ts.map +1 -1
- package/src/core/events/signal/Signal.js +99 -105
- package/src/core/geom/Vector3.d.ts.map +1 -1
- package/src/core/geom/Vector3.js +17 -0
- package/src/core/localization/Localization.d.ts.map +1 -1
- package/src/core/localization/Localization.js +3 -1
- package/src/engine/ecs/Entity.d.ts.map +1 -1
- package/src/engine/ecs/Entity.js +45 -15
- package/src/engine/ecs/EntityReference.d.ts +33 -0
- package/src/engine/ecs/EntityReference.d.ts.map +1 -1
- package/src/engine/ecs/EntityReference.js +59 -4
- package/src/engine/graphics/ecs/camera/topdown/TopDownCameraLanderSystem.d.ts.map +1 -1
- package/src/engine/graphics/ecs/camera/topdown/TopDownCameraLanderSystem.js +14 -8
- package/src/engine/sound/ecs/emitter/SoundTrack.d.ts.map +1 -1
- package/src/engine/sound/ecs/emitter/SoundTrack.js +8 -4
- package/src/view/minimap/gl/MinimapTerrainGL.d.ts.map +1 -1
- package/src/view/minimap/gl/MinimapTerrainGL.js +8 -4
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
export class ParameterLookupTableEditor extends TypeEditor<any> {
|
|
2
|
+
constructor();
|
|
3
|
+
get schema(): {
|
|
4
|
+
properties: {
|
|
5
|
+
on: {
|
|
6
|
+
transient: boolean;
|
|
7
|
+
};
|
|
8
|
+
};
|
|
9
|
+
};
|
|
10
|
+
build(parent: any, field: any, registry: any): CanvasView | EmptyView;
|
|
11
|
+
/**
|
|
12
|
+
* converts rgb to hex string
|
|
13
|
+
* @param {Float} r
|
|
14
|
+
* @param {Float} g
|
|
15
|
+
* @param {Float} b
|
|
16
|
+
*/
|
|
17
|
+
RGBToHex(r: Float, g: Float, b: Float): string;
|
|
18
|
+
/**
|
|
19
|
+
* converts lut color sample to RGB
|
|
20
|
+
* @param {number[]} sample
|
|
21
|
+
*/
|
|
22
|
+
convertRGB(sample: number[]): void;
|
|
23
|
+
/**
|
|
24
|
+
* draws tiled background
|
|
25
|
+
* @param {CanvasView} canvasView
|
|
26
|
+
* @param {CanvasRenderingContext2D} ctx
|
|
27
|
+
* @param {{}} config
|
|
28
|
+
*/
|
|
29
|
+
DrawBackground(canvasView: CanvasView, ctx: CanvasRenderingContext2D, config: {}): void;
|
|
30
|
+
/**
|
|
31
|
+
* draws gradient
|
|
32
|
+
* @param {CanvasView} canvasView
|
|
33
|
+
* @param {ParameterLookupTable} lut
|
|
34
|
+
* @param {CanvasRenderingContext2D} ctx
|
|
35
|
+
* @param {{}} config
|
|
36
|
+
*/
|
|
37
|
+
DrawGradient(canvasView: CanvasView, lut: ParameterLookupTable, ctx: CanvasRenderingContext2D, config: {}): void;
|
|
38
|
+
/**
|
|
39
|
+
* draws gradient stops
|
|
40
|
+
* @param {CanvasView} canvasView
|
|
41
|
+
* @param {ParameterLookupTable} lut
|
|
42
|
+
* @param {CanvasRenderingContext2D} ctx
|
|
43
|
+
* @param {EmptyView} colorView
|
|
44
|
+
* @param {{}} config
|
|
45
|
+
* @param {Integer} selectedInd
|
|
46
|
+
* @returns {*[]}
|
|
47
|
+
*/
|
|
48
|
+
DrawStops(canvasView: CanvasView, lut: ParameterLookupTable, ctx: CanvasRenderingContext2D, colorView: EmptyView, config: {}, selectedInd: Integer): any[];
|
|
49
|
+
/**
|
|
50
|
+
* draws gradient stop
|
|
51
|
+
* @param {CanvasRenderingContext2D} ctx
|
|
52
|
+
* @param {Object} config
|
|
53
|
+
* @param {Integer} posX
|
|
54
|
+
* @param {Boolean} isSelected
|
|
55
|
+
*/
|
|
56
|
+
DrawStop(ctx: CanvasRenderingContext2D, config: any, posX: Integer, isSelected: boolean): {
|
|
57
|
+
x: number;
|
|
58
|
+
y: number;
|
|
59
|
+
width: number;
|
|
60
|
+
height: number;
|
|
61
|
+
posX: Integer;
|
|
62
|
+
};
|
|
63
|
+
}
|
|
64
|
+
import { TypeEditor } from "../../TypeEditor.js";
|
|
65
|
+
import { CanvasView } from "../../../../../src/view/elements/CanvasView.js";
|
|
66
|
+
import EmptyView from "../../../../../src/view/elements/EmptyView.js";
|
|
67
|
+
//# sourceMappingURL=ParameterLookupTableEditor.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ParameterLookupTableEditor.d.ts","sourceRoot":"","sources":["ParameterLookupTableEditor.js"],"names":[],"mappings":"AAOA;;IACI;;;;;;MAQC;IAED,sEA2FC;IAED;;;;;OAKG;IACH,+CAaC;IAED;;;OAGG;IACH,mBAFW,MAAM,EAAE,QAMlB;IAED;;;;;OAKG;IACH,2BAJW,UAAU,OACV,wBAAwB,UACxB,EAAE,QASZ;IAED;;;;;;OAMG;IACH,yBALW,UAAU,kCAEV,wBAAwB,UACxB,EAAE,QAaZ;IAED;;;;;;;;;OASG;IACH,sBARW,UAAU,kCAEV,wBAAwB,aACxB,SAAS,UACT,EAAE,yBAEA,KAAG,CAkBf;IAED;;;;;;OAMG;IACH,cALW,wBAAwB;;;;;;MA8BlC;CACJ;2BAzO0B,qBAAqB;2BAFrB,gDAAgD;sBACrD,+CAA+C"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export class ParameterTrackEditor extends ObjectEditor {
|
|
2
|
+
get schema(): {
|
|
3
|
+
properties: {
|
|
4
|
+
name: {
|
|
5
|
+
editor: EnumEditor;
|
|
6
|
+
};
|
|
7
|
+
};
|
|
8
|
+
};
|
|
9
|
+
}
|
|
10
|
+
import { ObjectEditor } from "../primitive/ObjectEditor.js";
|
|
11
|
+
import { EnumEditor } from "../common/EnumEditor.js";
|
|
12
|
+
//# sourceMappingURL=ParameterTrackEditor.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ParameterTrackEditor.d.ts","sourceRoot":"","sources":["ParameterTrackEditor.js"],"names":[],"mappings":"AAGA;IACI;;;;;;MAWC;CACJ;6BAhB4B,8BAA8B;2BAChC,yBAAyB"}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
export class ParticleEmitterEditor extends ObjectEditor {
|
|
2
|
+
get schema(): {
|
|
3
|
+
properties: {
|
|
4
|
+
parameters: {
|
|
5
|
+
transient: boolean;
|
|
6
|
+
};
|
|
7
|
+
layers: {
|
|
8
|
+
type: typeof List;
|
|
9
|
+
type_parameters: (typeof ParticleLayer)[];
|
|
10
|
+
};
|
|
11
|
+
particles: {
|
|
12
|
+
transient: boolean;
|
|
13
|
+
};
|
|
14
|
+
mesh: {
|
|
15
|
+
transient: boolean;
|
|
16
|
+
};
|
|
17
|
+
bvhLeaf: {
|
|
18
|
+
transient: boolean;
|
|
19
|
+
};
|
|
20
|
+
particleBounds: {
|
|
21
|
+
transient: boolean;
|
|
22
|
+
};
|
|
23
|
+
emisionBounds: {
|
|
24
|
+
transient: boolean;
|
|
25
|
+
};
|
|
26
|
+
flags: {
|
|
27
|
+
editor: BitFlagsEditor;
|
|
28
|
+
};
|
|
29
|
+
blendingMode: {
|
|
30
|
+
editor: EnumEditor;
|
|
31
|
+
};
|
|
32
|
+
sleepTime: {
|
|
33
|
+
transient: boolean;
|
|
34
|
+
};
|
|
35
|
+
position: {
|
|
36
|
+
transient: boolean;
|
|
37
|
+
};
|
|
38
|
+
rotation: {
|
|
39
|
+
transient: boolean;
|
|
40
|
+
};
|
|
41
|
+
scale: {
|
|
42
|
+
transient: boolean;
|
|
43
|
+
};
|
|
44
|
+
};
|
|
45
|
+
};
|
|
46
|
+
}
|
|
47
|
+
import { ObjectEditor } from "../primitive/ObjectEditor.js";
|
|
48
|
+
import List from "../../../../../src/core/collection/list/List.js";
|
|
49
|
+
import { ParticleLayer } from "../../../../../src/engine/graphics/particles/particular/engine/emitter/ParticleLayer.js";
|
|
50
|
+
import { BitFlagsEditor } from "../common/BitFlagsEditor.js";
|
|
51
|
+
import { EnumEditor } from "../common/EnumEditor.js";
|
|
52
|
+
//# sourceMappingURL=ParticleEmitterEditor.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ParticleEmitterEditor.d.ts","sourceRoot":"","sources":["ParticleEmitterEditor.js"],"names":[],"mappings":"AAUA;IACI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MA6CC;CACJ;6BAnD4B,8BAA8B;iBAN1C,iDAAiD;8BACpC,yFAAyF;+BACxF,6BAA6B;2BAKjC,yBAAyB"}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
export class ParticleEmitterLayerEditor extends ObjectEditor {
|
|
2
|
+
get schema(): {
|
|
3
|
+
properties: {
|
|
4
|
+
imageURL: {
|
|
5
|
+
type: StringConstructor;
|
|
6
|
+
editor: ImagePathEditor;
|
|
7
|
+
};
|
|
8
|
+
emissionShape: {
|
|
9
|
+
editor: EnumEditor;
|
|
10
|
+
};
|
|
11
|
+
emissionFrom: {
|
|
12
|
+
editor: EnumEditor;
|
|
13
|
+
};
|
|
14
|
+
emissionRate: {
|
|
15
|
+
type: NumberConstructor;
|
|
16
|
+
numeric_type: BinaryDataType;
|
|
17
|
+
};
|
|
18
|
+
emissionImmediate: {
|
|
19
|
+
type: NumberConstructor;
|
|
20
|
+
numeric_type: BinaryDataType;
|
|
21
|
+
};
|
|
22
|
+
parameterTracks: {
|
|
23
|
+
editor: ParameterTrackSetEditor;
|
|
24
|
+
};
|
|
25
|
+
scaledSpriteHalfSize: {
|
|
26
|
+
transient: boolean;
|
|
27
|
+
};
|
|
28
|
+
baseBoundingBox: {
|
|
29
|
+
transient: boolean;
|
|
30
|
+
};
|
|
31
|
+
steps: {
|
|
32
|
+
type: typeof List;
|
|
33
|
+
type_parameters: (typeof SimulationStepDefinition)[];
|
|
34
|
+
};
|
|
35
|
+
timeSinceLastEmission: {
|
|
36
|
+
transient: boolean;
|
|
37
|
+
};
|
|
38
|
+
};
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
import { ObjectEditor } from "../primitive/ObjectEditor.js";
|
|
42
|
+
import { ImagePathEditor } from "../ImagePathEditor.js";
|
|
43
|
+
import { EnumEditor } from "../common/EnumEditor.js";
|
|
44
|
+
import { BinaryDataType } from "../../../../../src/core/binary/type/BinaryDataType.js";
|
|
45
|
+
import { ParameterTrackSetEditor } from "./ParameterTrackSetEditor.js";
|
|
46
|
+
import List from "../../../../../src/core/collection/list/List.js";
|
|
47
|
+
import { SimulationStepDefinition } from "../../../../../src/engine/graphics/particles/particular/engine/simulator/SimulationStepDefinition.js";
|
|
48
|
+
//# sourceMappingURL=ParticleEmitterLayerEditor.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ParticleEmitterLayerEditor.d.ts","sourceRoot":"","sources":["ParticleEmitterLayerEditor.js"],"names":[],"mappings":"AAgBA;IACI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAuCC;CACJ;6BArD4B,8BAA8B;gCAC3B,uBAAuB;2BAC5B,yBAAyB;+BAOrB,uDAAuD;wCAC9C,8BAA8B;iBAdrD,iDAAiD;yCAG3D,sGAAsG"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export class SimulationStepDefinitionEditor extends ObjectEditor {
|
|
2
|
+
get schema(): {
|
|
3
|
+
properties: {
|
|
4
|
+
type: {
|
|
5
|
+
editor: EnumEditor;
|
|
6
|
+
};
|
|
7
|
+
parameters: {
|
|
8
|
+
type: ArrayConstructor;
|
|
9
|
+
type_parameters: NumberConstructor[];
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
};
|
|
13
|
+
}
|
|
14
|
+
import { ObjectEditor } from "../primitive/ObjectEditor.js";
|
|
15
|
+
import { EnumEditor } from "../common/EnumEditor.js";
|
|
16
|
+
//# sourceMappingURL=SimulationStepDefinitionEditor.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SimulationStepDefinitionEditor.d.ts","sourceRoot":"","sources":["SimulationStepDefinitionEditor.js"],"names":[],"mappings":"AAMA;IACI;;;;;;;;;;MAYC;CACJ;6BApB4B,8BAA8B;2BAChC,yBAAyB"}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
export class Trail2DEditor extends ObjectEditor {
|
|
2
|
+
get schema(): {
|
|
3
|
+
properties: {
|
|
4
|
+
maxAge: {
|
|
5
|
+
description: string;
|
|
6
|
+
};
|
|
7
|
+
time: {
|
|
8
|
+
transient: boolean;
|
|
9
|
+
};
|
|
10
|
+
trailingIndex: {
|
|
11
|
+
transient: boolean;
|
|
12
|
+
};
|
|
13
|
+
timeSinceLastUpdate: {
|
|
14
|
+
transient: boolean;
|
|
15
|
+
};
|
|
16
|
+
ribbon: {
|
|
17
|
+
transient: boolean;
|
|
18
|
+
};
|
|
19
|
+
bvhLeaf: {
|
|
20
|
+
transient: boolean;
|
|
21
|
+
};
|
|
22
|
+
flags: {
|
|
23
|
+
editor: BitFlagsEditor;
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
};
|
|
27
|
+
}
|
|
28
|
+
import { ObjectEditor } from "../primitive/ObjectEditor.js";
|
|
29
|
+
import { BitFlagsEditor } from "../common/BitFlagsEditor.js";
|
|
30
|
+
//# sourceMappingURL=Trail2DEditor.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Trail2DEditor.d.ts","sourceRoot":"","sources":["Trail2DEditor.js"],"names":[],"mappings":"AAIA;IACI;;;;;;;;;;;;;;;;;;;;;;;;MA0BC;CACJ;6BA9B4B,8BAA8B;+BAD5B,6BAA6B"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
export class TransformEditor extends ObjectEditor {
|
|
2
|
+
get schema(): {
|
|
3
|
+
additionalProperties: boolean;
|
|
4
|
+
properties: {
|
|
5
|
+
position: {
|
|
6
|
+
type: typeof Vector3;
|
|
7
|
+
};
|
|
8
|
+
rotation: {
|
|
9
|
+
type: typeof Quaternion;
|
|
10
|
+
};
|
|
11
|
+
scale: {
|
|
12
|
+
type: typeof Vector3;
|
|
13
|
+
};
|
|
14
|
+
};
|
|
15
|
+
};
|
|
16
|
+
}
|
|
17
|
+
import { ObjectEditor } from "../primitive/ObjectEditor.js";
|
|
18
|
+
import Vector3 from "../../../../../src/core/geom/Vector3.js";
|
|
19
|
+
import Quaternion from "../../../../../src/core/geom/Quaternion.js";
|
|
20
|
+
//# sourceMappingURL=TransformEditor.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TransformEditor.d.ts","sourceRoot":"","sources":["TransformEditor.js"],"names":[],"mappings":"AAIA;IACI;;;;;;;;;;;;;MAgBC;CACJ;6BApB4B,8BAA8B;oBAFvC,yCAAyC;uBACtC,4CAA4C"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export class SplatMappingEditor extends ObjectEditor {
|
|
2
|
+
get schema(): {
|
|
3
|
+
properties: {
|
|
4
|
+
depth: {
|
|
5
|
+
transient: boolean;
|
|
6
|
+
};
|
|
7
|
+
materialTexture: {
|
|
8
|
+
transient: boolean;
|
|
9
|
+
deprecated: boolean;
|
|
10
|
+
};
|
|
11
|
+
materialSampler: {
|
|
12
|
+
transient: boolean;
|
|
13
|
+
deprecated: boolean;
|
|
14
|
+
};
|
|
15
|
+
};
|
|
16
|
+
};
|
|
17
|
+
}
|
|
18
|
+
import { ObjectEditor } from "../../primitive/ObjectEditor.js";
|
|
19
|
+
//# sourceMappingURL=SplatMappingEditor.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SplatMappingEditor.d.ts","sourceRoot":"","sources":["SplatMappingEditor.js"],"names":[],"mappings":"AAEA;IACI;;;;;;;;;;;;;;MAgBC;CACJ;6BApB4B,iCAAiC"}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
export class TerrainEditor extends ObjectEditor {
|
|
2
|
+
get schema(): {
|
|
3
|
+
properties: {
|
|
4
|
+
id: {
|
|
5
|
+
transient: boolean;
|
|
6
|
+
};
|
|
7
|
+
flags: {
|
|
8
|
+
editor: BitFlagsEditor;
|
|
9
|
+
transient: boolean;
|
|
10
|
+
};
|
|
11
|
+
gridTransformKind: {
|
|
12
|
+
editor: EnumEditor;
|
|
13
|
+
};
|
|
14
|
+
material: {
|
|
15
|
+
transient: boolean;
|
|
16
|
+
};
|
|
17
|
+
heightRange: {
|
|
18
|
+
deprecated: boolean;
|
|
19
|
+
};
|
|
20
|
+
bvh: {
|
|
21
|
+
transient: boolean;
|
|
22
|
+
};
|
|
23
|
+
heightTexture: {
|
|
24
|
+
transient: boolean;
|
|
25
|
+
};
|
|
26
|
+
buildLightMap: {
|
|
27
|
+
type: FunctionConstructor;
|
|
28
|
+
};
|
|
29
|
+
aoMap: {
|
|
30
|
+
type: typeof Texture;
|
|
31
|
+
};
|
|
32
|
+
};
|
|
33
|
+
};
|
|
34
|
+
}
|
|
35
|
+
import { ObjectEditor } from "../../primitive/ObjectEditor.js";
|
|
36
|
+
import { BitFlagsEditor } from "../../common/BitFlagsEditor.js";
|
|
37
|
+
import { EnumEditor } from "../../common/EnumEditor.js";
|
|
38
|
+
import { Texture } from "three";
|
|
39
|
+
//# sourceMappingURL=TerrainEditor.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TerrainEditor.d.ts","sourceRoot":"","sources":["TerrainEditor.js"],"names":[],"mappings":"AAOA;IA+CI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAiCC;CACJ;6BAnF4B,iCAAiC;+BAF/B,gCAAgC;2BACpC,4BAA4B;wBAJ/B,OAAO"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export class TerrainLayerEditor extends ObjectEditor {
|
|
2
|
+
get schema(): {
|
|
3
|
+
properties: {
|
|
4
|
+
textureDiffuseURL: {
|
|
5
|
+
type: StringConstructor;
|
|
6
|
+
editor: ImagePathEditor;
|
|
7
|
+
};
|
|
8
|
+
diffuse: {
|
|
9
|
+
transient: boolean;
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
};
|
|
13
|
+
}
|
|
14
|
+
import { ObjectEditor } from "../../primitive/ObjectEditor.js";
|
|
15
|
+
import { ImagePathEditor } from "../../ImagePathEditor.js";
|
|
16
|
+
//# sourceMappingURL=TerrainLayerEditor.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TerrainLayerEditor.d.ts","sourceRoot":"","sources":["TerrainLayerEditor.js"],"names":[],"mappings":"AAGA;IACI;;;;;;;;;;MAYC;CACJ;6BAjB4B,iCAAiC;gCAC9B,0BAA0B"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export class TerrainLayersEditor extends ObjectEditor {
|
|
2
|
+
get schema(): {
|
|
3
|
+
additionalProperties: boolean;
|
|
4
|
+
properties: {
|
|
5
|
+
resolution: {
|
|
6
|
+
type: typeof Vector2;
|
|
7
|
+
};
|
|
8
|
+
layers: {
|
|
9
|
+
type: typeof List;
|
|
10
|
+
type_parameters: (typeof TerrainLayer)[];
|
|
11
|
+
};
|
|
12
|
+
};
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
import { ObjectEditor } from "../../primitive/ObjectEditor.js";
|
|
16
|
+
import Vector2 from "../../../../../../src/core/geom/Vector2.js";
|
|
17
|
+
import List from "../../../../../../src/core/collection/list/List.js";
|
|
18
|
+
import { TerrainLayer } from "../../../../../../src/engine/ecs/terrain/ecs/layers/TerrainLayer.js";
|
|
19
|
+
//# sourceMappingURL=TerrainLayersEditor.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TerrainLayersEditor.d.ts","sourceRoot":"","sources":["TerrainLayersEditor.js"],"names":[],"mappings":"AAKA;IACI;;;;;;;;;;;MAcC;CACJ;6BArB4B,iCAAiC;oBAG1C,4CAA4C;iBAF/C,oDAAoD;6BACxC,qEAAqE"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export class TerrainOverlayEditor extends ObjectEditor {
|
|
2
|
+
get schema(): {
|
|
3
|
+
properties: {
|
|
4
|
+
tileImage: {
|
|
5
|
+
editor: ImagePathEditor;
|
|
6
|
+
};
|
|
7
|
+
fillColor: {
|
|
8
|
+
transient: boolean;
|
|
9
|
+
};
|
|
10
|
+
texture: {
|
|
11
|
+
transient: boolean;
|
|
12
|
+
};
|
|
13
|
+
};
|
|
14
|
+
};
|
|
15
|
+
}
|
|
16
|
+
import { ObjectEditor } from "../../primitive/ObjectEditor.js";
|
|
17
|
+
import { ImagePathEditor } from "../../ImagePathEditor.js";
|
|
18
|
+
//# sourceMappingURL=TerrainOverlayEditor.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TerrainOverlayEditor.d.ts","sourceRoot":"","sources":["TerrainOverlayEditor.js"],"names":[],"mappings":"AAGA;IACI;;;;;;;;;;;;MAcC;CACJ;6BAnB4B,iCAAiC;gCAC9B,0BAA0B"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export class BufferGeometryEditor extends TypeEditor<any> {
|
|
2
|
+
constructor();
|
|
3
|
+
build(parent: any, field: any, registry: any): CanvasView;
|
|
4
|
+
}
|
|
5
|
+
import { TypeEditor } from "../../TypeEditor.js";
|
|
6
|
+
import { CanvasView } from "../../../../../src/view/elements/CanvasView.js";
|
|
7
|
+
//# sourceMappingURL=BufferGeometryEditor.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BufferGeometryEditor.d.ts","sourceRoot":"","sources":["BufferGeometryEditor.js"],"names":[],"mappings":"AAQA;;IACI,0DAiBC;CACJ;2BArB0B,qBAAqB;2BADrB,gDAAgD"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export class MaterialEditor extends TypeEditor<any> {
|
|
2
|
+
constructor();
|
|
3
|
+
build(parent: any, field: any, registry: any): CanvasView;
|
|
4
|
+
}
|
|
5
|
+
import { TypeEditor } from "../../TypeEditor.js";
|
|
6
|
+
import { CanvasView } from "../../../../../src/view/elements/CanvasView.js";
|
|
7
|
+
//# sourceMappingURL=MaterialEditor.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"MaterialEditor.d.ts","sourceRoot":"","sources":["MaterialEditor.js"],"names":[],"mappings":"AAOA;;IACI,0DAiBC;CACJ;2BArB0B,qBAAqB;2BADrB,gDAAgD"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export class MeshEditor extends TypeEditor<any> {
|
|
2
|
+
constructor();
|
|
3
|
+
build(parent: any, field: any, registry: any): CanvasView;
|
|
4
|
+
}
|
|
5
|
+
import { TypeEditor } from "../../TypeEditor.js";
|
|
6
|
+
import { CanvasView } from "../../../../../src/view/elements/CanvasView.js";
|
|
7
|
+
//# sourceMappingURL=MeshEditor.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"MeshEditor.d.ts","sourceRoot":"","sources":["MeshEditor.js"],"names":[],"mappings":"AAQA;;IACI,0DAwBC;CACJ;2BA5B0B,qBAAqB;2BADrB,gDAAgD"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export class TextureEditor extends TypeEditor<any> {
|
|
2
|
+
constructor();
|
|
3
|
+
build(parent: any, field: any, registry: any): EmptyView;
|
|
4
|
+
}
|
|
5
|
+
import { TypeEditor } from "../../TypeEditor.js";
|
|
6
|
+
import EmptyView from "../../../../../src/view/elements/EmptyView.js";
|
|
7
|
+
//# sourceMappingURL=TextureEditor.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TextureEditor.d.ts","sourceRoot":"","sources":["TextureEditor.js"],"names":[],"mappings":"AAcA;;IAGI,yDA6FC;CACJ;2BArG0B,qBAAqB;sBAD1B,+CAA+C"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DisableGameUIProcess.d.ts","sourceRoot":"","sources":["DisableGameUIProcess.js"],"names":[],"mappings":"AAGA;IAQI,8BAEC;CAyBJ;;;;8BAtC6B,oBAAoB"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export class ObstacleGridDisplayProcess extends EditorProcess {
|
|
2
|
+
/**
|
|
3
|
+
*
|
|
4
|
+
* @type {TerrainOverlay|null}
|
|
5
|
+
*/
|
|
6
|
+
overlay: TerrainOverlay | null;
|
|
7
|
+
draw(): void;
|
|
8
|
+
}
|
|
9
|
+
export namespace ObstacleGridDisplayProcess {
|
|
10
|
+
let Id: string;
|
|
11
|
+
}
|
|
12
|
+
import { EditorProcess } from "./EditorProcess.js";
|
|
13
|
+
//# sourceMappingURL=ObstacleGridDisplayProcess.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ObstacleGridDisplayProcess.d.ts","sourceRoot":"","sources":["ObstacleGridDisplayProcess.js"],"names":[],"mappings":"AAMA;IAIQ;;;OAGG;IACH,SAFU,iBAAe,IAAI,CAEV;IA4BvB,aAgEC;CASJ;;;;8BAnH6B,oBAAoB"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export class SymbolicDisplayProcess extends EditorProcess {
|
|
2
|
+
requiredSystems: {
|
|
3
|
+
klass: typeof RenderSystem;
|
|
4
|
+
factory: () => RenderSystem;
|
|
5
|
+
}[];
|
|
6
|
+
/**
|
|
7
|
+
*
|
|
8
|
+
* @type {EditorProcess[]}
|
|
9
|
+
*/
|
|
10
|
+
displays: EditorProcess[];
|
|
11
|
+
spawnedSystems: any[];
|
|
12
|
+
initialize(editor: any): void;
|
|
13
|
+
}
|
|
14
|
+
export namespace SymbolicDisplayProcess {
|
|
15
|
+
let Id: string;
|
|
16
|
+
}
|
|
17
|
+
import { EditorProcess } from "./EditorProcess.js";
|
|
18
|
+
import RenderSystem from "../../src/engine/ecs/renderable/RenderSystem.js";
|
|
19
|
+
//# sourceMappingURL=SymbolicDisplayProcess.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SymbolicDisplayProcess.d.ts","sourceRoot":"","sources":["SymbolicDisplayProcess.js"],"names":[],"mappings":"AAkBA;IAOQ;;;QAKE;IAEF;;;OAGG;IACH,UAFU,aAAa,EAAE,CAEP;IAElB,sBAAwB;IAG5B,8BA2BC;CA2DJ;;;;8BA/H6B,oBAAoB;yBAEzB,iDAAiD"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export class ComponentSymbolicDisplay extends EditorProcess {
|
|
2
|
+
constructor(components: any, creator: any, destructor: any);
|
|
3
|
+
/**
|
|
4
|
+
*
|
|
5
|
+
* @type {EntityObserver}
|
|
6
|
+
*/
|
|
7
|
+
observer: EntityObserver;
|
|
8
|
+
}
|
|
9
|
+
import { EditorProcess } from "../EditorProcess.js";
|
|
10
|
+
import { EntityObserver } from "../../../src/engine/ecs/EntityObserver.js";
|
|
11
|
+
//# sourceMappingURL=ComponentSymbolicDisplay.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ComponentSymbolicDisplay.d.ts","sourceRoot":"","sources":["ComponentSymbolicDisplay.js"],"names":[],"mappings":"AAGA;IACI,4DAQC;IALG;;;OAGG;IACH,UAFU,cAAc,CAE2C;CAsB1E;8BAjC6B,qBAAqB;+BACpB,2CAA2C"}
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
export class SymbolicDisplayInternalAPI {
|
|
2
|
+
/**
|
|
3
|
+
*
|
|
4
|
+
* @type {SignalBinding[]}
|
|
5
|
+
*/
|
|
6
|
+
bindings: SignalBinding[];
|
|
7
|
+
/**
|
|
8
|
+
*
|
|
9
|
+
* @type {Engine}
|
|
10
|
+
* @private
|
|
11
|
+
*/
|
|
12
|
+
private __engine;
|
|
13
|
+
__requestUpdate: Signal<any, any, any, any, any, any, any, any>;
|
|
14
|
+
random: () => number;
|
|
15
|
+
/**
|
|
16
|
+
*
|
|
17
|
+
* @type {List<Entity>}
|
|
18
|
+
* @private
|
|
19
|
+
*/
|
|
20
|
+
private __managed_entities;
|
|
21
|
+
/**
|
|
22
|
+
*
|
|
23
|
+
* @type {ProcessState}
|
|
24
|
+
* @private
|
|
25
|
+
*/
|
|
26
|
+
private __state;
|
|
27
|
+
/**
|
|
28
|
+
*
|
|
29
|
+
* @type {EntityComponentDataset}
|
|
30
|
+
* @private
|
|
31
|
+
*/
|
|
32
|
+
private __dataset;
|
|
33
|
+
/**
|
|
34
|
+
*
|
|
35
|
+
* @type {number}
|
|
36
|
+
* @private
|
|
37
|
+
*/
|
|
38
|
+
private __source_entity;
|
|
39
|
+
/**
|
|
40
|
+
*
|
|
41
|
+
* @param {Entity} entity
|
|
42
|
+
*/
|
|
43
|
+
emit(entity: Entity): void;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @param {number} entity
|
|
47
|
+
* @param {EntityComponentDataset} ecd
|
|
48
|
+
* @param {Engine} engine
|
|
49
|
+
*/
|
|
50
|
+
initialize({ entity, ecd, engine }: number): void;
|
|
51
|
+
finalize(): void;
|
|
52
|
+
/**
|
|
53
|
+
*
|
|
54
|
+
* @param {Transform} source
|
|
55
|
+
* @param {Transform} target
|
|
56
|
+
*/
|
|
57
|
+
bindTransform(source: Transform, target: Transform): void;
|
|
58
|
+
bind(signal: any, action: any, context: any): void;
|
|
59
|
+
onFrame(method: any, thisArg: any): void;
|
|
60
|
+
unbind(signal: any, action: any, context: any): boolean;
|
|
61
|
+
update(): void;
|
|
62
|
+
}
|
|
63
|
+
import { SignalBinding } from "../../../src/core/events/signal/SignalBinding.js";
|
|
64
|
+
import Signal from "../../../src/core/events/signal/Signal.js";
|
|
65
|
+
//# sourceMappingURL=SymbolicDisplayInternalAPI.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SymbolicDisplayInternalAPI.d.ts","sourceRoot":"","sources":["SymbolicDisplayInternalAPI.js"],"names":[],"mappings":"AAQA;IAEQ;;;OAGG;IACH,UAFU,aAAa,EAAE,CAEP;IAElB;;;;OAIG;IACH,iBAAoB;IAEpB,gEAAmC;IAEnC,qBAA8B;IAE9B;;;;OAIG;IACH,2BAAoC;IAEpC;;;;OAIG;IACH,gBAA+B;IAE/B;;;;OAIG;IACH,kBAAqB;IAErB;;;;OAIG;IACH,wBAAyB;IAG7B;;;OAGG;IACH,2BAaC;IAED;;;;;OAKG;IACH,oCAJW,MAAM,QAchB;IAED,iBAWC;IAED;;;;OAIG;IACH,0DAWC;IAED,mDAIC;IAED,yCAGC;IAED,wDAgBC;IAGD,eAEC;CAEJ;8BA9J6B,kDAAkD;mBAC7D,2CAA2C"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
*
|
|
3
|
+
* @param {Object3D} helper
|
|
4
|
+
* @param {number} sourceEntity
|
|
5
|
+
* @return {Entity}
|
|
6
|
+
*/
|
|
7
|
+
export function buildThreeJSHelperEntity(helper: Object3D, sourceEntity?: number): Entity;
|
|
8
|
+
import Entity from "../../../src/engine/ecs/Entity.js";
|
|
9
|
+
//# sourceMappingURL=buildThreeJSHelperEntity.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"buildThreeJSHelperEntity.d.ts","sourceRoot":"","sources":["buildThreeJSHelperEntity.js"],"names":[],"mappings":"AAOA;;;;;GAKG;AACH,0EAHW,MAAM,GACL,MAAM,CAwBjB;mBAnCkB,mCAAmC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
*
|
|
3
|
+
* @param {Engine} engine
|
|
4
|
+
* @param {function(components:[], api:{bind:function(Signal, function, thisArg:*), update: function, bindings:SignalBinding[]})} factory
|
|
5
|
+
* @param {Class[]} components
|
|
6
|
+
* @return {ComponentSymbolicDisplay}
|
|
7
|
+
*/
|
|
8
|
+
export function make3DSymbolicDisplay({ engine, factory, components }: Engine): ComponentSymbolicDisplay;
|
|
9
|
+
import { ComponentSymbolicDisplay } from "./ComponentSymbolicDisplay.js";
|
|
10
|
+
//# sourceMappingURL=make3DSymbolicDisplay.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"make3DSymbolicDisplay.d.ts","sourceRoot":"","sources":["make3DSymbolicDisplay.js"],"names":[],"mappings":"AAMA;;;;;;GAMG;AACH,gFAFY,wBAAwB,CA+EnC;yCAvFwC,+BAA+B"}
|