@divinevoxel/vlox 0.0.73 → 0.0.75
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/Cache/Cache.types.d.ts +1 -1
- package/Contexts/Base/Remote/InitDataSync.js +7 -3
- package/Contexts/Base/Remote/InitWorldDataSync.d.ts +2 -1
- package/Contexts/Base/Remote/InitWorldDataSync.js +14 -3
- package/Contexts/Generator/DivineVoxelEngineGenerator.d.ts +9 -0
- package/Contexts/Generator/DivineVoxelEngineGenerator.js +14 -0
- package/Contexts/{Constructor/ConstrcutorTheads.d.ts → Generator/GeneratorThreads.d.ts} +2 -2
- package/Contexts/{Constructor/ConstrcutorTheads.js → Generator/GeneratorThreads.js} +2 -2
- package/Contexts/Generator/index.d.ts +1 -0
- package/Contexts/Generator/index.js +1 -0
- package/Contexts/Mesher/DivineVoxelEngineMesher.d.ts +9 -0
- package/Contexts/Mesher/DivineVoxelEngineMesher.js +14 -0
- package/Contexts/Mesher/MesherTheads.d.ts +7 -0
- package/Contexts/Mesher/MesherTheads.js +14 -0
- package/Contexts/Mesher/index.d.ts +1 -0
- package/Contexts/Mesher/index.js +1 -0
- package/Contexts/Nexus/NexusTheads.js +1 -1
- package/Contexts/Render/DVERenderThreads.d.ts +2 -1
- package/Contexts/Render/DVERenderThreads.js +4 -2
- package/Contexts/Render/DivineVoxelEngineRender.d.ts +12 -1
- package/Contexts/Render/DivineVoxelEngineRender.js +9 -4
- package/Contexts/World/DivineVoxelEngineWorld.d.ts +10 -0
- package/Contexts/World/WorldThreads.d.ts +2 -1
- package/Contexts/World/WorldThreads.js +4 -2
- package/Init/StartGenerator.d.ts +2 -0
- package/Init/StartGenerator.js +45 -0
- package/Init/StartMesher.d.ts +2 -0
- package/Init/StartMesher.js +41 -0
- package/Init/StartNexus.js +4 -2
- package/Init/StartRenderer.d.ts +4 -1
- package/Init/StartRenderer.js +59 -14
- package/Init/StartWorld.js +2 -1
- package/LICENSE.md +2 -1
- package/Math/CardinalNeighbors.d.ts +43 -3
- package/Math/CardinalNeighbors.js +54 -8
- package/Math/Indexing.d.ts +1 -0
- package/Math/Location.d.ts +10 -0
- package/Math/UtilFunctions.d.ts +4 -0
- package/Math/UtilFunctions.js +52 -0
- package/Math/index.d.ts +1 -6
- package/Math/index.js +1 -0
- package/Mesher/Functions/Base/MeshSectionBase.d.ts +5 -0
- package/Mesher/Functions/Base/MeshSectionBase.js +105 -0
- package/Mesher/Functions/CompactVoxelSectionMesh.d.ts +4 -0
- package/Mesher/Functions/CompactVoxelSectionMesh.js +106 -0
- package/Mesher/Functions/MeshSection.d.ts +1 -1
- package/Mesher/Functions/MeshSection.js +3 -114
- package/Mesher/Functions/MeshSectionSnapShot.d.ts +3 -0
- package/Mesher/Functions/MeshSectionSnapShot.js +14 -0
- package/Mesher/Functions/MeshTexture.js +8 -4
- package/Mesher/Functions/MeshVoxel.js +10 -4
- package/Mesher/Geomtry/CompactedSectionVoxelMesh.d.ts +26 -0
- package/Mesher/Geomtry/CompactedSectionVoxelMesh.js +149 -0
- package/Mesher/Geomtry/Functions/GetBounds.d.ts +2 -0
- package/Mesher/{Models/Common/BoundsFunctions.js → Geomtry/Functions/GetBounds.js} +13 -13
- package/Mesher/Geomtry/Geometry.types.d.ts +14 -0
- package/Mesher/Geomtry/Geometry.types.js +11 -0
- package/Mesher/Geomtry/Primitives/Quad.d.ts +7 -15
- package/Mesher/Geomtry/Primitives/Quad.js +36 -91
- package/Mesher/Geomtry/Primitives/QuadVertexData.d.ts +4 -14
- package/Mesher/Geomtry/Primitives/QuadVertexData.js +17 -57
- package/Mesher/Geomtry/Primitives/Triangle.d.ts +65 -0
- package/Mesher/Geomtry/Primitives/Triangle.js +148 -0
- package/Mesher/Geomtry/Primitives/TriangleVertexData.d.ts +58 -0
- package/Mesher/Geomtry/Primitives/TriangleVertexData.js +263 -0
- package/Mesher/Geomtry/Primitives/index.d.ts +2 -0
- package/Mesher/Geomtry/Primitives/index.js +2 -0
- package/Mesher/Geomtry/Shapes/Box.d.ts +20 -0
- package/Mesher/Geomtry/Shapes/Box.js +69 -0
- package/Mesher/Geomtry/Transform/TransformBox.d.ts +3 -0
- package/{Models/Shared/Transform.js → Mesher/Geomtry/Transform/TransformBox.js} +9 -124
- package/Mesher/Geomtry/Transform/TransformQuad.d.ts +3 -0
- package/Mesher/Geomtry/Transform/TransformQuad.js +113 -0
- package/Mesher/Geomtry/Transform/TransformTriangle.d.ts +3 -0
- package/Mesher/Geomtry/Transform/TransformTriangle.js +112 -0
- package/Mesher/Geomtry/VoxelGeometryBuilder.d.ts +3 -4
- package/Mesher/Geomtry/VoxelGeometryBuilder.js +140 -203
- package/Mesher/Geomtry/VoxelMesh.js +2 -2
- package/Mesher/Geomtry/VoxelMeshBVHBuilder.d.ts +8 -70
- package/Mesher/Geomtry/VoxelMeshBVHBuilder.js +18 -183
- package/Mesher/Geomtry/VoxelMeshBVHStructCursor.d.ts +22 -0
- package/Mesher/Geomtry/VoxelMeshBVHStructCursor.js +78 -0
- package/Mesher/Geomtry/VoxelMeshBuffers.js +2 -2
- package/Mesher/Geomtry/VoxelMeshVertexStructCursor.d.ts +9 -3
- package/Mesher/Geomtry/VoxelMeshVertexStructCursor.js +26 -3
- package/Mesher/Geomtry/VoxelShaderData.d.ts +4 -1
- package/Mesher/Geomtry/VoxelShaderData.js +25 -10
- package/Mesher/InitMesher.d.ts +1 -1
- package/Mesher/InitMesher.js +6 -0
- package/Mesher/InitTask.js +18 -3
- package/Mesher/Models/Common/Calc/CalcConstants.d.ts +1 -5
- package/Mesher/Models/Common/Calc/CalcConstants.js +2 -76
- package/Mesher/Models/Common/Faces/CullRulledFace.d.ts +2 -0
- package/Mesher/Models/Common/Faces/CullRulledFace.js +60 -0
- package/Mesher/Models/Common/Faces/ShadeRulelessFace.d.ts +4 -0
- package/Mesher/Models/Common/Faces/ShadeRulelessFace.js +12 -0
- package/Mesher/Models/Common/Faces/ShadeRulledFace.d.ts +4 -0
- package/Mesher/Models/Common/Faces/ShadeRulledFace.js +58 -0
- package/Mesher/Models/Common/GetTexture.d.ts +6 -0
- package/Mesher/Models/Common/GetTexture.js +12 -0
- package/Mesher/Models/Nodes/Custom/Liquid/FlowGradient.js +1 -1
- package/Mesher/Models/Nodes/Custom/Liquid/LiquidGeomtryNode.d.ts +2 -3
- package/Mesher/Models/Nodes/Custom/Liquid/LiquidGeomtryNode.js +125 -49
- package/Mesher/Models/Nodes/Default/QuadVoxelGeometryNode.d.ts +13 -0
- package/Mesher/Models/Nodes/Default/QuadVoxelGeometryNode.js +55 -0
- package/Mesher/Models/Nodes/Default/TriangleVoxelGeometryNode.d.ts +13 -0
- package/Mesher/Models/Nodes/Default/TriangleVoxelGeometryNode.js +52 -0
- package/Mesher/Models/Nodes/GeometryNode.d.ts +2 -8
- package/Mesher/Models/Nodes/GeometryNode.js +1 -7
- package/Mesher/Models/Nodes/Types/GeomtryNode.types.d.ts +7 -0
- package/Mesher/Models/Nodes/Types/QuadVoxelGometryNodeTypes.d.ts +29 -0
- package/{Models/Input/QuadVoxelGometryInputs.js → Mesher/Models/Nodes/Types/QuadVoxelGometryNodeTypes.js} +4 -8
- package/Mesher/Models/Nodes/Types/TriangleVoxelGometryNodeTypes.d.ts +28 -0
- package/Mesher/Models/Nodes/Types/TriangleVoxelGometryNodeTypes.js +24 -0
- package/Mesher/Models/Nodes/VoxelGeometryConstructor.d.ts +4 -8
- package/Mesher/Models/Nodes/VoxelGeometryConstructor.js +16 -52
- package/Mesher/Models/Procedures/Default/ConsistentRotationTextureProcedure.d.ts +25 -0
- package/Mesher/Models/Procedures/Default/ConsistentRotationTextureProcedure.js +44 -0
- package/Mesher/Models/Procedures/Default/OutlinedTextureProcedure.d.ts +28 -0
- package/Mesher/Models/Procedures/Default/OutlinedTextureProcedure.js +162 -0
- package/Mesher/Models/Procedures/TextureProcedure.d.ts +16 -0
- package/Mesher/Models/Procedures/TextureProcedure.js +2 -0
- package/Mesher/Models/Procedures/TextureProcedureRegister.d.ts +6 -0
- package/Mesher/Models/Procedures/TextureProcedureRegister.js +16 -0
- package/Mesher/Models/VoxelConstructor.d.ts +2 -6
- package/Mesher/Models/VoxelConstructor.js +5 -15
- package/Mesher/Models/VoxelGeometryBuilderCacheSpace.d.ts +2 -2
- package/Mesher/Models/VoxelGeometryBuilderCacheSpace.js +10 -11
- package/Mesher/Models/VoxelModelBuilder.d.ts +0 -1
- package/Mesher/Models/VoxelModelBuilder.js +2 -10
- package/Mesher/Models/VoxelModelConstructorRegister.d.ts +8 -2
- package/Mesher/Models/VoxelModelConstructorRegister.js +6 -8
- package/Mesher/Types/Mesher.types.d.ts +1 -0
- package/Renderer/Classes/DVESectionMeshes.d.ts +2 -3
- package/Renderer/Classes/SectionMesh.d.ts +2 -3
- package/Renderer/Classes/SectionMesh.js +13 -10
- package/Renderer/Classes/SectorMesh.d.ts +5 -5
- package/Renderer/Classes/SectorMesh.js +17 -6
- package/Renderer/InitTasks.d.ts +1 -2
- package/Renderer/InitTasks.js +5 -19
- package/Renderer/MeshManager.d.ts +7 -2
- package/Renderer/MeshManager.js +34 -36
- package/Renderer/MeshRegister.d.ts +10 -8
- package/Renderer/MeshRegister.js +36 -45
- package/Settings/EngineSettings.d.ts +1 -0
- package/Settings/EngineSettings.js +9 -3
- package/Settings/EngineSettings.types.d.ts +14 -22
- package/Settings/EngineSettings.types.js +11 -15
- package/Stats/EngineStats.d.ts +19 -0
- package/Stats/EngineStats.js +27 -0
- package/Tasks/Paint/Common.d.ts +7 -0
- package/Tasks/Paint/Common.js +200 -0
- package/Tasks/Paint/Erase/EraseVoxel.d.ts +3 -0
- package/Tasks/Paint/Erase/EraseVoxel.js +31 -0
- package/Tasks/Paint/Erase/EraseVoxelPath.d.ts +4 -0
- package/Tasks/Paint/Erase/EraseVoxelPath.js +80 -0
- package/Tasks/Paint/Erase/EraseVoxelTemplate.d.ts +4 -0
- package/Tasks/Paint/Erase/EraseVoxelTemplate.js +34 -0
- package/Tasks/Paint/InitTasks.d.ts +1 -0
- package/Tasks/Paint/InitTasks.js +16 -0
- package/Tasks/Paint/Paint/PaintVoxel.d.ts +4 -0
- package/Tasks/Paint/Paint/PaintVoxel.js +29 -0
- package/Tasks/Paint/Paint/PaintVoxelPath.d.ts +4 -0
- package/Tasks/Paint/Paint/PaintVoxelPath.js +78 -0
- package/Tasks/Paint/Paint/PaintVoxelTemplate.d.ts +4 -0
- package/Tasks/Paint/Paint/PaintVoxelTemplate.js +36 -0
- package/Tasks/Propagation/Flow/FlowManager.d.ts +4 -4
- package/Tasks/Propagation/Flow/FlowRemove.d.ts +2 -2
- package/Tasks/Propagation/Flow/FlowUpdate.d.ts +2 -2
- package/Tasks/Propagation/Flow/FlowUpdate.js +1 -1
- package/Tasks/Propagation/Flow/WorldFlow.d.ts +2 -2
- package/Tasks/Propagation/Flow/WorldFlow.js +2 -2
- package/Tasks/Propagation/Illumanation/CommonFunctions.d.ts +6 -6
- package/Tasks/Propagation/Illumanation/CommonFunctions.js +6 -7
- package/Tasks/Propagation/Illumanation/RGBUpdate.d.ts +3 -3
- package/Tasks/Propagation/Illumanation/RGBUpdate.js +9 -9
- package/Tasks/Propagation/Illumanation/SunUpdate.d.ts +3 -3
- package/Tasks/Propagation/Illumanation/SunUpdate.js +8 -7
- package/Tasks/Propagation/Illumanation/WorldRGB.d.ts +2 -2
- package/Tasks/Propagation/Illumanation/WorldSun.d.ts +2 -2
- package/Tasks/Propagation/Illumanation/WorldSun.js +19 -24
- package/Tasks/Propagation/InitTasks.js +17 -29
- package/Tasks/Propagation/Power/PowerUpdate.d.ts +3 -0
- package/Tasks/Propagation/Power/PowerUpdate.js +80 -0
- package/Tasks/Tasks.types.d.ts +26 -10
- package/Tasks/TasksIds.d.ts +13 -19
- package/Tasks/TasksIds.js +13 -19
- package/Tasks/{Update/UpdateTask.d.ts → VoxelUpdateTask.d.ts} +21 -12
- package/Tasks/{Update/UpdateTask.js → VoxelUpdateTask.js} +72 -43
- package/Tasks/WorldGeneration/InitTasks.d.ts +4 -1
- package/Tasks/WorldGeneration/InitTasks.js +6 -3
- package/Tasks/WorldGeneration/WorldGen.types.d.ts +2 -3
- package/Tasks/WorldGeneration/WorldGenBrush.d.ts +3 -3
- package/Tasks/WorldGeneration/WorldGenBrush.js +8 -9
- package/Tasks/WorldGeneration/WorldGenRegister.d.ts +4 -2
- package/Tasks/WorldGeneration/WorldGenRegister.js +13 -3
- package/Tasks/WorldGeneration/WorldGeneration.d.ts +2 -2
- package/Tasks/WorldGeneration/WorldGeneration.js +22 -3
- package/Templates/Archive/ArchivedVoxelTemplate.d.ts +37 -0
- package/Templates/Archive/ArchivedVoxelTemplate.js +124 -0
- package/Templates/Archive/ArchivedVoxelTemplate.types.d.ts +45 -0
- package/Templates/Archive/ArchivedVoxelTemplate.types.js +1 -0
- package/Templates/Archive/Functions/CreateArchivedTemplate.d.ts +11 -0
- package/Templates/Archive/Functions/CreateArchivedTemplate.js +184 -0
- package/Templates/Archive/Functions/ExportArchiedTemplateJSON.d.ts +2 -0
- package/Templates/Archive/Functions/ExportArchiedTemplateJSON.js +44 -0
- package/Templates/Archive/Functions/ImportArchivedTemplateJSON.d.ts +2 -0
- package/Templates/Archive/Functions/ImportArchivedTemplateJSON.js +37 -0
- package/Templates/Cursor/TemplateCursor.d.ts +5 -3
- package/Templates/Cursor/TemplateCursor.js +8 -4
- package/Templates/Cursor/TemplateProxy.d.ts +10 -0
- package/Templates/Cursor/TemplateProxy.js +22 -0
- package/Templates/Cursor/TemplateVoxelCursor.d.ts +5 -7
- package/Templates/Cursor/TemplateVoxelCursor.js +7 -13
- package/Templates/Full/FullVoxelTemplate.d.ts +27 -0
- package/Templates/Full/FullVoxelTemplate.js +108 -0
- package/Templates/Full/FullVoxelTemplate.types.d.ts +5 -0
- package/Templates/Full/FullVoxelTemplate.types.js +1 -0
- package/Templates/Full/Functions/CreateFullTemplate.d.ts +3 -0
- package/Templates/Full/Functions/CreateFullTemplate.js +27 -0
- package/Templates/Functions/FlipTemplate.d.ts +2 -2
- package/Templates/Functions/FlipTemplate.js +1 -9
- package/Templates/Functions/RotateTemplate.d.ts +2 -2
- package/Templates/Functions/RotateTemplate.js +2 -10
- package/Templates/Functions/index.d.ts +1 -1
- package/Templates/Functions/index.js +1 -1
- package/Templates/Path/VoxelPath.d.ts +34 -0
- package/Templates/Path/VoxelPath.js +127 -0
- package/Templates/Path/VoxelPath.types.d.ts +10 -0
- package/Templates/Path/VoxelPath.types.js +1 -0
- package/Templates/Selection/VoxelBFSSelection.d.ts +20 -0
- package/Templates/Selection/VoxelBFSSelection.js +130 -0
- package/Templates/Selection/VoxelBoxSelection.d.ts +14 -0
- package/Templates/Selection/VoxelBoxSelection.js +105 -0
- package/Templates/Selection/VoxelSelecton.d.ts +6 -0
- package/Templates/Selection/VoxelSelecton.js +1 -0
- package/Templates/Selection/VoxelSurfaceSelection.d.ts +27 -0
- package/Templates/Selection/VoxelSurfaceSelection.js +206 -0
- package/Templates/Selection/VoxelTemplateSelection.d.ts +10 -0
- package/Templates/Selection/VoxelTemplateSelection.js +26 -0
- package/Templates/Shapes/BasicVoxelShapeTemplate.d.ts +35 -0
- package/Templates/Shapes/BasicVoxelShapeTemplate.js +126 -0
- package/Templates/Shapes/BoxVoxelTemplate.d.ts +22 -0
- package/Templates/Shapes/BoxVoxelTemplate.js +75 -0
- package/Templates/Shapes/ConeVoxelTemplate.d.ts +22 -0
- package/Templates/Shapes/ConeVoxelTemplate.js +69 -0
- package/Templates/Shapes/CylinderVoxelTemplate.d.ts +22 -0
- package/Templates/Shapes/CylinderVoxelTemplate.js +69 -0
- package/Templates/Shapes/OctahedronVoxelTemplate.d.ts +22 -0
- package/Templates/Shapes/OctahedronVoxelTemplate.js +69 -0
- package/Templates/Shapes/PyramidVoxelTemplate.d.ts +30 -0
- package/Templates/Shapes/PyramidVoxelTemplate.js +140 -0
- package/Templates/Shapes/SphereVoxelTemplate.d.ts +24 -0
- package/Templates/Shapes/SphereVoxelTemplate.js +97 -0
- package/Templates/Shapes/TorusVoxelTemplate.d.ts +22 -0
- package/Templates/Shapes/TorusVoxelTemplate.js +69 -0
- package/Templates/Shapes/VoxelShapeTemplate.types.d.ts +25 -0
- package/Templates/Shapes/VoxelShapeTemplate.types.js +1 -0
- package/Templates/VoxelTempateRegister.d.ts +6 -0
- package/Templates/VoxelTempateRegister.js +30 -0
- package/Templates/VoxelTemplates.types.d.ts +23 -26
- package/Templates/index.d.ts +1 -1
- package/Templates/index.js +1 -1
- package/Textures/Classes/CompiledTexture.d.ts +3 -0
- package/Textures/Classes/CompiledTexture.js +3 -0
- package/Textures/Classes/CompiledTextureAnimation.d.ts +1 -1
- package/Textures/Classes/CompiledTextureAnimation.js +8 -2
- package/Textures/Functions/BuildTextureData.d.ts +2 -1
- package/Textures/Functions/BuildTextureData.js +86 -17
- package/Textures/Texture.types.d.ts +5 -1
- package/Textures/TextureManager.d.ts +2 -1
- package/Textures/TextureManager.js +5 -2
- package/Tools/Brush/AdvancedBrushTool.d.ts +1 -5
- package/Tools/Brush/AdvancedBrushTool.js +3 -31
- package/Tools/Brush/Brush.d.ts +10 -4
- package/Tools/Brush/Brush.js +62 -37
- package/Tools/Tasks/TasksTool.d.ts +49 -19
- package/Tools/Tasks/TasksTool.js +87 -21
- package/Util/Binary/BinaryArrays.d.ts +2 -0
- package/Util/Binary/BinaryArrays.js +15 -0
- package/Util/Binary/BinaryFunctions.d.ts +3 -0
- package/Util/Binary/BinaryFunctions.js +18 -0
- package/Util/BinaryBuffer/BinaryBuffer.d.ts +30 -0
- package/Util/BinaryBuffer/BinaryBuffer.js +78 -0
- package/Util/BinaryBuffer/BinaryBuffer.types.d.ts +37 -0
- package/Util/BinaryBuffer/BinaryBuffer.types.js +28 -0
- package/Util/BinaryBuffer/Functions/BinaryBufferConvert.d.ts +5 -0
- package/Util/BinaryBuffer/Functions/BinaryBufferConvert.js +60 -0
- package/Util/BinaryBuffer/Functions/BinaryBufferJSON.d.ts +3 -0
- package/Util/BinaryBuffer/Functions/BinaryBufferJSON.js +64 -0
- package/Util/BinaryBuffer/Functions/BinaryBufferRead.d.ts +3 -0
- package/Util/BinaryBuffer/Functions/BinaryBufferRead.js +26 -0
- package/Util/BinaryBuffer/Functions/BinaryBufferToTypedArray.d.ts +2 -0
- package/Util/BinaryBuffer/Functions/BinaryBufferToTypedArray.js +43 -0
- package/Util/BinaryBuffer/index.d.ts +2 -0
- package/Util/BinaryBuffer/index.js +2 -0
- package/Util/FlatBinaryTreeIndex.d.ts +46 -0
- package/Util/FlatBinaryTreeIndex.js +104 -0
- package/Util/LocationData.d.ts +3 -0
- package/Util/LocationData.js +16 -0
- package/Util/PriorityQueue.d.ts +18 -0
- package/Util/PriorityQueue.js +62 -0
- package/Util/TickInterval.d.ts +16 -0
- package/Util/TickInterval.js +49 -0
- package/Util/TypedEventTarget.d.ts +1 -0
- package/Util/TypedEventTarget.js +3 -0
- package/Util/Util.types.d.ts +4 -0
- package/Util/WorkItemProgress.d.ts +23 -0
- package/Util/WorkItemProgress.js +52 -0
- package/Voxels/Archive/VoxelArchive.types.d.ts +43 -0
- package/Voxels/Archive/VoxelArchive.types.js +6 -0
- package/Voxels/Archive/VoxelPaletteArchiveReader.d.ts +11 -0
- package/Voxels/Archive/VoxelPaletteArchiveReader.js +73 -0
- package/Voxels/Archive/VoxelPaletteArechive.d.ts +15 -0
- package/Voxels/Archive/VoxelPaletteArechive.js +81 -0
- package/Voxels/Cursor/DataCursor.interface.d.ts +1 -0
- package/Voxels/Cursor/VoxelCursor.d.ts +6 -7
- package/Voxels/Cursor/VoxelCursor.interface.d.ts +28 -24
- package/Voxels/Cursor/VoxelCursor.interface.js +114 -75
- package/Voxels/Cursor/VoxelCursor.js +22 -12
- package/Voxels/Cursor/VoxelLightData.d.ts +2 -0
- package/Voxels/Cursor/VoxelLightData.js +3 -1
- package/Voxels/Data/VoxelPalettesRegister.d.ts +11 -1
- package/Voxels/Data/VoxelPalettesRegister.js +17 -1
- package/Voxels/Data/VoxelPropertiesRegister.d.ts +4 -0
- package/Voxels/Data/VoxelPropertiesRegister.js +3 -0
- package/Voxels/Data/VoxelTag.types.d.ts +23 -2
- package/Voxels/Data/VoxelTag.types.js +9 -1
- package/Voxels/Data/VoxelTagsRegister.js +8 -0
- package/Voxels/Functions/BuildPaletteData.d.ts +6 -0
- package/Voxels/Functions/BuildPaletteData.js +87 -0
- package/Voxels/Functions/BuildStateData.d.ts +10 -12
- package/Voxels/Functions/BuildStateData.js +55 -109
- package/Voxels/Functions/{BuildTagAndPaletteData.d.ts → BuildTagData.d.ts} +2 -2
- package/Voxels/Functions/{BuildTagAndPaletteData.js → BuildTagData.js} +28 -2
- package/Voxels/Indexes/VoxelIndex.d.ts +3 -3
- package/Voxels/Indexes/VoxelIndex.js +20 -21
- package/Voxels/InitVoxelData.d.ts +1 -1
- package/Voxels/InitVoxelData.js +50 -48
- package/Voxels/Interaction/Functions/PickVoxel.d.ts +9 -0
- package/Voxels/Interaction/Functions/PickVoxel.js +95 -0
- package/Voxels/Interaction/Functions/PickVoxelWorld.d.ts +8 -0
- package/Voxels/Interaction/Functions/PickVoxelWorld.js +66 -0
- package/Voxels/Interaction/Placing/VoxelPlacingStrategy.d.ts +9 -0
- package/Voxels/Interaction/Placing/VoxelPlacingStrategy.js +58 -0
- package/Voxels/Interaction/Placing/VoxelPlacingStrategy.types.d.ts +15 -0
- package/Voxels/Interaction/Placing/VoxelPlacingStrategy.types.js +1 -0
- package/Voxels/Interaction/Placing/VoxelPlacingStrategyRegister.d.ts +7 -0
- package/Voxels/Interaction/Placing/VoxelPlacingStrategyRegister.js +13 -0
- package/Voxels/Interaction/VoxelPickResult.d.ts +50 -0
- package/Voxels/Interaction/VoxelPickResult.js +55 -0
- package/Voxels/Logic/Classes/Types/VoxelLogicPoweredType.d.ts +8 -0
- package/Voxels/Logic/Classes/Types/VoxelLogicPoweredType.js +13 -0
- package/Voxels/Logic/Classes/Types/VoxelLogicStateType.d.ts +9 -0
- package/Voxels/Logic/Classes/Types/VoxelLogicStateType.js +23 -0
- package/Voxels/Logic/Classes/VoxelLogic.d.ts +14 -0
- package/Voxels/Logic/Classes/VoxelLogic.js +47 -0
- package/Voxels/Logic/Classes/VoxelLogicType.d.ts +14 -0
- package/Voxels/Logic/Classes/VoxelLogicType.js +8 -0
- package/Voxels/Logic/VoxelLogic.types.d.ts +25 -0
- package/Voxels/Logic/VoxelLogic.types.js +1 -0
- package/Voxels/Logic/VoxelLogicRegister.d.ts +10 -0
- package/Voxels/Logic/VoxelLogicRegister.js +23 -0
- package/Voxels/Models/CompiledVoxelModel.types.d.ts +46 -0
- package/Voxels/Models/CompiledVoxelModel.types.js +1 -0
- package/{Models → Voxels/Models}/Defaults/CubeVoxelGeometry.js +0 -30
- package/{Models → Voxels/Models}/Defaults/CubeVoxelModels.d.ts +2 -0
- package/{Models → Voxels/Models}/Defaults/CubeVoxelModels.js +202 -109
- package/{Models → Voxels/Models/Defaults}/Examples.d.ts +1 -1
- package/{Models → Voxels/Models/Defaults}/Examples.js +73 -191
- package/Voxels/Models/Defaults/FarmVoxelModels.d.ts +3 -0
- package/Voxels/Models/Defaults/FarmVoxelModels.js +349 -0
- package/{Models → Voxels/Models}/Defaults/LiquidVoxelModel.js +6 -4
- package/{Models → Voxels/Models}/Defaults/PanelVoxelGeometry.js +2 -92
- package/{Models → Voxels/Models}/Defaults/PanelVoxelModels.d.ts +1 -0
- package/{Models → Voxels/Models}/Defaults/PanelVoxelModels.js +62 -216
- package/{Models → Voxels/Models}/Defaults/StairVoxelModel.js +64 -169
- package/Voxels/Models/Indexing/AOOcclusionFaceIndex.d.ts +12 -0
- package/Voxels/Models/Indexing/AOOcclusionFaceIndex.js +28 -0
- package/Voxels/Models/Indexing/CulledOcclusionFaceIndex.d.ts +12 -0
- package/Voxels/Models/Indexing/CulledOcclusionFaceIndex.js +27 -0
- package/Voxels/Models/Rules/Classes/GeomtryInput.d.ts +13 -0
- package/Voxels/Models/Rules/Classes/GeomtryInput.js +64 -0
- package/Voxels/Models/Rules/Classes/OcclusionFace.d.ts +10 -0
- package/Voxels/Models/Rules/Classes/OcclusionFace.js +5 -0
- package/Voxels/Models/Rules/Classes/OcclusionFaceRegister.d.ts +18 -0
- package/Voxels/Models/Rules/Classes/OcclusionFaceRegister.js +33 -0
- package/Voxels/Models/Rules/Classes/OcclusionQuadFace.d.ts +14 -0
- package/Voxels/Models/Rules/Classes/OcclusionQuadFace.js +118 -0
- package/Voxels/Models/Rules/Classes/OcclusionTriangleFace.d.ts +14 -0
- package/Voxels/Models/Rules/Classes/OcclusionTriangleFace.js +114 -0
- package/Voxels/Models/Rules/Classes/VoxelRulesGeometry.d.ts +22 -0
- package/Voxels/Models/Rules/Classes/VoxelRulesGeometry.js +15 -0
- package/{Models → Voxels/Models}/Rules/Classes/VoxelRulesModel.d.ts +4 -3
- package/{Models → Voxels/Models}/Rules/Classes/VoxelRulesModel.js +3 -3
- package/Voxels/Models/Rules/Functions/BuildFinalInputs.d.ts +5 -0
- package/Voxels/Models/Rules/Functions/BuildFinalInputs.js +72 -0
- package/Voxels/Models/Rules/Functions/BuildRules.d.ts +7 -0
- package/Voxels/Models/Rules/Functions/BuildRules.js +217 -0
- package/Voxels/Models/Rules/Functions/Compile/CompileGeomtryNodes.d.ts +4 -0
- package/Voxels/Models/Rules/Functions/Compile/CompileGeomtryNodes.js +39 -0
- package/Voxels/Models/Rules/Functions/Compile/Nodes/CalcFunctions.d.ts +8 -0
- package/Voxels/Models/Rules/Functions/Compile/Nodes/CalcFunctions.js +106 -0
- package/Voxels/Models/Rules/Functions/Compile/Nodes/CompileBoxGeometryNode.d.ts +5 -0
- package/Voxels/Models/Rules/Functions/Compile/Nodes/CompileBoxGeometryNode.js +14 -0
- package/Voxels/Models/Rules/Functions/Compile/Nodes/CompileQuadGeometryNode.d.ts +6 -0
- package/Voxels/Models/Rules/Functions/Compile/Nodes/CompileQuadGeometryNode.js +92 -0
- package/Voxels/Models/Rules/Functions/Compile/Nodes/CompileTriangleGeometryNode.d.ts +6 -0
- package/Voxels/Models/Rules/Functions/Compile/Nodes/CompileTriangleGeometryNode.js +115 -0
- package/{Models → Voxels/Models}/Rules/VoxelModelRuleBuilderRegister.d.ts +1 -1
- package/{Models → Voxels/Models}/Rules/VoxelModelRuleBuilderRegister.js +35 -11
- package/{Models → Voxels/Models}/VoxelModel.types.d.ts +58 -47
- package/Voxels/Models/VoxelModel.types.js +1 -0
- package/Voxels/State/Schema/BinarySchema.d.ts +5 -3
- package/Voxels/State/Schema/BinarySchema.js +23 -8
- package/Voxels/State/Schema/BinarySchemaNode.d.ts +3 -3
- package/Voxels/State/Schema/BinarySchemaNode.js +6 -6
- package/Voxels/State/Schema/ShapeStateRelationsNode.d.ts +3 -3
- package/Voxels/State/Schema/ShapeStateRelationsNode.js +2 -2
- package/Voxels/State/Schema/StateSchema.d.ts +2 -2
- package/Voxels/State/Schema/StateSchema.js +5 -7
- package/Voxels/State/SchemaRegister.d.ts +8 -6
- package/Voxels/State/SchemaRegister.js +41 -24
- package/Voxels/State/State.types.d.ts +19 -23
- package/Voxels/State/StateTreeReader.d.ts +1 -1
- package/Voxels/State/StateTreeReader.js +2 -3
- package/Voxels/Types/PaintVoxelData.d.ts +17 -0
- package/Voxels/Types/PaintVoxelData.js +73 -0
- package/Voxels/Types/Voxel.types.d.ts +15 -25
- package/Voxels/Types/Voxel.types.js +1 -23
- package/Voxels/Types/VoxelModelCompiledData.types.d.ts +7 -73
- package/Voxels/index.d.ts +1 -0
- package/Voxels/index.js +1 -0
- package/World/Archive/Classes/ArchiveClasses.d.ts +43 -0
- package/World/Archive/Classes/ArchiveClasses.js +53 -0
- package/World/Archive/Classes/ImportedSection.d.ts +31 -0
- package/World/Archive/Classes/ImportedSection.js +169 -0
- package/World/Archive/Classes/ImportedSector.d.ts +21 -0
- package/World/Archive/Classes/ImportedSector.js +50 -0
- package/World/Archive/Functions/Area/ArchiveArea.d.ts +8 -0
- package/World/Archive/Functions/Area/ArchiveArea.js +65 -0
- package/World/Archive/Functions/{ArchiveArea.d.ts → Area/ImportArea.d.ts} +1 -8
- package/World/Archive/Functions/Area/ImportArea.js +59 -0
- package/World/Archive/Functions/JSON/ExportArchivedAreaJSON.d.ts +2 -0
- package/World/Archive/Functions/JSON/ExportArchivedAreaJSON.js +100 -0
- package/World/Archive/Functions/JSON/ImportArchivedAreaJSON.d.ts +2 -0
- package/World/Archive/Functions/JSON/ImportArchivedAreaJSON.js +100 -0
- package/World/Archive/Functions/Sector/ArchiveSector.d.ts +7 -0
- package/World/Archive/Functions/Sector/ArchiveSector.js +209 -0
- package/World/Archive/Functions/Sector/CreateArchivedSection.d.ts +3 -0
- package/World/Archive/Functions/Sector/CreateArchivedSection.js +147 -0
- package/World/Archive/Functions/Sector/ImportSector.d.ts +7 -0
- package/World/Archive/Functions/Sector/ImportSector.js +32 -0
- package/World/Archive/Functions/Sector/RemoveDuplicateSections.d.ts +2 -0
- package/World/Archive/Functions/Sector/RemoveDuplicateSections.js +137 -0
- package/World/Archive/Functions/Shared/BaseData.d.ts +2 -0
- package/World/Archive/Functions/Shared/BaseData.js +14 -0
- package/World/Archive/Functions/Shared/IntToString.d.ts +1 -0
- package/World/Archive/Functions/Shared/IntToString.js +13 -0
- package/World/Archive/Functions/{Shared.d.ts → Shared/LightSegments.d.ts} +2 -3
- package/World/Archive/Functions/Shared/LightSegments.js +37 -0
- package/World/Archive/Functions/Shared/index.d.ts +3 -0
- package/World/Archive/Functions/Shared/index.js +3 -0
- package/World/Archive/Functions/index.d.ts +3 -3
- package/World/Archive/Functions/index.js +3 -3
- package/World/Archive/InitTasks.js +21 -33
- package/World/Archive/Types/Archive.types.d.ts +45 -0
- package/World/Archive/Types/Archive.types.js +1 -0
- package/World/Archive/Types/ArchiveArea.types.d.ts +38 -0
- package/World/Archive/Types/ArchiveArea.types.js +1 -0
- package/World/Archive/Types/ArchiveJSON.types.d.ts +52 -0
- package/World/Archive/Types/ArchiveJSON.types.js +1 -0
- package/World/Archive/Types/ArchivedSector.types.d.ts +43 -0
- package/World/Archive/Types/ArchivedSector.types.js +1 -0
- package/World/Archive/Types/index.d.ts +4 -0
- package/World/Archive/Types/index.js +4 -0
- package/World/Archive/index.d.ts +1 -1
- package/World/Archive/index.js +1 -1
- package/World/Cursor/SectionCursor.d.ts +4 -3
- package/World/Cursor/SectionCursor.js +13 -11
- package/World/Cursor/SectorCursor.d.ts +4 -2
- package/World/Cursor/SectorCursor.js +11 -1
- package/World/Cursor/WorldCursor.d.ts +5 -3
- package/World/Cursor/WorldCursor.js +23 -17
- package/World/Cursor/WorldVoxelCursor.d.ts +1 -7
- package/World/Cursor/WorldVoxelCursor.js +4 -15
- package/World/Dimension/Dimension.d.ts +4 -1
- package/World/Dimension/Dimension.js +8 -1
- package/World/InitTasks.js +52 -40
- package/World/Lock/Function/LockSectors.d.ts +2 -0
- package/World/Lock/Function/LockSectors.js +28 -0
- package/World/Lock/Function/UnLockSectors.d.ts +2 -0
- package/World/Lock/Function/UnLockSectors.js +28 -0
- package/World/Lock/WorldLock.d.ts +1 -2
- package/World/Lock/WorldLock.js +3 -1
- package/World/Section/Section.d.ts +20 -12
- package/World/Section/Section.js +77 -91
- package/World/Section/SectionState.d.ts +8 -2
- package/World/Section/SectionState.js +9 -2
- package/World/Sector/Sector.d.ts +26 -6
- package/World/Sector/Sector.js +100 -48
- package/World/Sector/SectorHeightMap.d.ts +1 -1
- package/World/Sector/SectorHeightMap.js +6 -6
- package/World/Sector/SectorState.d.ts +4 -2
- package/World/Sector/SectorState.js +4 -2
- package/World/SnapShot/SectionSnapShot.d.ts +19 -0
- package/World/SnapShot/SectionSnapShot.js +72 -0
- package/World/SnapShot/SectionSnapShotCursor.d.ts +23 -0
- package/World/SnapShot/SectionSnapShotCursor.js +107 -0
- package/World/SnapShot/SnapShots.d.ts +11 -0
- package/World/SnapShot/SnapShots.js +24 -0
- package/World/Types/WorldData.types.d.ts +2 -7
- package/World/Types/WorldDataSyncIds.d.ts +2 -0
- package/World/Types/WorldDataSyncIds.js +2 -0
- package/World/WorldRegister.d.ts +25 -13
- package/World/WorldRegister.js +56 -29
- package/World/WorldSpaces.d.ts +20 -0
- package/World/WorldSpaces.js +39 -6
- package/WorldSimulation/Dimensions/DimensionSegment.d.ts +38 -0
- package/WorldSimulation/Dimensions/DimensionSegment.js +120 -0
- package/WorldSimulation/Dimensions/DimensionSimulation.d.ts +26 -0
- package/WorldSimulation/Dimensions/DimensionSimulation.js +95 -0
- package/{Tasks/IWG/Internal/Classes → WorldSimulation/Dimensions}/Generator.d.ts +7 -9
- package/{Tasks/IWG/Internal/Classes → WorldSimulation/Dimensions}/Generator.js +11 -18
- package/{Tasks/IWG/Internal/Classes → WorldSimulation/Dimensions}/SectorState.d.ts +4 -0
- package/WorldSimulation/Dimensions/SectorState.js +56 -0
- package/WorldSimulation/Dimensions/SimulationSector.d.ts +30 -0
- package/WorldSimulation/Dimensions/SimulationSector.js +214 -0
- package/WorldSimulation/Internal/WorldSimulationDimensions.d.ts +6 -0
- package/{Tasks/IWG/Internal/IWGDimensions.js → WorldSimulation/Internal/WorldSimulationDimensions.js} +5 -4
- package/WorldSimulation/Internal/WorldSimulationTasks.d.ts +35 -0
- package/WorldSimulation/Internal/WorldSimulationTasks.js +200 -0
- package/WorldSimulation/Internal/WorldSimulationTools.d.ts +8 -0
- package/{Tasks/IWG/Internal/IWGTools.js → WorldSimulation/Internal/WorldSimulationTools.js} +1 -1
- package/WorldSimulation/Internal/runActiveSectorUpdate.d.ts +1 -0
- package/WorldSimulation/Internal/runActiveSectorUpdate.js +106 -0
- package/{Tasks/IWG → WorldSimulation}/Procedures/InitalLoad.d.ts +2 -2
- package/{Tasks/IWG → WorldSimulation}/Procedures/InitalLoad.js +16 -14
- package/{Tasks/IWG → WorldSimulation}/Procedures/SaveAllSectors.js +5 -5
- package/WorldSimulation/Tasks/SimulationTaskBase.d.ts +19 -0
- package/WorldSimulation/Tasks/SimulationTaskBase.js +50 -0
- package/WorldSimulation/Tasks/TaskRegister.d.ts +7 -0
- package/{Tasks/IWG/Internal → WorldSimulation/Tasks}/TaskRegister.js +3 -3
- package/WorldSimulation/Tasks/TaskSegment.d.ts +20 -0
- package/WorldSimulation/Tasks/TaskSegment.js +83 -0
- package/WorldSimulation/Tick/TickQueue.d.ts +9 -0
- package/WorldSimulation/Tick/TickQueue.js +31 -0
- package/WorldSimulation/Tools/SimulationBrush.d.ts +25 -0
- package/WorldSimulation/Tools/SimulationBrush.js +203 -0
- package/WorldSimulation/Voxels/Behaviors/Types/CropVoxelBehavior.d.ts +1 -0
- package/WorldSimulation/Voxels/Behaviors/Types/CropVoxelBehavior.js +23 -0
- package/WorldSimulation/Voxels/Behaviors/Types/DefaultVoxelBehavior.d.ts +1 -0
- package/WorldSimulation/Voxels/Behaviors/Types/DefaultVoxelBehavior.js +10 -0
- package/WorldSimulation/Voxels/Behaviors/Types/FarmlandVoxelBehavior.d.ts +1 -0
- package/WorldSimulation/Voxels/Behaviors/Types/FarmlandVoxelBehavior.js +73 -0
- package/WorldSimulation/Voxels/Behaviors/Types/LiquidVoxelBehavior.d.ts +1 -0
- package/WorldSimulation/Voxels/Behaviors/Types/LiquidVoxelBehavior.js +21 -0
- package/WorldSimulation/Voxels/Behaviors/Types/index.d.ts +4 -0
- package/WorldSimulation/Voxels/Behaviors/Types/index.js +4 -0
- package/WorldSimulation/Voxels/Behaviors/VoxelBehaviors.d.ts +18 -0
- package/WorldSimulation/Voxels/Behaviors/VoxelBehaviors.js +30 -0
- package/WorldSimulation/Voxels/Behaviors/VoxelBehaviorsRegister.d.ts +6 -0
- package/WorldSimulation/Voxels/Behaviors/VoxelBehaviorsRegister.js +25 -0
- package/WorldSimulation/Voxels/Behaviors/VoxelUpdate.d.ts +10 -0
- package/WorldSimulation/Voxels/Behaviors/VoxelUpdate.js +1 -0
- package/WorldSimulation/Voxels/Behaviors/index.d.ts +4 -0
- package/WorldSimulation/Voxels/Behaviors/index.js +4 -0
- package/WorldSimulation/Voxels/Ticks/Types/LiquidVoxelUpdate.d.ts +1 -0
- package/WorldSimulation/Voxels/Ticks/Types/LiquidVoxelUpdate.js +163 -0
- package/WorldSimulation/Voxels/Ticks/Types/index.d.ts +1 -0
- package/WorldSimulation/Voxels/Ticks/Types/index.js +1 -0
- package/WorldSimulation/Voxels/Ticks/VoxelTickUpdate.d.ts +8 -0
- package/WorldSimulation/Voxels/Ticks/VoxelTickUpdate.js +14 -0
- package/WorldSimulation/Voxels/Ticks/VoxelTickUpdateRegister.d.ts +6 -0
- package/WorldSimulation/Voxels/Ticks/VoxelTickUpdateRegister.js +13 -0
- package/WorldSimulation/Voxels/Ticks/VoxelTickUpdateType.d.ts +12 -0
- package/WorldSimulation/Voxels/Ticks/VoxelTickUpdateType.js +10 -0
- package/WorldSimulation/Voxels/Ticks/index.d.ts +4 -0
- package/WorldSimulation/Voxels/Ticks/index.js +4 -0
- package/{Tasks/IWG/IWG.d.ts → WorldSimulation/WorldSimulation.d.ts} +10 -9
- package/WorldSimulation/WorldSimulation.js +94 -0
- package/{Tasks/IWG → WorldSimulation}/index.d.ts +1 -1
- package/{Tasks/IWG → WorldSimulation}/index.js +1 -1
- package/package.json +2 -2
- package/Contexts/Constructor/DivineVoxelEngineConstructor.d.ts +0 -10
- package/Contexts/Constructor/DivineVoxelEngineConstructor.js +0 -14
- package/Contexts/Constructor/index.d.ts +0 -1
- package/Contexts/Constructor/index.js +0 -1
- package/Init/StartConstructor.d.ts +0 -2
- package/Init/StartConstructor.js +0 -57
- package/Mesher/Models/Common/BoundsFunctions.d.ts +0 -2
- package/Mesher/Models/Common/BoxGeometryNode.d.ts +0 -10
- package/Mesher/Models/Common/BoxGeometryNode.js +0 -80
- package/Mesher/Models/Common/QuadGeometryNode.d.ts +0 -11
- package/Mesher/Models/Common/QuadGeometryNode.js +0 -51
- package/Mesher/Models/Nodes/Ruled/BoxVoxelGeometryNode.d.ts +0 -24
- package/Mesher/Models/Nodes/Ruled/BoxVoxelGeometryNode.js +0 -176
- package/Mesher/Models/Nodes/Ruled/QuadVoxelGeometryNode.d.ts +0 -19
- package/Mesher/Models/Nodes/Ruled/QuadVoxelGeometryNode.js +0 -157
- package/Mesher/Models/Nodes/Ruleless/RulelessBoxVoxelGeometryNode.d.ts +0 -22
- package/Mesher/Models/Nodes/Ruleless/RulelessBoxVoxelGeometryNode.js +0 -75
- package/Mesher/Models/Nodes/Ruleless/RulelessQuadVoxelGeometryNode.d.ts +0 -18
- package/Mesher/Models/Nodes/Ruleless/RulelessQuadVoxelGeometryNode.js +0 -77
- package/Mesher/Models/Protocols/OutlinedVoxelTool.d.ts +0 -6
- package/Mesher/Models/Protocols/OutlinedVoxelTool.js +0 -233
- package/Models/Indexing/VoxelAOResultsIndex.d.ts +0 -12
- package/Models/Indexing/VoxelAOResultsIndex.js +0 -26
- package/Models/Indexing/VoxelFaceCullResultsIndex.d.ts +0 -12
- package/Models/Indexing/VoxelFaceCullResultsIndex.js +0 -26
- package/Models/Indexing/VoxelFaceTransparentResultsIndex.d.ts +0 -11
- package/Models/Indexing/VoxelFaceTransparentResultsIndex.js +0 -15
- package/Models/Input/BoxVoxelGometryInputs.d.ts +0 -25
- package/Models/Input/BoxVoxelGometryInputs.js +0 -36
- package/Models/Input/QuadVoxelGometryInputs.d.ts +0 -24
- package/Models/Rules/Classes/OcclusionFace.d.ts +0 -65
- package/Models/Rules/Classes/OcclusionFace.js +0 -492
- package/Models/Rules/Classes/VoxelRulesGeometry.d.ts +0 -15
- package/Models/Rules/Classes/VoxelRulesGeometry.js +0 -29
- package/Models/Rules/Functions/BuildFinalInputs.d.ts +0 -7
- package/Models/Rules/Functions/BuildFinalInputs.js +0 -93
- package/Models/Rules/Functions/BuildGeomtryInputs.d.ts +0 -6
- package/Models/Rules/Functions/BuildGeomtryInputs.js +0 -251
- package/Models/Rules/Functions/BuildRules.d.ts +0 -8
- package/Models/Rules/Functions/BuildRules.js +0 -187
- package/Models/Rules/Functions/GetOcclusionFaces.d.ts +0 -4
- package/Models/Rules/Functions/GetOcclusionFaces.js +0 -112
- package/Models/Shared/Transform.d.ts +0 -4
- package/Tasks/IWG/IWG.js +0 -98
- package/Tasks/IWG/Internal/Classes/BuildQueue.d.ts +0 -11
- package/Tasks/IWG/Internal/Classes/BuildQueue.js +0 -49
- package/Tasks/IWG/Internal/Classes/DimensionSegment.d.ts +0 -37
- package/Tasks/IWG/Internal/Classes/DimensionSegment.js +0 -67
- package/Tasks/IWG/Internal/Classes/IWGTaskBase.d.ts +0 -15
- package/Tasks/IWG/Internal/Classes/IWGTaskBase.js +0 -62
- package/Tasks/IWG/Internal/Classes/SectorState.js +0 -20
- package/Tasks/IWG/Internal/Classes/SectorVisistedMap.d.ts +0 -9
- package/Tasks/IWG/Internal/Classes/SectorVisistedMap.js +0 -24
- package/Tasks/IWG/Internal/Functions/cullSectors.d.ts +0 -2
- package/Tasks/IWG/Internal/Functions/cullSectors.js +0 -111
- package/Tasks/IWG/Internal/Functions/getSectorState.d.ts +0 -4
- package/Tasks/IWG/Internal/Functions/getSectorState.js +0 -39
- package/Tasks/IWG/Internal/Functions/runBuildUpdate.d.ts +0 -2
- package/Tasks/IWG/Internal/Functions/runBuildUpdate.js +0 -70
- package/Tasks/IWG/Internal/Functions/runWorldUpdate.d.ts +0 -2
- package/Tasks/IWG/Internal/Functions/runWorldUpdate.js +0 -69
- package/Tasks/IWG/Internal/IWGDimensions.d.ts +0 -6
- package/Tasks/IWG/Internal/IWGTasks.d.ts +0 -30
- package/Tasks/IWG/Internal/IWGTasks.js +0 -129
- package/Tasks/IWG/Internal/IWGTools.d.ts +0 -8
- package/Tasks/IWG/Internal/TaskRegister.d.ts +0 -7
- package/Tasks/Propagation/Explosion/ExplosionManager.d.ts +0 -4
- package/Tasks/Propagation/Explosion/ExplosionManager.js +0 -117
- package/Tasks/Update/InitTasks.d.ts +0 -5
- package/Tasks/Update/InitTasks.js +0 -23
- package/Tasks/Update/VoxelUpdate.d.ts +0 -6
- package/Tasks/Update/VoxelUpdate.js +0 -177
- package/Templates/FullVoxelTemplate.d.ts +0 -14
- package/Templates/FullVoxelTemplate.js +0 -61
- package/Templates/Functions/CreateTemplate.d.ts +0 -3
- package/Templates/Functions/CreateTemplate.js +0 -134
- package/Templates/VoxelTemplate.d.ts +0 -34
- package/Templates/VoxelTemplate.js +0 -135
- package/Util/Binary/BinaryBuffer.d.ts +0 -29
- package/Util/Binary/BinaryBuffer.js +0 -130
- package/Util/Binary/Palettes.d.ts +0 -5
- package/Util/Binary/Palettes.js +0 -46
- package/Util/LocationVisitedMap.d.ts +0 -9
- package/Util/LocationVisitedMap.js +0 -18
- package/Util/VisistedMap.d.ts +0 -10
- package/Util/VisistedMap.js +0 -29
- package/Voxels/Data/VoxelTagStates.d.ts +0 -22
- package/Voxels/Data/VoxelTagStates.js +0 -47
- package/World/Archive/Archive.types.d.ts +0 -163
- package/World/Archive/Functions/ArchiveArea.js +0 -338
- package/World/Archive/Functions/ArchiveSector.d.ts +0 -7
- package/World/Archive/Functions/ArchiveSector.js +0 -625
- package/World/Archive/Functions/ImportSector.d.ts +0 -9
- package/World/Archive/Functions/ImportSector.js +0 -288
- package/World/Archive/Functions/Shared.js +0 -75
- /package/{Models/VoxelModel.types.js → Math/Location.js} +0 -0
- /package/{World/Archive/Archive.types.js → Mesher/Models/Nodes/Types/GeomtryNode.types.js} +0 -0
- /package/{Models → Voxels/Models}/Defaults/CubeVoxelGeometry.d.ts +0 -0
- /package/{Models → Voxels/Models}/Defaults/LiquidVoxelModel.d.ts +0 -0
- /package/{Models → Voxels/Models}/Defaults/PanelVoxelGeometry.d.ts +0 -0
- /package/{Models → Voxels/Models}/Defaults/StairVoxelModel.d.ts +0 -0
- /package/{Models → Voxels/Models}/Indexing/VoxelRelativeCubeIndex.d.ts +0 -0
- /package/{Models → Voxels/Models}/Indexing/VoxelRelativeCubeIndex.js +0 -0
- /package/{Tasks/IWG → WorldSimulation}/Procedures/SaveAllSectors.d.ts +0 -0
|
@@ -16,7 +16,7 @@ export const chainGeometry = {
|
|
|
16
16
|
[11, 0, 5],
|
|
17
17
|
[5, 0, 11],
|
|
18
18
|
],
|
|
19
|
-
uv: [0, 0, 6,
|
|
19
|
+
uv: [0, 0, 6, 16],
|
|
20
20
|
texture: "@texture",
|
|
21
21
|
doubleSided: true,
|
|
22
22
|
},
|
|
@@ -42,22 +42,21 @@ export const chainModel = {
|
|
|
42
42
|
},
|
|
43
43
|
},
|
|
44
44
|
relationsSchema: [],
|
|
45
|
-
|
|
45
|
+
properties: {
|
|
46
|
+
dve_placing_strategy: "axis=y",
|
|
47
|
+
},
|
|
48
|
+
stateSchema: [
|
|
46
49
|
{
|
|
47
50
|
name: "axis",
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
1: "x",
|
|
52
|
-
2: "z",
|
|
53
|
-
},
|
|
51
|
+
bitIndex: 0,
|
|
52
|
+
bitSize: 2,
|
|
53
|
+
values: ["y", "x", "z"],
|
|
54
54
|
},
|
|
55
55
|
],
|
|
56
|
-
|
|
57
|
-
|
|
56
|
+
conditonalNodes: {},
|
|
57
|
+
stateNodes: {
|
|
58
58
|
"axis=y": [
|
|
59
59
|
{
|
|
60
|
-
id: "main",
|
|
61
60
|
geometryId: "dve_chain",
|
|
62
61
|
inputs: {
|
|
63
62
|
texture: "@texture",
|
|
@@ -66,7 +65,6 @@ export const chainModel = {
|
|
|
66
65
|
],
|
|
67
66
|
"axis=x": [
|
|
68
67
|
{
|
|
69
|
-
id: "main",
|
|
70
68
|
geometryId: "dve_chain",
|
|
71
69
|
rotation: [90, 0, 0],
|
|
72
70
|
inputs: {
|
|
@@ -76,7 +74,6 @@ export const chainModel = {
|
|
|
76
74
|
],
|
|
77
75
|
"axis=z": [
|
|
78
76
|
{
|
|
79
|
-
id: "main",
|
|
80
77
|
geometryId: "dve_chain",
|
|
81
78
|
rotation: [0, 0, 90],
|
|
82
79
|
inputs: {
|
|
@@ -143,13 +140,15 @@ export const carpetModel = {
|
|
|
143
140
|
type: "texture",
|
|
144
141
|
},
|
|
145
142
|
},
|
|
143
|
+
properties: {
|
|
144
|
+
dve_placing_strategy: "*",
|
|
145
|
+
},
|
|
146
146
|
relationsSchema: [],
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
147
|
+
stateSchema: [],
|
|
148
|
+
conditonalNodes: {},
|
|
149
|
+
stateNodes: {
|
|
150
150
|
"*": [
|
|
151
151
|
{
|
|
152
|
-
id: "main",
|
|
153
152
|
geometryId: "dve_carpet",
|
|
154
153
|
inputs: {
|
|
155
154
|
topBottomTex: "@topBottomTex",
|
|
@@ -404,6 +403,7 @@ export const fenceNorthsouth = {
|
|
|
404
403
|
};
|
|
405
404
|
export const fence = {
|
|
406
405
|
id: "dve_fence",
|
|
406
|
+
divisor: [16, 16, 16],
|
|
407
407
|
relationsSchema: [
|
|
408
408
|
{
|
|
409
409
|
name: "same-east",
|
|
@@ -442,7 +442,7 @@ export const fence = {
|
|
|
442
442
|
],
|
|
443
443
|
},
|
|
444
444
|
],
|
|
445
|
-
|
|
445
|
+
stateSchema: [],
|
|
446
446
|
arguments: {
|
|
447
447
|
southTex: {
|
|
448
448
|
type: "texture",
|
|
@@ -463,10 +463,9 @@ export const fence = {
|
|
|
463
463
|
type: "texture",
|
|
464
464
|
},
|
|
465
465
|
},
|
|
466
|
-
|
|
466
|
+
conditonalNodes: {
|
|
467
467
|
"same-south=true": [
|
|
468
468
|
{
|
|
469
|
-
id: "fence_connection_south",
|
|
470
469
|
geometryId: "dve_fence_north_south",
|
|
471
470
|
inputs: {
|
|
472
471
|
upTex: "@upTex",
|
|
@@ -480,7 +479,6 @@ export const fence = {
|
|
|
480
479
|
],
|
|
481
480
|
"same-north=true": [
|
|
482
481
|
{
|
|
483
|
-
id: "fence_connection_north",
|
|
484
482
|
geometryId: "dve_fence_north_south",
|
|
485
483
|
position: [0, 0, 10],
|
|
486
484
|
inputs: {
|
|
@@ -495,7 +493,6 @@ export const fence = {
|
|
|
495
493
|
],
|
|
496
494
|
"same-east=true": [
|
|
497
495
|
{
|
|
498
|
-
id: "fence_connection_east",
|
|
499
496
|
position: [10, 0, 0],
|
|
500
497
|
geometryId: "dve_fence_east_west",
|
|
501
498
|
inputs: {
|
|
@@ -510,7 +507,6 @@ export const fence = {
|
|
|
510
507
|
],
|
|
511
508
|
"same-west=true": [
|
|
512
509
|
{
|
|
513
|
-
id: "fence_connection_west",
|
|
514
510
|
geometryId: "dve_fence_east_west",
|
|
515
511
|
inputs: {
|
|
516
512
|
upTex: "@upTex",
|
|
@@ -523,10 +519,12 @@ export const fence = {
|
|
|
523
519
|
},
|
|
524
520
|
],
|
|
525
521
|
},
|
|
526
|
-
|
|
522
|
+
properties: {
|
|
523
|
+
dve_placing_strategy: "*",
|
|
524
|
+
},
|
|
525
|
+
stateNodes: {
|
|
527
526
|
"*": [
|
|
528
527
|
{
|
|
529
|
-
id: "fence_post",
|
|
530
528
|
geometryId: "dve_fence_post",
|
|
531
529
|
inputs: {
|
|
532
530
|
upTex: "@upTex",
|
|
@@ -828,19 +826,42 @@ export const candlesModel = {
|
|
|
828
826
|
},
|
|
829
827
|
},
|
|
830
828
|
relationsSchema: [],
|
|
831
|
-
|
|
829
|
+
properties: {
|
|
830
|
+
dve_logic_data: [
|
|
831
|
+
{
|
|
832
|
+
type: "state",
|
|
833
|
+
value: {
|
|
834
|
+
lit: "true",
|
|
835
|
+
},
|
|
836
|
+
true: [
|
|
837
|
+
{
|
|
838
|
+
type: "tag",
|
|
839
|
+
tagId: "dve_is_light_source",
|
|
840
|
+
value: true,
|
|
841
|
+
},
|
|
842
|
+
],
|
|
843
|
+
false: [
|
|
844
|
+
{
|
|
845
|
+
type: "tag",
|
|
846
|
+
tagId: "dve_is_light_source",
|
|
847
|
+
value: false,
|
|
848
|
+
},
|
|
849
|
+
],
|
|
850
|
+
},
|
|
851
|
+
],
|
|
852
|
+
dve_placing_strategy: "*",
|
|
853
|
+
},
|
|
854
|
+
stateSchema: [
|
|
832
855
|
{
|
|
833
856
|
name: "num_candles",
|
|
834
|
-
|
|
835
|
-
|
|
857
|
+
bitIndex: 0,
|
|
858
|
+
bitSize: 3,
|
|
836
859
|
},
|
|
837
860
|
{
|
|
838
861
|
name: "lit",
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
1: "true",
|
|
843
|
-
},
|
|
862
|
+
bitIndex: 3,
|
|
863
|
+
bitSize: 1,
|
|
864
|
+
values: ["false", "true"],
|
|
844
865
|
},
|
|
845
866
|
],
|
|
846
867
|
effects: [
|
|
@@ -866,26 +887,11 @@ export const candlesModel = {
|
|
|
866
887
|
],
|
|
867
888
|
},
|
|
868
889
|
},
|
|
869
|
-
{
|
|
870
|
-
type: "tag",
|
|
871
|
-
tagId: "dve_is_light_source",
|
|
872
|
-
values: {
|
|
873
|
-
"num_candles=0,lit=false": false,
|
|
874
|
-
"num_candles=0,lit=true": true,
|
|
875
|
-
"num_candles=1,lit=false": false,
|
|
876
|
-
"num_candles=1,lit=true": true,
|
|
877
|
-
"num_candles=2,lit=false": false,
|
|
878
|
-
"num_candles=2,lit=true": true,
|
|
879
|
-
"num_candles=3,lit=false": false,
|
|
880
|
-
"num_candles=3,lit=true": true,
|
|
881
|
-
},
|
|
882
|
-
},
|
|
883
890
|
],
|
|
884
|
-
|
|
885
|
-
|
|
891
|
+
conditonalNodes: {},
|
|
892
|
+
stateNodes: {
|
|
886
893
|
"num_candles=0,lit=false": [
|
|
887
894
|
{
|
|
888
|
-
id: "candel_1",
|
|
889
895
|
geometryId: "dve_candle_state_1",
|
|
890
896
|
inputs: {
|
|
891
897
|
candleTexture: "@candleTexture",
|
|
@@ -894,7 +900,6 @@ export const candlesModel = {
|
|
|
894
900
|
],
|
|
895
901
|
"num_candles=1,lit=false": [
|
|
896
902
|
{
|
|
897
|
-
id: "candel_1",
|
|
898
903
|
geometryId: "dve_candle_state_1",
|
|
899
904
|
position: [-2, 0, 0],
|
|
900
905
|
inputs: {
|
|
@@ -902,7 +907,6 @@ export const candlesModel = {
|
|
|
902
907
|
},
|
|
903
908
|
},
|
|
904
909
|
{
|
|
905
|
-
id: "candel_2",
|
|
906
910
|
geometryId: "dve_candle_state_2",
|
|
907
911
|
position: [2, 0, 0],
|
|
908
912
|
inputs: {
|
|
@@ -912,7 +916,6 @@ export const candlesModel = {
|
|
|
912
916
|
],
|
|
913
917
|
"num_candles=2,lit=false": [
|
|
914
918
|
{
|
|
915
|
-
id: "candel_1",
|
|
916
919
|
geometryId: "dve_candle_state_1",
|
|
917
920
|
position: [-2, 0, 2],
|
|
918
921
|
inputs: {
|
|
@@ -920,7 +923,6 @@ export const candlesModel = {
|
|
|
920
923
|
},
|
|
921
924
|
},
|
|
922
925
|
{
|
|
923
|
-
id: "candel_2",
|
|
924
926
|
geometryId: "dve_candle_state_2",
|
|
925
927
|
position: [2, 0, 2],
|
|
926
928
|
inputs: {
|
|
@@ -928,7 +930,6 @@ export const candlesModel = {
|
|
|
928
930
|
},
|
|
929
931
|
},
|
|
930
932
|
{
|
|
931
|
-
id: "candel_3",
|
|
932
933
|
geometryId: "dve_candle_state_3",
|
|
933
934
|
position: [2, 0, -2],
|
|
934
935
|
inputs: {
|
|
@@ -938,7 +939,6 @@ export const candlesModel = {
|
|
|
938
939
|
],
|
|
939
940
|
"num_candles=3,lit=false": [
|
|
940
941
|
{
|
|
941
|
-
id: "candel_1",
|
|
942
942
|
geometryId: "dve_candle_state_1",
|
|
943
943
|
position: [-2, 0, 2],
|
|
944
944
|
inputs: {
|
|
@@ -946,7 +946,6 @@ export const candlesModel = {
|
|
|
946
946
|
},
|
|
947
947
|
},
|
|
948
948
|
{
|
|
949
|
-
id: "candel_2",
|
|
950
949
|
geometryId: "dve_candle_state_2",
|
|
951
950
|
position: [2, 0, 2],
|
|
952
951
|
inputs: {
|
|
@@ -954,7 +953,6 @@ export const candlesModel = {
|
|
|
954
953
|
},
|
|
955
954
|
},
|
|
956
955
|
{
|
|
957
|
-
id: "candel_3",
|
|
958
956
|
geometryId: "dve_candle_state_3",
|
|
959
957
|
position: [2, 0, -2],
|
|
960
958
|
inputs: {
|
|
@@ -962,7 +960,6 @@ export const candlesModel = {
|
|
|
962
960
|
},
|
|
963
961
|
},
|
|
964
962
|
{
|
|
965
|
-
id: "candel_4",
|
|
966
963
|
geometryId: "dve_candle_state_4",
|
|
967
964
|
position: [-2, 0, -2],
|
|
968
965
|
inputs: {
|
|
@@ -972,7 +969,6 @@ export const candlesModel = {
|
|
|
972
969
|
],
|
|
973
970
|
"num_candles=0,lit=true": [
|
|
974
971
|
{
|
|
975
|
-
id: "candel_1",
|
|
976
972
|
geometryId: "dve_candle_state_1",
|
|
977
973
|
inputs: {
|
|
978
974
|
candleTexture: "@candleLitTexture",
|
|
@@ -981,7 +977,6 @@ export const candlesModel = {
|
|
|
981
977
|
],
|
|
982
978
|
"num_candles=1,lit=true": [
|
|
983
979
|
{
|
|
984
|
-
id: "candel_1",
|
|
985
980
|
geometryId: "dve_candle_state_1",
|
|
986
981
|
position: [-2, 0, 0],
|
|
987
982
|
inputs: {
|
|
@@ -989,7 +984,6 @@ export const candlesModel = {
|
|
|
989
984
|
},
|
|
990
985
|
},
|
|
991
986
|
{
|
|
992
|
-
id: "candel_2",
|
|
993
987
|
geometryId: "dve_candle_state_2",
|
|
994
988
|
position: [2, 0, 0],
|
|
995
989
|
inputs: {
|
|
@@ -999,7 +993,6 @@ export const candlesModel = {
|
|
|
999
993
|
],
|
|
1000
994
|
"num_candles=2,lit=true": [
|
|
1001
995
|
{
|
|
1002
|
-
id: "candel_1",
|
|
1003
996
|
geometryId: "dve_candle_state_1",
|
|
1004
997
|
position: [-2, 0, 2],
|
|
1005
998
|
inputs: {
|
|
@@ -1007,7 +1000,6 @@ export const candlesModel = {
|
|
|
1007
1000
|
},
|
|
1008
1001
|
},
|
|
1009
1002
|
{
|
|
1010
|
-
id: "candel_2",
|
|
1011
1003
|
geometryId: "dve_candle_state_2",
|
|
1012
1004
|
position: [2, 0, 2],
|
|
1013
1005
|
inputs: {
|
|
@@ -1015,7 +1007,6 @@ export const candlesModel = {
|
|
|
1015
1007
|
},
|
|
1016
1008
|
},
|
|
1017
1009
|
{
|
|
1018
|
-
id: "candel_3",
|
|
1019
1010
|
geometryId: "dve_candle_state_3",
|
|
1020
1011
|
position: [2, 0, -2],
|
|
1021
1012
|
inputs: {
|
|
@@ -1025,7 +1016,6 @@ export const candlesModel = {
|
|
|
1025
1016
|
],
|
|
1026
1017
|
"num_candles=3,lit=true": [
|
|
1027
1018
|
{
|
|
1028
|
-
id: "candel_1",
|
|
1029
1019
|
geometryId: "dve_candle_state_1",
|
|
1030
1020
|
position: [-2, 0, 2],
|
|
1031
1021
|
inputs: {
|
|
@@ -1033,7 +1023,6 @@ export const candlesModel = {
|
|
|
1033
1023
|
},
|
|
1034
1024
|
},
|
|
1035
1025
|
{
|
|
1036
|
-
id: "candel_2",
|
|
1037
1026
|
geometryId: "dve_candle_state_2",
|
|
1038
1027
|
position: [2, 0, 2],
|
|
1039
1028
|
inputs: {
|
|
@@ -1041,7 +1030,6 @@ export const candlesModel = {
|
|
|
1041
1030
|
},
|
|
1042
1031
|
},
|
|
1043
1032
|
{
|
|
1044
|
-
id: "candel_3",
|
|
1045
1033
|
geometryId: "dve_candle_state_3",
|
|
1046
1034
|
position: [2, 0, -2],
|
|
1047
1035
|
inputs: {
|
|
@@ -1049,7 +1037,6 @@ export const candlesModel = {
|
|
|
1049
1037
|
},
|
|
1050
1038
|
},
|
|
1051
1039
|
{
|
|
1052
|
-
id: "candel_4",
|
|
1053
1040
|
geometryId: "dve_candle_state_4",
|
|
1054
1041
|
position: [-2, 0, -2],
|
|
1055
1042
|
inputs: {
|
|
@@ -1160,51 +1147,40 @@ export const leverModel = {
|
|
|
1160
1147
|
type: "texture",
|
|
1161
1148
|
},
|
|
1162
1149
|
},
|
|
1150
|
+
properties: {
|
|
1151
|
+
dve_placing_strategy: "*",
|
|
1152
|
+
},
|
|
1163
1153
|
relationsSchema: [],
|
|
1164
|
-
|
|
1154
|
+
stateSchema: [
|
|
1165
1155
|
{
|
|
1166
1156
|
name: "placement",
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
|
|
1170
|
-
1: "up",
|
|
1171
|
-
2: "north",
|
|
1172
|
-
3: "south",
|
|
1173
|
-
4: "east",
|
|
1174
|
-
5: "west",
|
|
1175
|
-
},
|
|
1157
|
+
bitIndex: 0,
|
|
1158
|
+
bitSize: 3,
|
|
1159
|
+
values: ["down", "up", "north", "south", "east", "west"],
|
|
1176
1160
|
},
|
|
1177
1161
|
{
|
|
1178
1162
|
name: "direction",
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
1: "south",
|
|
1183
|
-
2: "east",
|
|
1184
|
-
3: "west",
|
|
1185
|
-
},
|
|
1163
|
+
bitIndex: 3,
|
|
1164
|
+
bitSize: 2,
|
|
1165
|
+
values: ["north", "south", "east", "west"],
|
|
1186
1166
|
},
|
|
1187
1167
|
{
|
|
1188
1168
|
name: "state",
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
1: "on",
|
|
1193
|
-
},
|
|
1169
|
+
bitIndex: 5,
|
|
1170
|
+
bitSize: 1,
|
|
1171
|
+
values: ["off", "on"],
|
|
1194
1172
|
},
|
|
1195
1173
|
],
|
|
1196
|
-
|
|
1197
|
-
|
|
1174
|
+
conditonalNodes: {},
|
|
1175
|
+
stateNodes: {
|
|
1198
1176
|
"placement=down,direction=north,state=off": [
|
|
1199
1177
|
{
|
|
1200
|
-
id: "lever_base",
|
|
1201
1178
|
geometryId: "dve_lever_model_base",
|
|
1202
1179
|
inputs: {
|
|
1203
1180
|
texture: "@baseTexture",
|
|
1204
1181
|
},
|
|
1205
1182
|
},
|
|
1206
1183
|
{
|
|
1207
|
-
id: "lever",
|
|
1208
1184
|
geometryId: "dve_lever_model",
|
|
1209
1185
|
position: [0, -8, -3],
|
|
1210
1186
|
rotation: [-45, 0, 0],
|
|
@@ -1215,14 +1191,12 @@ export const leverModel = {
|
|
|
1215
1191
|
],
|
|
1216
1192
|
"placement=down,direction=north,state=on": [
|
|
1217
1193
|
{
|
|
1218
|
-
id: "lever_base",
|
|
1219
1194
|
geometryId: "dve_lever_model_base",
|
|
1220
1195
|
inputs: {
|
|
1221
1196
|
texture: "@baseTexture",
|
|
1222
1197
|
},
|
|
1223
1198
|
},
|
|
1224
1199
|
{
|
|
1225
|
-
id: "lever",
|
|
1226
1200
|
geometryId: "dve_lever_model",
|
|
1227
1201
|
position: [0, -8, 3],
|
|
1228
1202
|
rotation: [45, 0, 0],
|
|
@@ -1233,16 +1207,14 @@ export const leverModel = {
|
|
|
1233
1207
|
],
|
|
1234
1208
|
"placement=down,direction=south,state=off": [
|
|
1235
1209
|
{
|
|
1236
|
-
id: "lever_base",
|
|
1237
1210
|
geometryId: "dve_lever_model_base",
|
|
1238
1211
|
inputs: {
|
|
1239
1212
|
texture: "@baseTexture",
|
|
1240
1213
|
},
|
|
1241
1214
|
},
|
|
1242
1215
|
{
|
|
1243
|
-
id: "lever",
|
|
1244
1216
|
geometryId: "dve_lever_model",
|
|
1245
|
-
position: [0,
|
|
1217
|
+
position: [0, -0.8, 3],
|
|
1246
1218
|
rotation: [45, 0, 0],
|
|
1247
1219
|
inputs: {
|
|
1248
1220
|
texture: "@leverTexture",
|
|
@@ -1251,16 +1223,14 @@ export const leverModel = {
|
|
|
1251
1223
|
],
|
|
1252
1224
|
"placement=down,direction=south,state=on": [
|
|
1253
1225
|
{
|
|
1254
|
-
id: "lever_base",
|
|
1255
1226
|
geometryId: "dve_lever_model_base",
|
|
1256
1227
|
inputs: {
|
|
1257
1228
|
texture: "@baseTexture",
|
|
1258
1229
|
},
|
|
1259
1230
|
},
|
|
1260
1231
|
{
|
|
1261
|
-
id: "lever",
|
|
1262
1232
|
geometryId: "dve_lever_model",
|
|
1263
|
-
position: [0,
|
|
1233
|
+
position: [0, -0.8, -3],
|
|
1264
1234
|
rotation: [-45, 0, 0],
|
|
1265
1235
|
inputs: {
|
|
1266
1236
|
texture: "@leverTexture",
|
|
@@ -1269,14 +1239,12 @@ export const leverModel = {
|
|
|
1269
1239
|
],
|
|
1270
1240
|
"placement=down,direction=east,state=off": [
|
|
1271
1241
|
{
|
|
1272
|
-
id: "lever_base",
|
|
1273
1242
|
geometryId: "dve_lever_model_base",
|
|
1274
1243
|
inputs: {
|
|
1275
1244
|
texture: "@baseTexture",
|
|
1276
1245
|
},
|
|
1277
1246
|
},
|
|
1278
1247
|
{
|
|
1279
|
-
id: "lever",
|
|
1280
1248
|
geometryId: "dve_lever_model",
|
|
1281
1249
|
position: [-3, -8, 0],
|
|
1282
1250
|
rotation: [0, 0, 45],
|
|
@@ -1287,14 +1255,12 @@ export const leverModel = {
|
|
|
1287
1255
|
],
|
|
1288
1256
|
"placement=down,direction=east,state=on": [
|
|
1289
1257
|
{
|
|
1290
|
-
id: "lever_base",
|
|
1291
1258
|
geometryId: "dve_lever_model_base",
|
|
1292
1259
|
inputs: {
|
|
1293
1260
|
texture: "@baseTexture",
|
|
1294
1261
|
},
|
|
1295
1262
|
},
|
|
1296
1263
|
{
|
|
1297
|
-
id: "lever",
|
|
1298
1264
|
geometryId: "dve_lever_model",
|
|
1299
1265
|
position: [3, -8, 0],
|
|
1300
1266
|
rotation: [0, 0, -45],
|
|
@@ -1305,14 +1271,12 @@ export const leverModel = {
|
|
|
1305
1271
|
],
|
|
1306
1272
|
"placement=down,direction=west,state=off": [
|
|
1307
1273
|
{
|
|
1308
|
-
id: "lever_base",
|
|
1309
1274
|
geometryId: "dve_lever_model_base",
|
|
1310
1275
|
inputs: {
|
|
1311
1276
|
texture: "@baseTexture",
|
|
1312
1277
|
},
|
|
1313
1278
|
},
|
|
1314
1279
|
{
|
|
1315
|
-
id: "lever",
|
|
1316
1280
|
geometryId: "dve_lever_model",
|
|
1317
1281
|
position: [3, -8, 0],
|
|
1318
1282
|
rotation: [0, 0, -45],
|
|
@@ -1323,14 +1287,12 @@ export const leverModel = {
|
|
|
1323
1287
|
],
|
|
1324
1288
|
"placement=down,direction=west,state=on": [
|
|
1325
1289
|
{
|
|
1326
|
-
id: "lever_base",
|
|
1327
1290
|
geometryId: "dve_lever_model_base",
|
|
1328
1291
|
inputs: {
|
|
1329
1292
|
texture: "@baseTexture",
|
|
1330
1293
|
},
|
|
1331
1294
|
},
|
|
1332
1295
|
{
|
|
1333
|
-
id: "lever",
|
|
1334
1296
|
geometryId: "dve_lever_model",
|
|
1335
1297
|
position: [-3, -8, 0],
|
|
1336
1298
|
rotation: [0, 0, 45],
|
|
@@ -1342,7 +1304,6 @@ export const leverModel = {
|
|
|
1342
1304
|
//placment up
|
|
1343
1305
|
"placement=up,direction=north,state=off": [
|
|
1344
1306
|
{
|
|
1345
|
-
id: "lever_base",
|
|
1346
1307
|
rotation: [0, 0, 180],
|
|
1347
1308
|
rotationPivot: [8, 8, 8],
|
|
1348
1309
|
geometryId: "dve_lever_model_base",
|
|
@@ -1351,7 +1312,6 @@ export const leverModel = {
|
|
|
1351
1312
|
},
|
|
1352
1313
|
},
|
|
1353
1314
|
{
|
|
1354
|
-
id: "lever",
|
|
1355
1315
|
geometryId: "dve_lever_model",
|
|
1356
1316
|
rotation: [45, 0, 0],
|
|
1357
1317
|
position: [0, 2, -3],
|
|
@@ -1364,7 +1324,6 @@ export const leverModel = {
|
|
|
1364
1324
|
],
|
|
1365
1325
|
"placement=up,direction=north,state=on": [
|
|
1366
1326
|
{
|
|
1367
|
-
id: "lever_base",
|
|
1368
1327
|
rotation: [0, 0, 180],
|
|
1369
1328
|
rotationPivot: [8, 8, 8],
|
|
1370
1329
|
geometryId: "dve_lever_model_base",
|
|
@@ -1373,7 +1332,6 @@ export const leverModel = {
|
|
|
1373
1332
|
},
|
|
1374
1333
|
},
|
|
1375
1334
|
{
|
|
1376
|
-
id: "lever",
|
|
1377
1335
|
geometryId: "dve_lever_model",
|
|
1378
1336
|
rotation: [-45, 0, 0],
|
|
1379
1337
|
position: [0, 2, 3],
|
|
@@ -1386,7 +1344,6 @@ export const leverModel = {
|
|
|
1386
1344
|
],
|
|
1387
1345
|
"placement=up,direction=south,state=off": [
|
|
1388
1346
|
{
|
|
1389
|
-
id: "lever_base",
|
|
1390
1347
|
rotation: [0, 0, 180],
|
|
1391
1348
|
rotationPivot: [8, 8, 8],
|
|
1392
1349
|
geometryId: "dve_lever_model_base",
|
|
@@ -1395,7 +1352,6 @@ export const leverModel = {
|
|
|
1395
1352
|
},
|
|
1396
1353
|
},
|
|
1397
1354
|
{
|
|
1398
|
-
id: "lever",
|
|
1399
1355
|
geometryId: "dve_lever_model",
|
|
1400
1356
|
rotation: [-45, 0, 0],
|
|
1401
1357
|
position: [0, 2, 3],
|
|
@@ -1408,7 +1364,6 @@ export const leverModel = {
|
|
|
1408
1364
|
],
|
|
1409
1365
|
"placement=up,direction=south,state=on": [
|
|
1410
1366
|
{
|
|
1411
|
-
id: "lever_base",
|
|
1412
1367
|
rotation: [0, 0, 180],
|
|
1413
1368
|
rotationPivot: [8, 8, 8],
|
|
1414
1369
|
geometryId: "dve_lever_model_base",
|
|
@@ -1417,7 +1372,6 @@ export const leverModel = {
|
|
|
1417
1372
|
},
|
|
1418
1373
|
},
|
|
1419
1374
|
{
|
|
1420
|
-
id: "lever",
|
|
1421
1375
|
geometryId: "dve_lever_model",
|
|
1422
1376
|
rotation: [45, 0, 0],
|
|
1423
1377
|
position: [0, 2, -3],
|
|
@@ -1430,7 +1384,6 @@ export const leverModel = {
|
|
|
1430
1384
|
],
|
|
1431
1385
|
"placement=up,direction=east,state=off": [
|
|
1432
1386
|
{
|
|
1433
|
-
id: "lever_base",
|
|
1434
1387
|
rotation: [0, 0, 180],
|
|
1435
1388
|
rotationPivot: [8, 8, 8],
|
|
1436
1389
|
geometryId: "dve_lever_model_base",
|
|
@@ -1439,7 +1392,6 @@ export const leverModel = {
|
|
|
1439
1392
|
},
|
|
1440
1393
|
},
|
|
1441
1394
|
{
|
|
1442
|
-
id: "lever",
|
|
1443
1395
|
geometryId: "dve_lever_model",
|
|
1444
1396
|
rotation: [0, 0, -45],
|
|
1445
1397
|
position: [-3, 2, -0],
|
|
@@ -1452,7 +1404,6 @@ export const leverModel = {
|
|
|
1452
1404
|
],
|
|
1453
1405
|
"placement=up,direction=east,state=on": [
|
|
1454
1406
|
{
|
|
1455
|
-
id: "lever_base",
|
|
1456
1407
|
rotation: [0, 0, 180],
|
|
1457
1408
|
rotationPivot: [8, 8, 8],
|
|
1458
1409
|
geometryId: "dve_lever_model_base",
|
|
@@ -1461,7 +1412,6 @@ export const leverModel = {
|
|
|
1461
1412
|
},
|
|
1462
1413
|
},
|
|
1463
1414
|
{
|
|
1464
|
-
id: "lever",
|
|
1465
1415
|
geometryId: "dve_lever_model",
|
|
1466
1416
|
rotation: [0, 0, 45],
|
|
1467
1417
|
position: [3, 2, -0],
|
|
@@ -1474,7 +1424,6 @@ export const leverModel = {
|
|
|
1474
1424
|
],
|
|
1475
1425
|
"placement=up,direction=west,state=off": [
|
|
1476
1426
|
{
|
|
1477
|
-
id: "lever_base",
|
|
1478
1427
|
rotation: [0, 0, 180],
|
|
1479
1428
|
rotationPivot: [8, 8, 8],
|
|
1480
1429
|
geometryId: "dve_lever_model_base",
|
|
@@ -1483,7 +1432,6 @@ export const leverModel = {
|
|
|
1483
1432
|
},
|
|
1484
1433
|
},
|
|
1485
1434
|
{
|
|
1486
|
-
id: "lever",
|
|
1487
1435
|
geometryId: "dve_lever_model",
|
|
1488
1436
|
rotation: [0, 0, 45],
|
|
1489
1437
|
position: [3, 2, -0],
|
|
@@ -1496,7 +1444,6 @@ export const leverModel = {
|
|
|
1496
1444
|
],
|
|
1497
1445
|
"placement=up,direction=west,state=on": [
|
|
1498
1446
|
{
|
|
1499
|
-
id: "lever_base",
|
|
1500
1447
|
rotation: [0, 0, 180],
|
|
1501
1448
|
rotationPivot: [8, 8, 8],
|
|
1502
1449
|
geometryId: "dve_lever_model_base",
|
|
@@ -1505,7 +1452,6 @@ export const leverModel = {
|
|
|
1505
1452
|
},
|
|
1506
1453
|
},
|
|
1507
1454
|
{
|
|
1508
|
-
id: "lever",
|
|
1509
1455
|
geometryId: "dve_lever_model",
|
|
1510
1456
|
rotation: [0, 0, -45],
|
|
1511
1457
|
position: [-3, 2, -0],
|
|
@@ -1519,7 +1465,6 @@ export const leverModel = {
|
|
|
1519
1465
|
//placement north
|
|
1520
1466
|
"placement=north,direction=north,state=off": [
|
|
1521
1467
|
{
|
|
1522
|
-
id: "lever_base",
|
|
1523
1468
|
geometryId: "dve_lever_model_base",
|
|
1524
1469
|
rotation: [-90, 0, 0],
|
|
1525
1470
|
rotationPivot: [8, 8, 8],
|
|
@@ -1528,7 +1473,6 @@ export const leverModel = {
|
|
|
1528
1473
|
},
|
|
1529
1474
|
},
|
|
1530
1475
|
{
|
|
1531
|
-
id: "lever",
|
|
1532
1476
|
geometryId: "dve_lever_model",
|
|
1533
1477
|
position: [0, -5, 8],
|
|
1534
1478
|
rotation: [-90 - 45, 0, 0],
|
|
@@ -1540,7 +1484,6 @@ export const leverModel = {
|
|
|
1540
1484
|
],
|
|
1541
1485
|
"placement=north,direction=north,state=on": [
|
|
1542
1486
|
{
|
|
1543
|
-
id: "lever_base",
|
|
1544
1487
|
geometryId: "dve_lever_model_base",
|
|
1545
1488
|
rotation: [-90, 0, 0],
|
|
1546
1489
|
rotationPivot: [8, 8, 8],
|
|
@@ -1549,7 +1492,6 @@ export const leverModel = {
|
|
|
1549
1492
|
},
|
|
1550
1493
|
},
|
|
1551
1494
|
{
|
|
1552
|
-
id: "lever",
|
|
1553
1495
|
geometryId: "dve_lever_model",
|
|
1554
1496
|
position: [0, 5, 8],
|
|
1555
1497
|
rotation: [-90 + 45, 0, 0],
|
|
@@ -1561,7 +1503,6 @@ export const leverModel = {
|
|
|
1561
1503
|
],
|
|
1562
1504
|
"placement=north,direction=south,state=off": [
|
|
1563
1505
|
{
|
|
1564
|
-
id: "lever_base",
|
|
1565
1506
|
geometryId: "dve_lever_model_base",
|
|
1566
1507
|
rotation: [-90, 0, 0],
|
|
1567
1508
|
rotationPivot: [8, 8, 8],
|
|
@@ -1570,7 +1511,6 @@ export const leverModel = {
|
|
|
1570
1511
|
},
|
|
1571
1512
|
},
|
|
1572
1513
|
{
|
|
1573
|
-
id: "lever",
|
|
1574
1514
|
geometryId: "dve_lever_model",
|
|
1575
1515
|
position: [0, 5, 8],
|
|
1576
1516
|
rotation: [-90 + 45, 0, 0],
|
|
@@ -1582,7 +1522,6 @@ export const leverModel = {
|
|
|
1582
1522
|
],
|
|
1583
1523
|
"placement=north,direction=south,state=on": [
|
|
1584
1524
|
{
|
|
1585
|
-
id: "lever_base",
|
|
1586
1525
|
geometryId: "dve_lever_model_base",
|
|
1587
1526
|
rotation: [-90, 0, 0],
|
|
1588
1527
|
rotationPivot: [8, 8, 8],
|
|
@@ -1591,7 +1530,6 @@ export const leverModel = {
|
|
|
1591
1530
|
},
|
|
1592
1531
|
},
|
|
1593
1532
|
{
|
|
1594
|
-
id: "lever",
|
|
1595
1533
|
geometryId: "dve_lever_model",
|
|
1596
1534
|
position: [0, -5, 8],
|
|
1597
1535
|
rotation: [-90 - 45, 0, 0],
|
|
@@ -1603,7 +1541,6 @@ export const leverModel = {
|
|
|
1603
1541
|
],
|
|
1604
1542
|
"placement=north,direction=east,state=off": [
|
|
1605
1543
|
{
|
|
1606
|
-
id: "lever_base",
|
|
1607
1544
|
geometryId: "dve_lever_model_base",
|
|
1608
1545
|
rotation: [-90, 0, 0],
|
|
1609
1546
|
rotationPivot: [8, 8, 8],
|
|
@@ -1612,7 +1549,6 @@ export const leverModel = {
|
|
|
1612
1549
|
},
|
|
1613
1550
|
},
|
|
1614
1551
|
{
|
|
1615
|
-
id: "lever",
|
|
1616
1552
|
geometryId: "dve_lever_model",
|
|
1617
1553
|
position: [-5, 0, 8],
|
|
1618
1554
|
rotation: [-90, 45, 0],
|
|
@@ -1624,7 +1560,6 @@ export const leverModel = {
|
|
|
1624
1560
|
],
|
|
1625
1561
|
"placement=north,direction=east,state=on": [
|
|
1626
1562
|
{
|
|
1627
|
-
id: "lever_base",
|
|
1628
1563
|
geometryId: "dve_lever_model_base",
|
|
1629
1564
|
rotation: [-90, 0, 0],
|
|
1630
1565
|
rotationPivot: [8, 8, 8],
|
|
@@ -1633,7 +1568,6 @@ export const leverModel = {
|
|
|
1633
1568
|
},
|
|
1634
1569
|
},
|
|
1635
1570
|
{
|
|
1636
|
-
id: "lever",
|
|
1637
1571
|
geometryId: "dve_lever_model",
|
|
1638
1572
|
position: [5, 0, 8],
|
|
1639
1573
|
rotation: [-90, -45, 0],
|
|
@@ -1645,7 +1579,6 @@ export const leverModel = {
|
|
|
1645
1579
|
],
|
|
1646
1580
|
"placement=north,direction=west,state=off": [
|
|
1647
1581
|
{
|
|
1648
|
-
id: "lever_base",
|
|
1649
1582
|
geometryId: "dve_lever_model_base",
|
|
1650
1583
|
rotation: [-90, 0, 0],
|
|
1651
1584
|
rotationPivot: [8, 8, 8],
|
|
@@ -1654,7 +1587,6 @@ export const leverModel = {
|
|
|
1654
1587
|
},
|
|
1655
1588
|
},
|
|
1656
1589
|
{
|
|
1657
|
-
id: "lever",
|
|
1658
1590
|
geometryId: "dve_lever_model",
|
|
1659
1591
|
position: [-5, 0, 8],
|
|
1660
1592
|
rotation: [-90, 45, 0],
|
|
@@ -1666,7 +1598,6 @@ export const leverModel = {
|
|
|
1666
1598
|
],
|
|
1667
1599
|
"placement=north,direction=west,state=on": [
|
|
1668
1600
|
{
|
|
1669
|
-
id: "lever_base",
|
|
1670
1601
|
geometryId: "dve_lever_model_base",
|
|
1671
1602
|
rotation: [-90, 0, 0],
|
|
1672
1603
|
rotationPivot: [8, 8, 8],
|
|
@@ -1675,7 +1606,6 @@ export const leverModel = {
|
|
|
1675
1606
|
},
|
|
1676
1607
|
},
|
|
1677
1608
|
{
|
|
1678
|
-
id: "lever",
|
|
1679
1609
|
geometryId: "dve_lever_model",
|
|
1680
1610
|
position: [5, 0, 8],
|
|
1681
1611
|
rotation: [-90, -45, 0],
|
|
@@ -1687,7 +1617,6 @@ export const leverModel = {
|
|
|
1687
1617
|
],
|
|
1688
1618
|
"placement=south,direction=north,state=off": [
|
|
1689
1619
|
{
|
|
1690
|
-
id: "lever_base",
|
|
1691
1620
|
geometryId: "dve_lever_model_base",
|
|
1692
1621
|
rotation: [90, 0, 0],
|
|
1693
1622
|
rotationPivot: [8, 8, 8],
|
|
@@ -1696,7 +1625,6 @@ export const leverModel = {
|
|
|
1696
1625
|
},
|
|
1697
1626
|
},
|
|
1698
1627
|
{
|
|
1699
|
-
id: "lever",
|
|
1700
1628
|
geometryId: "dve_lever_model",
|
|
1701
1629
|
position: [0, -5, 8],
|
|
1702
1630
|
rotation: [90 + 45, 0, 0],
|
|
@@ -1708,7 +1636,6 @@ export const leverModel = {
|
|
|
1708
1636
|
],
|
|
1709
1637
|
"placement=south,direction=north,state=on": [
|
|
1710
1638
|
{
|
|
1711
|
-
id: "lever_base",
|
|
1712
1639
|
geometryId: "dve_lever_model_base",
|
|
1713
1640
|
rotation: [90, 0, 0],
|
|
1714
1641
|
rotationPivot: [8, 8, 8],
|
|
@@ -1717,7 +1644,6 @@ export const leverModel = {
|
|
|
1717
1644
|
},
|
|
1718
1645
|
},
|
|
1719
1646
|
{
|
|
1720
|
-
id: "lever",
|
|
1721
1647
|
geometryId: "dve_lever_model",
|
|
1722
1648
|
position: [0, 5, 8],
|
|
1723
1649
|
rotation: [90 - 45, 0, 0],
|
|
@@ -1729,7 +1655,6 @@ export const leverModel = {
|
|
|
1729
1655
|
],
|
|
1730
1656
|
"placement=south,direction=south,state=off": [
|
|
1731
1657
|
{
|
|
1732
|
-
id: "lever_base",
|
|
1733
1658
|
geometryId: "dve_lever_model_base",
|
|
1734
1659
|
rotation: [90, 0, 0],
|
|
1735
1660
|
rotationPivot: [8, 8, 8],
|
|
@@ -1738,7 +1663,6 @@ export const leverModel = {
|
|
|
1738
1663
|
},
|
|
1739
1664
|
},
|
|
1740
1665
|
{
|
|
1741
|
-
id: "lever",
|
|
1742
1666
|
geometryId: "dve_lever_model",
|
|
1743
1667
|
position: [0, 5, 8],
|
|
1744
1668
|
rotation: [90 - 45, 0, 0],
|
|
@@ -1750,7 +1674,6 @@ export const leverModel = {
|
|
|
1750
1674
|
],
|
|
1751
1675
|
"placement=south,direction=south,state=on": [
|
|
1752
1676
|
{
|
|
1753
|
-
id: "lever_base",
|
|
1754
1677
|
geometryId: "dve_lever_model_base",
|
|
1755
1678
|
rotation: [90, 0, 0],
|
|
1756
1679
|
rotationPivot: [8, 8, 8],
|
|
@@ -1759,7 +1682,6 @@ export const leverModel = {
|
|
|
1759
1682
|
},
|
|
1760
1683
|
},
|
|
1761
1684
|
{
|
|
1762
|
-
id: "lever",
|
|
1763
1685
|
geometryId: "dve_lever_model",
|
|
1764
1686
|
position: [0, -5, 8],
|
|
1765
1687
|
rotation: [90 + 45, 0, 0],
|
|
@@ -1771,7 +1693,6 @@ export const leverModel = {
|
|
|
1771
1693
|
],
|
|
1772
1694
|
"placement=south,direction=east,state=off": [
|
|
1773
1695
|
{
|
|
1774
|
-
id: "lever_base",
|
|
1775
1696
|
geometryId: "dve_lever_model_base",
|
|
1776
1697
|
rotation: [90, 0, 0],
|
|
1777
1698
|
rotationPivot: [8, 8, 8],
|
|
@@ -1780,7 +1701,6 @@ export const leverModel = {
|
|
|
1780
1701
|
},
|
|
1781
1702
|
},
|
|
1782
1703
|
{
|
|
1783
|
-
id: "lever",
|
|
1784
1704
|
geometryId: "dve_lever_model",
|
|
1785
1705
|
position: [-5, 0, 8],
|
|
1786
1706
|
rotation: [90, -45, 0],
|
|
@@ -1792,7 +1712,6 @@ export const leverModel = {
|
|
|
1792
1712
|
],
|
|
1793
1713
|
"placement=south,direction=east,state=on": [
|
|
1794
1714
|
{
|
|
1795
|
-
id: "lever_base",
|
|
1796
1715
|
geometryId: "dve_lever_model_base",
|
|
1797
1716
|
rotation: [90, 0, 0],
|
|
1798
1717
|
rotationPivot: [8, 8, 8],
|
|
@@ -1801,7 +1720,6 @@ export const leverModel = {
|
|
|
1801
1720
|
},
|
|
1802
1721
|
},
|
|
1803
1722
|
{
|
|
1804
|
-
id: "lever",
|
|
1805
1723
|
geometryId: "dve_lever_model",
|
|
1806
1724
|
position: [5, 0, 8],
|
|
1807
1725
|
rotation: [90, 45, 0],
|
|
@@ -1813,7 +1731,6 @@ export const leverModel = {
|
|
|
1813
1731
|
],
|
|
1814
1732
|
"placement=south,direction=west,state=off": [
|
|
1815
1733
|
{
|
|
1816
|
-
id: "lever_base",
|
|
1817
1734
|
geometryId: "dve_lever_model_base",
|
|
1818
1735
|
rotation: [90, 0, 0],
|
|
1819
1736
|
rotationPivot: [8, 8, 8],
|
|
@@ -1822,7 +1739,6 @@ export const leverModel = {
|
|
|
1822
1739
|
},
|
|
1823
1740
|
},
|
|
1824
1741
|
{
|
|
1825
|
-
id: "lever",
|
|
1826
1742
|
geometryId: "dve_lever_model",
|
|
1827
1743
|
position: [-5, 0, 8],
|
|
1828
1744
|
rotation: [90, -45, 0],
|
|
@@ -1834,7 +1750,6 @@ export const leverModel = {
|
|
|
1834
1750
|
],
|
|
1835
1751
|
"placement=south,direction=west,state=on": [
|
|
1836
1752
|
{
|
|
1837
|
-
id: "lever_base",
|
|
1838
1753
|
geometryId: "dve_lever_model_base",
|
|
1839
1754
|
rotation: [90, 0, 0],
|
|
1840
1755
|
rotationPivot: [8, 8, 8],
|
|
@@ -1843,7 +1758,6 @@ export const leverModel = {
|
|
|
1843
1758
|
},
|
|
1844
1759
|
},
|
|
1845
1760
|
{
|
|
1846
|
-
id: "lever",
|
|
1847
1761
|
geometryId: "dve_lever_model",
|
|
1848
1762
|
position: [5, 0, 8],
|
|
1849
1763
|
rotation: [90, 45, 0],
|
|
@@ -1855,7 +1769,6 @@ export const leverModel = {
|
|
|
1855
1769
|
],
|
|
1856
1770
|
"placement=east,direction=north,state=off": [
|
|
1857
1771
|
{
|
|
1858
|
-
id: "lever_base",
|
|
1859
1772
|
geometryId: "dve_lever_model_base",
|
|
1860
1773
|
rotation: [0, 0, 90],
|
|
1861
1774
|
rotationPivot: [8, 8, 8],
|
|
@@ -1864,7 +1777,6 @@ export const leverModel = {
|
|
|
1864
1777
|
},
|
|
1865
1778
|
},
|
|
1866
1779
|
{
|
|
1867
|
-
id: "lever",
|
|
1868
1780
|
geometryId: "dve_lever_model",
|
|
1869
1781
|
position: [0, -5, 8],
|
|
1870
1782
|
rotation: [90, -90, 45],
|
|
@@ -1876,7 +1788,6 @@ export const leverModel = {
|
|
|
1876
1788
|
],
|
|
1877
1789
|
"placement=east,direction=north,state=on": [
|
|
1878
1790
|
{
|
|
1879
|
-
id: "lever_base",
|
|
1880
1791
|
geometryId: "dve_lever_model_base",
|
|
1881
1792
|
rotation: [0, 0, 90],
|
|
1882
1793
|
rotationPivot: [8, 8, 8],
|
|
@@ -1885,7 +1796,6 @@ export const leverModel = {
|
|
|
1885
1796
|
},
|
|
1886
1797
|
},
|
|
1887
1798
|
{
|
|
1888
|
-
id: "lever",
|
|
1889
1799
|
geometryId: "dve_lever_model",
|
|
1890
1800
|
position: [0, 5, 8],
|
|
1891
1801
|
rotation: [90, -90, -45],
|
|
@@ -1897,7 +1807,6 @@ export const leverModel = {
|
|
|
1897
1807
|
],
|
|
1898
1808
|
"placement=east,direction=south,state=off": [
|
|
1899
1809
|
{
|
|
1900
|
-
id: "lever_base",
|
|
1901
1810
|
geometryId: "dve_lever_model_base",
|
|
1902
1811
|
rotation: [0, 0, 90],
|
|
1903
1812
|
rotationPivot: [8, 8, 8],
|
|
@@ -1906,7 +1815,6 @@ export const leverModel = {
|
|
|
1906
1815
|
},
|
|
1907
1816
|
},
|
|
1908
1817
|
{
|
|
1909
|
-
id: "lever",
|
|
1910
1818
|
geometryId: "dve_lever_model",
|
|
1911
1819
|
position: [0, 5, 8],
|
|
1912
1820
|
rotation: [90, -90, -45],
|
|
@@ -1918,7 +1826,6 @@ export const leverModel = {
|
|
|
1918
1826
|
],
|
|
1919
1827
|
"placement=east,direction=south,state=on": [
|
|
1920
1828
|
{
|
|
1921
|
-
id: "lever_base",
|
|
1922
1829
|
geometryId: "dve_lever_model_base",
|
|
1923
1830
|
rotation: [0, 0, 90],
|
|
1924
1831
|
rotationPivot: [8, 8, 8],
|
|
@@ -1927,7 +1834,6 @@ export const leverModel = {
|
|
|
1927
1834
|
},
|
|
1928
1835
|
},
|
|
1929
1836
|
{
|
|
1930
|
-
id: "lever",
|
|
1931
1837
|
geometryId: "dve_lever_model",
|
|
1932
1838
|
position: [0, -5, 8],
|
|
1933
1839
|
rotation: [90, -90, 45],
|
|
@@ -1939,7 +1845,6 @@ export const leverModel = {
|
|
|
1939
1845
|
],
|
|
1940
1846
|
"placement=east,direction=east,state=off": [
|
|
1941
1847
|
{
|
|
1942
|
-
id: "lever_base",
|
|
1943
1848
|
geometryId: "dve_lever_model_base",
|
|
1944
1849
|
rotation: [0, 0, 90],
|
|
1945
1850
|
rotationPivot: [8, 8, 8],
|
|
@@ -1948,7 +1853,6 @@ export const leverModel = {
|
|
|
1948
1853
|
},
|
|
1949
1854
|
},
|
|
1950
1855
|
{
|
|
1951
|
-
id: "lever",
|
|
1952
1856
|
geometryId: "dve_lever_model",
|
|
1953
1857
|
position: [8, 0, 5],
|
|
1954
1858
|
rotation: [90, -90 + 45, 0],
|
|
@@ -1960,7 +1864,6 @@ export const leverModel = {
|
|
|
1960
1864
|
],
|
|
1961
1865
|
"placement=east,direction=east,state=on": [
|
|
1962
1866
|
{
|
|
1963
|
-
id: "lever_base",
|
|
1964
1867
|
geometryId: "dve_lever_model_base",
|
|
1965
1868
|
rotation: [0, 0, 90],
|
|
1966
1869
|
rotationPivot: [8, 8, 8],
|
|
@@ -1969,7 +1872,6 @@ export const leverModel = {
|
|
|
1969
1872
|
},
|
|
1970
1873
|
},
|
|
1971
1874
|
{
|
|
1972
|
-
id: "lever",
|
|
1973
1875
|
geometryId: "dve_lever_model",
|
|
1974
1876
|
position: [8, 0, -5],
|
|
1975
1877
|
rotation: [90, -90 - 45, 0],
|
|
@@ -1981,7 +1883,6 @@ export const leverModel = {
|
|
|
1981
1883
|
],
|
|
1982
1884
|
"placement=east,direction=west,state=off": [
|
|
1983
1885
|
{
|
|
1984
|
-
id: "lever_base",
|
|
1985
1886
|
geometryId: "dve_lever_model_base",
|
|
1986
1887
|
rotation: [0, 0, 90],
|
|
1987
1888
|
rotationPivot: [8, 8, 8],
|
|
@@ -1990,7 +1891,6 @@ export const leverModel = {
|
|
|
1990
1891
|
},
|
|
1991
1892
|
},
|
|
1992
1893
|
{
|
|
1993
|
-
id: "lever",
|
|
1994
1894
|
geometryId: "dve_lever_model",
|
|
1995
1895
|
position: [8, 0, -5],
|
|
1996
1896
|
rotation: [90, -90 - 45, 0],
|
|
@@ -2002,7 +1902,6 @@ export const leverModel = {
|
|
|
2002
1902
|
],
|
|
2003
1903
|
"placement=east,direction=west,state=on": [
|
|
2004
1904
|
{
|
|
2005
|
-
id: "lever_base",
|
|
2006
1905
|
geometryId: "dve_lever_model_base",
|
|
2007
1906
|
rotation: [0, 0, 90],
|
|
2008
1907
|
rotationPivot: [8, 8, 8],
|
|
@@ -2011,7 +1910,6 @@ export const leverModel = {
|
|
|
2011
1910
|
},
|
|
2012
1911
|
},
|
|
2013
1912
|
{
|
|
2014
|
-
id: "lever",
|
|
2015
1913
|
geometryId: "dve_lever_model",
|
|
2016
1914
|
position: [8, 0, 5],
|
|
2017
1915
|
rotation: [90, -90 + 45, 0],
|
|
@@ -2023,7 +1921,6 @@ export const leverModel = {
|
|
|
2023
1921
|
],
|
|
2024
1922
|
"placement=west,direction=north,state=off": [
|
|
2025
1923
|
{
|
|
2026
|
-
id: "lever_base",
|
|
2027
1924
|
geometryId: "dve_lever_model_base",
|
|
2028
1925
|
rotation: [0, 0, -90],
|
|
2029
1926
|
rotationPivot: [8, 8, 8],
|
|
@@ -2032,7 +1929,6 @@ export const leverModel = {
|
|
|
2032
1929
|
},
|
|
2033
1930
|
},
|
|
2034
1931
|
{
|
|
2035
|
-
id: "lever",
|
|
2036
1932
|
geometryId: "dve_lever_model",
|
|
2037
1933
|
position: [0, -5, 8],
|
|
2038
1934
|
rotation: [90, 90, -45],
|
|
@@ -2044,7 +1940,6 @@ export const leverModel = {
|
|
|
2044
1940
|
],
|
|
2045
1941
|
"placement=west,direction=north,state=on": [
|
|
2046
1942
|
{
|
|
2047
|
-
id: "lever_base",
|
|
2048
1943
|
geometryId: "dve_lever_model_base",
|
|
2049
1944
|
rotation: [0, 0, -90],
|
|
2050
1945
|
rotationPivot: [8, 8, 8],
|
|
@@ -2053,7 +1948,6 @@ export const leverModel = {
|
|
|
2053
1948
|
},
|
|
2054
1949
|
},
|
|
2055
1950
|
{
|
|
2056
|
-
id: "lever",
|
|
2057
1951
|
geometryId: "dve_lever_model",
|
|
2058
1952
|
position: [0, 5, 8],
|
|
2059
1953
|
rotation: [90, 90, 45],
|
|
@@ -2065,7 +1959,6 @@ export const leverModel = {
|
|
|
2065
1959
|
],
|
|
2066
1960
|
"placement=west,direction=south,state=off": [
|
|
2067
1961
|
{
|
|
2068
|
-
id: "lever_base",
|
|
2069
1962
|
geometryId: "dve_lever_model_base",
|
|
2070
1963
|
rotation: [0, 0, -90],
|
|
2071
1964
|
rotationPivot: [8, 8, 8],
|
|
@@ -2074,7 +1967,6 @@ export const leverModel = {
|
|
|
2074
1967
|
},
|
|
2075
1968
|
},
|
|
2076
1969
|
{
|
|
2077
|
-
id: "lever",
|
|
2078
1970
|
geometryId: "dve_lever_model",
|
|
2079
1971
|
position: [0, 5, 8],
|
|
2080
1972
|
rotation: [90, 90, 45],
|
|
@@ -2086,7 +1978,6 @@ export const leverModel = {
|
|
|
2086
1978
|
],
|
|
2087
1979
|
"placement=west,direction=south,state=on": [
|
|
2088
1980
|
{
|
|
2089
|
-
id: "lever_base",
|
|
2090
1981
|
geometryId: "dve_lever_model_base",
|
|
2091
1982
|
rotation: [0, 0, -90],
|
|
2092
1983
|
rotationPivot: [8, 8, 8],
|
|
@@ -2095,7 +1986,6 @@ export const leverModel = {
|
|
|
2095
1986
|
},
|
|
2096
1987
|
},
|
|
2097
1988
|
{
|
|
2098
|
-
id: "lever",
|
|
2099
1989
|
geometryId: "dve_lever_model",
|
|
2100
1990
|
position: [0, -5, 8],
|
|
2101
1991
|
rotation: [90, 90, -45],
|
|
@@ -2107,7 +1997,6 @@ export const leverModel = {
|
|
|
2107
1997
|
],
|
|
2108
1998
|
"placement=west,direction=east,state=off": [
|
|
2109
1999
|
{
|
|
2110
|
-
id: "lever_base",
|
|
2111
2000
|
geometryId: "dve_lever_model_base",
|
|
2112
2001
|
rotation: [0, 0, -90],
|
|
2113
2002
|
rotationPivot: [8, 8, 8],
|
|
@@ -2116,7 +2005,6 @@ export const leverModel = {
|
|
|
2116
2005
|
},
|
|
2117
2006
|
},
|
|
2118
2007
|
{
|
|
2119
|
-
id: "lever",
|
|
2120
2008
|
geometryId: "dve_lever_model",
|
|
2121
2009
|
position: [8, 0, 5],
|
|
2122
2010
|
rotation: [90, 90 - 45, 0],
|
|
@@ -2128,7 +2016,6 @@ export const leverModel = {
|
|
|
2128
2016
|
],
|
|
2129
2017
|
"placement=west,direction=east,state=on": [
|
|
2130
2018
|
{
|
|
2131
|
-
id: "lever_base",
|
|
2132
2019
|
geometryId: "dve_lever_model_base",
|
|
2133
2020
|
rotation: [0, 0, -90],
|
|
2134
2021
|
rotationPivot: [8, 8, 8],
|
|
@@ -2137,7 +2024,6 @@ export const leverModel = {
|
|
|
2137
2024
|
},
|
|
2138
2025
|
},
|
|
2139
2026
|
{
|
|
2140
|
-
id: "lever",
|
|
2141
2027
|
geometryId: "dve_lever_model",
|
|
2142
2028
|
position: [8, 0, -5],
|
|
2143
2029
|
rotation: [90, 90 + 45, 0],
|
|
@@ -2149,7 +2035,6 @@ export const leverModel = {
|
|
|
2149
2035
|
],
|
|
2150
2036
|
"placement=west,direction=west,state=off": [
|
|
2151
2037
|
{
|
|
2152
|
-
id: "lever_base",
|
|
2153
2038
|
geometryId: "dve_lever_model_base",
|
|
2154
2039
|
rotation: [0, 0, -90],
|
|
2155
2040
|
rotationPivot: [8, 8, 8],
|
|
@@ -2158,7 +2043,6 @@ export const leverModel = {
|
|
|
2158
2043
|
},
|
|
2159
2044
|
},
|
|
2160
2045
|
{
|
|
2161
|
-
id: "lever",
|
|
2162
2046
|
geometryId: "dve_lever_model",
|
|
2163
2047
|
position: [8, 0, -5],
|
|
2164
2048
|
rotation: [90, 90 + 45, 0],
|
|
@@ -2170,7 +2054,6 @@ export const leverModel = {
|
|
|
2170
2054
|
],
|
|
2171
2055
|
"placement=west,direction=west,state=on": [
|
|
2172
2056
|
{
|
|
2173
|
-
id: "lever_base",
|
|
2174
2057
|
geometryId: "dve_lever_model_base",
|
|
2175
2058
|
rotation: [0, 0, -90],
|
|
2176
2059
|
rotationPivot: [8, 8, 8],
|
|
@@ -2179,7 +2062,6 @@ export const leverModel = {
|
|
|
2179
2062
|
},
|
|
2180
2063
|
},
|
|
2181
2064
|
{
|
|
2182
|
-
id: "lever",
|
|
2183
2065
|
geometryId: "dve_lever_model",
|
|
2184
2066
|
position: [8, 0, 5],
|
|
2185
2067
|
rotation: [90, 90 - 45, 0],
|