@woosh/meep-engine 2.165.4 → 2.165.5

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.
Files changed (141) hide show
  1. package/editor/Editor.d.ts +65 -65
  2. package/editor/SelectionVisualizer.d.ts +19 -19
  3. package/editor/actions/concrete/ActionUpdateTexture.d.ts +11 -11
  4. package/editor/actions/concrete/ArrayCopyAction.d.ts +19 -19
  5. package/editor/actions/concrete/ComponentAddAction.d.ts +14 -14
  6. package/editor/actions/concrete/ComponentRemoveAction.d.ts +10 -10
  7. package/editor/actions/concrete/EntityCreateAction.d.ts +17 -17
  8. package/editor/actions/concrete/EntityRemoveAction.d.ts +10 -10
  9. package/editor/actions/concrete/ModifyPatchSampler2DAction.d.ts +46 -46
  10. package/editor/actions/concrete/ModifyPatchTextureArray2DAction.d.ts +37 -37
  11. package/editor/actions/concrete/PaintTerrainOverlayAction.d.ts +22 -22
  12. package/editor/actions/concrete/PatchTerrainHeightAction.d.ts +18 -18
  13. package/editor/actions/concrete/SelectionAddAction.d.ts +18 -18
  14. package/editor/actions/concrete/SelectionClearAction.d.ts +8 -8
  15. package/editor/actions/concrete/SelectionRemoveAction.d.ts +9 -9
  16. package/editor/actions/concrete/TransformModifyAction.d.ts +16 -16
  17. package/editor/actions/concrete/WriteGridValueAction.d.ts +14 -14
  18. package/editor/ecs/EditorEntity.d.ts +15 -15
  19. package/editor/ecs/EditorEntitySystem.d.ts +7 -7
  20. package/editor/ecs/component/FieldDescriptor.d.ts +26 -26
  21. package/editor/ecs/component/FieldValueAdapter.d.ts +6 -6
  22. package/editor/ecs/component/TypeEditor.d.ts +24 -24
  23. package/editor/ecs/component/createFieldEditor.d.ts +8 -8
  24. package/editor/ecs/component/createObjectEditor.d.ts +13 -13
  25. package/editor/ecs/component/editors/ColorEditor.d.ts +6 -6
  26. package/editor/ecs/component/editors/HTMLElementEditor.d.ts +6 -6
  27. package/editor/ecs/component/editors/ImagePathEditor.d.ts +6 -6
  28. package/editor/ecs/component/editors/LargeStringEditor.d.ts +15 -15
  29. package/editor/ecs/component/editors/NumericIntervalEditor.d.ts +6 -6
  30. package/editor/ecs/component/editors/ObservedBooleanEditor.d.ts +6 -6
  31. package/editor/ecs/component/editors/ObservedEnumEditor.d.ts +6 -6
  32. package/editor/ecs/component/editors/ObservedIntegerEditor.d.ts +6 -6
  33. package/editor/ecs/component/editors/ObservedStringEditor.d.ts +6 -6
  34. package/editor/ecs/component/editors/Sampler2DEditor.d.ts +6 -6
  35. package/editor/ecs/component/editors/collection/ListEditor.d.ts +7 -7
  36. package/editor/ecs/component/editors/common/BitFlagsEditor.d.ts +11 -11
  37. package/editor/ecs/component/editors/common/EnumEditor.d.ts +7 -7
  38. package/editor/ecs/component/editors/common/makeV3_editor.d.ts +14 -14
  39. package/editor/ecs/component/editors/common/noEditor.d.ts +2 -2
  40. package/editor/ecs/component/editors/ecs/GridObstacleEditor.d.ts +6 -6
  41. package/editor/ecs/component/editors/ecs/MinimapMarkerEditor.d.ts +13 -13
  42. package/editor/ecs/component/editors/ecs/ParameterLookupTableEditor.d.ts +66 -66
  43. package/editor/ecs/component/editors/ecs/ParameterTrackEditor.d.ts +11 -11
  44. package/editor/ecs/component/editors/ecs/ParameterTrackSetEditor.d.ts +13 -13
  45. package/editor/ecs/component/editors/ecs/ParticleEmitterEditor.d.ts +51 -51
  46. package/editor/ecs/component/editors/ecs/ParticleEmitterLayerEditor.d.ts +47 -47
  47. package/editor/ecs/component/editors/ecs/SimulationStepDefinitionEditor.d.ts +15 -15
  48. package/editor/ecs/component/editors/ecs/Trail2DEditor.d.ts +29 -29
  49. package/editor/ecs/component/editors/ecs/TransformEditor.d.ts +19 -19
  50. package/editor/ecs/component/editors/ecs/terrain/SplatMappingEditor.d.ts +18 -18
  51. package/editor/ecs/component/editors/ecs/terrain/TerrainEditor.d.ts +38 -38
  52. package/editor/ecs/component/editors/ecs/terrain/TerrainLayerEditor.d.ts +15 -15
  53. package/editor/ecs/component/editors/ecs/terrain/TerrainLayersEditor.d.ts +18 -18
  54. package/editor/ecs/component/editors/ecs/terrain/TerrainOverlayEditor.d.ts +17 -17
  55. package/editor/ecs/component/editors/geom/QuaternionEditor.d.ts +5 -5
  56. package/editor/ecs/component/editors/geom/Vector1Editor.d.ts +6 -6
  57. package/editor/ecs/component/editors/geom/Vector2Editor.d.ts +5 -5
  58. package/editor/ecs/component/editors/geom/Vector3Editor.d.ts +5 -5
  59. package/editor/ecs/component/editors/geom/Vector4Editor.d.ts +5 -5
  60. package/editor/ecs/component/editors/primitive/ArrayEditor.d.ts +7 -7
  61. package/editor/ecs/component/editors/primitive/BooleanEditor.d.ts +6 -6
  62. package/editor/ecs/component/editors/primitive/FunctionEditor.d.ts +6 -6
  63. package/editor/ecs/component/editors/primitive/NumberEditor.d.ts +7 -7
  64. package/editor/ecs/component/editors/primitive/ObjectEditor.d.ts +5 -5
  65. package/editor/ecs/component/editors/primitive/StringEditor.d.ts +6 -6
  66. package/editor/ecs/component/editors/three/BufferGeometryEditor.d.ts +6 -6
  67. package/editor/ecs/component/editors/three/MaterialEditor.d.ts +6 -6
  68. package/editor/ecs/component/editors/three/MeshEditor.d.ts +6 -6
  69. package/editor/ecs/component/editors/three/TextureEditor.d.ts +6 -6
  70. package/editor/ecs/component/findNearestRegisteredType.d.ts +7 -7
  71. package/editor/enableEditor.d.ts +13 -13
  72. package/editor/library/MeshLibrary.d.ts +12 -12
  73. package/editor/process/DisableGameUIProcess.d.ts +7 -7
  74. package/editor/process/EditorProcess.d.ts +18 -18
  75. package/editor/process/ObstacleGridDisplayProcess.d.ts +12 -12
  76. package/editor/process/ProcessEngine.d.ts +29 -29
  77. package/editor/process/SymbolicDisplayProcess.d.ts +18 -18
  78. package/editor/process/symbolic/ComponentSymbolicDisplay.d.ts +10 -10
  79. package/editor/process/symbolic/SymbolicDisplayInternalAPI.d.ts +64 -64
  80. package/editor/process/symbolic/buildThreeJSHelperEntity.d.ts +8 -8
  81. package/editor/process/symbolic/make3DSymbolicDisplay.d.ts +9 -9
  82. package/editor/process/symbolic/makeCameraSymbolicDisplay.d.ts +6 -6
  83. package/editor/process/symbolic/makeGridPositionSymbolDisplay.d.ts +5 -5
  84. package/editor/process/symbolic/makeHelperBoxGeometry.d.ts +2 -2
  85. package/editor/process/symbolic/makeHelperSphereGeometry.d.ts +8 -8
  86. package/editor/process/symbolic/makeLightSymbolicDisplay.d.ts +6 -6
  87. package/editor/process/symbolic/makeParticleEmitterSymbolicDisplay.d.ts +5 -5
  88. package/editor/process/symbolic/makePathSymbolicDisplay.d.ts +6 -6
  89. package/editor/process/symbolic/makePositionedIconDisplaySymbol.d.ts +8 -8
  90. package/editor/process/symbolic/makeSocketsSymbolicDisplay.d.ts +6 -6
  91. package/editor/process/symbolic/makeSolidArrowGeometry.d.ts +25 -25
  92. package/editor/process/symbolic/makeSoundEmitterSymbolicDisplay.d.ts +5 -5
  93. package/editor/process/symbolic/synchronizeTransform.d.ts +11 -11
  94. package/editor/tools/GridPaintTool.d.ts +16 -16
  95. package/editor/tools/SelectionTool.d.ts +26 -26
  96. package/editor/tools/TopDownCameraControlTool.d.ts +12 -12
  97. package/editor/tools/engine/Tool.d.ts +63 -63
  98. package/editor/tools/engine/ToolEngine.d.ts +22 -22
  99. package/editor/tools/engine/ToolState.d.ts +6 -6
  100. package/editor/tools/paint/TerrainHeightPaintTool.d.ts +17 -17
  101. package/editor/tools/paint/TerrainPaintTool.d.ts +30 -30
  102. package/editor/tools/paint/TerrainTexturePaintTool.d.ts +17 -17
  103. package/editor/tools/v2/TransformMode.d.ts +6 -6
  104. package/editor/view/EditorView.d.ts +38 -38
  105. package/editor/view/ecs/ComponentControlFactory.d.ts +18 -18
  106. package/editor/view/ecs/ComponentControlView.d.ts +23 -23
  107. package/editor/view/ecs/EntityEditor.d.ts +29 -29
  108. package/editor/view/ecs/EntityList.d.ts +21 -21
  109. package/editor/view/ecs/HierarchicalEntityListView.d.ts +7 -7
  110. package/editor/view/ecs/components/DatGuiController.d.ts +45 -45
  111. package/editor/view/ecs/components/GridObstacleController.d.ts +13 -13
  112. package/editor/view/ecs/components/color/GaugeView.d.ts +12 -12
  113. package/editor/view/ecs/components/common/AutoCanvasView.d.ts +19 -19
  114. package/editor/view/ecs/components/common/LineView.d.ts +11 -11
  115. package/editor/view/ecs/components/common/NumberController.d.ts +17 -17
  116. package/editor/view/ecs/components/particles/ColorParameterLUTController.d.ts +13 -13
  117. package/editor/view/makeEntityDecorators.d.ts +5 -5
  118. package/editor/view/tools/ToolSettingsView.d.ts +10 -10
  119. package/editor/view/tools/ToolView.d.ts +12 -12
  120. package/editor/view/v2/SplitView.d.ts +16 -16
  121. package/package.json +1 -1
  122. package/samples/generation/grid/GridTags.d.ts +15 -15
  123. package/samples/generation/grid/MirGridLayers.d.ts +7 -7
  124. package/samples/generation/rules/matcher_tag_occupied.d.ts +2 -2
  125. package/samples/generation/rules/matcher_tag_traversable.d.ts +2 -2
  126. package/samples/generation/rules/matcher_tag_unoccupied.d.ts +2 -2
  127. package/src/engine/graphics/ecs/light/LightContext.d.ts +8 -0
  128. package/src/engine/graphics/ecs/light/LightContext.d.ts.map +1 -1
  129. package/src/engine/graphics/ecs/light/LightContext.js +33 -3
  130. package/src/engine/graphics/ecs/light/LightSystem.d.ts.map +1 -1
  131. package/src/engine/graphics/ecs/light/LightSystem.js +13 -6
  132. package/src/engine/graphics/ecs/light/binding/three/ThreeLightBinding.d.ts +12 -0
  133. package/src/engine/graphics/ecs/light/binding/three/ThreeLightBinding.d.ts.map +1 -1
  134. package/src/engine/graphics/ecs/light/binding/three/ThreeLightBinding.js +184 -6
  135. package/src/engine/graphics/render/buffer/simple-fx/ao/SAOShader.js +381 -362
  136. package/src/engine/graphics/shadows/ShadowMapRenderer.d.ts +10 -0
  137. package/src/engine/graphics/shadows/ShadowMapRenderer.d.ts.map +1 -1
  138. package/src/engine/graphics/shadows/ShadowMapRenderer.js +83 -10
  139. package/src/engine/graphics/shadows/testPointShadowMapRendering.d.ts +2 -0
  140. package/src/engine/graphics/shadows/testPointShadowMapRendering.d.ts.map +1 -0
  141. package/src/engine/graphics/shadows/testPointShadowMapRendering.js +242 -0
