@divinevoxel/vlox 0.0.71 → 0.0.73
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/Main/InitDataGenerator.js +0 -9
- package/Contexts/Base/Remote/DataSync.types.d.ts +0 -5
- package/Contexts/Base/Remote/InitDataSync.js +17 -31
- package/Contexts/Render/DivineVoxelEngineRender.d.ts +1 -1
- package/Contexts/World/DivineVoxelEngineWorld.d.ts +1 -1
- package/Init/StartConstructor.js +7 -7
- package/Init/StartWorld.d.ts +1 -1
- package/Init/StartWorld.js +0 -12
- package/Math/Indexing.d.ts +12 -3
- package/Math/Indexing.js +24 -15
- package/Mesher/Functions/CompactVoxelMesh.d.ts +2 -2
- package/Mesher/Functions/CompactVoxelMesh.js +4 -5
- package/Mesher/Functions/MeshSection.d.ts +1 -1
- package/Mesher/Functions/MeshSection.js +72 -66
- package/Mesher/Functions/MeshTexture.d.ts +1 -1
- package/Mesher/Functions/MeshTexture.js +3 -4
- package/Mesher/Functions/MeshVoxel.js +20 -26
- 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 +108 -125
- package/Mesher/Geomtry/VoxelMesh.d.ts +1 -1
- package/Mesher/Geomtry/VoxelMesh.js +2 -2
- package/Mesher/{Tools → Geomtry}/VoxelMeshBVHBuilder.d.ts +2 -9
- package/Mesher/{Tools → Geomtry}/VoxelMeshBVHBuilder.js +4 -16
- package/Mesher/Geomtry/{Buffers.d.ts → VoxelMeshBuffers.d.ts} +9 -8
- package/Mesher/Geomtry/VoxelMeshBuffers.js +49 -0
- package/Mesher/{Tools → Geomtry}/VoxelMeshVertexStructCursor.d.ts +10 -0
- package/Mesher/{Tools → Geomtry}/VoxelMeshVertexStructCursor.js +10 -0
- package/Mesher/Geomtry/index.d.ts +0 -1
- package/Mesher/Geomtry/index.js +0 -1
- package/Mesher/InitMesher.js +2 -11
- package/Mesher/InitTask.js +10 -22
- package/Mesher/Models/Common/BoundsFunctions.d.ts +1 -3
- package/Mesher/Models/Common/BoundsFunctions.js +0 -16
- package/Mesher/Models/Common/Calc/CalcConstants.js +14 -31
- package/Mesher/Models/Common/Calc/FaceDataCalc.d.ts +2 -8
- package/Mesher/Models/Common/Calc/FaceDataCalc.js +50 -52
- 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.d.ts +1 -5
- package/Mesher/Models/Nodes/Custom/Liquid/LiquidGeomtryNode.js +40 -42
- package/Mesher/Models/Nodes/GeometryNode.d.ts +3 -5
- package/Mesher/Models/Nodes/GeometryNode.js +1 -2
- package/Mesher/Models/Nodes/Ruled/BoxVoxelGeometryNode.d.ts +3 -6
- package/Mesher/Models/Nodes/Ruled/BoxVoxelGeometryNode.js +55 -40
- package/Mesher/Models/Nodes/Ruled/QuadVoxelGeometryNode.d.ts +2 -6
- package/Mesher/Models/Nodes/Ruled/QuadVoxelGeometryNode.js +52 -51
- package/Mesher/Models/Nodes/Ruleless/RulelessBoxVoxelGeometryNode.d.ts +2 -6
- package/Mesher/Models/Nodes/Ruleless/RulelessBoxVoxelGeometryNode.js +18 -19
- package/Mesher/Models/Nodes/Ruleless/RulelessQuadVoxelGeometryNode.d.ts +2 -6
- package/Mesher/Models/Nodes/Ruleless/RulelessQuadVoxelGeometryNode.js +37 -40
- 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 +4 -5
- package/Mesher/Models/VoxelConstructor.js +23 -12
- package/Mesher/Models/{VoxelGeometryLookUp.d.ts → VoxelGeometryBuilderCacheSpace.d.ts} +6 -14
- package/Mesher/Models/{VoxelGeometryLookUp.js → VoxelGeometryBuilderCacheSpace.js} +26 -44
- package/Mesher/{Tools/VoxelMesherDataTool.d.ts → Models/VoxelModelBuilder.d.ts} +10 -8
- package/Mesher/{Tools/VoxelMesherDataTool.js → Models/VoxelModelBuilder.js} +44 -19
- package/Mesher/Models/VoxelModelConstructorRegister.js +3 -3
- package/Models/Defaults/CubeVoxelGeometry.js +4 -0
- package/Models/Defaults/CubeVoxelModels.js +344 -344
- package/Models/Defaults/LiquidVoxelModel.js +2 -2
- package/Models/Defaults/PanelVoxelModels.js +432 -432
- package/Models/Defaults/StairVoxelModel.js +576 -576
- package/Models/Examples.js +469 -456
- package/Models/Indexing/VoxelAOResultsIndex.d.ts +4 -4
- package/Models/Indexing/VoxelAOResultsIndex.js +15 -9
- package/Models/Indexing/VoxelFaceCullResultsIndex.d.ts +3 -3
- package/Models/Indexing/VoxelFaceCullResultsIndex.js +14 -9
- package/Models/Indexing/VoxelFaceTransparentResultsIndex.d.ts +1 -1
- package/Models/Indexing/VoxelFaceTransparentResultsIndex.js +1 -1
- package/Models/Rules/Functions/BuildFinalInputs.js +9 -7
- package/Models/Rules/Functions/BuildGeomtryInputs.js +8 -5
- package/Models/Rules/Functions/BuildRules.js +4 -4
- package/Models/Rules/{VoxelModelManager.d.ts → VoxelModelRuleBuilderRegister.d.ts} +1 -1
- package/Models/Rules/VoxelModelRuleBuilderRegister.js +178 -0
- package/Models/VoxelModel.types.d.ts +14 -5
- package/Renderer/Classes/SectorMesh.d.ts +3 -4
- package/Renderer/Classes/SectorMesh.js +6 -11
- package/Renderer/InitTasks.js +6 -7
- package/Renderer/MeshManager.js +2 -2
- package/Renderer/MeshRegister.js +2 -1
- package/Settings/EngineSettings.d.ts +1 -1
- package/Settings/EngineSettings.js +3 -5
- package/Settings/EngineSettings.types.d.ts +17 -18
- package/Settings/EngineSettings.types.js +16 -15
- package/Tasks/IWG/IWG.d.ts +2 -1
- package/Tasks/IWG/IWG.js +9 -3
- package/Tasks/IWG/Internal/Classes/BuildQueue.d.ts +11 -0
- package/Tasks/IWG/Internal/Classes/BuildQueue.js +49 -0
- package/Tasks/IWG/Internal/Classes/Generator.d.ts +6 -1
- package/Tasks/IWG/Internal/Classes/Generator.js +14 -2
- package/Tasks/IWG/Internal/Classes/IWGTaskBase.js +2 -2
- package/Tasks/IWG/Internal/Functions/getSectorState.js +4 -7
- package/Tasks/IWG/Internal/Functions/runBuildUpdate.js +21 -2
- package/Tasks/IWG/Internal/Functions/runWorldUpdate.js +5 -6
- package/Tasks/IWG/Internal/IWGTasks.d.ts +0 -4
- package/Tasks/IWG/Internal/IWGTasks.js +12 -31
- package/Tasks/IWG/Internal/IWGTools.d.ts +1 -1
- package/Tasks/IWG/Procedures/SaveAllSectors.js +2 -0
- package/Tasks/Propagation/Flow/FlowManager.d.ts +0 -2
- package/Tasks/Propagation/Flow/FlowManager.js +86 -87
- package/Tasks/Propagation/Flow/WorldFlow.js +2 -3
- package/Tasks/Propagation/Illumanation/WorldRGB.js +1 -2
- package/Tasks/Update/InitTasks.d.ts +2 -1
- package/Tasks/Update/InitTasks.js +6 -6
- package/Tasks/Update/UpdateTask.d.ts +3 -1
- package/Tasks/Update/UpdateTask.js +28 -2
- package/Tasks/Update/VoxelUpdate.js +21 -7
- package/Tasks/WorldGeneration/WorldGenBrush.js +2 -1
- package/Templates/Cursor/TemplateCursor.d.ts +2 -2
- package/Templates/Cursor/TemplateCursor.js +1 -2
- package/Templates/Functions/CreateTemplate.js +1 -1
- package/Templates/VoxelTemplate.js +6 -8
- 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/Brush.d.ts +1 -3
- package/Tools/Brush/Brush.js +43 -12
- package/Util/Binary/BinaryArrays.d.ts +6 -0
- package/Util/Binary/BinaryArrays.js +25 -0
- package/Util/Binary/BinaryBuffer.d.ts +29 -0
- package/Util/Binary/BinaryBuffer.js +130 -0
- package/Util/Binary/BinaryFunctions.d.ts +3 -0
- package/Util/Binary/BinaryFunctions.js +11 -0
- package/Util/StringPalette.d.ts +1 -0
- package/Util/StringPalette.js +8 -0
- package/Voxels/Cursor/DataCursor.interface.d.ts +5 -0
- package/Voxels/Cursor/VoxelCursor.d.ts +6 -6
- package/Voxels/Cursor/VoxelCursor.interface.d.ts +11 -16
- package/Voxels/Cursor/VoxelCursor.interface.js +35 -58
- package/Voxels/Cursor/VoxelCursor.js +13 -12
- package/Voxels/Cursor/VoxelLightData.d.ts +3 -4
- package/Voxels/Cursor/VoxelLightData.js +8 -7
- package/Voxels/Data/VoxelPalettesRegister.d.ts +8 -0
- package/Voxels/Data/VoxelPalettesRegister.js +8 -0
- package/Voxels/Data/VoxelTag.types.d.ts +56 -0
- package/Voxels/Data/VoxelTag.types.js +23 -0
- package/Voxels/{State → Data}/VoxelTagStates.d.ts +2 -2
- package/Voxels/{State → Data}/VoxelTagStates.js +5 -5
- package/Voxels/Data/VoxelTagsRegister.d.ts +9 -0
- package/Voxels/Data/VoxelTagsRegister.js +32 -0
- package/Voxels/Functions/BuildStateData.js +12 -12
- package/Voxels/Functions/BuildTagAndPaletteData.d.ts +13 -0
- package/Voxels/Functions/BuildTagAndPaletteData.js +55 -0
- package/Voxels/Indexes/VoxelIndex.js +3 -3
- package/Voxels/InitVoxelData.js +31 -73
- package/Voxels/State/Schema/StateSchema.d.ts +1 -1
- package/Voxels/Types/Voxel.types.d.ts +20 -42
- package/Voxels/Types/Voxel.types.js +6 -17
- package/Voxels/Types/VoxelModelCompiledData.types.d.ts +11 -13
- package/Voxels/Types/VoxelSubstances.types.d.ts +2 -15
- package/Voxels/Types/VoxelSubstances.types.js +1 -9
- package/World/Archive/Archive.types.d.ts +38 -34
- package/World/Archive/Functions/ArchiveArea.js +18 -30
- package/World/Archive/Functions/ArchiveSector.js +484 -213
- package/World/Archive/Functions/ImportSector.d.ts +3 -3
- package/World/Archive/Functions/ImportSector.js +205 -151
- package/World/Archive/Functions/Shared.d.ts +6 -0
- package/World/Archive/Functions/Shared.js +75 -0
- package/World/Archive/InitTasks.js +30 -13
- package/World/Cursor/SectionCursor.d.ts +3 -2
- package/World/Cursor/SectionCursor.js +9 -4
- package/World/Cursor/SectorCursor.d.ts +3 -2
- package/World/Cursor/SectorCursor.js +5 -3
- package/World/Cursor/WorldCursor.d.ts +2 -2
- package/World/Cursor/WorldCursor.js +6 -3
- package/World/Cursor/WorldVoxelCursor.d.ts +7 -7
- package/World/Cursor/WorldVoxelCursor.js +21 -24
- package/World/InitTasks.d.ts +1 -1
- package/World/Lock/WorldLock.d.ts +1 -1
- package/World/Section/Section.d.ts +31 -23
- package/World/Section/Section.js +116 -18
- package/World/Section/SectionState.d.ts +10 -0
- package/World/Section/SectionState.js +11 -0
- package/World/Sector/Sector.d.ts +24 -9
- package/World/Sector/Sector.js +92 -21
- package/World/Sector/SectorHeightMap.js +3 -5
- package/World/Sector/SectorState.d.ts +21 -0
- package/World/Sector/SectorState.js +28 -0
- package/World/WorldRegister.d.ts +4 -0
- package/World/WorldRegister.js +15 -3
- package/World/WorldSpaces.d.ts +6 -0
- package/World/WorldSpaces.js +25 -6
- package/package.json +1 -1
- package/Data/Cursor/DataCursor.interface.d.ts +0 -5
- package/Data/Cursor/DataCursor.interface.js +0 -2
- package/Data/Register/MappedDataRegister.d.ts +0 -5
- package/Data/Register/MappedDataRegister.js +0 -9
- package/Data/Register/MappedRegisterBase.d.ts +0 -14
- package/Data/Register/MappedRegisterBase.js +0 -50
- package/Data/Structs/StructBuilder.d.ts +0 -34
- package/Data/Structs/StructBuilder.js +0 -157
- package/Data/Structs/StructBuilder.types.d.ts +0 -30
- package/Mesher/Functions/CompactMesh.d.ts +0 -2
- package/Mesher/Functions/CompactMesh.js +0 -42
- package/Mesher/Geomtry/Buffers.js +0 -81
- 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/Models/Rules/VoxelModelManager.js +0 -82
- 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/Data/SubstanceDataTool.d.ts +0 -13
- package/Tools/Data/SubstanceDataTool.js +0 -51
- package/Voxels/Palettes/MaterialPalette.d.ts +0 -9
- package/Voxels/Palettes/MaterialPalette.js +0 -11
- package/Voxels/Palettes/SubstancePalette.d.ts +0 -9
- package/Voxels/Palettes/SubstancePalette.js +0 -11
- package/Voxels/Palettes/VoxelPalette.d.ts +0 -11
- package/Voxels/Palettes/VoxelPalette.js +0 -15
- package/Voxels/Segments/MaterialDataGenerator.d.ts +0 -6
- package/Voxels/Segments/MaterialDataGenerator.js +0 -12
- package/Voxels/Segments/SubstanceDataGenerator.d.ts +0 -6
- package/Voxels/Segments/SubstanceDataGenerator.js +0 -35
- package/Voxels/Segments/VoxelDataGenerator.d.ts +0 -10
- package/Voxels/Segments/VoxelDataGenerator.js +0 -56
- package/Voxels/Structs/Builder/SubstanceStructBuilder.d.ts +0 -2
- package/Voxels/Structs/Builder/SubstanceStructBuilder.js +0 -42
- package/Voxels/Structs/Builder/VoxelStructBuilder.d.ts +0 -2
- package/Voxels/Structs/Builder/VoxelStructBuilder.js +0 -68
- package/Voxels/Structs/SubstanceStruct.d.ts +0 -17
- package/Voxels/Structs/SubstanceStruct.js +0 -17
- package/Voxels/Structs/VoxelStruct.d.ts +0 -27
- package/Voxels/Structs/VoxelStruct.js +0 -29
- package/World/Section/SectionHeightMap.d.ts +0 -10
- package/World/Section/SectionHeightMap.js +0 -39
- package/World/Section/SectionStruct.d.ts +0 -8
- package/World/Section/SectionStruct.js +0 -29
- package/World/Section/SectionStructProperties.d.ts +0 -10
- package/World/Section/SectionStructProperties.js +0 -11
- package/World/Sector/SectorStruct.d.ts +0 -1
- package/World/Sector/SectorStruct.js +0 -46
- package/World/Sector/SectorStructIds.d.ts +0 -13
- package/World/Sector/SectorStructIds.js +0 -14
- package/World/Structs/WorldDataStructProperties.d.ts +0 -8
- package/World/Structs/WorldDataStructProperties.js +0 -9
- /package/Mesher/{VoxelShaderData.d.ts → Geomtry/VoxelShaderData.d.ts} +0 -0
- /package/Mesher/{VoxelShaderData.js → Geomtry/VoxelShaderData.js} +0 -0
- /package/{Data/Functions → Util/Binary}/Palettes.d.ts +0 -0
- /package/{Data/Functions → Util/Binary}/Palettes.js +0 -0
- /package/{Data/Structs/StructBuilder.types.js → Voxels/Cursor/DataCursor.interface.js} +0 -0
- /package/Voxels/{VoxelLevelReader.d.ts → Cursor/VoxelLevelReader.d.ts} +0 -0
- /package/Voxels/{VoxelLevelReader.js → Cursor/VoxelLevelReader.js} +0 -0
- /package/World/{Storage → Types}/WorldStorage.interface.d.ts +0 -0
- /package/World/{Storage → Types}/WorldStorage.interface.js +0 -0
|
@@ -45,16 +45,16 @@ export const simpleThinPannel = {
|
|
|
45
45
|
id: "cube",
|
|
46
46
|
geometryId: "dve_thin_panel_down",
|
|
47
47
|
inputs: {
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
48
|
+
upTex: "@upDownTextures",
|
|
49
|
+
upTexRotation: 0,
|
|
50
|
+
upTexTransparent: "@upDownTexturesTransparent",
|
|
51
|
+
downTex: "@upDownTextures",
|
|
52
|
+
downTexRotation: 0,
|
|
53
|
+
downTexTransparent: "@upDownTexturesTransparent",
|
|
54
|
+
northTex: "@sideTextures",
|
|
55
|
+
southTex: "@sideTextures",
|
|
56
|
+
eastTex: "@sideTextures",
|
|
57
|
+
westTex: "@sideTextures",
|
|
58
58
|
},
|
|
59
59
|
},
|
|
60
60
|
],
|
|
@@ -63,16 +63,16 @@ export const simpleThinPannel = {
|
|
|
63
63
|
id: "cube",
|
|
64
64
|
geometryId: "dve_thin_panel_down",
|
|
65
65
|
inputs: {
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
66
|
+
upTex: "@upDownTextures",
|
|
67
|
+
upTexRotation: 180,
|
|
68
|
+
upTexTransparent: "@upDownTexturesTransparent",
|
|
69
|
+
downTex: "@upDownTextures",
|
|
70
|
+
downTexRotation: 180,
|
|
71
|
+
downTexTransparent: "@upDownTexturesTransparent",
|
|
72
|
+
northTex: "@sideTextures",
|
|
73
|
+
southTex: "@sideTextures",
|
|
74
|
+
eastTex: "@sideTextures",
|
|
75
|
+
westTex: "@sideTextures",
|
|
76
76
|
},
|
|
77
77
|
},
|
|
78
78
|
],
|
|
@@ -81,16 +81,16 @@ export const simpleThinPannel = {
|
|
|
81
81
|
id: "cube",
|
|
82
82
|
geometryId: "dve_thin_panel_down",
|
|
83
83
|
inputs: {
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
84
|
+
upTex: "@upDownTextures",
|
|
85
|
+
upTexRotation: 90,
|
|
86
|
+
upTexTransparent: "@upDownTexturesTransparent",
|
|
87
|
+
downTex: "@upDownTextures",
|
|
88
|
+
downTexRotation: 90,
|
|
89
|
+
downTexTransparent: "@upDownTexturesTransparent",
|
|
90
|
+
northTex: "@sideTextures",
|
|
91
|
+
southTex: "@sideTextures",
|
|
92
|
+
eastTex: "@sideTextures",
|
|
93
|
+
westTex: "@sideTextures",
|
|
94
94
|
},
|
|
95
95
|
},
|
|
96
96
|
],
|
|
@@ -99,16 +99,16 @@ export const simpleThinPannel = {
|
|
|
99
99
|
id: "cube",
|
|
100
100
|
geometryId: "dve_thin_panel_down",
|
|
101
101
|
inputs: {
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
102
|
+
upTex: "@upDownTextures",
|
|
103
|
+
upTexRotation: 270,
|
|
104
|
+
upTexTransparent: "@upDownTexturesTransparent",
|
|
105
|
+
downTex: "@upDownTextures",
|
|
106
|
+
downTexRotation: 270,
|
|
107
|
+
downTexTransparent: "@upDownTexturesTransparent",
|
|
108
|
+
northTex: "@sideTextures",
|
|
109
|
+
southTex: "@sideTextures",
|
|
110
|
+
eastTex: "@sideTextures",
|
|
111
|
+
westTex: "@sideTextures",
|
|
112
112
|
},
|
|
113
113
|
},
|
|
114
114
|
],
|
|
@@ -118,16 +118,16 @@ export const simpleThinPannel = {
|
|
|
118
118
|
geometryId: "dve_thin_panel_down",
|
|
119
119
|
position: [0, 1 - 3 / 16, 0],
|
|
120
120
|
inputs: {
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
121
|
+
upTex: "@upDownTextures",
|
|
122
|
+
upTexRotation: 180,
|
|
123
|
+
upTexTransparent: "@upDownTexturesTransparent",
|
|
124
|
+
downTex: "@upDownTextures",
|
|
125
|
+
downTexRotation: 180,
|
|
126
|
+
downTexTransparent: "@upDownTexturesTransparent",
|
|
127
|
+
northTex: "@sideTextures",
|
|
128
|
+
southTex: "@sideTextures",
|
|
129
|
+
eastTex: "@sideTextures",
|
|
130
|
+
westTex: "@sideTextures",
|
|
131
131
|
},
|
|
132
132
|
},
|
|
133
133
|
],
|
|
@@ -137,16 +137,16 @@ export const simpleThinPannel = {
|
|
|
137
137
|
geometryId: "dve_thin_panel_down",
|
|
138
138
|
position: [0, 1 - 3 / 16, 0],
|
|
139
139
|
inputs: {
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
140
|
+
upTex: "@upDownTextures",
|
|
141
|
+
upTexRotation: 0,
|
|
142
|
+
upTexTransparent: "@upDownTexturesTransparent",
|
|
143
|
+
downTex: "@upDownTextures",
|
|
144
|
+
downTexRotation: 0,
|
|
145
|
+
downTexTransparent: "@upDownTexturesTransparent",
|
|
146
|
+
northTex: "@sideTextures",
|
|
147
|
+
southTex: "@sideTextures",
|
|
148
|
+
eastTex: "@sideTextures",
|
|
149
|
+
westTex: "@sideTextures",
|
|
150
150
|
},
|
|
151
151
|
},
|
|
152
152
|
],
|
|
@@ -156,16 +156,16 @@ export const simpleThinPannel = {
|
|
|
156
156
|
geometryId: "dve_thin_panel_down",
|
|
157
157
|
position: [0, 1 - 3 / 16, 0],
|
|
158
158
|
inputs: {
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
159
|
+
upTex: "@upDownTextures",
|
|
160
|
+
upTexRotation: 90,
|
|
161
|
+
upTexTransparent: "@upDownTexturesTransparent",
|
|
162
|
+
downTex: "@upDownTextures",
|
|
163
|
+
downTexRotation: 90,
|
|
164
|
+
downTexTransparent: "@upDownTexturesTransparent",
|
|
165
|
+
northTex: "@sideTextures",
|
|
166
|
+
southTex: "@sideTextures",
|
|
167
|
+
eastTex: "@sideTextures",
|
|
168
|
+
westTex: "@sideTextures",
|
|
169
169
|
},
|
|
170
170
|
},
|
|
171
171
|
],
|
|
@@ -175,16 +175,16 @@ export const simpleThinPannel = {
|
|
|
175
175
|
geometryId: "dve_thin_panel_down",
|
|
176
176
|
position: [0, 1 - 3 / 16, 0],
|
|
177
177
|
inputs: {
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
178
|
+
upTex: "@upDownTextures",
|
|
179
|
+
upTexRotation: 270,
|
|
180
|
+
upTexTransparent: "@upDownTexturesTransparent",
|
|
181
|
+
downTex: "@upDownTextures",
|
|
182
|
+
downTexRotation: 270,
|
|
183
|
+
downTexTransparent: "@upDownTexturesTransparent",
|
|
184
|
+
northTex: "@sideTextures",
|
|
185
|
+
southTex: "@sideTextures",
|
|
186
|
+
eastTex: "@sideTextures",
|
|
187
|
+
westTex: "@sideTextures",
|
|
188
188
|
},
|
|
189
189
|
},
|
|
190
190
|
],
|
|
@@ -194,16 +194,16 @@ export const simpleThinPannel = {
|
|
|
194
194
|
geometryId: "dve_thin_panel_south",
|
|
195
195
|
position: [0, 0, 1 - 3 / 16],
|
|
196
196
|
inputs: {
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
197
|
+
upTex: "@sideTextures",
|
|
198
|
+
downTex: "@sideTextures",
|
|
199
|
+
northTex: "@upDownTextures",
|
|
200
|
+
northTexRotation: 180,
|
|
201
|
+
northTexTransparent: "@upDownTexturesTransparent",
|
|
202
|
+
southTex: "@upDownTextures",
|
|
203
|
+
southTexRotation: 180,
|
|
204
|
+
southTexTransparent: "@upDownTexturesTransparent",
|
|
205
|
+
eastTex: "@sideTextures",
|
|
206
|
+
westTex: "@sideTextures",
|
|
207
207
|
},
|
|
208
208
|
},
|
|
209
209
|
],
|
|
@@ -213,16 +213,16 @@ export const simpleThinPannel = {
|
|
|
213
213
|
geometryId: "dve_thin_panel_south",
|
|
214
214
|
position: [0, 0, 1 - 3 / 16],
|
|
215
215
|
inputs: {
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
216
|
+
upTex: "@sideTextures",
|
|
217
|
+
downTex: "@sideTextures",
|
|
218
|
+
northTex: "@upDownTextures",
|
|
219
|
+
northTexRotation: 0,
|
|
220
|
+
northTexTransparent: "@upDownTexturesTransparent",
|
|
221
|
+
southTex: "@upDownTextures",
|
|
222
|
+
southTexRotation: 0,
|
|
223
|
+
southTexTransparent: "@upDownTexturesTransparent",
|
|
224
|
+
eastTex: "@sideTextures",
|
|
225
|
+
westTex: "@sideTextures",
|
|
226
226
|
},
|
|
227
227
|
},
|
|
228
228
|
],
|
|
@@ -232,16 +232,16 @@ export const simpleThinPannel = {
|
|
|
232
232
|
geometryId: "dve_thin_panel_south",
|
|
233
233
|
position: [0, 0, 1 - 3 / 16],
|
|
234
234
|
inputs: {
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
235
|
+
upTex: "@sideTextures",
|
|
236
|
+
downTex: "@sideTextures",
|
|
237
|
+
northTex: "@upDownTextures",
|
|
238
|
+
northTexRotation: 90,
|
|
239
|
+
northTexTransparent: "@upDownTexturesTransparent",
|
|
240
|
+
southTex: "@upDownTextures",
|
|
241
|
+
southTexRotation: 90,
|
|
242
|
+
southTexTransparent: "@upDownTexturesTransparent",
|
|
243
|
+
eastTex: "@sideTextures",
|
|
244
|
+
westTex: "@sideTextures",
|
|
245
245
|
},
|
|
246
246
|
},
|
|
247
247
|
],
|
|
@@ -251,16 +251,16 @@ export const simpleThinPannel = {
|
|
|
251
251
|
geometryId: "dve_thin_panel_south",
|
|
252
252
|
position: [0, 0, 1 - 3 / 16],
|
|
253
253
|
inputs: {
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
254
|
+
upTex: "@sideTextures",
|
|
255
|
+
downTex: "@sideTextures",
|
|
256
|
+
northTex: "@upDownTextures",
|
|
257
|
+
northTexRotation: 270,
|
|
258
|
+
northTexTransparent: "@upDownTexturesTransparent",
|
|
259
|
+
southTex: "@upDownTextures",
|
|
260
|
+
southTexRotation: 270,
|
|
261
|
+
southTexTransparent: "@upDownTexturesTransparent",
|
|
262
|
+
eastTex: "@sideTextures",
|
|
263
|
+
westTex: "@sideTextures",
|
|
264
264
|
},
|
|
265
265
|
},
|
|
266
266
|
],
|
|
@@ -269,16 +269,16 @@ export const simpleThinPannel = {
|
|
|
269
269
|
id: "cube",
|
|
270
270
|
geometryId: "dve_thin_panel_south",
|
|
271
271
|
inputs: {
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
272
|
+
upTex: "@sideTextures",
|
|
273
|
+
downTex: "@sideTextures",
|
|
274
|
+
northTex: "@upDownTextures",
|
|
275
|
+
northTexRotation: 180,
|
|
276
|
+
northTexTransparent: "@upDownTexturesTransparent",
|
|
277
|
+
southTex: "@upDownTextures",
|
|
278
|
+
southTexRotation: 180,
|
|
279
|
+
southTexTransparent: "@upDownTexturesTransparent",
|
|
280
|
+
eastTex: "@sideTextures",
|
|
281
|
+
westTex: "@sideTextures",
|
|
282
282
|
},
|
|
283
283
|
},
|
|
284
284
|
],
|
|
@@ -287,16 +287,16 @@ export const simpleThinPannel = {
|
|
|
287
287
|
id: "cube",
|
|
288
288
|
geometryId: "dve_thin_panel_south",
|
|
289
289
|
inputs: {
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
290
|
+
upTex: "@sideTextures",
|
|
291
|
+
downTex: "@sideTextures",
|
|
292
|
+
northTex: "@upDownTextures",
|
|
293
|
+
northTexRotation: 0,
|
|
294
|
+
northTexTransparent: "@upDownTexturesTransparent",
|
|
295
|
+
southTex: "@upDownTextures",
|
|
296
|
+
southTexRotation: 0,
|
|
297
|
+
southTexTransparent: "@upDownTexturesTransparent",
|
|
298
|
+
eastTex: "@sideTextures",
|
|
299
|
+
westTex: "@sideTextures",
|
|
300
300
|
},
|
|
301
301
|
},
|
|
302
302
|
],
|
|
@@ -305,16 +305,16 @@ export const simpleThinPannel = {
|
|
|
305
305
|
id: "cube",
|
|
306
306
|
geometryId: "dve_thin_panel_south",
|
|
307
307
|
inputs: {
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
308
|
+
upTex: "@sideTextures",
|
|
309
|
+
downTex: "@sideTextures",
|
|
310
|
+
northTex: "@upDownTextures",
|
|
311
|
+
northTexRotation: 90,
|
|
312
|
+
northTexTransparent: "@upDownTexturesTransparent",
|
|
313
|
+
southTex: "@upDownTextures",
|
|
314
|
+
southTexRotation: 90,
|
|
315
|
+
southTexTransparent: "@upDownTexturesTransparent",
|
|
316
|
+
eastTex: "@sideTextures",
|
|
317
|
+
westTex: "@sideTextures",
|
|
318
318
|
},
|
|
319
319
|
},
|
|
320
320
|
],
|
|
@@ -323,16 +323,16 @@ export const simpleThinPannel = {
|
|
|
323
323
|
id: "cube",
|
|
324
324
|
geometryId: "dve_thin_panel_south",
|
|
325
325
|
inputs: {
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
326
|
+
upTex: "@sideTextures",
|
|
327
|
+
downTex: "@sideTextures",
|
|
328
|
+
northTex: "@upDownTextures",
|
|
329
|
+
northTexRotation: 270,
|
|
330
|
+
northTexTransparent: "@upDownTexturesTransparent",
|
|
331
|
+
southTex: "@upDownTextures",
|
|
332
|
+
southTexRotation: 270,
|
|
333
|
+
southTexTransparent: "@upDownTexturesTransparent",
|
|
334
|
+
eastTex: "@sideTextures",
|
|
335
|
+
westTex: "@sideTextures",
|
|
336
336
|
},
|
|
337
337
|
},
|
|
338
338
|
],
|
|
@@ -342,16 +342,16 @@ export const simpleThinPannel = {
|
|
|
342
342
|
geometryId: "dve_thin_panel_west",
|
|
343
343
|
position: [1 - 3 / 16, 0, 0],
|
|
344
344
|
inputs: {
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
345
|
+
upTex: "@sideTextures",
|
|
346
|
+
downTex: "@sideTextures",
|
|
347
|
+
northTex: "@sideTextures",
|
|
348
|
+
southTex: "@sideTextures",
|
|
349
|
+
eastTex: "@upDownTextures",
|
|
350
|
+
eastTexRotation: 0,
|
|
351
|
+
eastTexTransparent: "@upDownTexturesTransparent",
|
|
352
|
+
westTex: "@upDownTextures",
|
|
353
|
+
westTexRotation: 0,
|
|
354
|
+
westTexTransparent: "@upDownTexturesTransparent",
|
|
355
355
|
},
|
|
356
356
|
},
|
|
357
357
|
],
|
|
@@ -361,16 +361,16 @@ export const simpleThinPannel = {
|
|
|
361
361
|
geometryId: "dve_thin_panel_west",
|
|
362
362
|
position: [1 - 3 / 16, 0, 0],
|
|
363
363
|
inputs: {
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
364
|
+
upTex: "@sideTextures",
|
|
365
|
+
downTex: "@sideTextures",
|
|
366
|
+
northTex: "@sideTextures",
|
|
367
|
+
southTex: "@sideTextures",
|
|
368
|
+
eastTex: "@upDownTextures",
|
|
369
|
+
eastTexRotation: 180,
|
|
370
|
+
eastTexTransparent: "@upDownTexturesTransparent",
|
|
371
|
+
westTex: "@upDownTextures",
|
|
372
|
+
westTexRotation: 180,
|
|
373
|
+
westTexTransparent: "@upDownTexturesTransparent",
|
|
374
374
|
},
|
|
375
375
|
},
|
|
376
376
|
],
|
|
@@ -380,16 +380,16 @@ export const simpleThinPannel = {
|
|
|
380
380
|
geometryId: "dve_thin_panel_west",
|
|
381
381
|
position: [1 - 3 / 16, 0, 0],
|
|
382
382
|
inputs: {
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
383
|
+
upTex: "@sideTextures",
|
|
384
|
+
downTex: "@sideTextures",
|
|
385
|
+
northTex: "@sideTextures",
|
|
386
|
+
southTex: "@sideTextures",
|
|
387
|
+
eastTex: "@upDownTextures",
|
|
388
|
+
eastTexRotation: 90,
|
|
389
|
+
eastTexTransparent: "@upDownTexturesTransparent",
|
|
390
|
+
westTex: "@upDownTextures",
|
|
391
|
+
westTexRotation: 90,
|
|
392
|
+
westTexTransparent: "@upDownTexturesTransparent",
|
|
393
393
|
},
|
|
394
394
|
},
|
|
395
395
|
],
|
|
@@ -399,16 +399,16 @@ export const simpleThinPannel = {
|
|
|
399
399
|
geometryId: "dve_thin_panel_west",
|
|
400
400
|
position: [1 - 3 / 16, 0, 0],
|
|
401
401
|
inputs: {
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
402
|
+
upTex: "@sideTextures",
|
|
403
|
+
downTex: "@sideTextures",
|
|
404
|
+
northTex: "@sideTextures",
|
|
405
|
+
southTex: "@sideTextures",
|
|
406
|
+
eastTex: "@upDownTextures",
|
|
407
|
+
eastTexRotation: 270,
|
|
408
|
+
eastTexTransparent: "@upDownTexturesTransparent",
|
|
409
|
+
westTex: "@upDownTextures",
|
|
410
|
+
westTexRotation: 270,
|
|
411
|
+
westTexTransparent: "@upDownTexturesTransparent",
|
|
412
412
|
},
|
|
413
413
|
},
|
|
414
414
|
],
|
|
@@ -417,16 +417,16 @@ export const simpleThinPannel = {
|
|
|
417
417
|
id: "cube",
|
|
418
418
|
geometryId: "dve_thin_panel_west",
|
|
419
419
|
inputs: {
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
420
|
+
upTex: "@sideTextures",
|
|
421
|
+
downTex: "@sideTextures",
|
|
422
|
+
northTex: "@sideTextures",
|
|
423
|
+
southTex: "@sideTextures",
|
|
424
|
+
eastTex: "@upDownTextures",
|
|
425
|
+
eastTexRotation: 0,
|
|
426
|
+
eastTexTransparent: "@upDownTexturesTransparent",
|
|
427
|
+
westTex: "@upDownTextures",
|
|
428
|
+
westTexRotation: 0,
|
|
429
|
+
westTexTransparent: "@upDownTexturesTransparent",
|
|
430
430
|
},
|
|
431
431
|
},
|
|
432
432
|
],
|
|
@@ -435,16 +435,16 @@ export const simpleThinPannel = {
|
|
|
435
435
|
id: "cube",
|
|
436
436
|
geometryId: "dve_thin_panel_west",
|
|
437
437
|
inputs: {
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
438
|
+
upTex: "@sideTextures",
|
|
439
|
+
downTex: "@sideTextures",
|
|
440
|
+
northTex: "@sideTextures",
|
|
441
|
+
southTex: "@sideTextures",
|
|
442
|
+
eastTex: "@upDownTextures",
|
|
443
|
+
eastTexRotation: 180,
|
|
444
|
+
eastTexTransparent: "@upDownTexturesTransparent",
|
|
445
|
+
westTex: "@upDownTextures",
|
|
446
|
+
westTexRotation: 180,
|
|
447
|
+
westTexTransparent: "@upDownTexturesTransparent",
|
|
448
448
|
},
|
|
449
449
|
},
|
|
450
450
|
],
|
|
@@ -453,16 +453,16 @@ export const simpleThinPannel = {
|
|
|
453
453
|
id: "cube",
|
|
454
454
|
geometryId: "dve_thin_panel_west",
|
|
455
455
|
inputs: {
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
456
|
+
upTex: "@sideTextures",
|
|
457
|
+
downTex: "@sideTextures",
|
|
458
|
+
northTex: "@sideTextures",
|
|
459
|
+
southTex: "@sideTextures",
|
|
460
|
+
eastTex: "@upDownTextures",
|
|
461
|
+
eastTexRotation: 90,
|
|
462
|
+
eastTexTransparent: "@upDownTexturesTransparent",
|
|
463
|
+
westTex: "@upDownTextures",
|
|
464
|
+
westTexRotation: 90,
|
|
465
|
+
westTexTransparent: "@upDownTexturesTransparent",
|
|
466
466
|
},
|
|
467
467
|
},
|
|
468
468
|
],
|
|
@@ -471,16 +471,16 @@ export const simpleThinPannel = {
|
|
|
471
471
|
id: "cube",
|
|
472
472
|
geometryId: "dve_thin_panel_west",
|
|
473
473
|
inputs: {
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
474
|
+
upTex: "@sideTextures",
|
|
475
|
+
downTex: "@sideTextures",
|
|
476
|
+
northTex: "@sideTextures",
|
|
477
|
+
southTex: "@sideTextures",
|
|
478
|
+
eastTex: "@upDownTextures",
|
|
479
|
+
eastTexRotation: 270,
|
|
480
|
+
eastTexTransparent: "@upDownTexturesTransparent",
|
|
481
|
+
westTex: "@upDownTextures",
|
|
482
|
+
westTexRotation: 270,
|
|
483
|
+
westTexTransparent: "@upDownTexturesTransparent",
|
|
484
484
|
},
|
|
485
485
|
},
|
|
486
486
|
],
|
|
@@ -534,20 +534,20 @@ export const simpleCrossedPannel = {
|
|
|
534
534
|
id: "quad-1",
|
|
535
535
|
geometryId: "dve_diagonal_flat_panel_west_east",
|
|
536
536
|
inputs: {
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
537
|
+
texture: "@texture",
|
|
538
|
+
textureRotation: 0,
|
|
539
|
+
transaprent: "@transparent",
|
|
540
|
+
doubleSided: "@doubleSided",
|
|
541
541
|
},
|
|
542
542
|
},
|
|
543
543
|
{
|
|
544
544
|
id: "quad-2",
|
|
545
545
|
geometryId: "dve_diagonal_flat_panel_east_west",
|
|
546
546
|
inputs: {
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
547
|
+
texture: "@texture",
|
|
548
|
+
textureRotation: 0,
|
|
549
|
+
transaprent: "@transparent",
|
|
550
|
+
doubleSided: "@doubleSided",
|
|
551
551
|
},
|
|
552
552
|
},
|
|
553
553
|
],
|
|
@@ -556,20 +556,20 @@ export const simpleCrossedPannel = {
|
|
|
556
556
|
id: "quad-1",
|
|
557
557
|
geometryId: "dve_diagonal_flat_panel_west_east",
|
|
558
558
|
inputs: {
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
559
|
+
texture: "@texture",
|
|
560
|
+
textureRotation: 180,
|
|
561
|
+
transaprent: "@transparent",
|
|
562
|
+
doubleSided: "@doubleSided",
|
|
563
563
|
},
|
|
564
564
|
},
|
|
565
565
|
{
|
|
566
566
|
id: "quad-2",
|
|
567
567
|
geometryId: "dve_diagonal_flat_panel_east_west",
|
|
568
568
|
inputs: {
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
569
|
+
texture: "@texture",
|
|
570
|
+
textureRotation: 180,
|
|
571
|
+
transaprent: "@transparent",
|
|
572
|
+
doubleSided: "@doubleSided",
|
|
573
573
|
},
|
|
574
574
|
},
|
|
575
575
|
],
|
|
@@ -578,20 +578,20 @@ export const simpleCrossedPannel = {
|
|
|
578
578
|
id: "quad-1",
|
|
579
579
|
geometryId: "dve_diagonal_flat_panel_west_east",
|
|
580
580
|
inputs: {
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
581
|
+
texture: "@texture",
|
|
582
|
+
textureRotation: 90,
|
|
583
|
+
transaprent: "@transparent",
|
|
584
|
+
doubleSided: "@doubleSided",
|
|
585
585
|
},
|
|
586
586
|
},
|
|
587
587
|
{
|
|
588
588
|
id: "quad-2",
|
|
589
589
|
geometryId: "dve_diagonal_flat_panel_east_west",
|
|
590
590
|
inputs: {
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
591
|
+
texture: "@texture",
|
|
592
|
+
textureRotation: 90,
|
|
593
|
+
transaprent: "@transparent",
|
|
594
|
+
doubleSided: "@doubleSided",
|
|
595
595
|
},
|
|
596
596
|
},
|
|
597
597
|
],
|
|
@@ -600,20 +600,20 @@ export const simpleCrossedPannel = {
|
|
|
600
600
|
id: "quad-1",
|
|
601
601
|
geometryId: "dve_diagonal_flat_panel_west_east",
|
|
602
602
|
inputs: {
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
603
|
+
texture: "@texture",
|
|
604
|
+
textureRotation: 270,
|
|
605
|
+
transaprent: "@transparent",
|
|
606
|
+
doubleSided: "@doubleSided",
|
|
607
607
|
},
|
|
608
608
|
},
|
|
609
609
|
{
|
|
610
610
|
id: "quad-2",
|
|
611
611
|
geometryId: "dve_diagonal_flat_panel_east_west",
|
|
612
612
|
inputs: {
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
613
|
+
texture: "@texture",
|
|
614
|
+
textureRotation: 270,
|
|
615
|
+
transaprent: "@transparent",
|
|
616
|
+
doubleSided: "@doubleSided",
|
|
617
617
|
},
|
|
618
618
|
},
|
|
619
619
|
],
|
|
@@ -622,20 +622,20 @@ export const simpleCrossedPannel = {
|
|
|
622
622
|
id: "quad-1",
|
|
623
623
|
geometryId: "dve_diagonal_flat_panel_west_east",
|
|
624
624
|
inputs: {
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
625
|
+
texture: "@texture",
|
|
626
|
+
textureRotation: 180,
|
|
627
|
+
transaprent: "@transparent",
|
|
628
|
+
doubleSided: "@doubleSided",
|
|
629
629
|
},
|
|
630
630
|
},
|
|
631
631
|
{
|
|
632
632
|
id: "quad-2",
|
|
633
633
|
geometryId: "dve_diagonal_flat_panel_east_west",
|
|
634
634
|
inputs: {
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
635
|
+
texture: "@texture",
|
|
636
|
+
textureRotation: 180,
|
|
637
|
+
transaprent: "@transparent",
|
|
638
|
+
doubleSided: "@doubleSided",
|
|
639
639
|
},
|
|
640
640
|
},
|
|
641
641
|
],
|
|
@@ -644,20 +644,20 @@ export const simpleCrossedPannel = {
|
|
|
644
644
|
id: "quad-1",
|
|
645
645
|
geometryId: "dve_diagonal_flat_panel_west_east",
|
|
646
646
|
inputs: {
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
647
|
+
texture: "@texture",
|
|
648
|
+
textureRotation: 0,
|
|
649
|
+
transaprent: "@transparent",
|
|
650
|
+
doubleSided: "@doubleSided",
|
|
651
651
|
},
|
|
652
652
|
},
|
|
653
653
|
{
|
|
654
654
|
id: "quad-2",
|
|
655
655
|
geometryId: "dve_diagonal_flat_panel_east_west",
|
|
656
656
|
inputs: {
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
657
|
+
texture: "@texture",
|
|
658
|
+
textureRotation: 0,
|
|
659
|
+
transaprent: "@transparent",
|
|
660
|
+
doubleSided: "@doubleSided",
|
|
661
661
|
},
|
|
662
662
|
},
|
|
663
663
|
],
|
|
@@ -666,20 +666,20 @@ export const simpleCrossedPannel = {
|
|
|
666
666
|
id: "quad-1",
|
|
667
667
|
geometryId: "dve_diagonal_flat_panel_west_east",
|
|
668
668
|
inputs: {
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
669
|
+
texture: "@texture",
|
|
670
|
+
textureRotation: 270,
|
|
671
|
+
transaprent: "@transparent",
|
|
672
|
+
doubleSided: "@doubleSided",
|
|
673
673
|
},
|
|
674
674
|
},
|
|
675
675
|
{
|
|
676
676
|
id: "quad-2",
|
|
677
677
|
geometryId: "dve_diagonal_flat_panel_east_west",
|
|
678
678
|
inputs: {
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
679
|
+
texture: "@texture",
|
|
680
|
+
textureRotation: 270,
|
|
681
|
+
transaprent: "@transparent",
|
|
682
|
+
doubleSided: "@doubleSided",
|
|
683
683
|
},
|
|
684
684
|
},
|
|
685
685
|
],
|
|
@@ -688,20 +688,20 @@ export const simpleCrossedPannel = {
|
|
|
688
688
|
id: "quad-1",
|
|
689
689
|
geometryId: "dve_diagonal_flat_panel_west_east",
|
|
690
690
|
inputs: {
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
691
|
+
texture: "@texture",
|
|
692
|
+
textureRotation: 90,
|
|
693
|
+
transaprent: "@transparent",
|
|
694
|
+
doubleSided: "@doubleSided",
|
|
695
695
|
},
|
|
696
696
|
},
|
|
697
697
|
{
|
|
698
698
|
id: "quad-2",
|
|
699
699
|
geometryId: "dve_diagonal_flat_panel_east_west",
|
|
700
700
|
inputs: {
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
701
|
+
texture: "@texture",
|
|
702
|
+
textureRotation: 90,
|
|
703
|
+
transaprent: "@transparent",
|
|
704
|
+
doubleSided: "@doubleSided",
|
|
705
705
|
},
|
|
706
706
|
},
|
|
707
707
|
],
|
|
@@ -710,20 +710,20 @@ export const simpleCrossedPannel = {
|
|
|
710
710
|
id: "quad-1",
|
|
711
711
|
geometryId: "dve_diagonal_flat_panel_west_east",
|
|
712
712
|
inputs: {
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
713
|
+
texture: "@texture",
|
|
714
|
+
textureRotation: 0,
|
|
715
|
+
transaprent: "@transparent",
|
|
716
|
+
doubleSided: "@doubleSided",
|
|
717
717
|
},
|
|
718
718
|
},
|
|
719
719
|
{
|
|
720
720
|
id: "quad-2",
|
|
721
721
|
geometryId: "dve_diagonal_flat_panel_east_west",
|
|
722
722
|
inputs: {
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
723
|
+
texture: "@texture",
|
|
724
|
+
textureRotation: 0,
|
|
725
|
+
transaprent: "@transparent",
|
|
726
|
+
doubleSided: "@doubleSided",
|
|
727
727
|
},
|
|
728
728
|
},
|
|
729
729
|
],
|
|
@@ -732,20 +732,20 @@ export const simpleCrossedPannel = {
|
|
|
732
732
|
id: "quad-1",
|
|
733
733
|
geometryId: "dve_diagonal_flat_panel_west_east",
|
|
734
734
|
inputs: {
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
735
|
+
texture: "@texture",
|
|
736
|
+
textureRotation: 180,
|
|
737
|
+
transaprent: "@transparent",
|
|
738
|
+
doubleSided: "@doubleSided",
|
|
739
739
|
},
|
|
740
740
|
},
|
|
741
741
|
{
|
|
742
742
|
id: "quad-2",
|
|
743
743
|
geometryId: "dve_diagonal_flat_panel_east_west",
|
|
744
744
|
inputs: {
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
745
|
+
texture: "@texture",
|
|
746
|
+
textureRotation: 180,
|
|
747
|
+
transaprent: "@transparent",
|
|
748
|
+
doubleSided: "@doubleSided",
|
|
749
749
|
},
|
|
750
750
|
},
|
|
751
751
|
],
|
|
@@ -754,20 +754,20 @@ export const simpleCrossedPannel = {
|
|
|
754
754
|
id: "quad-1",
|
|
755
755
|
geometryId: "dve_diagonal_flat_panel_west_east",
|
|
756
756
|
inputs: {
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
757
|
+
texture: "@texture",
|
|
758
|
+
textureRotation: 90,
|
|
759
|
+
transaprent: "@transparent",
|
|
760
|
+
doubleSided: "@doubleSided",
|
|
761
761
|
},
|
|
762
762
|
},
|
|
763
763
|
{
|
|
764
764
|
id: "quad-2",
|
|
765
765
|
geometryId: "dve_diagonal_flat_panel_east_west",
|
|
766
766
|
inputs: {
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
767
|
+
texture: "@texture",
|
|
768
|
+
textureRotation: 90,
|
|
769
|
+
transaprent: "@transparent",
|
|
770
|
+
doubleSided: "@doubleSided",
|
|
771
771
|
},
|
|
772
772
|
},
|
|
773
773
|
],
|
|
@@ -776,20 +776,20 @@ export const simpleCrossedPannel = {
|
|
|
776
776
|
id: "quad-1",
|
|
777
777
|
geometryId: "dve_diagonal_flat_panel_west_east",
|
|
778
778
|
inputs: {
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
779
|
+
texture: "@texture",
|
|
780
|
+
textureRotation: 270,
|
|
781
|
+
transaprent: "@transparent",
|
|
782
|
+
doubleSided: "@doubleSided",
|
|
783
783
|
},
|
|
784
784
|
},
|
|
785
785
|
{
|
|
786
786
|
id: "quad-2",
|
|
787
787
|
geometryId: "dve_diagonal_flat_panel_east_west",
|
|
788
788
|
inputs: {
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
789
|
+
texture: "@texture",
|
|
790
|
+
textureRotation: 270,
|
|
791
|
+
transaprent: "@transparent",
|
|
792
|
+
doubleSided: "@doubleSided",
|
|
793
793
|
},
|
|
794
794
|
},
|
|
795
795
|
],
|
|
@@ -798,20 +798,20 @@ export const simpleCrossedPannel = {
|
|
|
798
798
|
id: "quad-1",
|
|
799
799
|
geometryId: "dve_diagonal_flat_panel_west_east",
|
|
800
800
|
inputs: {
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
801
|
+
texture: "@texture",
|
|
802
|
+
textureRotation: 0,
|
|
803
|
+
transaprent: "@transparent",
|
|
804
|
+
doubleSided: "@doubleSided",
|
|
805
805
|
},
|
|
806
806
|
},
|
|
807
807
|
{
|
|
808
808
|
id: "quad-2",
|
|
809
809
|
geometryId: "dve_diagonal_flat_panel_east_west",
|
|
810
810
|
inputs: {
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
811
|
+
texture: "@texture",
|
|
812
|
+
textureRotation: 0,
|
|
813
|
+
transaprent: "@transparent",
|
|
814
|
+
doubleSided: "@doubleSided",
|
|
815
815
|
},
|
|
816
816
|
},
|
|
817
817
|
],
|
|
@@ -820,20 +820,20 @@ export const simpleCrossedPannel = {
|
|
|
820
820
|
id: "quad-1",
|
|
821
821
|
geometryId: "dve_diagonal_flat_panel_west_east",
|
|
822
822
|
inputs: {
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
823
|
+
texture: "@texture",
|
|
824
|
+
textureRotation: 180,
|
|
825
|
+
transaprent: "@transparent",
|
|
826
|
+
doubleSided: "@doubleSided",
|
|
827
827
|
},
|
|
828
828
|
},
|
|
829
829
|
{
|
|
830
830
|
id: "quad-2",
|
|
831
831
|
geometryId: "dve_diagonal_flat_panel_east_west",
|
|
832
832
|
inputs: {
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
833
|
+
texture: "@texture",
|
|
834
|
+
textureRotation: 180,
|
|
835
|
+
transaprent: "@transparent",
|
|
836
|
+
doubleSided: "@doubleSided",
|
|
837
837
|
},
|
|
838
838
|
},
|
|
839
839
|
],
|
|
@@ -842,20 +842,20 @@ export const simpleCrossedPannel = {
|
|
|
842
842
|
id: "quad-1",
|
|
843
843
|
geometryId: "dve_diagonal_flat_panel_west_east",
|
|
844
844
|
inputs: {
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
845
|
+
texture: "@texture",
|
|
846
|
+
textureRotation: 270,
|
|
847
|
+
transaprent: "@transparent",
|
|
848
|
+
doubleSided: "@doubleSided",
|
|
849
849
|
},
|
|
850
850
|
},
|
|
851
851
|
{
|
|
852
852
|
id: "quad-2",
|
|
853
853
|
geometryId: "dve_diagonal_flat_panel_east_west",
|
|
854
854
|
inputs: {
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
855
|
+
texture: "@texture",
|
|
856
|
+
textureRotation: 270,
|
|
857
|
+
transaprent: "@transparent",
|
|
858
|
+
doubleSided: "@doubleSided",
|
|
859
859
|
},
|
|
860
860
|
},
|
|
861
861
|
],
|
|
@@ -864,20 +864,20 @@ export const simpleCrossedPannel = {
|
|
|
864
864
|
id: "quad-1",
|
|
865
865
|
geometryId: "dve_diagonal_flat_panel_west_east",
|
|
866
866
|
inputs: {
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
867
|
+
texture: "@texture",
|
|
868
|
+
textureRotation: 90,
|
|
869
|
+
transaprent: "@transparent",
|
|
870
|
+
doubleSided: "@doubleSided",
|
|
871
871
|
},
|
|
872
872
|
},
|
|
873
873
|
{
|
|
874
874
|
id: "quad-2",
|
|
875
875
|
geometryId: "dve_diagonal_flat_panel_east_west",
|
|
876
876
|
inputs: {
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
877
|
+
texture: "@texture",
|
|
878
|
+
textureRotation: 90,
|
|
879
|
+
transaprent: "@transparent",
|
|
880
|
+
doubleSided: "@doubleSided",
|
|
881
881
|
},
|
|
882
882
|
},
|
|
883
883
|
],
|
|
@@ -886,20 +886,20 @@ export const simpleCrossedPannel = {
|
|
|
886
886
|
id: "quad-1",
|
|
887
887
|
geometryId: "dve_diagonal_flat_panel_west_east",
|
|
888
888
|
inputs: {
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
889
|
+
texture: "@texture",
|
|
890
|
+
textureRotation: 0,
|
|
891
|
+
transaprent: "@transparent",
|
|
892
|
+
doubleSided: "@doubleSided",
|
|
893
893
|
},
|
|
894
894
|
},
|
|
895
895
|
{
|
|
896
896
|
id: "quad-2",
|
|
897
897
|
geometryId: "dve_diagonal_flat_panel_east_west",
|
|
898
898
|
inputs: {
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
899
|
+
texture: "@texture",
|
|
900
|
+
textureRotation: 0,
|
|
901
|
+
transaprent: "@transparent",
|
|
902
|
+
doubleSided: "@doubleSided",
|
|
903
903
|
},
|
|
904
904
|
},
|
|
905
905
|
],
|
|
@@ -908,20 +908,20 @@ export const simpleCrossedPannel = {
|
|
|
908
908
|
id: "quad-1",
|
|
909
909
|
geometryId: "dve_diagonal_flat_panel_west_east",
|
|
910
910
|
inputs: {
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
911
|
+
texture: "@texture",
|
|
912
|
+
textureRotation: 180,
|
|
913
|
+
transaprent: "@transparent",
|
|
914
|
+
doubleSided: "@doubleSided",
|
|
915
915
|
},
|
|
916
916
|
},
|
|
917
917
|
{
|
|
918
918
|
id: "quad-2",
|
|
919
919
|
geometryId: "dve_diagonal_flat_panel_east_west",
|
|
920
920
|
inputs: {
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
921
|
+
texture: "@texture",
|
|
922
|
+
textureRotation: 180,
|
|
923
|
+
transaprent: "@transparent",
|
|
924
|
+
doubleSided: "@doubleSided",
|
|
925
925
|
},
|
|
926
926
|
},
|
|
927
927
|
],
|
|
@@ -930,20 +930,20 @@ export const simpleCrossedPannel = {
|
|
|
930
930
|
id: "quad-1",
|
|
931
931
|
geometryId: "dve_diagonal_flat_panel_west_east",
|
|
932
932
|
inputs: {
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
933
|
+
texture: "@texture",
|
|
934
|
+
textureRotation: 270,
|
|
935
|
+
transaprent: "@transparent",
|
|
936
|
+
doubleSided: "@doubleSided",
|
|
937
937
|
},
|
|
938
938
|
},
|
|
939
939
|
{
|
|
940
940
|
id: "quad-2",
|
|
941
941
|
geometryId: "dve_diagonal_flat_panel_east_west",
|
|
942
942
|
inputs: {
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
943
|
+
texture: "@texture",
|
|
944
|
+
textureRotation: 270,
|
|
945
|
+
transaprent: "@transparent",
|
|
946
|
+
doubleSided: "@doubleSided",
|
|
947
947
|
},
|
|
948
948
|
},
|
|
949
949
|
],
|
|
@@ -952,20 +952,20 @@ export const simpleCrossedPannel = {
|
|
|
952
952
|
id: "quad-1",
|
|
953
953
|
geometryId: "dve_diagonal_flat_panel_west_east",
|
|
954
954
|
inputs: {
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
955
|
+
texture: "@texture",
|
|
956
|
+
textureRotation: 90,
|
|
957
|
+
transaprent: "@transparent",
|
|
958
|
+
doubleSided: "@doubleSided",
|
|
959
959
|
},
|
|
960
960
|
},
|
|
961
961
|
{
|
|
962
962
|
id: "quad-2",
|
|
963
963
|
geometryId: "dve_diagonal_flat_panel_east_west",
|
|
964
964
|
inputs: {
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
965
|
+
texture: "@texture",
|
|
966
|
+
textureRotation: 90,
|
|
967
|
+
transaprent: "@transparent",
|
|
968
|
+
doubleSided: "@doubleSided",
|
|
969
969
|
},
|
|
970
970
|
},
|
|
971
971
|
],
|
|
@@ -974,20 +974,20 @@ export const simpleCrossedPannel = {
|
|
|
974
974
|
id: "quad-1",
|
|
975
975
|
geometryId: "dve_diagonal_flat_panel_west_east",
|
|
976
976
|
inputs: {
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
977
|
+
texture: "@texture",
|
|
978
|
+
textureRotation: 0,
|
|
979
|
+
transaprent: "@transparent",
|
|
980
|
+
doubleSided: "@doubleSided",
|
|
981
981
|
},
|
|
982
982
|
},
|
|
983
983
|
{
|
|
984
984
|
id: "quad-2",
|
|
985
985
|
geometryId: "dve_diagonal_flat_panel_east_west",
|
|
986
986
|
inputs: {
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
987
|
+
texture: "@texture",
|
|
988
|
+
textureRotation: 0,
|
|
989
|
+
transaprent: "@transparent",
|
|
990
|
+
doubleSided: "@doubleSided",
|
|
991
991
|
},
|
|
992
992
|
},
|
|
993
993
|
],
|
|
@@ -996,20 +996,20 @@ export const simpleCrossedPannel = {
|
|
|
996
996
|
id: "quad-1",
|
|
997
997
|
geometryId: "dve_diagonal_flat_panel_west_east",
|
|
998
998
|
inputs: {
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
999
|
+
texture: "@texture",
|
|
1000
|
+
textureRotation: 180,
|
|
1001
|
+
transaprent: "@transparent",
|
|
1002
|
+
doubleSided: "@doubleSided",
|
|
1003
1003
|
},
|
|
1004
1004
|
},
|
|
1005
1005
|
{
|
|
1006
1006
|
id: "quad-2",
|
|
1007
1007
|
geometryId: "dve_diagonal_flat_panel_east_west",
|
|
1008
1008
|
inputs: {
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
1009
|
+
texture: "@texture",
|
|
1010
|
+
textureRotation: 180,
|
|
1011
|
+
transaprent: "@transparent",
|
|
1012
|
+
doubleSided: "@doubleSided",
|
|
1013
1013
|
},
|
|
1014
1014
|
},
|
|
1015
1015
|
],
|
|
@@ -1018,20 +1018,20 @@ export const simpleCrossedPannel = {
|
|
|
1018
1018
|
id: "quad-1",
|
|
1019
1019
|
geometryId: "dve_diagonal_flat_panel_west_east",
|
|
1020
1020
|
inputs: {
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1021
|
+
texture: "@texture",
|
|
1022
|
+
textureRotation: 270,
|
|
1023
|
+
transaprent: "@transparent",
|
|
1024
|
+
doubleSided: "@doubleSided",
|
|
1025
1025
|
},
|
|
1026
1026
|
},
|
|
1027
1027
|
{
|
|
1028
1028
|
id: "quad-2",
|
|
1029
1029
|
geometryId: "dve_diagonal_flat_panel_east_west",
|
|
1030
1030
|
inputs: {
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1031
|
+
texture: "@texture",
|
|
1032
|
+
textureRotation: 270,
|
|
1033
|
+
transaprent: "@transparent",
|
|
1034
|
+
doubleSided: "@doubleSided",
|
|
1035
1035
|
},
|
|
1036
1036
|
},
|
|
1037
1037
|
],
|
|
@@ -1040,20 +1040,20 @@ export const simpleCrossedPannel = {
|
|
|
1040
1040
|
id: "quad-1",
|
|
1041
1041
|
geometryId: "dve_diagonal_flat_panel_west_east",
|
|
1042
1042
|
inputs: {
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1043
|
+
texture: "@texture",
|
|
1044
|
+
textureRotation: 90,
|
|
1045
|
+
transaprent: "@transparent",
|
|
1046
|
+
doubleSided: "@doubleSided",
|
|
1047
1047
|
},
|
|
1048
1048
|
},
|
|
1049
1049
|
{
|
|
1050
1050
|
id: "quad-2",
|
|
1051
1051
|
geometryId: "dve_diagonal_flat_panel_east_west",
|
|
1052
1052
|
inputs: {
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1053
|
+
texture: "@texture",
|
|
1054
|
+
textureRotation: 90,
|
|
1055
|
+
transaprent: "@transparent",
|
|
1056
|
+
doubleSided: "@doubleSided",
|
|
1057
1057
|
},
|
|
1058
1058
|
},
|
|
1059
1059
|
],
|