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