@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
@@ -18,18 +18,18 @@ export const simpleCube = {
18
18
  id: "cube",
19
19
  geometryId: "dve_cube",
20
20
  inputs: {
21
- "@upTex": "@texture",
22
- "@upTexTransparent": "@transparent",
23
- "@downTex": "@texture",
24
- "@downTexTransparent": "@transparent",
25
- "@northTex": "@texture",
26
- "@northTexTransparent": "@transparent",
27
- "@southTex": "@texture",
28
- "@southTexTransparent": "@transparent",
29
- "@eastTex": "@texture",
30
- "@eastTexTransparent": "@transparent",
31
- "@westTex": "@texture",
32
- "@westTexTransparent": "@transparent",
21
+ upTex: "@texture",
22
+ upTexTransparent: "@transparent",
23
+ downTex: "@texture",
24
+ downTexTransparent: "@transparent",
25
+ northTex: "@texture",
26
+ northTexTransparent: "@transparent",
27
+ southTex: "@texture",
28
+ southTexTransparent: "@transparent",
29
+ eastTex: "@texture",
30
+ eastTexTransparent: "@transparent",
31
+ westTex: "@texture",
32
+ westTexTransparent: "@transparent",
33
33
  },
34
34
  },
35
35
  ],
@@ -89,14 +89,14 @@ export const orientedCube = {
89
89
  id: "cube",
90
90
  geometryId: "dve_cube",
91
91
  inputs: {
92
- "@upTex": "@upTex",
93
- "@upTexRotation": 0,
94
- "@downTex": "@downTex",
95
- "@downTexRotation": 0,
96
- "@northTex": "@northTex",
97
- "@southTex": "@southTex",
98
- "@eastTex": "@eastTex",
99
- "@westTex": "@westTex",
92
+ upTex: "@upTex",
93
+ upTexRotation: 0,
94
+ downTex: "@downTex",
95
+ downTexRotation: 0,
96
+ northTex: "@northTex",
97
+ southTex: "@southTex",
98
+ eastTex: "@eastTex",
99
+ westTex: "@westTex",
100
100
  },
101
101
  },
102
102
  ],
@@ -105,14 +105,14 @@ export const orientedCube = {
105
105
  id: "cube",
106
106
  geometryId: "dve_cube",
107
107
  inputs: {
108
- "@upTex": "@upTex",
109
- "@upTexRotation": 180,
110
- "@downTex": "@downTex",
111
- "@downTexRotation": 180,
112
- "@northTex": "@northTex",
113
- "@southTex": "@southTex",
114
- "@eastTex": "@eastTex",
115
- "@westTex": "@westTex",
108
+ upTex: "@upTex",
109
+ upTexRotation: 180,
110
+ downTex: "@downTex",
111
+ downTexRotation: 180,
112
+ northTex: "@northTex",
113
+ southTex: "@southTex",
114
+ eastTex: "@eastTex",
115
+ westTex: "@westTex",
116
116
  },
117
117
  },
118
118
  ],
@@ -121,14 +121,14 @@ export const orientedCube = {
121
121
  id: "cube",
122
122
  geometryId: "dve_cube",
123
123
  inputs: {
124
- "@upTex": "@upTex",
125
- "@upTexRotation": 90,
126
- "@downTex": "@downTex",
127
- "@downTexRotation": 90,
128
- "@northTex": "@eastTex",
129
- "@southTex": "@westTex",
130
- "@eastTex": "@southTex",
131
- "@westTex": "@northTex",
124
+ upTex: "@upTex",
125
+ upTexRotation: 90,
126
+ downTex: "@downTex",
127
+ downTexRotation: 90,
128
+ northTex: "@eastTex",
129
+ southTex: "@westTex",
130
+ eastTex: "@southTex",
131
+ westTex: "@northTex",
132
132
  },
133
133
  },
134
134
  ],
@@ -137,14 +137,14 @@ export const orientedCube = {
137
137
  id: "cube",
138
138
  geometryId: "dve_cube",
139
139
  inputs: {
140
- "@upTex": "@upTex",
141
- "@upTexRotation": 270,
142
- "@downTex": "@downTex",
143
- "@downTexRotation": 270,
144
- "@northTex": "@westTex",
145
- "@southTex": "@eastTex",
146
- "@eastTex": "@northTex",
147
- "@westTex": "@southTex",
140
+ upTex: "@upTex",
141
+ upTexRotation: 270,
142
+ downTex: "@downTex",
143
+ downTexRotation: 270,
144
+ northTex: "@westTex",
145
+ southTex: "@eastTex",
146
+ eastTex: "@northTex",
147
+ westTex: "@southTex",
148
148
  },
149
149
  },