@@ -1,10 +1,10 @@
1
- export default SelectionRemoveAction;
2
- declare class SelectionRemoveAction extends Action<any> {
3
- constructor(entities: any);
4
- oldState: any;
5
- entities: any;
6
- apply(editor: any): Promise<void>;
7
- revert(editor: any): Promise<void>;
8
- }
9
- import { Action } from "../../../src/core/process/undo/Action.js";
1
+ export default SelectionRemoveAction;
2
+ declare class SelectionRemoveAction extends Action<any> {
3
+ constructor(entities: any);
4
+ oldState: any;
5
+ entities: any;
6
+ apply(editor: any): Promise<void>;
7
+ revert(editor: any): Promise<void>;
8
+ }
9
+ import { Action } from "../../../src/core/process/undo/Action.js";
10
10
  //# sourceMappingURL=SelectionRemoveAction.d.ts.map
@@ -1,17 +1,17 @@
1
- export default TransformModifyAction;
2
- declare class TransformModifyAction extends Action<any> {
3
- /**
4
- *
5
- * @param entity
6
- * @param {Transform} modified
7
- * @constructor
8
- */
9
- constructor(entity: any, modified: Transform);
10
- oldState: any;
11
- modified: Transform;
12
- entity: any;
13
- revert(editor: any): Promise<void>;
14
- }
15
- import { Action } from "../../../src/core/process/undo/Action.js";
16
- import { Transform } from "../../../src/engine/ecs/transform/Transform.js";
1
+ export default TransformModifyAction;
2
+ declare class TransformModifyAction extends Action<any> {
3
+ /**
4
+ *
5
+ * @param entity
6
+ * @param {Transform} modified
7
+ * @constructor
8
+ */
9
+ constructor(entity: any, modified: Transform);
10
+ oldState: any;
11
+ modified: Transform;
12
+ entity: any;
13
+ revert(editor: any): Promise<void>;
14
+ }
15
+ import { Action } from "../../../src/core/process/undo/Action.js";
16
+ import { Transform } from "../../../src/engine/ecs/transform/Transform.js";
17
17
  //# sourceMappingURL=TransformModifyAction.d.ts.map
