@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.
Files changed (271) hide show
  1. package/Contexts/Base/Main/InitDataGenerator.js +0 -9
  2. package/Contexts/Base/Remote/DataSync.types.d.ts +0 -5
  3. package/Contexts/Base/Remote/InitDataSync.js +17 -31
  4. package/Contexts/Render/DivineVoxelEngineRender.d.ts +1 -1
  5. package/Contexts/World/DivineVoxelEngineWorld.d.ts +1 -1
  6. package/Init/StartConstructor.js +7 -7
  7. package/Init/StartWorld.d.ts +1 -1
  8. package/Init/StartWorld.js +0 -12
  9. package/Math/Indexing.d.ts +12 -3
  10. package/Math/Indexing.js +24 -15
  11. package/Mesher/Functions/CompactVoxelMesh.d.ts +2 -2
  12. package/Mesher/Functions/CompactVoxelMesh.js +4 -5
  13. package/Mesher/Functions/MeshSection.d.ts +1 -1
  14. package/Mesher/Functions/MeshSection.js +72 -66
  15. package/Mesher/Functions/MeshTexture.d.ts +1 -1
  16. package/Mesher/Functions/MeshTexture.js +3 -4
  17. package/Mesher/Functions/MeshVoxel.js +20 -26
  18. package/Mesher/Geomtry/Primitives/QuadVertexData.d.ts +12 -10
  19. package/Mesher/Geomtry/Primitives/QuadVertexData.js +49 -56
  20. package/Mesher/Geomtry/VoxelGeometryBuilder.d.ts +2 -2
  21. package/Mesher/Geomtry/VoxelGeometryBuilder.js +108 -125
  22. package/Mesher/Geomtry/VoxelMesh.d.ts +1 -1
  23. package/Mesher/Geomtry/VoxelMesh.js +2 -2
  24. package/Mesher/{Tools → Geomtry}/VoxelMeshBVHBuilder.d.ts +2 -9
  25. package/Mesher/{Tools → Geomtry}/VoxelMeshBVHBuilder.js +4 -16
  26. package/Mesher/Geomtry/{Buffers.d.ts → VoxelMeshBuffers.d.ts} +9 -8
  27. package/Mesher/Geomtry/VoxelMeshBuffers.js +49 -0
  28. package/Mesher/{Tools → Geomtry}/VoxelMeshVertexStructCursor.d.ts +10 -0
  29. package/Mesher/{Tools → Geomtry}/VoxelMeshVertexStructCursor.js +10 -0
  30. package/Mesher/Geomtry/index.d.ts +0 -1
  31. package/Mesher/Geomtry/index.js +0 -1
  32. package/Mesher/InitMesher.js +2 -11
  33. package/Mesher/InitTask.js +10 -22
  34. package/Mesher/Models/Common/BoundsFunctions.d.ts +1 -3
  35. package/Mesher/Models/Common/BoundsFunctions.js +0 -16
  36. package/Mesher/Models/Common/Calc/CalcConstants.js +14 -31
  37. package/Mesher/Models/Common/Calc/FaceDataCalc.d.ts +2 -8
  38. package/Mesher/Models/Common/Calc/FaceDataCalc.js +50 -52
  39. package/Mesher/Models/Nodes/Custom/Liquid/FlowGradient.d.ts +2 -2
  40. package/Mesher/Models/Nodes/Custom/Liquid/FlowGradient.js +1 -1
  41. package/Mesher/Models/Nodes/Custom/Liquid/LiquidGeomtryNode.d.ts +1 -5
  42. package/Mesher/Models/Nodes/Custom/Liquid/LiquidGeomtryNode.js +40 -42
  43. package/Mesher/Models/Nodes/GeometryNode.d.ts +3 -5
  44. package/Mesher/Models/Nodes/GeometryNode.js +1 -2
  45. package/Mesher/Models/Nodes/Ruled/BoxVoxelGeometryNode.d.ts +3 -6
  46. package/Mesher/Models/Nodes/Ruled/BoxVoxelGeometryNode.js +55 -40
  47. package/Mesher/Models/Nodes/Ruled/QuadVoxelGeometryNode.d.ts +2 -6
  48. package/Mesher/Models/Nodes/Ruled/QuadVoxelGeometryNode.js +52 -51
  49. package/Mesher/Models/Nodes/Ruleless/RulelessBoxVoxelGeometryNode.d.ts +2 -6
  50. package/Mesher/Models/Nodes/Ruleless/RulelessBoxVoxelGeometryNode.js +18 -19
  51. package/Mesher/Models/Nodes/Ruleless/RulelessQuadVoxelGeometryNode.d.ts +2 -6
  52. package/Mesher/Models/Nodes/Ruleless/RulelessQuadVoxelGeometryNode.js +37 -40
  53. package/Mesher/{Tools → Models/Protocols}/OutlinedVoxelTool.d.ts +1 -1
  54. package/Mesher/{Tools → Models/Protocols}/OutlinedVoxelTool.js +1 -1
  55. package/Mesher/Models/RenderedMaterials.d.ts +6 -0
  56. package/Mesher/{RenderedMaterials.js → Models/RenderedMaterials.js} +2 -2
  57. package/Mesher/Models/VoxelConstructor.d.ts +4 -5
  58. package/Mesher/Models/VoxelConstructor.js +23 -12
  59. package/Mesher/Models/{VoxelGeometryLookUp.d.ts → VoxelGeometryBuilderCacheSpace.d.ts} +6 -14
  60. package/Mesher/Models/{VoxelGeometryLookUp.js → VoxelGeometryBuilderCacheSpace.js} +26 -44
  61. package/Mesher/{Tools/VoxelMesherDataTool.d.ts → Models/VoxelModelBuilder.d.ts} +10 -8
  62. package/Mesher/{Tools/VoxelMesherDataTool.js → Models/VoxelModelBuilder.js} +44 -19
  63. package/Mesher/Models/VoxelModelConstructorRegister.js +3 -3
  64. package/Models/Defaults/CubeVoxelGeometry.js +4 -0
  65. package/Models/Defaults/CubeVoxelModels.js +344 -344
  66. package/Models/Defaults/LiquidVoxelModel.js +2 -2
  67. package/Models/Defaults/PanelVoxelModels.js +432 -432
  68. package/Models/Defaults/StairVoxelModel.js +576 -576
  69. package/Models/Examples.js +469 -456
  70. package/Models/Indexing/VoxelAOResultsIndex.d.ts +4 -4
  71. package/Models/Indexing/VoxelAOResultsIndex.js +15 -9
  72. package/Models/Indexing/VoxelFaceCullResultsIndex.d.ts +3 -3
  73. package/Models/Indexing/VoxelFaceCullResultsIndex.js +14 -9
  74. package/Models/Indexing/VoxelFaceTransparentResultsIndex.d.ts +1 -1
  75. package/Models/Indexing/VoxelFaceTransparentResultsIndex.js +1 -1
  76. package/Models/Rules/Functions/BuildFinalInputs.js +9 -7
  77. package/Models/Rules/Functions/BuildGeomtryInputs.js +8 -5
  78. package/Models/Rules/Functions/BuildRules.js +4 -4
  79. package/Models/Rules/{VoxelModelManager.d.ts → VoxelModelRuleBuilderRegister.d.ts} +1 -1
  80. package/Models/Rules/VoxelModelRuleBuilderRegister.js +178 -0
  81. package/Models/VoxelModel.types.d.ts +14 -5
  82. package/Renderer/Classes/SectorMesh.d.ts +3 -4
  83. package/Renderer/Classes/SectorMesh.js +6 -11
  84. package/Renderer/InitTasks.js +6 -7
  85. package/Renderer/MeshManager.js +2 -2
  86. package/Renderer/MeshRegister.js +2 -1
  87. package/Settings/EngineSettings.d.ts +1 -1
  88. package/Settings/EngineSettings.js +3 -5
  89. package/Settings/EngineSettings.types.d.ts +17 -18
  90. package/Settings/EngineSettings.types.js +16 -15
  91. package/Tasks/IWG/IWG.d.ts +2 -1
  92. package/Tasks/IWG/IWG.js +9 -3
  93. package/Tasks/IWG/Internal/Classes/BuildQueue.d.ts +11 -0
  94. package/Tasks/IWG/Internal/Classes/BuildQueue.js +49 -0
  95. package/Tasks/IWG/Internal/Classes/Generator.d.ts +6 -1
  96. package/Tasks/IWG/Internal/Classes/Generator.js +14 -2
  97. package/Tasks/IWG/Internal/Classes/IWGTaskBase.js +2 -2
  98. package/Tasks/IWG/Internal/Functions/getSectorState.js +4 -7
  99. package/Tasks/IWG/Internal/Functions/runBuildUpdate.js +21 -2
  100. package/Tasks/IWG/Internal/Functions/runWorldUpdate.js +5 -6
  101. package/Tasks/IWG/Internal/IWGTasks.d.ts +0 -4
  102. package/Tasks/IWG/Internal/IWGTasks.js +12 -31
  103. package/Tasks/IWG/Internal/IWGTools.d.ts +1 -1
  104. package/Tasks/IWG/Procedures/SaveAllSectors.js +2 -0
  105. package/Tasks/Propagation/Flow/FlowManager.d.ts +0 -2
  106. package/Tasks/Propagation/Flow/FlowManager.js +86 -87
  107. package/Tasks/Propagation/Flow/WorldFlow.js +2 -3
  108. package/Tasks/Propagation/Illumanation/WorldRGB.js +1 -2
  109. package/Tasks/Update/InitTasks.d.ts +2 -1
  110. package/Tasks/Update/InitTasks.js +6 -6
  111. package/Tasks/Update/UpdateTask.d.ts +3 -1
  112. package/Tasks/Update/UpdateTask.js +28 -2
  113. package/Tasks/Update/VoxelUpdate.js +21 -7
  114. package/Tasks/WorldGeneration/WorldGenBrush.js +2 -1
  115. package/Templates/Cursor/TemplateCursor.d.ts +2 -2
  116. package/Templates/Cursor/TemplateCursor.js +1 -2
  117. package/Templates/Functions/CreateTemplate.js +1 -1
  118. package/Templates/VoxelTemplate.js +6 -8
  119. package/Templates/VoxelTemplates.types.d.ts +1 -1
  120. package/Textures/Classes/CompiledTexture.d.ts +18 -0
  121. package/Textures/Classes/CompiledTexture.js +50 -0
  122. package/Textures/Classes/CompiledTextureAnimation.d.ts +12 -0
  123. package/Textures/Classes/CompiledTextureAnimation.js +27 -0
  124. package/Textures/Classes/TextureAnimationTexture.d.ts +10 -0
  125. package/Textures/Classes/TextureAnimationTexture.js +32 -0
  126. package/Textures/Functions/BuildTextureData.d.ts +10 -0
  127. package/Textures/Functions/BuildTextureData.js +205 -0
  128. package/Textures/Texture.types.d.ts +50 -64
  129. package/Textures/TextureManager.d.ts +8 -19
  130. package/Textures/TextureManager.js +28 -166
  131. package/Tools/Brush/Brush.d.ts +1 -3
  132. package/Tools/Brush/Brush.js +43 -12
  133. package/Util/Binary/BinaryArrays.d.ts +6 -0
  134. package/Util/Binary/BinaryArrays.js +25 -0
  135. package/Util/Binary/BinaryBuffer.d.ts +29 -0
  136. package/Util/Binary/BinaryBuffer.js +130 -0
  137. package/Util/Binary/BinaryFunctions.d.ts +3 -0
  138. package/Util/Binary/BinaryFunctions.js +11 -0
  139. package/Util/StringPalette.d.ts +1 -0
  140. package/Util/StringPalette.js +8 -0
  141. package/Voxels/Cursor/DataCursor.interface.d.ts +5 -0
  142. package/Voxels/Cursor/VoxelCursor.d.ts +6 -6
  143. package/Voxels/Cursor/VoxelCursor.interface.d.ts +11 -16
  144. package/Voxels/Cursor/VoxelCursor.interface.js +35 -58
  145. package/Voxels/Cursor/VoxelCursor.js +13 -12
  146. package/Voxels/Cursor/VoxelLightData.d.ts +3 -4
  147. package/Voxels/Cursor/VoxelLightData.js +8 -7
  148. package/Voxels/Data/VoxelPalettesRegister.d.ts +8 -0
  149. package/Voxels/Data/VoxelPalettesRegister.js +8 -0
  150. package/Voxels/Data/VoxelTag.types.d.ts +56 -0
  151. package/Voxels/Data/VoxelTag.types.js +23 -0
  152. package/Voxels/{State → Data}/VoxelTagStates.d.ts +2 -2
  153. package/Voxels/{State → Data}/VoxelTagStates.js +5 -5
  154. package/Voxels/Data/VoxelTagsRegister.d.ts +9 -0
  155. package/Voxels/Data/VoxelTagsRegister.js +32 -0
  156. package/Voxels/Functions/BuildStateData.js +12 -12
  157. package/Voxels/Functions/BuildTagAndPaletteData.d.ts +13 -0
  158. package/Voxels/Functions/BuildTagAndPaletteData.js +55 -0
  159. package/Voxels/Indexes/VoxelIndex.js +3 -3
  160. package/Voxels/InitVoxelData.js +31 -73
  161. package/Voxels/State/Schema/StateSchema.d.ts +1 -1
  162. package/Voxels/Types/Voxel.types.d.ts +20 -42
  163. package/Voxels/Types/Voxel.types.js +6 -17
  164. package/Voxels/Types/VoxelModelCompiledData.types.d.ts +11 -13
  165. package/Voxels/Types/VoxelSubstances.types.d.ts +2 -15
  166. package/Voxels/Types/VoxelSubstances.types.js +1 -9
  167. package/World/Archive/Archive.types.d.ts +38 -34
  168. package/World/Archive/Functions/ArchiveArea.js +18 -30
  169. package/World/Archive/Functions/ArchiveSector.js +484 -213
  170. package/World/Archive/Functions/ImportSector.d.ts +3 -3
  171. package/World/Archive/Functions/ImportSector.js +205 -151
  172. package/World/Archive/Functions/Shared.d.ts +6 -0
  173. package/World/Archive/Functions/Shared.js +75 -0
  174. package/World/Archive/InitTasks.js +30 -13
  175. package/World/Cursor/SectionCursor.d.ts +3 -2
  176. package/World/Cursor/SectionCursor.js +9 -4
  177. package/World/Cursor/SectorCursor.d.ts +3 -2
  178. package/World/Cursor/SectorCursor.js +5 -3
  179. package/World/Cursor/WorldCursor.d.ts +2 -2
  180. package/World/Cursor/WorldCursor.js +6 -3
  181. package/World/Cursor/WorldVoxelCursor.d.ts +7 -7
  182. package/World/Cursor/WorldVoxelCursor.js +21 -24
  183. package/World/InitTasks.d.ts +1 -1
  184. package/World/Lock/WorldLock.d.ts +1 -1
  185. package/World/Section/Section.d.ts +31 -23
  186. package/World/Section/Section.js +116 -18
  187. package/World/Section/SectionState.d.ts +10 -0
  188. package/World/Section/SectionState.js +11 -0
  189. package/World/Sector/Sector.d.ts +24 -9
  190. package/World/Sector/Sector.js +92 -21
  191. package/World/Sector/SectorHeightMap.js +3 -5
  192. package/World/Sector/SectorState.d.ts +21 -0
  193. package/World/Sector/SectorState.js +28 -0
  194. package/World/WorldRegister.d.ts +4 -0
  195. package/World/WorldRegister.js +15 -3
  196. package/World/WorldSpaces.d.ts +6 -0
  197. package/World/WorldSpaces.js +25 -6
  198. package/package.json +1 -1
  199. package/Data/Cursor/DataCursor.interface.d.ts +0 -5
  200. package/Data/Cursor/DataCursor.interface.js +0 -2
  201. package/Data/Register/MappedDataRegister.d.ts +0 -5
  202. package/Data/Register/MappedDataRegister.js +0 -9
  203. package/Data/Register/MappedRegisterBase.d.ts +0 -14
  204. package/Data/Register/MappedRegisterBase.js +0 -50
  205. package/Data/Structs/StructBuilder.d.ts +0 -34
  206. package/Data/Structs/StructBuilder.js +0 -157
  207. package/Data/Structs/StructBuilder.types.d.ts +0 -30
  208. package/Mesher/Functions/CompactMesh.d.ts +0 -2
  209. package/Mesher/Functions/CompactMesh.js +0 -42
  210. package/Mesher/Geomtry/Buffers.js +0 -81
  211. package/Mesher/Geomtry/GeometryNormals.d.ts +0 -10
  212. package/Mesher/Geomtry/GeometryNormals.js +0 -52
  213. package/Mesher/Geomtry/MeshData.types.d.ts +0 -13
  214. package/Mesher/Geomtry/MeshData.types.js +0 -6
  215. package/Mesher/Geomtry/Tools/MesherDataTools.d.ts +0 -7
  216. package/Mesher/Geomtry/Tools/MesherDataTools.js +0 -12
  217. package/Mesher/Geomtry/Tools/index.d.ts +0 -1
  218. package/Mesher/Geomtry/Tools/index.js +0 -1
  219. package/Mesher/RenderedMaterials.d.ts +0 -6
  220. package/Models/Rules/VoxelModelManager.js +0 -82
  221. package/Textures/TextureAnimations.d.ts +0 -4
  222. package/Textures/TextureAnimations.js +0 -35
  223. package/Textures/TextureArray.d.ts +0 -47
  224. package/Textures/TextureArray.js +0 -202
  225. package/Textures/TextureBuilder.d.ts +0 -13
  226. package/Textures/TextureBuilder.js +0 -120
  227. package/Textures/TextureRegister.d.ts +0 -9
  228. package/Textures/TextureRegister.js +0 -28
  229. package/Tools/Data/SubstanceDataTool.d.ts +0 -13
  230. package/Tools/Data/SubstanceDataTool.js +0 -51
  231. package/Voxels/Palettes/MaterialPalette.d.ts +0 -9
  232. package/Voxels/Palettes/MaterialPalette.js +0 -11
  233. package/Voxels/Palettes/SubstancePalette.d.ts +0 -9
  234. package/Voxels/Palettes/SubstancePalette.js +0 -11
  235. package/Voxels/Palettes/VoxelPalette.d.ts +0 -11
  236. package/Voxels/Palettes/VoxelPalette.js +0 -15
  237. package/Voxels/Segments/MaterialDataGenerator.d.ts +0 -6
  238. package/Voxels/Segments/MaterialDataGenerator.js +0 -12
  239. package/Voxels/Segments/SubstanceDataGenerator.d.ts +0 -6
  240. package/Voxels/Segments/SubstanceDataGenerator.js +0 -35
  241. package/Voxels/Segments/VoxelDataGenerator.d.ts +0 -10
  242. package/Voxels/Segments/VoxelDataGenerator.js +0 -56
  243. package/Voxels/Structs/Builder/SubstanceStructBuilder.d.ts +0 -2
  244. package/Voxels/Structs/Builder/SubstanceStructBuilder.js +0 -42
  245. package/Voxels/Structs/Builder/VoxelStructBuilder.d.ts +0 -2
  246. package/Voxels/Structs/Builder/VoxelStructBuilder.js +0 -68
  247. package/Voxels/Structs/SubstanceStruct.d.ts +0 -17
  248. package/Voxels/Structs/SubstanceStruct.js +0 -17
  249. package/Voxels/Structs/VoxelStruct.d.ts +0 -27
  250. package/Voxels/Structs/VoxelStruct.js +0 -29
  251. package/World/Section/SectionHeightMap.d.ts +0 -10
  252. package/World/Section/SectionHeightMap.js +0 -39
  253. package/World/Section/SectionStruct.d.ts +0 -8
  254. package/World/Section/SectionStruct.js +0 -29
  255. package/World/Section/SectionStructProperties.d.ts +0 -10
  256. package/World/Section/SectionStructProperties.js +0 -11
  257. package/World/Sector/SectorStruct.d.ts +0 -1
  258. package/World/Sector/SectorStruct.js +0 -46
  259. package/World/Sector/SectorStructIds.d.ts +0 -13
  260. package/World/Sector/SectorStructIds.js +0 -14
  261. package/World/Structs/WorldDataStructProperties.d.ts +0 -8
  262. package/World/Structs/WorldDataStructProperties.js +0 -9
  263. /package/Mesher/{VoxelShaderData.d.ts → Geomtry/VoxelShaderData.d.ts} +0 -0
  264. /package/Mesher/{VoxelShaderData.js → Geomtry/VoxelShaderData.js} +0 -0
  265. /package/{Data/Functions → Util/Binary}/Palettes.d.ts +0 -0
  266. /package/{Data/Functions → Util/Binary}/Palettes.js +0 -0
  267. /package/{Data/Structs/StructBuilder.types.js → Voxels/Cursor/DataCursor.interface.js} +0 -0
  268. /package/Voxels/{VoxelLevelReader.d.ts → Cursor/VoxelLevelReader.d.ts} +0 -0
  269. /package/Voxels/{VoxelLevelReader.js → Cursor/VoxelLevelReader.js} +0 -0
  270. /package/World/{Storage → Types}/WorldStorage.interface.d.ts +0 -0
  271. /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