150
150
  ],
@@ -153,18 +153,18 @@ export const orientedCube = {
153
153
  id: "cube",
154
154
  geometryId: "dve_cube",
155
155
  inputs: {
156
- "@upTex": "@downTex",
157
- "@upTexRotation": 0,
158
- "@downTex": "@upTex",
159
- "@downTexRotation": 0,
160
- "@northTex": "@northTex",
161
- "@southTex": "@southTex",
162
- "@eastTex": "@eastTex",
163
- "@westTex": "@westTex",
164
- "@northTexRotation": 180,
165
- "@southTexRotation": 180,
166
- "@eastTexRotation": 180,
167
- "@westTexRotation": 180,
156
+ upTex: "@downTex",
157
+ upTexRotation: 0,
158
+ downTex: "@upTex",
159
+ downTexRotation: 0,
160
+ northTex: "@northTex",
161
+ southTex: "@southTex",
162
+ eastTex: "@eastTex",
163
+ westTex: "@westTex",
164
+ northTexRotation: 180,
165
+ southTexRotation: 180,
166
+ eastTexRotation: 180,
167
+ westTexRotation: 180,
168
168
  },
169
169
  },
170
170
  ],
@@ -173,18 +173,18 @@ export const orientedCube = {
173
173
  id: "cube",
174
174
  geometryId: "dve_cube",
175
175
  inputs: {
176
- "@upTex": "@downTex",
177
- "@upTexRotation": 180,
178
- "@downTex": "@upTex",
179
- "@downTexRotation": 180,
180
- "@northTex": "@southTex",
181
- "@southTex": "@northTex",
182
- "@eastTex": "@westTex",
183
- "@westTex": "@eastTex",
184
- "@northTexRotation": 180,
185
- "@southTexRotation": 180,
186
- "@eastTexRotation": 180,
187
- "@westTexRotation": 180,
176
+ upTex: "@downTex",
177
+ upTexRotation: 180,
178
+ downTex: "@upTex",
179
+ downTexRotation: 180,
180
+ northTex: "@southTex",
181
+ southTex: "@northTex",
182
+ eastTex: "@westTex",
183
+ westTex: "@eastTex",
184
+ northTexRotation: 180,
185
+ southTexRotation: 180,
186
+ eastTexRotation: 180,
187
+ westTexRotation: 180,
188
188
  },
189
189
  },
190
190
  ],
@@ -193,18 +193,18 @@ export const orientedCube = {
193
193
  id: "cube",
194
194
  geometryId: "dve_cube",
195
195
  inputs: {
196
- "@upTex": "@downTex",
197
- "@upTexRotation": 90,
198
- "@downTex": "@upTex",
199
- "@downTexRotation": 90,
200
- "@northTex": "@eastTex",
201
- "@southTex": "@westTex",
202
- "@eastTex": "@southTex",
203
- "@westTex": "@northTex",
204
- "@northTexRotation": 180,
205
- "@southTexRotation": 180,
206
- "@eastTexRotation": 180,
207
- "@westTexRotation": 180,
196
+ upTex: "@downTex",
197
+ upTexRotation: 90,
198
+ downTex: "@upTex",
199
+ downTexRotation: 90,
200
+ northTex: "@eastTex",
201
+ southTex: "@westTex",
202
+ eastTex: "@southTex",
203
+ westTex: "@northTex",
204
+ northTexRotation: 180,
205
+ southTexRotation: 180,
206
+ eastTexRotation: 180,
207
+ westTexRotation: 180,
208
208
  },
209
209
  },
210
210
  ],
@@ -213,18 +213,18 @@ export const orientedCube = {
213
213
  id: "cube",
214
214
  geometryId: "dve_cube",
215
215
  inputs: {
216
- "@upTex": "@downTex",
217
- "@upTexRotation": 270,
218
- "@downTex": "@upTex",
219
- "@downTexRotation": 270,
220
- "@northTex": "@westTex",
221
- "@southTex": "@eastTex",
222
- "@eastTex": "@northTex",
223
- "@westTex": "@southTex",
224
- "@northTexRotation": 180,
225
- "@southTexRotation": 180,
226
- "@eastTexRotation": 180,
227
- "@westTexRotation": 180,
216
+ upTex: "@downTex",
217
+ upTexRotation: 270,
218
+ downTex: "@upTex",
219
+ downTexRotation: 270,
220
+ northTex: "@westTex",
221
+ southTex: "@eastTex",
222
+ eastTex: "@northTex",
223
+ westTex: "@southTex",
224
+ northTexRotation: 180,
225
+ southTexRotation: 180,
226
+ eastTexRotation: 180,
227
+ westTexRotation: 180,
228
228
  },
229
229
  },