@@ -1,15 +1,15 @@
1
- export default WriteGridValueAction;
2
- declare class WriteGridValueAction extends Action<any> {
3
- constructor(entity: any, x: any, y: any, value: any);
4
- entity: any;
5
- x: any;
6
- y: any;
7
- value: any;
8
- obstacle: GridObstacle;
9
- oldValue: number;
10
- apply(editor: any): Promise<void>;
11
- revert(editor: any): Promise<void>;
12
- }
13
- import { Action } from "../../../src/core/process/undo/Action.js";
14
- import GridObstacle from "../../../src/engine/grid/obstacle/GridObstacle.js";
1
+ export default WriteGridValueAction;
2
+ declare class WriteGridValueAction extends Action<any> {
3
+ constructor(entity: any, x: any, y: any, value: any);
4
+ entity: any;
5
+ x: any;
6
+ y: any;
7
+ value: any;
8
+ obstacle: GridObstacle;
9
+ oldValue: number;
10
+ apply(editor: any): Promise<void>;
11
+ revert(editor: any): Promise<void>;
12
+ }
13
+ import { Action } from "../../../src/core/process/undo/Action.js";
14
+ import GridObstacle from "../../../src/engine/grid/obstacle/GridObstacle.js";
15
15
  //# sourceMappingURL=WriteGridValueAction.d.ts.map
