@divinevoxel/vlox 0.0.72 → 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 (174) hide show
  1. package/Contexts/Render/DivineVoxelEngineRender.d.ts +1 -1
  2. package/Contexts/World/DivineVoxelEngineWorld.d.ts +1 -1
  3. package/Init/StartConstructor.js +6 -4
  4. package/Init/StartWorld.d.ts +1 -1
  5. package/Mesher/Functions/CompactVoxelMesh.d.ts +2 -2
  6. package/Mesher/Functions/CompactVoxelMesh.js +1 -1
  7. package/Mesher/Functions/MeshSection.js +20 -8
  8. package/Mesher/Functions/MeshTexture.d.ts +1 -1
  9. package/Mesher/Functions/MeshTexture.js +3 -4
  10. package/Mesher/Geomtry/Primitives/QuadVertexData.d.ts +12 -10
  11. package/Mesher/Geomtry/Primitives/QuadVertexData.js +49 -56
  12. package/Mesher/Geomtry/VoxelGeometryBuilder.d.ts +2 -2
  13. package/Mesher/Geomtry/VoxelGeometryBuilder.js +2 -2
  14. package/Mesher/Geomtry/VoxelMesh.d.ts +1 -1
  15. package/Mesher/Geomtry/VoxelMesh.js +2 -2
  16. package/Mesher/Geomtry/index.d.ts +0 -1
  17. package/Mesher/Geomtry/index.js +0 -1
  18. package/Mesher/InitMesher.js +1 -1
  19. package/Mesher/InitTask.js +4 -22
  20. package/Mesher/Models/Common/Calc/FaceDataCalc.d.ts +2 -2
  21. package/Mesher/Models/Common/Calc/FaceDataCalc.js +37 -30
  22. package/Mesher/Models/Nodes/Custom/Liquid/FlowGradient.d.ts +2 -2
  23. package/Mesher/Models/Nodes/Custom/Liquid/FlowGradient.js +1 -1
  24. package/Mesher/Models/Nodes/Custom/Liquid/LiquidGeomtryNode.js +11 -17
  25. package/Mesher/Models/Nodes/GeometryNode.d.ts +2 -2
  26. package/Mesher/Models/Nodes/Ruled/BoxVoxelGeometryNode.d.ts +1 -0
  27. package/Mesher/Models/Nodes/Ruled/BoxVoxelGeometryNode.js +24 -12
  28. package/Mesher/{Tools → Models/Protocols}/OutlinedVoxelTool.d.ts +1 -1
  29. package/Mesher/{Tools → Models/Protocols}/OutlinedVoxelTool.js +1 -1
  30. package/Mesher/Models/RenderedMaterials.d.ts +6 -0
  31. package/Mesher/{RenderedMaterials.js → Models/RenderedMaterials.js} +2 -2
  32. package/Mesher/Models/VoxelConstructor.d.ts +3 -3
  33. package/Mesher/Models/VoxelGeometryBuilderCacheSpace.d.ts +1 -3
  34. package/Mesher/Models/VoxelGeometryBuilderCacheSpace.js +0 -23
  35. package/Mesher/{Tools/VoxelMesherDataTool.d.ts → Models/VoxelModelBuilder.d.ts} +4 -5
  36. package/Mesher/{Tools/VoxelMesherDataTool.js → Models/VoxelModelBuilder.js} +11 -7
  37. package/Models/Defaults/CubeVoxelGeometry.js +4 -0
  38. package/Models/Defaults/CubeVoxelModels.js +344 -344
  39. package/Models/Defaults/LiquidVoxelModel.js +2 -2
  40. package/Models/Defaults/PanelVoxelModels.js +432 -432
  41. package/Models/Defaults/StairVoxelModel.js +576 -576
  42. package/Models/Examples.js +469 -456
  43. package/Models/Rules/Functions/BuildFinalInputs.js +9 -7
  44. package/Models/Rules/Functions/BuildGeomtryInputs.js +8 -5
  45. package/Models/Rules/Functions/BuildRules.js +2 -2
  46. package/Models/Rules/{VoxelModelManager.d.ts → VoxelModelRuleBuilderRegister.d.ts} +1 -1
  47. package/Models/Rules/VoxelModelRuleBuilderRegister.js +178 -0
  48. package/Models/VoxelModel.types.d.ts +14 -5
  49. package/Renderer/Classes/SectorMesh.d.ts +3 -4
  50. package/Renderer/Classes/SectorMesh.js +6 -11
  51. package/Renderer/InitTasks.js +6 -7
  52. package/Renderer/MeshManager.js +2 -2
  53. package/Renderer/MeshRegister.js +2 -1
  54. package/Settings/EngineSettings.d.ts +1 -1
  55. package/Settings/EngineSettings.js +3 -5
  56. package/Settings/EngineSettings.types.d.ts +17 -18
  57. package/Settings/EngineSettings.types.js +16 -15
  58. package/Tasks/IWG/IWG.d.ts +2 -1
  59. package/Tasks/IWG/IWG.js +9 -3
  60. package/Tasks/IWG/Internal/Classes/BuildQueue.d.ts +11 -0
  61. package/Tasks/IWG/Internal/Classes/BuildQueue.js +49 -0
  62. package/Tasks/IWG/Internal/Classes/Generator.d.ts +6 -1
  63. package/Tasks/IWG/Internal/Classes/Generator.js +13 -1
  64. package/Tasks/IWG/Internal/Classes/IWGTaskBase.js +2 -2
  65. package/Tasks/IWG/Internal/Functions/runBuildUpdate.js +21 -2
  66. package/Tasks/IWG/Internal/IWGTasks.d.ts +0 -4
  67. package/Tasks/IWG/Internal/IWGTasks.js +0 -10
  68. package/Tasks/IWG/Internal/IWGTools.d.ts +1 -1
  69. package/Tasks/IWG/Procedures/SaveAllSectors.js +2 -0
  70. package/Tasks/Update/UpdateTask.d.ts +3 -1
  71. package/Tasks/Update/UpdateTask.js +28 -2
  72. package/Tasks/Update/VoxelUpdate.js +6 -0
  73. package/Tasks/WorldGeneration/WorldGenBrush.js +1 -1
  74. package/Templates/Cursor/TemplateCursor.d.ts +2 -2
  75. package/Templates/Cursor/TemplateCursor.js +1 -2
  76. package/Templates/VoxelTemplates.types.d.ts +1 -1
  77. package/Textures/Classes/CompiledTexture.d.ts +18 -0
  78. package/Textures/Classes/CompiledTexture.js +50 -0
  79. package/Textures/Classes/CompiledTextureAnimation.d.ts +12 -0
  80. package/Textures/Classes/CompiledTextureAnimation.js +27 -0
  81. package/Textures/Classes/TextureAnimationTexture.d.ts +10 -0
  82. package/Textures/Classes/TextureAnimationTexture.js +32 -0
  83. package/Textures/Functions/BuildTextureData.d.ts +10 -0
  84. package/Textures/Functions/BuildTextureData.js +205 -0
  85. package/Textures/Texture.types.d.ts +50 -64
  86. package/Textures/TextureManager.d.ts +8 -19
  87. package/Textures/TextureManager.js +28 -166
  88. package/Tools/Brush/Brush.d.ts +1 -1
  89. package/Tools/Brush/Brush.js +39 -7
  90. package/Util/Binary/BinaryArrays.d.ts +6 -0
  91. package/Util/Binary/BinaryArrays.js +25 -0
  92. package/Util/Binary/BinaryBuffer.d.ts +29 -0
  93. package/Util/Binary/BinaryBuffer.js +130 -0
  94. package/Util/Binary/{BitArray.d.ts → BinaryFunctions.d.ts} +1 -2
  95. package/Util/Binary/BinaryFunctions.js +11 -0
  96. package/Voxels/Cursor/DataCursor.interface.d.ts +5 -0
  97. package/Voxels/Cursor/VoxelCursor.interface.d.ts +1 -1
  98. package/Voxels/Cursor/VoxelCursor.interface.js +8 -11
  99. package/Voxels/Data/VoxelPalettesRegister.d.ts +0 -5
  100. package/Voxels/Data/VoxelPalettesRegister.js +0 -9
  101. package/Voxels/Data/VoxelTagsRegister.js +7 -7
  102. package/Voxels/Functions/BuildStateData.js +9 -9
  103. package/Voxels/Functions/BuildTagAndPaletteData.js +2 -4
  104. package/Voxels/InitVoxelData.js +12 -13
  105. package/Voxels/State/Schema/StateSchema.d.ts +1 -1
  106. package/Voxels/Types/Voxel.types.d.ts +18 -0
  107. package/Voxels/Types/Voxel.types.js +6 -2
  108. package/World/Archive/Archive.types.d.ts +38 -34
  109. package/World/Archive/Functions/ArchiveArea.js +16 -24
  110. package/World/Archive/Functions/ArchiveSector.js +477 -192
  111. package/World/Archive/Functions/ImportSector.d.ts +3 -3
  112. package/World/Archive/Functions/ImportSector.js +202 -141
  113. package/World/Archive/Functions/Shared.d.ts +6 -0
  114. package/World/Archive/Functions/Shared.js +75 -0
  115. package/World/Archive/InitTasks.js +30 -13
  116. package/World/Cursor/SectionCursor.d.ts +2 -2
  117. package/World/Cursor/SectionCursor.js +2 -3
  118. package/World/Cursor/SectorCursor.d.ts +2 -2
  119. package/World/Cursor/SectorCursor.js +1 -2
  120. package/World/Cursor/WorldCursor.d.ts +2 -2
  121. package/World/Cursor/WorldCursor.js +1 -2
  122. package/World/Cursor/WorldVoxelCursor.js +1 -0
  123. package/World/InitTasks.d.ts +1 -1
  124. package/World/Lock/WorldLock.d.ts +1 -1
  125. package/World/Section/Section.d.ts +12 -16
  126. package/World/Section/Section.js +62 -20
  127. package/World/Section/SectionState.d.ts +10 -0
  128. package/World/Section/SectionState.js +11 -0
  129. package/World/Sector/Sector.d.ts +14 -6
  130. package/World/Sector/Sector.js +67 -17
  131. package/World/Sector/SectorHeightMap.js +2 -2
  132. package/World/Sector/SectorState.d.ts +14 -6
  133. package/World/Sector/SectorState.js +28 -15
  134. package/World/Types/WorldStorage.interface.js +1 -0
  135. package/World/WorldRegister.d.ts +4 -0
  136. package/World/WorldRegister.js +15 -3
  137. package/World/WorldSpaces.d.ts +4 -0
  138. package/World/WorldSpaces.js +19 -6
  139. package/package.json +1 -1
  140. package/Mesher/Functions/CompactMesh.d.ts +0 -2
  141. package/Mesher/Functions/CompactMesh.js +0 -42
  142. package/Mesher/Geomtry/GeometryNormals.d.ts +0 -10
  143. package/Mesher/Geomtry/GeometryNormals.js +0 -52
  144. package/Mesher/Geomtry/MeshData.types.d.ts +0 -13
  145. package/Mesher/Geomtry/MeshData.types.js +0 -6
  146. package/Mesher/Geomtry/Tools/MesherDataTools.d.ts +0 -7
  147. package/Mesher/Geomtry/Tools/MesherDataTools.js +0 -12
  148. package/Mesher/Geomtry/Tools/index.d.ts +0 -1
  149. package/Mesher/Geomtry/Tools/index.js +0 -1
  150. package/Mesher/RenderedMaterials.d.ts +0 -6
  151. package/Models/Rules/VoxelModelManager.js +0 -82
  152. package/Textures/TextureAnimations.d.ts +0 -4
  153. package/Textures/TextureAnimations.js +0 -35
  154. package/Textures/TextureArray.d.ts +0 -47
  155. package/Textures/TextureArray.js +0 -202
  156. package/Textures/TextureBuilder.d.ts +0 -13
  157. package/Textures/TextureBuilder.js +0 -120
  158. package/Textures/TextureRegister.d.ts +0 -9
  159. package/Textures/TextureRegister.js +0 -28
  160. package/Tools/DataCursor.interface.d.ts +0 -5
  161. package/Tools/DataCursor.interface.js +0 -2
  162. package/Util/Binary/BitArray.js +0 -16
  163. package/World/Structs/WorldDataStructProperties.d.ts +0 -8
  164. package/World/Structs/WorldDataStructProperties.js +0 -9
  165. /package/Mesher/{Tools → Geomtry}/VoxelMeshBVHBuilder.d.ts +0 -0
  166. /package/Mesher/{Tools → Geomtry}/VoxelMeshBVHBuilder.js +0 -0
  167. /package/Mesher/Geomtry/{Buffers.d.ts → VoxelMeshBuffers.d.ts} +0 -0
  168. /package/Mesher/Geomtry/{Buffers.js → VoxelMeshBuffers.js} +0 -0
  169. /package/Mesher/{Tools → Geomtry}/VoxelMeshVertexStructCursor.d.ts +0 -0
  170. /package/Mesher/{Tools → Geomtry}/VoxelMeshVertexStructCursor.js +0 -0
  171. /package/Mesher/{VoxelShaderData.d.ts → Geomtry/VoxelShaderData.d.ts} +0 -0
  172. /package/Mesher/{VoxelShaderData.js → Geomtry/VoxelShaderData.js} +0 -0
  173. /package/{World/Storage/WorldStorage.interface.js → Voxels/Cursor/DataCursor.interface.js} +0 -0
  174. /package/World/{Storage → Types}/WorldStorage.interface.d.ts +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
  ],