@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
|
@@ -1,56 +1,41 @@
|
|
|
1
1
|
export const simpleThinPannel = {
|
|
2
2
|
id: "dve_simple_thin_panel",
|
|
3
3
|
relationsSchema: [],
|
|
4
|
-
|
|
4
|
+
stateSchema: [
|
|
5
5
|
{
|
|
6
6
|
name: "placement",
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
1: "up",
|
|
11
|
-
2: "north",
|
|
12
|
-
3: "south",
|
|
13
|
-
4: "east",
|
|
14
|
-
5: "west",
|
|
15
|
-
},
|
|
7
|
+
bitIndex: 0,
|
|
8
|
+
bitSize: 3,
|
|
9
|
+
values: ["down", "up", "north", "south", "east", "west"],
|
|
16
10
|
},
|
|
17
11
|
{
|
|
18
12
|
name: "direction",
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
1: "south",
|
|
23
|
-
2: "east",
|
|
24
|
-
3: "west",
|
|
25
|
-
},
|
|
13
|
+
bitIndex: 3,
|
|
14
|
+
bitSize: 2,
|
|
15
|
+
values: ["north", "south", "east", "west"],
|
|
26
16
|
},
|
|
27
17
|
],
|
|
28
18
|
arguments: {
|
|
29
19
|
upDownTextures: {
|
|
30
20
|
type: "texture",
|
|
31
21
|
},
|
|
32
|
-
upDownTexturesTransparent: {
|
|
33
|
-
type: "boolean",
|
|
34
|
-
default: false,
|
|
35
|
-
},
|
|
36
22
|
sideTextures: {
|
|
37
23
|
type: "texture",
|
|
38
24
|
},
|
|
39
25
|
},
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
26
|
+
properties: {
|
|
27
|
+
dve_placing_strategy: "*",
|
|
28
|
+
},
|
|
29
|
+
conditonalNodes: {},
|
|
30
|
+
stateNodes: {
|
|
43
31
|
"placement=down,direction=south": [
|
|
44
32
|
{
|
|
45
|
-
id: "cube",
|
|
46
33
|
geometryId: "dve_thin_panel_down",
|
|
47
34
|
inputs: {
|
|
48
35
|
upTex: "@upDownTextures",
|
|
49
36
|
upTexRotation: 0,
|
|
50
|
-
upTexTransparent: "@upDownTexturesTransparent",
|
|
51
37
|
downTex: "@upDownTextures",
|
|
52
38
|
downTexRotation: 0,
|
|
53
|
-
downTexTransparent: "@upDownTexturesTransparent",
|
|
54
39
|
northTex: "@sideTextures",
|
|
55
40
|
southTex: "@sideTextures",
|
|
56
41
|
eastTex: "@sideTextures",
|
|
@@ -60,15 +45,12 @@ export const simpleThinPannel = {
|
|
|
60
45
|
],
|
|
61
46
|
"placement=down,direction=north": [
|
|
62
47
|
{
|
|
63
|
-
id: "cube",
|
|
64
48
|
geometryId: "dve_thin_panel_down",
|
|
65
49
|
inputs: {
|
|
66
50
|
upTex: "@upDownTextures",
|
|
67
51
|
upTexRotation: 180,
|
|
68
|
-
upTexTransparent: "@upDownTexturesTransparent",
|
|
69
52
|
downTex: "@upDownTextures",
|
|
70
53
|
downTexRotation: 180,
|
|
71
|
-
downTexTransparent: "@upDownTexturesTransparent",
|
|
72
54
|
northTex: "@sideTextures",
|
|
73
55
|
southTex: "@sideTextures",
|
|
74
56
|
eastTex: "@sideTextures",
|
|
@@ -78,15 +60,12 @@ export const simpleThinPannel = {
|
|
|
78
60
|
],
|
|
79
61
|
"placement=down,direction=east": [
|
|
80
62
|
{
|
|
81
|
-
id: "cube",
|
|
82
63
|
geometryId: "dve_thin_panel_down",
|
|
83
64
|
inputs: {
|
|
84
65
|
upTex: "@upDownTextures",
|
|
85
66
|
upTexRotation: 90,
|
|
86
|
-
upTexTransparent: "@upDownTexturesTransparent",
|
|
87
67
|
downTex: "@upDownTextures",
|
|
88
68
|
downTexRotation: 90,
|
|
89
|
-
downTexTransparent: "@upDownTexturesTransparent",
|
|
90
69
|
northTex: "@sideTextures",
|
|
91
70
|
southTex: "@sideTextures",
|
|
92
71
|
eastTex: "@sideTextures",
|
|
@@ -96,15 +75,12 @@ export const simpleThinPannel = {
|
|
|
96
75
|
],
|
|
97
76
|
"placement=down,direction=west": [
|
|
98
77
|
{
|
|
99
|
-
id: "cube",
|
|
100
78
|
geometryId: "dve_thin_panel_down",
|
|
101
79
|
inputs: {
|
|
102
80
|
upTex: "@upDownTextures",
|
|
103
81
|
upTexRotation: 270,
|
|
104
|
-
upTexTransparent: "@upDownTexturesTransparent",
|
|
105
82
|
downTex: "@upDownTextures",
|
|
106
83
|
downTexRotation: 270,
|
|
107
|
-
downTexTransparent: "@upDownTexturesTransparent",
|
|
108
84
|
northTex: "@sideTextures",
|
|
109
85
|
southTex: "@sideTextures",
|
|
110
86
|
eastTex: "@sideTextures",
|
|
@@ -114,16 +90,13 @@ export const simpleThinPannel = {
|
|
|
114
90
|
],
|
|
115
91
|
"placement=up,direction=north": [
|
|
116
92
|
{
|
|
117
|
-
id: "cube",
|
|
118
93
|
geometryId: "dve_thin_panel_down",
|
|
119
94
|
position: [0, 1 - 3 / 16, 0],
|
|
120
95
|
inputs: {
|
|
121
96
|
upTex: "@upDownTextures",
|
|
122
97
|
upTexRotation: 180,
|
|
123
|
-
upTexTransparent: "@upDownTexturesTransparent",
|
|
124
98
|
downTex: "@upDownTextures",
|
|
125
99
|
downTexRotation: 180,
|
|
126
|
-
downTexTransparent: "@upDownTexturesTransparent",
|
|
127
100
|
northTex: "@sideTextures",
|
|
128
101
|
southTex: "@sideTextures",
|
|
129
102
|
eastTex: "@sideTextures",
|
|
@@ -133,16 +106,13 @@ export const simpleThinPannel = {
|
|
|
133
106
|
],
|
|
134
107
|
"placement=up,direction=south": [
|
|
135
108
|
{
|
|
136
|
-
id: "cube",
|
|
137
109
|
geometryId: "dve_thin_panel_down",
|
|
138
110
|
position: [0, 1 - 3 / 16, 0],
|
|
139
111
|
inputs: {
|
|
140
112
|
upTex: "@upDownTextures",
|
|
141
113
|
upTexRotation: 0,
|
|
142
|
-
upTexTransparent: "@upDownTexturesTransparent",
|
|
143
114
|
downTex: "@upDownTextures",
|
|
144
115
|
downTexRotation: 0,
|
|
145
|
-
downTexTransparent: "@upDownTexturesTransparent",
|
|
146
116
|
northTex: "@sideTextures",
|
|
147
117
|
southTex: "@sideTextures",
|
|
148
118
|
eastTex: "@sideTextures",
|
|
@@ -152,16 +122,13 @@ export const simpleThinPannel = {
|
|
|
152
122
|
],
|
|
153
123
|
"placement=up,direction=east": [
|
|
154
124
|
{
|
|
155
|
-
id: "cube",
|
|
156
125
|
geometryId: "dve_thin_panel_down",
|
|
157
126
|
position: [0, 1 - 3 / 16, 0],
|
|
158
127
|
inputs: {
|
|
159
128
|
upTex: "@upDownTextures",
|
|
160
129
|
upTexRotation: 90,
|
|
161
|
-
upTexTransparent: "@upDownTexturesTransparent",
|
|
162
130
|
downTex: "@upDownTextures",
|
|
163
131
|
downTexRotation: 90,
|
|
164
|
-
downTexTransparent: "@upDownTexturesTransparent",
|
|
165
132
|
northTex: "@sideTextures",
|
|
166
133
|
southTex: "@sideTextures",
|
|
167
134
|
eastTex: "@sideTextures",
|
|
@@ -171,16 +138,13 @@ export const simpleThinPannel = {
|
|
|
171
138
|
],
|
|
172
139
|
"placement=up,direction=west": [
|
|
173
140
|
{
|
|
174
|
-
id: "cube",
|
|
175
141
|
geometryId: "dve_thin_panel_down",
|
|
176
142
|
position: [0, 1 - 3 / 16, 0],
|
|
177
143
|
inputs: {
|
|
178
144
|
upTex: "@upDownTextures",
|
|
179
145
|
upTexRotation: 270,
|
|
180
|
-
upTexTransparent: "@upDownTexturesTransparent",
|
|
181
146
|
downTex: "@upDownTextures",
|
|
182
147
|
downTexRotation: 270,
|
|
183
|
-
downTexTransparent: "@upDownTexturesTransparent",
|
|
184
148
|
northTex: "@sideTextures",
|
|
185
149
|
southTex: "@sideTextures",
|
|
186
150
|
eastTex: "@sideTextures",
|
|
@@ -190,7 +154,6 @@ export const simpleThinPannel = {
|
|
|
190
154
|
],
|
|
191
155
|
"placement=north,direction=north": [
|
|
192
156
|
{
|
|
193
|
-
id: "cube",
|
|
194
157
|
geometryId: "dve_thin_panel_south",
|
|
195
158
|
position: [0, 0, 1 - 3 / 16],
|
|
196
159
|
inputs: {
|
|
@@ -198,10 +161,8 @@ export const simpleThinPannel = {
|
|
|
198
161
|
downTex: "@sideTextures",
|
|
199
162
|
northTex: "@upDownTextures",
|
|
200
163
|
northTexRotation: 180,
|
|
201
|
-
northTexTransparent: "@upDownTexturesTransparent",
|
|
202
164
|
southTex: "@upDownTextures",
|
|
203
165
|
southTexRotation: 180,
|
|
204
|
-
southTexTransparent: "@upDownTexturesTransparent",
|
|
205
166
|
eastTex: "@sideTextures",
|
|
206
167
|
westTex: "@sideTextures",
|
|
207
168
|
},
|
|
@@ -209,7 +170,6 @@ export const simpleThinPannel = {
|
|
|
209
170
|
],
|
|
210
171
|
"placement=north,direction=south": [
|
|
211
172
|
{
|
|
212
|
-
id: "cube",
|
|
213
173
|
geometryId: "dve_thin_panel_south",
|
|
214
174
|
position: [0, 0, 1 - 3 / 16],
|
|
215
175
|
inputs: {
|
|
@@ -217,10 +177,8 @@ export const simpleThinPannel = {
|
|
|
217
177
|
downTex: "@sideTextures",
|
|
218
178
|
northTex: "@upDownTextures",
|
|
219
179
|
northTexRotation: 0,
|
|
220
|
-
northTexTransparent: "@upDownTexturesTransparent",
|
|
221
180
|
southTex: "@upDownTextures",
|
|
222
181
|
southTexRotation: 0,
|
|
223
|
-
southTexTransparent: "@upDownTexturesTransparent",
|
|
224
182
|
eastTex: "@sideTextures",
|
|
225
183
|
westTex: "@sideTextures",
|
|
226
184
|
},
|
|
@@ -228,7 +186,6 @@ export const simpleThinPannel = {
|
|
|
228
186
|
],
|
|
229
187
|
"placement=north,direction=east": [
|
|
230
188
|
{
|
|
231
|
-
id: "cube",
|
|
232
189
|
geometryId: "dve_thin_panel_south",
|
|
233
190
|
position: [0, 0, 1 - 3 / 16],
|
|
234
191
|
inputs: {
|
|
@@ -236,10 +193,8 @@ export const simpleThinPannel = {
|
|
|
236
193
|
downTex: "@sideTextures",
|
|
237
194
|
northTex: "@upDownTextures",
|
|
238
195
|
northTexRotation: 90,
|
|
239
|
-
northTexTransparent: "@upDownTexturesTransparent",
|
|
240
196
|
southTex: "@upDownTextures",
|
|
241
197
|
southTexRotation: 90,
|
|
242
|
-
southTexTransparent: "@upDownTexturesTransparent",
|
|
243
198
|
eastTex: "@sideTextures",
|
|
244
199
|
westTex: "@sideTextures",
|
|
245
200
|
},
|
|
@@ -247,7 +202,6 @@ export const simpleThinPannel = {
|
|
|
247
202
|
],
|
|
248
203
|
"placement=north,direction=west": [
|
|
249
204
|
{
|
|
250
|
-
id: "cube",
|
|
251
205
|
geometryId: "dve_thin_panel_south",
|
|
252
206
|
position: [0, 0, 1 - 3 / 16],
|
|
253
207
|
inputs: {
|
|
@@ -255,10 +209,8 @@ export const simpleThinPannel = {
|
|
|
255
209
|
downTex: "@sideTextures",
|
|
256
210
|
northTex: "@upDownTextures",
|
|
257
211
|
northTexRotation: 270,
|
|
258
|
-
northTexTransparent: "@upDownTexturesTransparent",
|
|
259
212
|
southTex: "@upDownTextures",
|
|
260
213
|
southTexRotation: 270,
|
|
261
|
-
southTexTransparent: "@upDownTexturesTransparent",
|
|
262
214
|
eastTex: "@sideTextures",
|
|
263
215
|
westTex: "@sideTextures",
|
|
264
216
|
},
|
|
@@ -266,17 +218,14 @@ export const simpleThinPannel = {
|
|
|
266
218
|
],
|
|
267
219
|
"placement=south,direction=north": [
|
|
268
220
|
{
|
|
269
|
-
id: "cube",
|
|
270
221
|
geometryId: "dve_thin_panel_south",
|
|
271
222
|
inputs: {
|
|
272
223
|
upTex: "@sideTextures",
|
|
273
224
|
downTex: "@sideTextures",
|
|
274
225
|
northTex: "@upDownTextures",
|
|
275
226
|
northTexRotation: 180,
|
|
276
|
-
northTexTransparent: "@upDownTexturesTransparent",
|
|
277
227
|
southTex: "@upDownTextures",
|
|
278
228
|
southTexRotation: 180,
|
|
279
|
-
southTexTransparent: "@upDownTexturesTransparent",
|
|
280
229
|
eastTex: "@sideTextures",
|
|
281
230
|
westTex: "@sideTextures",
|
|
282
231
|
},
|
|
@@ -284,17 +233,14 @@ export const simpleThinPannel = {
|
|
|
284
233
|
],
|
|
285
234
|
"placement=south,direction=south": [
|
|
286
235
|
{
|
|
287
|
-
id: "cube",
|
|
288
236
|
geometryId: "dve_thin_panel_south",
|
|
289
237
|
inputs: {
|
|
290
238
|
upTex: "@sideTextures",
|
|
291
239
|
downTex: "@sideTextures",
|
|
292
240
|
northTex: "@upDownTextures",
|
|
293
241
|
northTexRotation: 0,
|
|
294
|
-
northTexTransparent: "@upDownTexturesTransparent",
|
|
295
242
|
southTex: "@upDownTextures",
|
|
296
243
|
southTexRotation: 0,
|
|
297
|
-
southTexTransparent: "@upDownTexturesTransparent",
|
|
298
244
|
eastTex: "@sideTextures",
|
|
299
245
|
westTex: "@sideTextures",
|
|
300
246
|
},
|
|
@@ -302,17 +248,14 @@ export const simpleThinPannel = {
|
|
|
302
248
|
],
|
|
303
249
|
"placement=south,direction=east": [
|
|
304
250
|
{
|
|
305
|
-
id: "cube",
|
|
306
251
|
geometryId: "dve_thin_panel_south",
|
|
307
252
|
inputs: {
|
|
308
253
|
upTex: "@sideTextures",
|
|
309
254
|
downTex: "@sideTextures",
|
|
310
255
|
northTex: "@upDownTextures",
|
|
311
256
|
northTexRotation: 90,
|
|
312
|
-
northTexTransparent: "@upDownTexturesTransparent",
|
|
313
257
|
southTex: "@upDownTextures",
|
|
314
258
|
southTexRotation: 90,
|
|
315
|
-
southTexTransparent: "@upDownTexturesTransparent",
|
|
316
259
|
eastTex: "@sideTextures",
|
|
317
260
|
westTex: "@sideTextures",
|
|
318
261
|
},
|
|
@@ -320,17 +263,14 @@ export const simpleThinPannel = {
|
|
|
320
263
|
],
|
|
321
264
|
"placement=south,direction=west": [
|
|
322
265
|
{
|
|
323
|
-
id: "cube",
|
|
324
266
|
geometryId: "dve_thin_panel_south",
|
|
325
267
|
inputs: {
|
|
326
268
|
upTex: "@sideTextures",
|
|
327
269
|
downTex: "@sideTextures",
|
|
328
270
|
northTex: "@upDownTextures",
|
|
329
271
|
northTexRotation: 270,
|
|
330
|
-
northTexTransparent: "@upDownTexturesTransparent",
|
|
331
272
|
southTex: "@upDownTextures",
|
|
332
273
|
southTexRotation: 270,
|
|
333
|
-
southTexTransparent: "@upDownTexturesTransparent",
|
|
334
274
|
eastTex: "@sideTextures",
|
|
335
275
|
westTex: "@sideTextures",
|
|
336
276
|
},
|
|
@@ -338,7 +278,6 @@ export const simpleThinPannel = {
|
|
|
338
278
|
],
|
|
339
279
|
"placement=east,direction=north": [
|
|
340
280
|
{
|
|
341
|
-
id: "cube",
|
|
342
281
|
geometryId: "dve_thin_panel_west",
|
|
343
282
|
position: [1 - 3 / 16, 0, 0],
|
|
344
283
|
inputs: {
|
|
@@ -348,16 +287,13 @@ export const simpleThinPannel = {
|
|
|
348
287
|
southTex: "@sideTextures",
|
|
349
288
|
eastTex: "@upDownTextures",
|
|
350
289
|
eastTexRotation: 0,
|
|
351
|
-
eastTexTransparent: "@upDownTexturesTransparent",
|
|
352
290
|
westTex: "@upDownTextures",
|
|
353
291
|
westTexRotation: 0,
|
|
354
|
-
westTexTransparent: "@upDownTexturesTransparent",
|
|
355
292
|
},
|
|
356
293
|
},
|
|
357
294
|
],
|
|
358
295
|
"placement=east,direction=south": [
|
|
359
296
|
{
|
|
360
|
-
id: "cube",
|
|
361
297
|
geometryId: "dve_thin_panel_west",
|
|
362
298
|
position: [1 - 3 / 16, 0, 0],
|
|
363
299
|
inputs: {
|
|
@@ -367,16 +303,13 @@ export const simpleThinPannel = {
|
|
|
367
303
|
southTex: "@sideTextures",
|
|
368
304
|
eastTex: "@upDownTextures",
|
|
369
305
|
eastTexRotation: 180,
|
|
370
|
-
eastTexTransparent: "@upDownTexturesTransparent",
|
|
371
306
|
westTex: "@upDownTextures",
|
|
372
307
|
westTexRotation: 180,
|
|
373
|
-
westTexTransparent: "@upDownTexturesTransparent",
|
|
374
308
|
},
|
|
375
309
|
},
|
|
376
310
|
],
|
|
377
311
|
"placement=east,direction=east": [
|
|
378
312
|
{
|
|
379
|
-
id: "cube",
|
|
380
313
|
geometryId: "dve_thin_panel_west",
|
|
381
314
|
position: [1 - 3 / 16, 0, 0],
|
|
382
315
|
inputs: {
|
|
@@ -386,16 +319,13 @@ export const simpleThinPannel = {
|
|
|
386
319
|
southTex: "@sideTextures",
|
|
387
320
|
eastTex: "@upDownTextures",
|
|
388
321
|
eastTexRotation: 90,
|
|
389
|
-
eastTexTransparent: "@upDownTexturesTransparent",
|
|
390
322
|
westTex: "@upDownTextures",
|
|
391
323
|
westTexRotation: 90,
|
|
392
|
-
westTexTransparent: "@upDownTexturesTransparent",
|
|
393
324
|
},
|
|
394
325
|
},
|
|
395
326
|
],
|
|
396
327
|
"placement=east,direction=west": [
|
|
397
328
|
{
|
|
398
|
-
id: "cube",
|
|
399
329
|
geometryId: "dve_thin_panel_west",
|
|
400
330
|
position: [1 - 3 / 16, 0, 0],
|
|
401
331
|
inputs: {
|
|
@@ -405,16 +335,13 @@ export const simpleThinPannel = {
|
|
|
405
335
|
southTex: "@sideTextures",
|
|
406
336
|
eastTex: "@upDownTextures",
|
|
407
337
|
eastTexRotation: 270,
|
|
408
|
-
eastTexTransparent: "@upDownTexturesTransparent",
|
|
409
338
|
westTex: "@upDownTextures",
|
|
410
339
|
westTexRotation: 270,
|
|
411
|
-
westTexTransparent: "@upDownTexturesTransparent",
|
|
412
340
|
},
|
|
413
341
|
},
|
|
414
342
|
],
|
|
415
343
|
"placement=west,direction=north": [
|
|
416
344
|
{
|
|
417
|
-
id: "cube",
|
|
418
345
|
geometryId: "dve_thin_panel_west",
|
|
419
346
|
inputs: {
|
|
420
347
|
upTex: "@sideTextures",
|
|
@@ -423,16 +350,13 @@ export const simpleThinPannel = {
|
|
|
423
350
|
southTex: "@sideTextures",
|
|
424
351
|
eastTex: "@upDownTextures",
|
|
425
352
|
eastTexRotation: 0,
|
|
426
|
-
eastTexTransparent: "@upDownTexturesTransparent",
|
|
427
353
|
westTex: "@upDownTextures",
|
|
428
354
|
westTexRotation: 0,
|
|
429
|
-
westTexTransparent: "@upDownTexturesTransparent",
|
|
430
355
|
},
|
|
431
356
|
},
|
|
432
357
|
],
|
|
433
358
|
"placement=west,direction=south": [
|
|
434
359
|
{
|
|
435
|
-
id: "cube",
|
|
436
360
|
geometryId: "dve_thin_panel_west",
|
|
437
361
|
inputs: {
|
|
438
362
|
upTex: "@sideTextures",
|
|
@@ -441,16 +365,13 @@ export const simpleThinPannel = {
|
|
|
441
365
|
southTex: "@sideTextures",
|
|
442
366
|
eastTex: "@upDownTextures",
|
|
443
367
|
eastTexRotation: 180,
|
|
444
|
-
eastTexTransparent: "@upDownTexturesTransparent",
|
|
445
368
|
westTex: "@upDownTextures",
|
|
446
369
|
westTexRotation: 180,
|
|
447
|
-
westTexTransparent: "@upDownTexturesTransparent",
|
|
448
370
|
},
|
|
449
371
|
},
|
|
450
372
|
],
|
|
451
373
|
"placement=west,direction=east": [
|
|
452
374
|
{
|
|
453
|
-
id: "cube",
|
|
454
375
|
geometryId: "dve_thin_panel_west",
|
|
455
376
|
inputs: {
|
|
456
377
|
upTex: "@sideTextures",
|
|
@@ -459,16 +380,13 @@ export const simpleThinPannel = {
|
|
|
459
380
|
southTex: "@sideTextures",
|
|
460
381
|
eastTex: "@upDownTextures",
|
|
461
382
|
eastTexRotation: 90,
|
|
462
|
-
eastTexTransparent: "@upDownTexturesTransparent",
|
|
463
383
|
westTex: "@upDownTextures",
|
|
464
384
|
westTexRotation: 90,
|
|
465
|
-
westTexTransparent: "@upDownTexturesTransparent",
|
|
466
385
|
},
|
|
467
386
|
},
|
|
468
387
|
],
|
|
469
388
|
"placement=west,direction=west": [
|
|
470
389
|
{
|
|
471
|
-
id: "cube",
|
|
472
390
|
geometryId: "dve_thin_panel_west",
|
|
473
391
|
inputs: {
|
|
474
392
|
upTex: "@sideTextures",
|
|
@@ -477,10 +395,8 @@ export const simpleThinPannel = {
|
|
|
477
395
|
southTex: "@sideTextures",
|
|
478
396
|
eastTex: "@upDownTextures",
|
|
479
397
|
eastTexRotation: 270,
|
|
480
|
-
eastTexTransparent: "@upDownTexturesTransparent",
|
|
481
398
|
westTex: "@upDownTextures",
|
|
482
399
|
westTexRotation: 270,
|
|
483
|
-
westTexTransparent: "@upDownTexturesTransparent",
|
|
484
400
|
},
|
|
485
401
|
},
|
|
486
402
|
],
|
|
@@ -489,570 +405,500 @@ export const simpleThinPannel = {
|
|
|
489
405
|
export const simpleCrossedPannel = {
|
|
490
406
|
id: "dve_simple_crossed_panels",
|
|
491
407
|
relationsSchema: [],
|
|
492
|
-
|
|
408
|
+
stateSchema: [],
|
|
409
|
+
properties: {
|
|
410
|
+
dve_placing_strategy: "*",
|
|
411
|
+
},
|
|
412
|
+
arguments: {
|
|
413
|
+
texture: {
|
|
414
|
+
type: "texture",
|
|
415
|
+
},
|
|
416
|
+
doubleSided: {
|
|
417
|
+
type: "boolean",
|
|
418
|
+
default: false,
|
|
419
|
+
},
|
|
420
|
+
},
|
|
421
|
+
conditonalNodes: {},
|
|
422
|
+
stateNodes: {
|
|
423
|
+
"*": [
|
|
424
|
+
{
|
|
425
|
+
geometryId: "dve_diagonal_flat_panel_west_east",
|
|
426
|
+
inputs: {
|
|
427
|
+
texture: "@texture",
|
|
428
|
+
textureRotation: 0,
|
|
429
|
+
doubleSided: "@doubleSided",
|
|
430
|
+
},
|
|
431
|
+
},
|
|
432
|
+
{
|
|
433
|
+
geometryId: "dve_diagonal_flat_panel_east_west",
|
|
434
|
+
inputs: {
|
|
435
|
+
texture: "@texture",
|
|
436
|
+
textureRotation: 0,
|
|
437
|
+
doubleSided: "@doubleSided",
|
|
438
|
+
},
|
|
439
|
+
},
|
|
440
|
+
],
|
|
441
|
+
},
|
|
442
|
+
};
|
|
443
|
+
export const orientedCrossedPannel = {
|
|
444
|
+
id: "dve_oriented_crossed_panels",
|
|
445
|
+
relationsSchema: [],
|
|
446
|
+
properties: {
|
|
447
|
+
dve_placing_strategy: "*",
|
|
448
|
+
},
|
|
449
|
+
stateSchema: [
|
|
493
450
|
{
|
|
494
451
|
name: "placement",
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
1: "up",
|
|
499
|
-
2: "north",
|
|
500
|
-
3: "south",
|
|
501
|
-
4: "east",
|
|
502
|
-
5: "west",
|
|
503
|
-
},
|
|
452
|
+
bitIndex: 0,
|
|
453
|
+
bitSize: 3,
|
|
454
|
+
values: ["down", "up", "north", "south", "east", "west"],
|
|
504
455
|
},
|
|
505
456
|
{
|
|
506
457
|
name: "direction",
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
1: "south",
|
|
511
|
-
2: "east",
|
|
512
|
-
3: "west",
|
|
513
|
-
},
|
|
458
|
+
bitIndex: 3,
|
|
459
|
+
bitSize: 2,
|
|
460
|
+
values: ["north", "south", "east", "west"],
|
|
514
461
|
},
|
|
515
462
|
],
|
|
516
463
|
arguments: {
|
|
517
464
|
texture: {
|
|
518
465
|
type: "texture",
|
|
519
466
|
},
|
|
520
|
-
transparent: {
|
|
521
|
-
type: "boolean",
|
|
522
|
-
default: false,
|
|
523
|
-
},
|
|
524
467
|
doubleSided: {
|
|
525
468
|
type: "boolean",
|
|
526
469
|
default: false,
|
|
527
470
|
},
|
|
528
471
|
},
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
shapeStatesNodes: {
|
|
472
|
+
conditonalNodes: {},
|
|
473
|
+
stateNodes: {
|
|
532
474
|
"placement=down,direction=north": [
|
|
533
475
|
{
|
|
534
|
-
id: "quad-1",
|
|
535
476
|
geometryId: "dve_diagonal_flat_panel_west_east",
|
|
536
477
|
inputs: {
|
|
537
478
|
texture: "@texture",
|
|
538
479
|
textureRotation: 0,
|
|
539
|
-
transaprent: "@transparent",
|
|
540
480
|
doubleSided: "@doubleSided",
|
|
541
481
|
},
|
|
542
482
|
},
|
|
543
483
|
{
|
|
544
|
-
id: "quad-2",
|
|
545
484
|
geometryId: "dve_diagonal_flat_panel_east_west",
|
|
546
485
|
inputs: {
|
|
547
486
|
texture: "@texture",
|
|
548
487
|
textureRotation: 0,
|
|
549
|
-
transaprent: "@transparent",
|
|
550
488
|
doubleSided: "@doubleSided",
|
|
551
489
|
},
|
|
552
490
|
},
|
|
553
491
|
],
|
|
554
492
|
"placement=down,direction=south": [
|
|
555
493
|
{
|
|
556
|
-
id: "quad-1",
|
|
557
494
|
geometryId: "dve_diagonal_flat_panel_west_east",
|
|
558
495
|
inputs: {
|
|
559
496
|
texture: "@texture",
|
|
560
497
|
textureRotation: 180,
|
|
561
|
-
transaprent: "@transparent",
|
|
562
498
|
doubleSided: "@doubleSided",
|
|
563
499
|
},
|
|
564
500
|
},
|
|
565
501
|
{
|
|
566
|
-
id: "quad-2",
|
|
567
502
|
geometryId: "dve_diagonal_flat_panel_east_west",
|
|
568
503
|
inputs: {
|
|
569
504
|
texture: "@texture",
|
|
570
505
|
textureRotation: 180,
|
|
571
|
-
transaprent: "@transparent",
|
|
572
506
|
doubleSided: "@doubleSided",
|
|
573
507
|
},
|
|
574
508
|
},
|
|
575
509
|
],
|
|
576
510
|
"placement=down,direction=east": [
|
|
577
511
|
{
|
|
578
|
-
id: "quad-1",
|
|
579
512
|
geometryId: "dve_diagonal_flat_panel_west_east",
|
|
580
513
|
inputs: {
|
|
581
514
|
texture: "@texture",
|
|
582
515
|
textureRotation: 90,
|
|
583
|
-
transaprent: "@transparent",
|
|
584
516
|
doubleSided: "@doubleSided",
|
|
585
517
|
},
|
|
586
518
|
},
|
|
587
519
|
{
|
|
588
|
-
id: "quad-2",
|
|
589
520
|
geometryId: "dve_diagonal_flat_panel_east_west",
|
|
590
521
|
inputs: {
|
|
591
522
|
texture: "@texture",
|
|
592
523
|
textureRotation: 90,
|
|
593
|
-
transaprent: "@transparent",
|
|
594
524
|
doubleSided: "@doubleSided",
|
|
595
525
|
},
|
|
596
526
|
},
|
|
597
527
|
],
|
|
598
528
|
"placement=down,direction=west": [
|
|
599
529
|
{
|
|
600
|
-
id: "quad-1",
|
|
601
530
|
geometryId: "dve_diagonal_flat_panel_west_east",
|
|
602
531
|
inputs: {
|
|
603
532
|
texture: "@texture",
|
|
604
533
|
textureRotation: 270,
|
|
605
|
-
transaprent: "@transparent",
|
|
606
534
|
doubleSided: "@doubleSided",
|
|
607
535
|
},
|
|
608
536
|
},
|
|
609
537
|
{
|
|
610
|
-
id: "quad-2",
|
|
611
538
|
geometryId: "dve_diagonal_flat_panel_east_west",
|
|
612
539
|
inputs: {
|
|
613
540
|
texture: "@texture",
|
|
614
541
|
textureRotation: 270,
|
|
615
|
-
transaprent: "@transparent",
|
|
616
542
|
doubleSided: "@doubleSided",
|
|
617
543
|
},
|
|
618
544
|
},
|
|
619
545
|
],
|
|
620
546
|
"placement=up,direction=north": [
|
|
621
547
|
{
|
|
622
|
-
id: "quad-1",
|
|
623
548
|
geometryId: "dve_diagonal_flat_panel_west_east",
|
|
624
549
|
inputs: {
|
|
625
550
|
texture: "@texture",
|
|
626
551
|
textureRotation: 180,
|
|
627
|
-
transaprent: "@transparent",
|
|
628
552
|
doubleSided: "@doubleSided",
|
|
629
553
|
},
|
|
630
554
|
},
|
|
631
555
|
{
|
|
632
|
-
id: "quad-2",
|
|
633
556
|
geometryId: "dve_diagonal_flat_panel_east_west",
|
|
634
557
|
inputs: {
|
|
635
558
|
texture: "@texture",
|
|
636
559
|
textureRotation: 180,
|
|
637
|
-
transaprent: "@transparent",
|
|
638
560
|
doubleSided: "@doubleSided",
|
|
639
561
|
},
|
|
640
562
|
},
|
|
641
563
|
],
|
|
642
564
|
"placement=up,direction=south": [
|
|
643
565
|
{
|
|
644
|
-
id: "quad-1",
|
|
645
566
|
geometryId: "dve_diagonal_flat_panel_west_east",
|
|
646
567
|
inputs: {
|
|
647
568
|
texture: "@texture",
|
|
648
569
|
textureRotation: 0,
|
|
649
|
-
transaprent: "@transparent",
|
|
650
570
|
doubleSided: "@doubleSided",
|
|
651
571
|
},
|
|
652
572
|
},
|
|
653
573
|
{
|
|
654
|
-
id: "quad-2",
|
|
655
574
|
geometryId: "dve_diagonal_flat_panel_east_west",
|
|
656
575
|
inputs: {
|
|
657
576
|
texture: "@texture",
|
|
658
577
|
textureRotation: 0,
|
|
659
|
-
transaprent: "@transparent",
|
|
660
578
|
doubleSided: "@doubleSided",
|
|
661
579
|
},
|
|
662
580
|
},
|
|
663
581
|
],
|
|
664
582
|
"placement=up,direction=east": [
|
|
665
583
|
{
|
|
666
|
-
id: "quad-1",
|
|
667
584
|
geometryId: "dve_diagonal_flat_panel_west_east",
|
|
668
585
|
inputs: {
|
|
669
586
|
texture: "@texture",
|
|
670
587
|
textureRotation: 270,
|
|
671
|
-
transaprent: "@transparent",
|
|
672
588
|
doubleSided: "@doubleSided",
|
|
673
589
|
},
|
|
674
590
|
},
|
|
675
591
|
{
|
|
676
|
-
id: "quad-2",
|
|
677
592
|
geometryId: "dve_diagonal_flat_panel_east_west",
|
|
678
593
|
inputs: {
|
|
679
594
|
texture: "@texture",
|
|
680
595
|
textureRotation: 270,
|
|
681
|
-
transaprent: "@transparent",
|
|
682
596
|
doubleSided: "@doubleSided",
|
|
683
597
|
},
|
|
684
598
|
},
|
|
685
599
|
],
|
|
686
600
|
"placement=up,direction=west": [
|
|
687
601
|
{
|
|
688
|
-
id: "quad-1",
|
|
689
602
|
geometryId: "dve_diagonal_flat_panel_west_east",
|
|
690
603
|
inputs: {
|
|
691
604
|
texture: "@texture",
|
|
692
605
|
textureRotation: 90,
|
|
693
|
-
transaprent: "@transparent",
|
|
694
606
|
doubleSided: "@doubleSided",
|
|
695
607
|
},
|
|
696
608
|
},
|
|
697
609
|
{
|
|
698
|
-
id: "quad-2",
|
|
699
610
|
geometryId: "dve_diagonal_flat_panel_east_west",
|
|
700
611
|
inputs: {
|
|
701
612
|
texture: "@texture",
|
|
702
613
|
textureRotation: 90,
|
|
703
|
-
transaprent: "@transparent",
|
|
704
614
|
doubleSided: "@doubleSided",
|
|
705
615
|
},
|
|
706
616
|
},
|
|
707
617
|
],
|
|
708
618
|
"placement=north,direction=north": [
|
|
709
619
|
{
|
|
710
|
-
id: "quad-1",
|
|
711
620
|
geometryId: "dve_diagonal_flat_panel_west_east",
|
|
712
621
|
inputs: {
|
|
713
622
|
texture: "@texture",
|
|
714
623
|
textureRotation: 0,
|
|
715
|
-
transaprent: "@transparent",
|
|
716
624
|
doubleSided: "@doubleSided",
|
|
717
625
|
},
|
|
718
626
|
},
|
|
719
627
|
{
|
|
720
|
-
id: "quad-2",
|
|
721
628
|
geometryId: "dve_diagonal_flat_panel_east_west",
|
|
722
629
|
inputs: {
|
|
723
630
|
texture: "@texture",
|
|
724
631
|
textureRotation: 0,
|
|
725
|
-
transaprent: "@transparent",
|
|
726
632
|
doubleSided: "@doubleSided",
|
|
727
633
|
},
|
|
728
634
|
},
|
|
729
635
|
],
|
|
730
636
|
"placement=north,direction=south": [
|
|
731
637
|
{
|
|
732
|
-
id: "quad-1",
|
|
733
638
|
geometryId: "dve_diagonal_flat_panel_west_east",
|
|
734
639
|
inputs: {
|
|
735
640
|
texture: "@texture",
|
|
736
641
|
textureRotation: 180,
|
|
737
|
-
transaprent: "@transparent",
|
|
738
642
|
doubleSided: "@doubleSided",
|
|
739
643
|
},
|
|
740
644
|
},
|
|
741
645
|
{
|
|
742
|
-
id: "quad-2",
|
|
743
646
|
geometryId: "dve_diagonal_flat_panel_east_west",
|
|
744
647
|
inputs: {
|
|
745
648
|
texture: "@texture",
|
|
746
649
|
textureRotation: 180,
|
|
747
|
-
transaprent: "@transparent",
|
|
748
650
|
doubleSided: "@doubleSided",
|
|
749
651
|
},
|
|
750
652
|
},
|
|
751
653
|
],
|
|
752
654
|
"placement=north,direction=east": [
|
|
753
655
|
{
|
|
754
|
-
id: "quad-1",
|
|
755
656
|
geometryId: "dve_diagonal_flat_panel_west_east",
|
|
756
657
|
inputs: {
|
|
757
658
|
texture: "@texture",
|
|
758
659
|
textureRotation: 90,
|
|
759
|
-
transaprent: "@transparent",
|
|
760
660
|
doubleSided: "@doubleSided",
|
|
761
661
|
},
|
|
762
662
|
},
|
|
763
663
|
{
|
|
764
|
-
id: "quad-2",
|
|
765
664
|
geometryId: "dve_diagonal_flat_panel_east_west",
|
|
766
665
|
inputs: {
|
|
767
666
|
texture: "@texture",
|
|
768
667
|
textureRotation: 90,
|
|
769
|
-
transaprent: "@transparent",
|
|
770
668
|
doubleSided: "@doubleSided",
|
|
771
669
|
},
|
|
772
670
|
},
|
|
773
671
|
],
|
|
774
672
|
"placement=north,direction=west": [
|
|
775
673
|
{
|
|
776
|
-
id: "quad-1",
|
|
777
674
|
geometryId: "dve_diagonal_flat_panel_west_east",
|
|
778
675
|
inputs: {
|
|
779
676
|
texture: "@texture",
|
|
780
677
|
textureRotation: 270,
|
|
781
|
-
transaprent: "@transparent",
|
|
782
678
|
doubleSided: "@doubleSided",
|
|
783
679
|
},
|
|
784
680
|
},
|
|
785
681
|
{
|
|
786
|
-
id: "quad-2",
|
|
787
682
|
geometryId: "dve_diagonal_flat_panel_east_west",
|
|
788
683
|
inputs: {
|
|
789
684
|
texture: "@texture",
|
|
790
685
|
textureRotation: 270,
|
|
791
|
-
transaprent: "@transparent",
|
|
792
686
|
doubleSided: "@doubleSided",
|
|
793
687
|
},
|
|
794
688
|
},
|
|
795
689
|
],
|
|
796
690
|
"placement=south,direction=north": [
|
|
797
691
|
{
|
|
798
|
-
id: "quad-1",
|
|
799
692
|
geometryId: "dve_diagonal_flat_panel_west_east",
|
|
800
693
|
inputs: {
|
|
801
694
|
texture: "@texture",
|
|
802
695
|
textureRotation: 0,
|
|
803
|
-
transaprent: "@transparent",
|
|
804
696
|
doubleSided: "@doubleSided",
|
|
805
697
|
},
|
|
806
698
|
},
|
|
807
699
|
{
|
|
808
|
-
id: "quad-2",
|
|
809
700
|
geometryId: "dve_diagonal_flat_panel_east_west",
|
|
810
701
|
inputs: {
|
|
811
702
|
texture: "@texture",
|
|
812
703
|
textureRotation: 0,
|
|
813
|
-
transaprent: "@transparent",
|
|
814
704
|
doubleSided: "@doubleSided",
|
|
815
705
|
},
|
|
816
706
|
},
|
|
817
707
|
],
|
|
818
708
|
"placement=south,direction=south": [
|
|
819
709
|
{
|
|
820
|
-
id: "quad-1",
|
|
821
710
|
geometryId: "dve_diagonal_flat_panel_west_east",
|
|
822
711
|
inputs: {
|
|
823
712
|
texture: "@texture",
|
|
824
713
|
textureRotation: 180,
|
|
825
|
-
transaprent: "@transparent",
|
|
826
714
|
doubleSided: "@doubleSided",
|
|
827
715
|
},
|
|
828
716
|
},
|
|
829
717
|
{
|
|
830
|
-
id: "quad-2",
|
|
831
718
|
geometryId: "dve_diagonal_flat_panel_east_west",
|
|
832
719
|
inputs: {
|
|
833
720
|
texture: "@texture",
|
|
834
721
|
textureRotation: 180,
|
|
835
|
-
transaprent: "@transparent",
|
|
836
722
|
doubleSided: "@doubleSided",
|
|
837
723
|
},
|
|
838
724
|
},
|
|
839
725
|
],
|
|
840
726
|
"placement=south,direction=east": [
|
|
841
727
|
{
|
|
842
|
-
id: "quad-1",
|
|
843
728
|
geometryId: "dve_diagonal_flat_panel_west_east",
|
|
844
729
|
inputs: {
|
|
845
730
|
texture: "@texture",
|
|
846
731
|
textureRotation: 270,
|
|
847
|
-
transaprent: "@transparent",
|
|
848
732
|
doubleSided: "@doubleSided",
|
|
849
733
|
},
|
|
850
734
|
},
|
|
851
735
|
{
|
|
852
|
-
id: "quad-2",
|
|
853
736
|
geometryId: "dve_diagonal_flat_panel_east_west",
|
|
854
737
|
inputs: {
|
|
855
738
|
texture: "@texture",
|
|
856
739
|
textureRotation: 270,
|
|
857
|
-
transaprent: "@transparent",
|
|
858
740
|
doubleSided: "@doubleSided",
|
|
859
741
|
},
|
|
860
742
|
},
|
|
861
743
|
],
|
|
862
744
|
"placement=south,direction=west": [
|
|
863
745
|
{
|
|
864
|
-
id: "quad-1",
|
|
865
746
|
geometryId: "dve_diagonal_flat_panel_west_east",
|
|
866
747
|
inputs: {
|
|
867
748
|
texture: "@texture",
|
|
868
749
|
textureRotation: 90,
|
|
869
|
-
transaprent: "@transparent",
|
|
870
750
|
doubleSided: "@doubleSided",
|
|
871
751
|
},
|
|
872
752
|
},
|
|
873
753
|
{
|
|
874
|
-
id: "quad-2",
|
|
875
754
|
geometryId: "dve_diagonal_flat_panel_east_west",
|
|
876
755
|
inputs: {
|
|
877
756
|
texture: "@texture",
|
|
878
757
|
textureRotation: 90,
|
|
879
|
-
transaprent: "@transparent",
|
|
880
758
|
doubleSided: "@doubleSided",
|
|
881
759
|
},
|
|
882
760
|
},
|
|
883
761
|
],
|
|
884
762
|
"placement=east,direction=north": [
|
|
885
763
|
{
|
|
886
|
-
id: "quad-1",
|
|
887
764
|
geometryId: "dve_diagonal_flat_panel_west_east",
|
|
888
765
|
inputs: {
|
|
889
766
|
texture: "@texture",
|
|
890
767
|
textureRotation: 0,
|
|
891
|
-
transaprent: "@transparent",
|
|
892
768
|
doubleSided: "@doubleSided",
|
|
893
769
|
},
|
|
894
770
|
},
|
|
895
771
|
{
|
|
896
|
-
id: "quad-2",
|
|
897
772
|
geometryId: "dve_diagonal_flat_panel_east_west",
|
|
898
773
|
inputs: {
|
|
899
774
|
texture: "@texture",
|
|
900
775
|
textureRotation: 0,
|
|
901
|
-
transaprent: "@transparent",
|
|
902
776
|
doubleSided: "@doubleSided",
|
|
903
777
|
},
|
|
904
778
|
},
|
|
905
779
|
],
|
|
906
780
|
"placement=east,direction=south": [
|
|
907
781
|
{
|
|
908
|
-
id: "quad-1",
|
|
909
782
|
geometryId: "dve_diagonal_flat_panel_west_east",
|
|
910
783
|
inputs: {
|
|
911
784
|
texture: "@texture",
|
|
912
785
|
textureRotation: 180,
|
|
913
|
-
transaprent: "@transparent",
|
|
914
786
|
doubleSided: "@doubleSided",
|
|
915
787
|
},
|
|
916
788
|
},
|
|
917
789
|
{
|
|
918
|
-
id: "quad-2",
|
|
919
790
|
geometryId: "dve_diagonal_flat_panel_east_west",
|
|
920
791
|
inputs: {
|
|
921
792
|
texture: "@texture",
|
|
922
793
|
textureRotation: 180,
|
|
923
|
-
transaprent: "@transparent",
|
|
924
794
|
doubleSided: "@doubleSided",
|
|
925
795
|
},
|
|
926
796
|
},
|
|
927
797
|
],
|
|
928
798
|
"placement=east,direction=east": [
|
|
929
799
|
{
|
|
930
|
-
id: "quad-1",
|
|
931
800
|
geometryId: "dve_diagonal_flat_panel_west_east",
|
|
932
801
|
inputs: {
|
|
933
802
|
texture: "@texture",
|
|
934
803
|
textureRotation: 270,
|
|
935
|
-
transaprent: "@transparent",
|
|
936
804
|
doubleSided: "@doubleSided",
|
|
937
805
|
},
|
|
938
806
|
},
|
|
939
807
|
{
|
|
940
|
-
id: "quad-2",
|
|
941
808
|
geometryId: "dve_diagonal_flat_panel_east_west",
|
|
942
809
|
inputs: {
|
|
943
810
|
texture: "@texture",
|
|
944
811
|
textureRotation: 270,
|
|
945
|
-
transaprent: "@transparent",
|
|
946
812
|
doubleSided: "@doubleSided",
|
|
947
813
|
},
|
|
948
814
|
},
|
|
949
815
|
],
|
|
950
816
|
"placement=east,direction=west": [
|
|
951
817
|
{
|
|
952
|
-
id: "quad-1",
|
|
953
818
|
geometryId: "dve_diagonal_flat_panel_west_east",
|
|
954
819
|
inputs: {
|
|
955
820
|
texture: "@texture",
|
|
956
821
|
textureRotation: 90,
|
|
957
|
-
transaprent: "@transparent",
|
|
958
822
|
doubleSided: "@doubleSided",
|
|
959
823
|
},
|
|
960
824
|
},
|
|
961
825
|
{
|
|
962
|
-
id: "quad-2",
|
|
963
826
|
geometryId: "dve_diagonal_flat_panel_east_west",
|
|
964
827
|
inputs: {
|
|
965
828
|
texture: "@texture",
|
|
966
829
|
textureRotation: 90,
|
|
967
|
-
transaprent: "@transparent",
|
|
968
830
|
doubleSided: "@doubleSided",
|
|
969
831
|
},
|
|
970
832
|
},
|
|
971
833
|
],
|
|
972
834
|
"placement=west,direction=north": [
|
|
973
835
|
{
|
|
974
|
-
id: "quad-1",
|
|
975
836
|
geometryId: "dve_diagonal_flat_panel_west_east",
|
|
976
837
|
inputs: {
|
|
977
838
|
texture: "@texture",
|
|
978
839
|
textureRotation: 0,
|
|
979
|
-
transaprent: "@transparent",
|
|
980
840
|
doubleSided: "@doubleSided",
|
|
981
841
|
},
|
|
982
842
|
},
|
|
983
843
|
{
|
|
984
|
-
id: "quad-2",
|
|
985
844
|
geometryId: "dve_diagonal_flat_panel_east_west",
|
|
986
845
|
inputs: {
|
|
987
846
|
texture: "@texture",
|
|
988
847
|
textureRotation: 0,
|
|
989
|
-
transaprent: "@transparent",
|
|
990
848
|
doubleSided: "@doubleSided",
|
|
991
849
|
},
|
|
992
850
|
},
|
|
993
851
|
],
|
|
994
852
|
"placement=west,direction=south": [
|
|
995
853
|
{
|
|
996
|
-
id: "quad-1",
|
|
997
854
|
geometryId: "dve_diagonal_flat_panel_west_east",
|
|
998
855
|
inputs: {
|
|
999
856
|
texture: "@texture",
|
|
1000
857
|
textureRotation: 180,
|
|
1001
|
-
transaprent: "@transparent",
|
|
1002
858
|
doubleSided: "@doubleSided",
|
|
1003
859
|
},
|
|
1004
860
|
},
|
|
1005
861
|
{
|
|
1006
|
-
id: "quad-2",
|
|
1007
862
|
geometryId: "dve_diagonal_flat_panel_east_west",
|
|
1008
863
|
inputs: {
|
|
1009
864
|
texture: "@texture",
|
|
1010
865
|
textureRotation: 180,
|
|
1011
|
-
transaprent: "@transparent",
|
|
1012
866
|
doubleSided: "@doubleSided",
|
|
1013
867
|
},
|
|
1014
868
|
},
|
|
1015
869
|
],
|
|
1016
870
|
"placement=west,direction=east": [
|
|
1017
871
|
{
|
|
1018
|
-
id: "quad-1",
|
|
1019
872
|
geometryId: "dve_diagonal_flat_panel_west_east",
|
|
1020
873
|
inputs: {
|
|
1021
874
|
texture: "@texture",
|
|
1022
875
|
textureRotation: 270,
|
|
1023
|
-
transaprent: "@transparent",
|
|
1024
876
|
doubleSided: "@doubleSided",
|
|
1025
877
|
},
|
|
1026
878
|
},
|
|
1027
879
|
{
|
|
1028
|
-
id: "quad-2",
|
|
1029
880
|
geometryId: "dve_diagonal_flat_panel_east_west",
|
|
1030
881
|
inputs: {
|
|
1031
882
|
texture: "@texture",
|
|
1032
883
|
textureRotation: 270,
|
|
1033
|
-
transaprent: "@transparent",
|
|
1034
884
|
doubleSided: "@doubleSided",
|
|
1035
885
|
},
|
|
1036
886
|
},
|
|
1037
887
|
],
|
|
1038
888
|
"placement=west,direction=west": [
|
|
1039
889
|
{
|
|
1040
|
-
id: "quad-1",
|
|
1041
890
|
geometryId: "dve_diagonal_flat_panel_west_east",
|
|
1042
891
|
inputs: {
|
|
1043
892
|
texture: "@texture",
|
|
1044
893
|
textureRotation: 90,
|
|
1045
|
-
transaprent: "@transparent",
|
|
1046
894
|
doubleSided: "@doubleSided",
|
|
1047
895
|
},
|
|
1048
896
|
},
|
|
1049
897
|
{
|
|
1050
|
-
id: "quad-2",
|
|
1051
898
|
geometryId: "dve_diagonal_flat_panel_east_west",
|
|
1052
899
|
inputs: {
|
|
1053
900
|
texture: "@texture",
|
|
1054
901
|
textureRotation: 90,
|
|
1055
|
-
transaprent: "@transparent",
|
|
1056
902
|
doubleSided: "@doubleSided",
|
|
1057
903
|
},
|
|
1058
904
|
},
|