@@ -1,16 +1,16 @@
1
- export default EditorEntity;
2
- declare class EditorEntity {
3
- /**
4
- * Marker component to distinguish editor-owned entities
5
- * @constructor
6
- */
7
- constructor({ referenceEntity }?: {
8
- referenceEntity?: number;
9
- });
10
- referenceEntity: number;
11
- }
12
- declare namespace EditorEntity {
13
- let typeName: string;
14
- let serializable: boolean;
15
- }
1
+ export default EditorEntity;
2
+ declare class EditorEntity {
3
+ /**
4
+ * Marker component to distinguish editor-owned entities
5
+ * @constructor
6
+ */
7
+ constructor({ referenceEntity }?: {
8
+ referenceEntity?: number;
9
+ });
10
+ referenceEntity: number;
11
+ }
12
+ declare namespace EditorEntity {
13
+ let typeName: string;
14
+ let serializable: boolean;
15
+ }
16
16
  //# sourceMappingURL=EditorEntity.d.ts.map
@@ -1,8 +1,8 @@
1
- export default EditorEntitySystem;
2
- declare class EditorEntitySystem extends System<any, any, any, any, any> {
3
- constructor();
4
- dependencies: (typeof EditorEntity)[];
5
- }
6
- import { System } from "../../src/engine/ecs/System.js";
7
- import EditorEntity from "./EditorEntity.js";
1
+ export default EditorEntitySystem;
2
+ declare class EditorEntitySystem extends System<any, any, any, any, any> {
3
+ constructor();
4
+ dependencies: (typeof EditorEntity)[];
5
+ }
6
+ import { System } from "../../src/engine/ecs/System.js";
7
+ import EditorEntity from "./EditorEntity.js";
8
8
  //# sourceMappingURL=EditorEntitySystem.d.ts.map