- "@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",
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
- "@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",
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
- "@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",
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
- "@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",
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
- "@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",
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
- "@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",
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
- "@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",
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
- "@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",
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
- "@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",
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
- "@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",
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
- "@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",
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
- "@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",
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
- "@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",
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
- "@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",
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
- "@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",
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
- "@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",
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
- "@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",
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
- "@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",
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
- "@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",
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
- "@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",
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
- "@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",
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
- "@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",
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
- "@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",
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
- "@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",
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
- "@texture": "@texture",
538
- "@textureRotation": 0,
539
- "@transaprent": "@transparent",
540
- "@doubleSided": "@doubleSided",
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
- "@texture": "@texture",
548
- "@textureRotation": 0,
549
- "@transaprent": "@transparent",
550
- "@doubleSided": "@doubleSided",
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
- "@texture": "@texture",
560
- "@textureRotation": 180,
561
- "@transaprent": "@transparent",
562
- "@doubleSided": "@doubleSided",
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
- "@texture": "@texture",
570
- "@textureRotation": 180,
571
- "@transaprent": "@transparent",
572
- "@doubleSided": "@doubleSided",
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
- "@texture": "@texture",
582
- "@textureRotation": 90,
583
- "@transaprent": "@transparent",
584
- "@doubleSided": "@doubleSided",
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
- "@texture": "@texture",
592
- "@textureRotation": 90,
593
- "@transaprent": "@transparent",
594
- "@doubleSided": "@doubleSided",
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
- "@texture": "@texture",
604
- "@textureRotation": 270,
605
- "@transaprent": "@transparent",
606
- "@doubleSided": "@doubleSided",
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
- "@texture": "@texture",
614
- "@textureRotation": 270,
615
- "@transaprent": "@transparent",
616
- "@doubleSided": "@doubleSided",
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
- "@texture": "@texture",
626
- "@textureRotation": 180,
627
- "@transaprent": "@transparent",
628
- "@doubleSided": "@doubleSided",
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
- "@texture": "@texture",
636
- "@textureRotation": 180,
637
- "@transaprent": "@transparent",
638
- "@doubleSided": "@doubleSided",
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
- "@texture": "@texture",
648
- "@textureRotation": 0,
649
- "@transaprent": "@transparent",
650
- "@doubleSided": "@doubleSided",
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
- "@texture": "@texture",
658
- "@textureRotation": 0,
659
- "@transaprent": "@transparent",
660
- "@doubleSided": "@doubleSided",
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
- "@texture": "@texture",
670
- "@textureRotation": 270,
671
- "@transaprent": "@transparent",
672
- "@doubleSided": "@doubleSided",
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
- "@texture": "@texture",
680
- "@textureRotation": 270,
681
- "@transaprent": "@transparent",
682
- "@doubleSided": "@doubleSided",
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
- "@texture": "@texture",
692
- "@textureRotation": 90,
693
- "@transaprent": "@transparent",
694
- "@doubleSided": "@doubleSided",
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
- "@texture": "@texture",
702
- "@textureRotation": 90,
703
- "@transaprent": "@transparent",
704
- "@doubleSided": "@doubleSided",
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
- "@texture": "@texture",
714
- "@textureRotation": 0,
715
- "@transaprent": "@transparent",
716
- "@doubleSided": "@doubleSided",
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
- "@texture": "@texture",
724
- "@textureRotation": 0,
725
- "@transaprent": "@transparent",
726
- "@doubleSided": "@doubleSided",
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
- "@texture": "@texture",
736
- "@textureRotation": 180,
737
- "@transaprent": "@transparent",
738
- "@doubleSided": "@doubleSided",
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
- "@texture": "@texture",
746
- "@textureRotation": 180,
747
- "@transaprent": "@transparent",
748
- "@doubleSided": "@doubleSided",
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
- "@texture": "@texture",
758
- "@textureRotation": 90,
759
- "@transaprent": "@transparent",
760
- "@doubleSided": "@doubleSided",
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
- "@texture": "@texture",
768
- "@textureRotation": 90,
769
- "@transaprent": "@transparent",
770
- "@doubleSided": "@doubleSided",
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
- "@texture": "@texture",
780
- "@textureRotation": 270,
781
- "@transaprent": "@transparent",
782
- "@doubleSided": "@doubleSided",
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
- "@texture": "@texture",
790
- "@textureRotation": 270,
791
- "@transaprent": "@transparent",
792
- "@doubleSided": "@doubleSided",
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
- "@texture": "@texture",
802
- "@textureRotation": 0,
803
- "@transaprent": "@transparent",
804
- "@doubleSided": "@doubleSided",
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
- "@texture": "@texture",
812
- "@textureRotation": 0,
813
- "@transaprent": "@transparent",
814
- "@doubleSided": "@doubleSided",
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
- "@texture": "@texture",
824
- "@textureRotation": 180,
825
- "@transaprent": "@transparent",
826
- "@doubleSided": "@doubleSided",
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
- "@texture": "@texture",
834
- "@textureRotation": 180,
835
- "@transaprent": "@transparent",
836
- "@doubleSided": "@doubleSided",
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
- "@texture": "@texture",
846
- "@textureRotation": 270,
847
- "@transaprent": "@transparent",
848
- "@doubleSided": "@doubleSided",
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
- "@texture": "@texture",
856
- "@textureRotation": 270,
857
- "@transaprent": "@transparent",
858
- "@doubleSided": "@doubleSided",
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
- "@texture": "@texture",
868
- "@textureRotation": 90,
869
- "@transaprent": "@transparent",
870
- "@doubleSided": "@doubleSided",
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
- "@texture": "@texture",
878
- "@textureRotation": 90,
879
- "@transaprent": "@transparent",
880
- "@doubleSided": "@doubleSided",
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
- "@texture": "@texture",
890
- "@textureRotation": 0,
891
- "@transaprent": "@transparent",
892
- "@doubleSided": "@doubleSided",
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
- "@texture": "@texture",
900
- "@textureRotation": 0,
901
- "@transaprent": "@transparent",
902
- "@doubleSided": "@doubleSided",
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
- "@texture": "@texture",
912
- "@textureRotation": 180,
913
- "@transaprent": "@transparent",
914
- "@doubleSided": "@doubleSided",
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
- "@texture": "@texture",
922
- "@textureRotation": 180,
923
- "@transaprent": "@transparent",
924
- "@doubleSided": "@doubleSided",
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
- "@texture": "@texture",
934
- "@textureRotation": 270,
935
- "@transaprent": "@transparent",
936
- "@doubleSided": "@doubleSided",
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
- "@texture": "@texture",
944
- "@textureRotation": 270,
945
- "@transaprent": "@transparent",
946
- "@doubleSided": "@doubleSided",
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
- "@texture": "@texture",
956
- "@textureRotation": 90,
957
- "@transaprent": "@transparent",
958
- "@doubleSided": "@doubleSided",
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
- "@texture": "@texture",
966
- "@textureRotation": 90,
967
- "@transaprent": "@transparent",
968
- "@doubleSided": "@doubleSided",
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
- "@texture": "@texture",
978
- "@textureRotation": 0,
979
- "@transaprent": "@transparent",
980
- "@doubleSided": "@doubleSided",
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
- "@texture": "@texture",
988
- "@textureRotation": 0,
989
- "@transaprent": "@transparent",
990
- "@doubleSided": "@doubleSided",
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
- "@texture": "@texture",
1000
- "@textureRotation": 180,
1001
- "@transaprent": "@transparent",
1002
- "@doubleSided": "@doubleSided",
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
- "@texture": "@texture",
1010
- "@textureRotation": 180,
1011
- "@transaprent": "@transparent",
1012
- "@doubleSided": "@doubleSided",
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
- "@texture": "@texture",
1022
- "@textureRotation": 270,
1023
- "@transaprent": "@transparent",
1024
- "@doubleSided": "@doubleSided",
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
- "@texture": "@texture",
1032
- "@textureRotation": 270,
1033
- "@transaprent": "@transparent",
1034
- "@doubleSided": "@doubleSided",
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
- "@texture": "@texture",
1044
- "@textureRotation": 90,
1045
- "@transaprent": "@transparent",
1046
- "@doubleSided": "@doubleSided",
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
- "@texture": "@texture",
1054
- "@textureRotation": 90,
1055
- "@transaprent": "@transparent",
1056
- "@doubleSided": "@doubleSided",
1053
+ texture: "@texture",
1054
+ textureRotation: 90,
1055
+ transaprent: "@transparent",
1056
+ doubleSided: "@doubleSided",
1057
1057
  },
1058
1058
  },
1059
1059
  ],