230
230
  ],
@@ -233,18 +233,18 @@ export const orientedCube = {
233
233
  id: "cube",
234
234
  geometryId: "dve_cube",
235
235
  inputs: {
236
- "@upTex": "@northTex",
237
- "@northTex": "@upTex",
238
- "@northTexRotation": 0,
239
- "@southTex": "@downTex",
240
- "@southTexRotation": 0,
241
- "@downTex": "@southTex",
242
- "@eastTex": "@eastTex",
243
- "@westTex": "@westTex",
244
- "@upTexRotation": 0,
245
- "@downTexRotation": 0,
246
- "@eastTexRotation": 90,
247
- "@westTexRotation": 90,
236
+ upTex: "@northTex",
237
+ northTex: "@upTex",
238
+ northTexRotation: 0,
239
+ southTex: "@downTex",
240
+ southTexRotation: 0,
241
+ downTex: "@southTex",
242
+ eastTex: "@eastTex",
243
+ westTex: "@westTex",
244
+ upTexRotation: 0,
245
+ downTexRotation: 0,
246
+ eastTexRotation: 90,
247
+ westTexRotation: 90,
248
248
  },
249
249
  },
250
250
  ],
@@ -253,18 +253,18 @@ export const orientedCube = {
253
253
  id: "cube",
254
254
  geometryId: "dve_cube",
255
255
  inputs: {
256
- "@upTex": "@southTex",
257
- "@northTex": "@upTex",
258
- "@northTexRotation": 180,
259
- "@southTex": "@downTex",
260
- "@southTexRotation": 180,
261
- "@downTex": "@northTex",
262
- "@eastTex": "@westTex",
263
- "@westTex": "@eastTex",
264
- "@upTexRotation": 0,
265
- "@downTexRotation": 0,
266
- "@eastTexRotation": 90,
267
- "@westTexRotation": 90,
256
+ upTex: "@southTex",
257
+ northTex: "@upTex",
258
+ northTexRotation: 180,
259
+ southTex: "@downTex",
260
+ southTexRotation: 180,
261
+ downTex: "@northTex",
262
+ eastTex: "@westTex",
263
+ westTex: "@eastTex",
264
+ upTexRotation: 0,
265
+ downTexRotation: 0,
266
+ eastTexRotation: 90,
267
+ westTexRotation: 90,
268
268
  },
269
269
  },
270
270
  ],
@@ -273,18 +273,18 @@ export const orientedCube = {
273
273
  id: "cube",
274
274
  geometryId: "dve_cube",
275
275
  inputs: {
276
- "@upTex": "@westTex",
277
- "@northTex": "@upTex",
278
- "@northTexRotation": 90,
279
- "@southTex": "@downTex",
280
- "@southTexRotation": 90,
281
- "@downTex": "@eastTex",
282
- "@eastTex": "@southTex",
283
- "@westTex": "@northTex",
284
- "@upTexRotation": 0,
285
- "@downTexRotation": 0,
286
- "@eastTexRotation": 90,
287
- "@westTexRotation": 90,
276
+ upTex: "@westTex",
277
+ northTex: "@upTex",
278
+ northTexRotation: 90,
279
+ southTex: "@downTex",
280
+ southTexRotation: 90,
281
+ downTex: "@eastTex",
282
+ eastTex: "@southTex",
283
+ westTex: "@northTex",
284
+ upTexRotation: 0,
285
+ downTexRotation: 0,
286
+ eastTexRotation: 90,
287
+ westTexRotation: 90,
288
288
  },
289
289
  },
290
290
  ],
@@ -293,18 +293,18 @@ export const orientedCube = {
293
293
  id: "cube",
294
294
  geometryId: "dve_cube",
295
295
  inputs: {
296
- "@upTex": "@eastTex",
297
- "@northTex": "@upTex",
298
- "@northTexRotation": 270,
299
- "@southTex": "@downTex",
300
- "@southTexRotation": 270,
301
- "@downTex": "@westTex",
302
- "@eastTex": "@northTex",
303
- "@westTex": "@southTex",
304
- "@upTexRotation": 0,
305
- "@downTexRotation": 0,
306
- "@eastTexRotation": 90,
307
- "@westTexRotation": 90,
296
+ upTex: "@eastTex",
297
+ northTex: "@upTex",
298
+ northTexRotation: 270,
299
+ southTex: "@downTex",
300
+ southTexRotation: 270,
301
+ downTex: "@westTex",
302
+ eastTex: "@northTex",
303
+ westTex: "@southTex",
304
+ upTexRotation: 0,
305
+ downTexRotation: 0,
306
+ eastTexRotation: 90,
307
+ westTexRotation: 90,
308
308
  },
309
309
  },