@@ -1,27 +1,27 @@
1
- /**
2
- * @template T
3
- */
4
- export class FieldDescriptor<T> {
5
- /**
6
- *
7
- * @type {string}
8
- */
9
- name: string;
10
- /**
11
- * typeof field
12
- * @type {Class<T>}
13
- */
14
- type: Class<T>;
15
- /**
16
- *
17
- * @type {FieldValueAdapter|null}
18
- */
19
- adapter: FieldValueAdapter | null;
20
- /**
21
- *
22
- * @type {{}|undefined}
23
- */
24
- schema: {} | undefined;
25
- toString(): string;
26
- }
1
+ /**
2
+ * @template T
3
+ */
4
+ export class FieldDescriptor<T> {
5
+ /**
6
+ *
7
+ * @type {string}
8
+ */
9
+ name: string;
10
+ /**
11
+ * typeof field
12
+ * @type {Class<T>}
13
+ */
14
+ type: Class<T>;
15
+ /**
16
+ *
17
+ * @type {FieldValueAdapter|null}
18
+ */
19
+ adapter: FieldValueAdapter | null;
20
+ /**
21
+ *
22
+ * @type {{}|undefined}
23
+ */
24
+ schema: {} | undefined;
25
+ toString(): string;
26
+ }
27
27
  //# sourceMappingURL=FieldDescriptor.d.ts.map
@@ -1,7 +1,7 @@
1
- export class FieldValueAdapter {
2
- writable: boolean;
3
- readable: boolean;
4
- read(object: any, field_name: any): any;
5
- write(object: any, field_name: any, value: any): void;
6
- }
1
+ export class FieldValueAdapter {
2
+ writable: boolean;
3
+ readable: boolean;
4
+ read(object: any, field_name: any): any;
5
+ write(object: any, field_name: any, value: any): void;
6
+ }
7
7
  //# sourceMappingURL=FieldValueAdapter.d.ts.map
