@woosh/meep-engine 2.119.80 → 2.119.81
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/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/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 +41 -0
- package/src/core/localization/Localization.d.ts.map +1 -1
- package/src/core/localization/Localization.js +3 -1
- package/src/engine/ecs/fow/FogOfWarRevealerSystem.d.ts +2 -2
- package/src/engine/ecs/fow/FogOfWarRevealerSystem.d.ts.map +1 -1
- 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/graphics/ecs/path/PathDisplaySystem.d.ts.map +1 -1
- package/src/view/minimap/gl/MinimapTerrainGL.d.ts.map +1 -1
- package/src/view/minimap/gl/MinimapTerrainGL.js +8 -4
package/editor/Editor.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Editor.d.ts","sourceRoot":"","sources":["Editor.js"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"Editor.d.ts","sourceRoot":"","sources":["Editor.js"],"names":[],"mappings":";AAwYA;;;;;GAKG;AACH,gCA+MC;;IA9MG,6BAAwC;IACxC,uBAAkC;IAClC,qBAA2B;IAC3B,oCAAwC;IACxC,0CAAyD;IACzD,yBAAoC;IAEpC;;;OAGG;IACH,sBAFU,IAAI,GAAG,aAAa,CAEO;IAIrC,qBAAuC;IAEvC,uCAAkD;IAElD,iBAAgB;IAEhB,kBAAoB;IAsLpB;yBAvBW,aAAa;MAyBvB;IAGL,mBAaC;IANG,uBAAyB;IAEzB,cAAmC;IAGnC,oBAAsB;IAG1B;;;OAGG;IACH,+BA2BC;IAED;;;OAGG;IACH,sCAgDC;IA3CG,eAAoB;IA6CxB;;;OAGG;IACH,wCAmBC;IAED,6BAMC;IAED,eA+BC;IAED;;;;OAIG;IACH,6BAFa,OAAO,CAInB;;8BA5sB6B,4BAA4B;uBAEnC,8BAA8B;iBA5DpC,qCAAqC;gCAatB,6CAA6C;oCA8CzC,0BAA0B;4BAFlC,0BAA0B;mBA1CnC,6BAA6B;+BAyCjB,6BAA6B;uBAMrC,sBAAsB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SelectionVisualizer.d.ts","sourceRoot":"","sources":["SelectionVisualizer.js"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"SelectionVisualizer.d.ts","sourceRoot":"","sources":["SelectionVisualizer.js"],"names":[],"mappings":"AA8EA;IACI;;;;OAIG;IACH,4BAiDC;IAhDG,eAAoB;IAWN,aAAwB;IA4BtC;;;MAGC;IAED,0BAGC;IAGL,gBAQC;IAED,iBASC;CACJ;sBA3JgC,OAAO;8BAEV,4CAA4C"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ComponentAddAction.d.ts","sourceRoot":"","sources":["ComponentAddAction.js"],"names":[],"mappings":";AAEA;IACI
|
|
1
|
+
{"version":3,"file":"ComponentAddAction.d.ts","sourceRoot":"","sources":["ComponentAddAction.js"],"names":[],"mappings":";AAEA;IACI,yCASC;IAPG,YAAoB;IACpB,eAA0B;IAC1B;;;OAGG;IACH,gCAAmB;IAGvB,kCAqBC;IAED,mCAGC;CACJ;uBAzCsB,0CAA0C"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ComponentRemoveAction.d.ts","sourceRoot":"","sources":["ComponentRemoveAction.js"],"names":[],"mappings":";AAEA
|
|
1
|
+
{"version":3,"file":"ComponentRemoveAction.d.ts","sourceRoot":"","sources":["ComponentRemoveAction.js"],"names":[],"mappings":";AAEA;IACI,6CAMC;IAHG,YAAoB;IACpB,mBAAkC;IAClC,eAAqB;IAGzB,kCAcC;IAED,mCAGC;CACJ;uBA/BsB,0CAA0C"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"EntityCreateAction.d.ts","sourceRoot":"","sources":["EntityCreateAction.js"],"names":[],"mappings":";AAEA;IACI
|
|
1
|
+
{"version":3,"file":"EntityCreateAction.d.ts","sourceRoot":"","sources":["EntityCreateAction.js"],"names":[],"mappings":";AAEA;IACI,cAaC;IAXG;;;OAGG;IACH,QAFU,MAAM,GAAC,IAAI,CAEH;IAElB;;;OAGG;IACH,4BAAe;IAGnB,kCAkBC;IAED,mCAEC;CACJ;uBAzCsB,0CAA0C"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"EntityRemoveAction.d.ts","sourceRoot":"","sources":["EntityRemoveAction.js"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"EntityRemoveAction.d.ts","sourceRoot":"","sources":["EntityRemoveAction.js"],"names":[],"mappings":";AAEA;;GAEG;AACH;IACI,yBAIC;IAFG,YAAoB;IACpB,kBAAoB;CAmC3B;uBA5CsB,0CAA0C"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SelectionAddAction.d.ts","sourceRoot":"","sources":["SelectionAddAction.js"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"SelectionAddAction.d.ts","sourceRoot":"","sources":["SelectionAddAction.js"],"names":[],"mappings":";AAGA;IACI;;;;OAIG;IACH,sBAHW,KAAK,EAWf;IANG,cAAoB;IACpB;;;OAGG;IACH,UAFU,KAAK,CAES;IAG5B,kCAMC;IAED,mCAEC;CACJ;uBA9BsB,0CAA0C"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SelectionClearAction.d.ts","sourceRoot":"","sources":["SelectionClearAction.js"],"names":[],"mappings":";AAEA;IACI
|
|
1
|
+
{"version":3,"file":"SelectionClearAction.d.ts","sourceRoot":"","sources":["SelectionClearAction.js"],"names":[],"mappings":";AAEA;IACI,cAGC;IADG,cAAoB;IAGxB,kCAGC;IAED,mCAEC;CACJ;uBAhBsB,0CAA0C"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SelectionRemoveAction.d.ts","sourceRoot":"","sources":["SelectionRemoveAction.js"],"names":[],"mappings":";AAEA;IACI
|
|
1
|
+
{"version":3,"file":"SelectionRemoveAction.d.ts","sourceRoot":"","sources":["SelectionRemoveAction.js"],"names":[],"mappings":";AAEA;IACI,2BAIC;IAFG,cAAoB;IACpB,cAAwB;IAG5B,kCAUC;IAED,mCAEC;CACJ;uBAxBsB,0CAA0C"}
|
|
@@ -1,11 +1,4 @@
|
|
|
1
1
|
export default EditorEntity;
|
|
2
|
-
/**
|
|
3
|
-
* Marker component to distinguish editor-owned entities
|
|
4
|
-
* @constructor
|
|
5
|
-
*/
|
|
6
|
-
declare function EditorEntity({ referenceEntity }?: {
|
|
7
|
-
referenceEntity?: number;
|
|
8
|
-
}): void;
|
|
9
2
|
declare class EditorEntity {
|
|
10
3
|
/**
|
|
11
4
|
* Marker component to distinguish editor-owned entities
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"EditorEntity.d.ts","sourceRoot":"","sources":["EditorEntity.js"],"names":[],"mappings":";AAAA
|
|
1
|
+
{"version":3,"file":"EditorEntity.d.ts","sourceRoot":"","sources":["EditorEntity.js"],"names":[],"mappings":";AAAA;IACI;;;OAGG;IACH;;OAEC;IADG,wBAAsC;CAE7C"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"createObjectEditor.d.ts","sourceRoot":"","sources":["createObjectEditor.js"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"createObjectEditor.d.ts","sourceRoot":"","sources":["createObjectEditor.js"],"names":[],"mappings":"AA8QA;;;;GAIG;AACH,qEAHW,oBAAkB,gDA0B5B;AAID;;;GAGG;AACH,0DAFW,oBAAkB,aA0D5B;gCAvW+B,sBAAsB;sBAFhC,yCAAyC"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export class ImagePathEditor 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=ImagePathEditor.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ImagePathEditor.d.ts","sourceRoot":"","sources":["ImagePathEditor.js"],"names":[],"mappings":"AAQA;;IAGI,yDAqEC;CACJ;2BAjF0B,kBAAkB;sBACvB,4CAA4C"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export class LargeStringEditor extends TypeEditor<any> {
|
|
2
|
+
constructor();
|
|
3
|
+
build(parent: any, field: any, registry: any): {
|
|
4
|
+
view: EmptyView;
|
|
5
|
+
signals: {
|
|
6
|
+
input_changed: Signal<any, any, any, any, any, any, any, any>;
|
|
7
|
+
};
|
|
8
|
+
methods: {
|
|
9
|
+
set_value(v: any): void;
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
}
|
|
13
|
+
import { TypeEditor } from "../TypeEditor.js";
|
|
14
|
+
import EmptyView from "../../../../src/view/elements/EmptyView.js";
|
|
15
|
+
import Signal from "../../../../src/core/events/signal/Signal.js";
|
|
16
|
+
//# sourceMappingURL=LargeStringEditor.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"LargeStringEditor.d.ts","sourceRoot":"","sources":["LargeStringEditor.js"],"names":[],"mappings":"AAsBA;;IAGI;;;;;;;;MAgFC;CACJ;2BA1G0B,kBAAkB;sBAIvB,4CAA4C;mBAG/C,8CAA8C"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Sampler2DEditor.d.ts","sourceRoot":"","sources":["Sampler2DEditor.js"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Sampler2DEditor.d.ts","sourceRoot":"","sources":["Sampler2DEditor.js"],"names":[],"mappings":"AA2IA;;IAEI,wDA4EC;CACJ;2BA1M0B,kBAAkB;sBADvB,4CAA4C"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export class EnumEditor extends TypeEditor<any> {
|
|
2
|
+
constructor(type: any);
|
|
3
|
+
type: any;
|
|
4
|
+
build(parent: any, field: any, registry: any): DropDownSelectionView<any>;
|
|
5
|
+
}
|
|
6
|
+
import { TypeEditor } from "../../TypeEditor.js";
|
|
7
|
+
import DropDownSelectionView from "../../../../../src/view/elements/DropDownSelectionView.js";
|
|
8
|
+
//# sourceMappingURL=EnumEditor.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"EnumEditor.d.ts","sourceRoot":"","sources":["EnumEditor.js"],"names":[],"mappings":"AAKA;IACI,uBAIC;IADG,UAAgB;IAGpB,0EA2BC;CACJ;2BAxC0B,qBAAqB;kCACd,2DAA2D"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export class GridObstacleEditor 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=GridObstacleEditor.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GridObstacleEditor.d.ts","sourceRoot":"","sources":["GridObstacleEditor.js"],"names":[],"mappings":"AAIA;;IAGI,0DAQC;CACJ;2BAhB0B,qBAAqB;2BACrB,gDAAgD"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export class MinimapMarkerEditor extends ObjectEditor {
|
|
2
|
+
get schema(): {
|
|
3
|
+
properties: {
|
|
4
|
+
iconURL: {
|
|
5
|
+
type: typeof ObservedString;
|
|
6
|
+
editor: ImagePathEditor;
|
|
7
|
+
};
|
|
8
|
+
};
|
|
9
|
+
};
|
|
10
|
+
}
|
|
11
|
+
import { ObjectEditor } from "../primitive/ObjectEditor.js";
|
|
12
|
+
import ObservedString from "../../../../../src/core/model/ObservedString.js";
|
|
13
|
+
import { ImagePathEditor } from "../ImagePathEditor.js";
|
|
14
|
+
//# sourceMappingURL=MinimapMarkerEditor.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"MinimapMarkerEditor.d.ts","sourceRoot":"","sources":["MinimapMarkerEditor.js"],"names":[],"mappings":"AAIA;IACI;;;;;;;MASC;CACJ;6BAf4B,8BAA8B;2BAChC,iDAAiD;gCAC5C,uBAAuB"}
|
|
@@ -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"}
|