310
310
  ],
@@ -313,18 +313,18 @@ export const orientedCube = {
313
313
  id: "cube",
314
314
  geometryId: "dve_cube",
315
315
  inputs: {
316
- "@upTex": "@southTex",
317
- "@northTex": "@downTex",
318
- "@northTexRotation": 180,
319
- "@southTex": "@upTex",
320
- "@southTexRotation": 180,
321
- "@downTex": "@northTex",
322
- "@eastTex": "@westTex",
323
- "@westTex": "@eastTex",
324
- "@upTexRotation": 180,
325
- "@downTexRotation": 180,
326
- "@eastTexRotation": 270,
327
- "@westTexRotation": 270,
316
+ upTex: "@southTex",
317
+ northTex: "@downTex",
318
+ northTexRotation: 180,
319
+ southTex: "@upTex",
320
+ southTexRotation: 180,
321
+ downTex: "@northTex",
322
+ eastTex: "@westTex",
323
+ westTex: "@eastTex",
324
+ upTexRotation: 180,
325
+ downTexRotation: 180,
326
+ eastTexRotation: 270,
327
+ westTexRotation: 270,
328
328
  },
329
329
  },
330
330
  ],
@@ -333,18 +333,18 @@ export const orientedCube = {
333
333
  id: "cube",
334
334
  geometryId: "dve_cube",
335
335
  inputs: {
336
- "@upTex": "@northTex",
337
- "@northTex": "@downTex",
338
- "@northTexRotation": 0,
339
- "@southTex": "@upTex",
340
- "@southTexRotation": 0,
341
- "@downTex": "@southTex",
342
- "@eastTex": "@eastTex",
343
- "@westTex": "@westTex",
344
- "@upTexRotation": 180,
345
- "@downTexRotation": 180,
346
- "@eastTexRotation": 270,
347
- "@westTexRotation": 270,
336
+ upTex: "@northTex",
337
+ northTex: "@downTex",
338
+ northTexRotation: 0,
339
+ southTex: "@upTex",
340
+ southTexRotation: 0,
341
+ downTex: "@southTex",
342
+ eastTex: "@eastTex",
343
+ westTex: "@westTex",
344
+ upTexRotation: 180,
345
+ downTexRotation: 180,
346
+ eastTexRotation: 270,
347
+ westTexRotation: 270,
348
348
  },
349
349
  },
350
350
  ],
@@ -353,18 +353,18 @@ export const orientedCube = {
353
353
  id: "cube",
354
354
  geometryId: "dve_cube",
355
355
  inputs: {
356
- "@upTex": "@westTex",
357
- "@northTex": "@downTex",
358
- "@northTexRotation": 90,
359
- "@southTex": "@upTex",
360
- "@southTexRotation": 90,
361
- "@downTex": "@eastTex",
362
- "@eastTex": "@southTex",
363
- "@westTex": "@northTex",
364
- "@upTexRotation": 180,
365
- "@downTexRotation": 180,
366
- "@eastTexRotation": 270,
367
- "@westTexRotation": 270,
356
+ upTex: "@westTex",
357
+ northTex: "@downTex",
358
+ northTexRotation: 90,
359
+ southTex: "@upTex",
360
+ southTexRotation: 90,
361
+ downTex: "@eastTex",
362
+ eastTex: "@southTex",
363
+ westTex: "@northTex",
364
+ upTexRotation: 180,
365
+ downTexRotation: 180,
366
+ eastTexRotation: 270,
367
+ westTexRotation: 270,
368
368
  },
369
369
  },
370
370
  ],