@@ -1,25 +1,25 @@
1
- /**
2
- * @class
3
- * @template T
4
- */
5
- export class TypeEditor<T> {
6
- inline: boolean;
7
- /**
8
- * Class is hidden and editor should not be displayed
9
- * @returns {boolean}
10
- */
11
- get hidden(): boolean;
12
- /**
13
- *
14
- * @returns {TypeSchema|undefined}
15
- */
16
- get schema(): any;
17
- /**
18
- * @param {*} parent
19
- * @param {FieldDescriptor} field
20
- * @param {Map<*, TypeEditor>} registry
21
- * @returns {View|void}
22
- */
23
- build(parent: any, field: FieldDescriptor, registry: Map<any, TypeEditor<any>>): View | void;
24
- }
1
+ /**
2
+ * @class
3
+ * @template T
4
+ */
5
+ export class TypeEditor<T> {
6
+ inline: boolean;
7
+ /**
8
+ * Class is hidden and editor should not be displayed
9
+ * @returns {boolean}
10
+ */
11
+ get hidden(): boolean;
12
+ /**
13
+ *
14
+ * @returns {TypeSchema|undefined}
15
+ */
16
+ get schema(): any;
17
+ /**
18
+ * @param {*} parent
19
+ * @param {FieldDescriptor} field
20
+ * @param {Map<*, TypeEditor>} registry
21
+ * @returns {View|void}
22
+ */
23
+ build(parent: any, field: FieldDescriptor, registry: Map<any, TypeEditor<any>>): View | void;
24
+ }
25
25
  //# sourceMappingURL=TypeEditor.d.ts.map
@@ -1,9 +1,9 @@
1
- /**
2
- * @template CTX
3
- * @param {Object} object
4
- * @param {FieldDescriptor} field
5
- * @param {Map<*, TypeEditor>} registry
6
- */
7
- export function createFieldEditor<CTX>(object: any, field: FieldDescriptor, registry: Map<any, TypeEditor>): EmptyView;
8
- import EmptyView from "../../../src/view/elements/EmptyView.js";
1
+ /**
2
+ * @template CTX
3
+ * @param {Object} object
4
+ * @param {FieldDescriptor} field
5
+ * @param {Map<*, TypeEditor>} registry
6
+ */
7
+ export function createFieldEditor<CTX>(object: any, field: FieldDescriptor, registry: Map<any, TypeEditor>): EmptyView;
8
+ import EmptyView from "../../../src/view/elements/EmptyView.js";
9
9
  //# sourceMappingURL=createFieldEditor.d.ts.map
@@ -1,14 +1,14 @@
1
- /**
2
- * @param {Object} object
3
- * @param {Map<*, TypeEditor>} registry
4
- * @param {FieldDescriptor} [field_descriptor]
5
- */
6
- export function buildObjectEditorFromRegistry(object: any, registry: Map<any, TypeEditor>, field_descriptor?: FieldDescriptor<any>): any;
7
- /**
8
- * @param {Object} object
9
- * @param {Map<*, TypeEditor>} registry
10
- */
11
- export function createObjectEditor(object: any, registry: Map<any, TypeEditor>): EmptyView;
12
- import { FieldDescriptor } from "./FieldDescriptor.js";
13
- import EmptyView from "../../../src/view/elements/EmptyView.js";
1
+ /**
2
+ * @param {Object} object
3
+ * @param {Map<*, TypeEditor>} registry
4
+ * @param {FieldDescriptor} [field_descriptor]
5
+ */
6
+ export function buildObjectEditorFromRegistry(object: any, registry: Map<any, TypeEditor>, field_descriptor?: FieldDescriptor<any>): any;
7
+ /**
8
+ * @param {Object} object
9
+ * @param {Map<*, TypeEditor>} registry
10
+ */
11
+ export function createObjectEditor(object: any, registry: Map<any, TypeEditor>): EmptyView;
12
+ import { FieldDescriptor } from "./FieldDescriptor.js";
13
+ import EmptyView from "../../../src/view/elements/EmptyView.js";
14
14
  //# sourceMappingURL=createObjectEditor.d.ts.map
@@ -1,7 +1,7 @@
1
- export class ColorEditor extends TypeEditor<any> {
2
- constructor();
3
- build(parent: any, field: any): EmptyView;
4
- }
5
- import { TypeEditor } from "../TypeEditor.js";
6
- import EmptyView from "../../../../src/view/elements/EmptyView.js";
1
+ export class ColorEditor extends TypeEditor<any> {
2
+ constructor();
3
+ build(parent: any, field: any): EmptyView;
4
+ }
5
+ import { TypeEditor } from "../TypeEditor.js";
6
+ import EmptyView from "../../../../src/view/elements/EmptyView.js";
7
7
  //# sourceMappingURL=ColorEditor.d.ts.map
@@ -1,7 +1,7 @@
1
- export class HTMLElementEditor extends TypeEditor<any> {
2
- constructor();
3
- build(parent: any, field: any, registry: any): View<HTMLElement>;
4
- }
5
- import { TypeEditor } from "../TypeEditor.js";
6
- import View from "../../../../src/view/View.js";
1
+ export class HTMLElementEditor extends TypeEditor<any> {
2
+ constructor();
3
+ build(parent: any, field: any, registry: any): View<HTMLElement>;
4
+ }
5
+ import { TypeEditor } from "../TypeEditor.js";
6
+ import View from "../../../../src/view/View.js";
7
7
  //# sourceMappingURL=HTMLElementEditor.d.ts.map
@@ -1,7 +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";
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
7
  //# sourceMappingURL=ImagePathEditor.d.ts.map
@@ -1,16 +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";
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
16
  //# sourceMappingURL=LargeStringEditor.d.ts.map
@@ -1,7 +1,7 @@
1
- export class NumericIntervalEditor 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";
1
+ export class NumericIntervalEditor 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
7
  //# sourceMappingURL=NumericIntervalEditor.d.ts.map
@@ -1,7 +1,7 @@
1
- export class ObservedBooleanEditor extends TypeEditor<any> {
2
- constructor();
3
- build(parent: any, field: any, registry: any): CheckboxView;
4
- }
5
- import { TypeEditor } from "../TypeEditor.js";
6
- import { CheckboxView } from "../../../../src/view/elements/CheckboxView.js";
1
+ export class ObservedBooleanEditor extends TypeEditor<any> {
2
+ constructor();
3
+ build(parent: any, field: any, registry: any): CheckboxView;
4
+ }
5
+ import { TypeEditor } from "../TypeEditor.js";
6
+ import { CheckboxView } from "../../../../src/view/elements/CheckboxView.js";
7
7
  //# sourceMappingURL=ObservedBooleanEditor.d.ts.map
@@ -1,7 +1,7 @@
1
- export class ObservedEnumEditor extends TypeEditor<any> {
2
- constructor();
3
- build(parent: any, field: any, registry: any): DropDownSelectionView<any>;
4
- }
5
- import { TypeEditor } from "../TypeEditor.js";
6
- import DropDownSelectionView from "../../../../src/view/elements/DropDownSelectionView.js";
1
+ export class ObservedEnumEditor extends TypeEditor<any> {
2
+ constructor();
3
+ build(parent: any, field: any, registry: any): DropDownSelectionView<any>;
4
+ }
5
+ import { TypeEditor } from "../TypeEditor.js";
6
+ import DropDownSelectionView from "../../../../src/view/elements/DropDownSelectionView.js";
7
7
  //# sourceMappingURL=ObservedEnumEditor.d.ts.map
@@ -1,7 +1,7 @@
1
- export class ObservedIntegerEditor extends TypeEditor<any> {
2
- constructor();
3
- build(parent: any, field: any, registry: any): NumberController;
4
- }
5
- import { TypeEditor } from "../TypeEditor.js";
6
- import { NumberController } from "../../../view/ecs/components/common/NumberController.js";
1
+ export class ObservedIntegerEditor extends TypeEditor<any> {
2
+ constructor();
3
+ build(parent: any, field: any, registry: any): NumberController;
4
+ }
5
+ import { TypeEditor } from "../TypeEditor.js";
6
+ import { NumberController } from "../../../view/ecs/components/common/NumberController.js";
7
7
  //# sourceMappingURL=ObservedIntegerEditor.d.ts.map
@@ -1,7 +1,7 @@
1
- export class ObservedStringEditor 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";
1
+ export class ObservedStringEditor 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
7
  //# sourceMappingURL=ObservedStringEditor.d.ts.map
@@ -1,7 +1,7 @@
1
- export class Sampler2DEditor extends TypeEditor<any> {
2
- constructor();
3
- build(parent: any, field: any, context: any): EmptyView;
4
- }
5
- import { TypeEditor } from "../TypeEditor.js";
6
- import EmptyView from "../../../../src/view/elements/EmptyView.js";
1
+ export class Sampler2DEditor extends TypeEditor<any> {
2
+ constructor();
3
+ build(parent: any, field: any, context: any): EmptyView;
4
+ }
5
+ import { TypeEditor } from "../TypeEditor.js";
6
+ import EmptyView from "../../../../src/view/elements/EmptyView.js";
7
7
  //# sourceMappingURL=Sampler2DEditor.d.ts.map