@@ -373,18 +373,18 @@ export const orientedCube = {
373
373
  id: "cube",
374
374
  geometryId: "dve_cube",
375
375
  inputs: {
376
- "@upTex": "@eastTex",
377
- "@northTex": "@downTex",
378
- "@northTexRotation": 270,
379
- "@southTex": "@upTex",
380
- "@southTexRotation": 270,
381
- "@downTex": "@westTex",
382
- "@eastTex": "@northTex",
383
- "@westTex": "@southTex",
384
- "@upTexRotation": 180,
385
- "@downTexRotation": 180,
386
- "@eastTexRotation": 270,
387
- "@westTexRotation": 270,
376
+ upTex: "@eastTex",
377
+ northTex: "@downTex",
378
+ northTexRotation: 270,
379
+ southTex: "@upTex",
380
+ southTexRotation: 270,
381
+ downTex: "@westTex",
382
+ eastTex: "@northTex",
383
+ westTex: "@southTex",
384
+ upTexRotation: 180,
385
+ downTexRotation: 180,
386
+ eastTexRotation: 270,
387
+ westTexRotation: 270,
388
388
  },
389
389
  },
390
390
  ],
@@ -393,18 +393,18 @@ export const orientedCube = {
393
393
  id: "cube",
394
394
  geometryId: "dve_cube",
395
395
  inputs: {
396
- "@upTex": "@northTex",
397
- "@upTexRotation": 90,
398
- "@downTex": "@southTex",
399
- "@downTexRotation": 90,
400
- "@northTex": "@eastTex",
401
- "@southTex": "@westTex",
402
- "@eastTex": "@upTex",
403
- "@westTex": "@downTex",
404
- "@eastTexRotation": 0,
405
- "@westTexRotation": 0,
406
- "@northTexRotation": 90,
407
- "@southTexRotation": 90,
396
+ upTex: "@northTex",
397
+ upTexRotation: 90,
398
+ downTex: "@southTex",
399
+ downTexRotation: 90,
400
+ northTex: "@eastTex",
401
+ southTex: "@westTex",
402
+ eastTex: "@upTex",
403
+ westTex: "@downTex",
404
+ eastTexRotation: 0,
405
+ westTexRotation: 0,
406
+ northTexRotation: 90,
407
+ southTexRotation: 90,
408
408
  },
409
409
  },
410
410
  ],
@@ -413,18 +413,18 @@ export const orientedCube = {
413
413
  id: "cube",
414
414
  geometryId: "dve_cube",
415
415
  inputs: {
416
- "@upTex": "@southTex",
417
- "@upTexRotation": 90,
418
- "@downTex": "@northTex",
419
- "@downTexRotation": 90,
420
- "@northTex": "@westTex",
421
- "@southTex": "@eastTex",
422
- "@eastTex": "@upTex",
423
- "@westTex": "@downTex",
424
- "@eastTexRotation": 180,
425
- "@westTexRotation": 180,
426
- "@northTexRotation": 90,
427
- "@southTexRotation": 90,
416
+ upTex: "@southTex",
417
+ upTexRotation: 90,
418
+ downTex: "@northTex",
419
+ downTexRotation: 90,
420
+ northTex: "@westTex",
421
+ southTex: "@eastTex",
422
+ eastTex: "@upTex",
423
+ westTex: "@downTex",
424
+ eastTexRotation: 180,
425
+ westTexRotation: 180,
426
+ northTexRotation: 90,
427
+ southTexRotation: 90,
428
428
  },
429
429
  },
430
430
  ],
@@ -433,18 +433,18 @@ export const orientedCube = {
433
433
  id: "cube",
434
434
  geometryId: "dve_cube",
435
435
  inputs: {
436
- "@upTex": "@eastTex",
437
- "@upTexRotation": 90,
438
- "@downTex": "@westTex",
439
- "@downTexRotation": 90,
440
- "@northTex": "@southTex",
441
- "@southTex": "@northTex",
442
- "@eastTex": "@upTex",
443
- "@westTex": "@downTex",
444
- "@eastTexRotation": 270,
445
- "@westTexRotation": 270,
446
- "@northTexRotation": 90,
447
- "@southTexRotation": 90,
436
+ upTex: "@eastTex",
437
+ upTexRotation: 90,
438
+ downTex: "@westTex",
439
+ downTexRotation: 90,
440
+ northTex: "@southTex",
441
+ southTex: "@northTex",
442
+ eastTex: "@upTex",
443
+ westTex: "@downTex",
444
+ eastTexRotation: 270,
445
+ westTexRotation: 270,
446
+ northTexRotation: 90,
447
+ southTexRotation: 90,
448
448
  },
449
449
  },
450
450
  ],