@@ -1,8 +1,8 @@
1
- export class ListEditor extends TypeEditor<any> {
2
- constructor();
3
- build(parent: any, field: any, registry: any): LabelView | NativeListController;
4
- }
5
- import { TypeEditor } from "../../TypeEditor.js";
6
- import LabelView from "../../../../../src/view/common/LabelView.js";
7
- import { NativeListController } from "../../../../../src/view/controller/controls/NativeListController.js";
1
+ export class ListEditor extends TypeEditor<any> {
2
+ constructor();
3
+ build(parent: any, field: any, registry: any): LabelView | NativeListController;
4
+ }
5
+ import { TypeEditor } from "../../TypeEditor.js";
6
+ import LabelView from "../../../../../src/view/common/LabelView.js";
7
+ import { NativeListController } from "../../../../../src/view/controller/controls/NativeListController.js";
8
8
  //# sourceMappingURL=ListEditor.d.ts.map
@@ -1,12 +1,12 @@
1
- export class BitFlagsEditor extends TypeEditor<any> {
2
- /**
3
- *
4
- * @param {Object<number>} definition
5
- */
6
- constructor(definition: any);
7
- definition: any;
8
- build(parent: any, field: any, registry: any): EmptyView;
9
- }
10
- import { TypeEditor } from "../../TypeEditor.js";
11
- import EmptyView from "../../../../../src/view/elements/EmptyView.js";
1
+ export class BitFlagsEditor extends TypeEditor<any> {
2
+ /**
3
+ *
4
+ * @param {Object<number>} definition
5
+ */
6
+ constructor(definition: any);
7
+ definition: any;
8
+ build(parent: any, field: any, registry: any): EmptyView;
9
+ }
10
+ import { TypeEditor } from "../../TypeEditor.js";
11
+ import EmptyView from "../../../../../src/view/elements/EmptyView.js";
12
12
  //# sourceMappingURL=BitFlagsEditor.d.ts.map
@@ -1,8 +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";
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
8
  //# sourceMappingURL=EnumEditor.d.ts.map
@@ -1,15 +1,15 @@
1
- /**
2
- *
3
- * @param {string[]} props
4
- * @param {} value
5
- * @param {Signal} change_signal
6
- */
7
- export function make_row_editor(props: string[], value: any, change_signal?: Signal): EmptyView;
8
- /**
9
- *
10
- * @param {Vector3} v3
11
- * @returns {EmptyView}
12
- */
13
- export function makeV3_editor(v3: Vector3): EmptyView;
14
- import EmptyView from "../../../../../src/view/elements/EmptyView.js";
1
+ /**
2
+ *
3
+ * @param {string[]} props
4
+ * @param {} value
5
+ * @param {Signal} change_signal
6
+ */
7
+ export function make_row_editor(props: string[], value: any, change_signal?: Signal): EmptyView;
8
+ /**
9
+ *
10
+ * @param {Vector3} v3
11
+ * @returns {EmptyView}
12
+ */
13
+ export function makeV3_editor(v3: Vector3): EmptyView;
14
+ import EmptyView from "../../../../../src/view/elements/EmptyView.js";
15
15
  //# sourceMappingURL=makeV3_editor.d.ts.map
@@ -1,3 +1,3 @@
1
- export function noEditor(): TypeEditor<any>;
2
- import { TypeEditor } from "../../TypeEditor.js";
1
+ export function noEditor(): TypeEditor<any>;
2
+ import { TypeEditor } from "../../TypeEditor.js";
3
3
  //# sourceMappingURL=noEditor.d.ts.map
@@ -1,7 +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";
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
7
  //# sourceMappingURL=GridObstacleEditor.d.ts.map
@@ -1,14 +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";
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
14
  //# sourceMappingURL=MinimapMarkerEditor.d.ts.map