@@ -453,18 +453,18 @@ export const orientedCube = {
453
453
  id: "cube",
454
454
  geometryId: "dve_cube",
455
455
  inputs: {
456
- "@upTex": "@westTex",
457
- "@upTexRotation": 90,
458
- "@downTex": "@eastTex",
459
- "@downTexRotation": 90,
460
- "@northTex": "@northTex",
461
- "@southTex": "@southTex",
462
- "@eastTex": "@upTex",
463
- "@westTex": "@downTex",
464
- "@eastTexRotation": 90,
465
- "@westTexRotation": 90,
466
- "@northTexRotation": 90,
467
- "@southTexRotation": 90,
456
+ upTex: "@westTex",
457
+ upTexRotation: 90,
458
+ downTex: "@eastTex",
459
+ downTexRotation: 90,
460
+ northTex: "@northTex",
461
+ southTex: "@southTex",
462
+ eastTex: "@upTex",
463
+ westTex: "@downTex",
464
+ eastTexRotation: 90,
465
+ westTexRotation: 90,
466
+ northTexRotation: 90,
467
+ southTexRotation: 90,
468
468
  },
469
469
  },
470
470
  ],
@@ -473,18 +473,18 @@ export const orientedCube = {
473
473
  id: "cube",
474
474
  geometryId: "dve_cube",
475
475
  inputs: {
476
- "@upTex": "@northTex",
477
- "@upTexRotation": 270,
478
- "@downTex": "@southTex",
479
- "@downTexRotation": 270,
480
- "@northTex": "@eastTex",
481
- "@southTex": "@westTex",
482
- "@eastTex": "@downTex",
483
- "@westTex": "@upTex",
484
- "@eastTexRotation": 0,
485
- "@westTexRotation": 0,
486
- "@northTexRotation": 270,
487
- "@southTexRotation": 270,
476
+ upTex: "@northTex",
477
+ upTexRotation: 270,
478
+ downTex: "@southTex",
479
+ downTexRotation: 270,
480
+ northTex: "@eastTex",
481
+ southTex: "@westTex",
482
+ eastTex: "@downTex",
483
+ westTex: "@upTex",
484
+ eastTexRotation: 0,
485
+ westTexRotation: 0,
486
+ northTexRotation: 270,
487
+ southTexRotation: 270,
488
488
  },
489
489
  },
490
490
  ],
@@ -493,18 +493,18 @@ export const orientedCube = {
493
493
  id: "cube",
494
494
  geometryId: "dve_cube",
495
495
  inputs: {
496
- "@upTex": "@southTex",
497
- "@upTexRotation": 270,
498
- "@downTex": "@northTex",
499
- "@downTexRotation": 270,
500
- "@northTex": "@westTex",
501
- "@southTex": "@eastTex",
502
- "@eastTex": "@downTex",
503
- "@westTex": "@upTex",
504
- "@eastTexRotation": 180,
505
- "@westTexRotation": 180,
506
- "@northTexRotation": 270,
507
- "@southTexRotation": 270,
496
+ upTex: "@southTex",
497
+ upTexRotation: 270,
498
+ downTex: "@northTex",
499
+ downTexRotation: 270,
500
+ northTex: "@westTex",
501
+ southTex: "@eastTex",
502
+ eastTex: "@downTex",
503
+ westTex: "@upTex",
504
+ eastTexRotation: 180,
505
+ westTexRotation: 180,
506
+ northTexRotation: 270,
507
+ southTexRotation: 270,
508
508
  },
509
509
  },
510
510
  ],
@@ -513,18 +513,18 @@ export const orientedCube = {
513
513
  id: "cube",
514
514
  geometryId: "dve_cube",
515
515
  inputs: {
516
- "@upTex": "@eastTex",
517
- "@upTexRotation": 270,
518
- "@downTex": "@westTex",
519
- "@downTexRotation": 270,
520
- "@northTex": "@southTex",
521
- "@southTex": "@northTex",
522
- "@eastTex": "@downTex",
523
- "@westTex": "@upTex",
524
- "@eastTexRotation": 270,
525
- "@westTexRotation": 270,
526
- "@northTexRotation": 270,
527
- "@southTexRotation": 270,
516
+ upTex: "@eastTex",
517
+ upTexRotation: 270,
518
+ downTex: "@westTex",
519
+ downTexRotation: 270,
520
+ northTex: "@southTex",
521
+ southTex: "@northTex",
522
+ eastTex: "@downTex",
523
+ westTex: "@upTex",
524
+ eastTexRotation: 270,
525
+ westTexRotation: 270,
526
+ northTexRotation: 270,
527
+ southTexRotation: 270,
528
528
  },
529
529
  },
530
530
  ],
@@ -533,18 +533,18 @@ export const orientedCube = {
533
533
  id: "cube",
534
534
  geometryId: "dve_cube",
535
535
  inputs: {
536
- "@upTex": "@westTex",
537
- "@upTexRotation": 270,
538
- "@downTex": "@eastTex",
539
- "@downTexRotation": 270,
540
- "@northTex": "@northTex",
541
- "@southTex": "@southTex",
542
- "@eastTex": "@downTex",
543
- "@westTex": "@upTex",
544
- "@eastTexRotation": 90,
545
- "@westTexRotation": 90,
546
- "@northTexRotation": 270,
547
- "@southTexRotation": 270,
536
+ upTex: "@westTex",
537
+ upTexRotation: 270,
538
+ downTex: "@eastTex",
539
+ downTexRotation: 270,
540
+ northTex: "@northTex",
541
+ southTex: "@southTex",
542
+ eastTex: "@downTex",
543
+ westTex: "@upTex",
544
+ eastTexRotation: 90,
545
+ westTexRotation: 90,
546
+ northTexRotation: 270,
547
+ southTexRotation: 270,
548
548
  },
549
549
  },
550
550
  ],
@@ -582,12 +582,12 @@ export const simpleHalfCube = {
582
582
  id: "half_cube",
583
583
  geometryId: "dve_half_cube_down_half",
584
584
  inputs: {
585
- "@upTex": "@upDownTextures",
586
- "@downTex": "@upDownTextures",
587
- "@northTex": "@sideTextures",
588
- "@southTex": "@sideTextures",
589
- "@eastTex": "@sideTextures",
590
- "@westTex": "@sideTextures",
585
+ upTex: "@upDownTextures",
586
+ downTex: "@upDownTextures",
587
+ northTex: "@sideTextures",
588
+ southTex: "@sideTextures",
589
+ eastTex: "@sideTextures",
590
+ westTex: "@sideTextures",
591
591
  },
592
592
  },
593
593
  ],
@@ -597,12 +597,12 @@ export const simpleHalfCube = {
597
597
  position: [0, 0.5, 0],
598
598
  geometryId: "dve_half_cube_down_half",
599
599
  inputs: {
600
- "@upTex": "@upDownTextures",
601
- "@downTex": "@upDownTextures",
602
- "@northTex": "@sideTextures",
603
- "@southTex": "@sideTextures",
604
- "@eastTex": "@sideTextures",
605
- "@westTex": "@sideTextures",
600
+ upTex: "@upDownTextures",
601
+ downTex: "@upDownTextures",
602
+ northTex: "@sideTextures",
603
+ southTex: "@sideTextures",
604
+ eastTex: "@sideTextures",
605
+ westTex: "@sideTextures",
606
606
  },
607
607
  },
608
608
  ],
@@ -611,12 +611,12 @@ export const simpleHalfCube = {
611
611
  id: "half_cube",
612
612
  geometryId: "dve_half_cube_south_half",
613
613
  inputs: {
614
- "@upTex": "@sideTextures",
615
- "@downTex": "@sideTextures",
616
- "@northTex": "@upDownTextures",
617
- "@southTex": "@upDownTextures",
618
- "@eastTex": "@sideTextures",
619
- "@westTex": "@sideTextures",
614
+ upTex: "@sideTextures",
615
+ downTex: "@sideTextures",
616
+ northTex: "@upDownTextures",
617
+ southTex: "@upDownTextures",
618
+ eastTex: "@sideTextures",
619
+ westTex: "@sideTextures",
620
620
  },
621
621
  },
622
622
  ],
@@ -626,12 +626,12 @@ export const simpleHalfCube = {
626
626
  position: [0, 0, 0.5],
627
627
  geometryId: "dve_half_cube_south_half",
628
628
  inputs: {
629
- "@upTex": "@sideTextures",
630
- "@downTex": "@sideTextures",
631
- "@northTex": "@upDownTextures",
632
- "@southTex": "@upDownTextures",
633
- "@eastTex": "@sideTextures",
634
- "@westTex": "@sideTextures",
629
+ upTex: "@sideTextures",
630
+ downTex: "@sideTextures",
631
+ northTex: "@upDownTextures",
632
+ southTex: "@upDownTextures",
633
+ eastTex: "@sideTextures",
634
+ westTex: "@sideTextures",
635
635
  },
636
636
  },
637
637
  ],
@@ -640,12 +640,12 @@ export const simpleHalfCube = {
640
640
  id: "half_cube",
641
641
  geometryId: "dve_half_cube_west_half",
642
642
  inputs: {
643
- "@upTex": "@sideTextures",
644
- "@downTex": "@sideTextures",
645
- "@northTex": "@sideTextures",
646
- "@southTex": "@sideTextures",
647
- "@eastTex": "@upDownTextures",
648
- "@westTex": "@upDownTextures",
643
+ upTex: "@sideTextures",
644
+ downTex: "@sideTextures",
645
+ northTex: "@sideTextures",
646
+ southTex: "@sideTextures",
647
+ eastTex: "@upDownTextures",
648
+ westTex: "@upDownTextures",
649
649
  },
650
650
  },
651
651
  ],
@@ -655,12 +655,12 @@ export const simpleHalfCube = {
655
655
  position: [0.5, 0, 0],
656
656
  geometryId: "dve_half_cube_west_half",
657
657
  inputs: {
658
- "@upTex": "@sideTextures",
659
- "@downTex": "@sideTextures",
660
- "@northTex": "@sideTextures",
661
- "@southTex": "@sideTextures",
662
- "@eastTex": "@upDownTextures",
663
- "@westTex": "@upDownTextures",
658
+ upTex: "@sideTextures",
659
+ downTex: "@sideTextures",
660
+ northTex: "@sideTextures",
661
+ southTex: "@sideTextures",
662
+ eastTex: "@upDownTextures",
663
+ westTex: "@upDownTextures",
664
664
  },
665
665
  },
666
666
  ],
@@ -762,12 +762,12 @@ export const pillarCube = {
762
762
  id: "cube",
763
763
  geometryId: "dve_cube",
764
764
  inputs: {
765
- "@upTex": "@upTex",
766
- "@downTex": "@downTex",
767
- "@northTex": "@sideDisconnectedTex",
768
- "@southTex": "@sideDisconnectedTex",
769
- "@eastTex": "@sideDisconnectedTex",
770
- "@westTex": "@sideDisconnectedTex",
765
+ upTex: "@upTex",
766
+ downTex: "@downTex",
767
+ northTex: "@sideDisconnectedTex",
768
+ southTex: "@sideDisconnectedTex",
769
+ eastTex: "@sideDisconnectedTex",
770
+ westTex: "@sideDisconnectedTex",
771
771
  },
772
772
  },
773
773
  ],
@@ -776,12 +776,12 @@ export const pillarCube = {
776
776
  id: "cube",
777
777
  geometryId: "dve_cube",
778
778
  inputs: {
779
- "@upTex": "@upTex",
780
- "@downTex": "@downTex",
781
- "@northTex": "@sideUpTex",
782
- "@southTex": "@sideUpTex",
783
- "@eastTex": "@sideUpTex",
784
- "@westTex": "@sideUpTex",
779
+ upTex: "@upTex",
780
+ downTex: "@downTex",
781
+ northTex: "@sideUpTex",
782
+ southTex: "@sideUpTex",
783
+ eastTex: "@sideUpTex",
784
+ westTex: "@sideUpTex",
785
785
  },
786
786
  },
787
787
  ],
@@ -790,12 +790,12 @@ export const pillarCube = {
790
790
  id: "cube",
791
791
  geometryId: "dve_cube",
792
792
  inputs: {
793
- "@upTex": "@upTex",
794
- "@downTex": "@downTex",
795
- "@northTex": "@sideDownTex",
796
- "@southTex": "@sideDownTex",
797
- "@eastTex": "@sideDownTex",
798
- "@westTex": "@sideDownTex",
793
+ upTex: "@upTex",
794
+ downTex: "@downTex",
795
+ northTex: "@sideDownTex",
796
+ southTex: "@sideDownTex",
797
+ eastTex: "@sideDownTex",
798
+ westTex: "@sideDownTex",
799
799
  },
800
800
  },
801
801
  ],
@@ -804,12 +804,12 @@ export const pillarCube = {
804
804
  id: "cube",
805
805
  geometryId: "dve_cube",
806
806
  inputs: {
807
- "@upTex": "@upTex",
808
- "@downTex": "@downTex",
809
- "@northTex": "@sideConnectedTex",
810
- "@southTex": "@sideConnectedTex",
811
- "@eastTex": "@sideConnectedTex",
812
- "@westTex": "@sideConnectedTex",
807
+ upTex: "@upTex",
808
+ downTex: "@downTex",
809
+ northTex: "@sideConnectedTex",
810
+ southTex: "@sideConnectedTex",
811
+ eastTex: "@sideConnectedTex",
812
+ westTex: "@sideConnectedTex",
813
813
  },
814
814
  },
815
815
  ],