@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
@@ -46,12 +46,12 @@ export const stair = {
46
46
  geometryId: "dve_half_cube_down_half",
47
47
  position: [0, 0.5, 0],
48
48
  inputs: {
49
- "@upTex": "@texture",
50
- "@downTex": "@texture",
51
- "@northTex": "@texture",
52
- "@southTex": "@texture",
53
- "@eastTex": "@texture",
54
- "@westTex": "@texture",
49
+ upTex: "@texture",
50
+ downTex: "@texture",
51
+ northTex: "@texture",
52
+ southTex: "@texture",
53
+ eastTex: "@texture",
54
+ westTex: "@texture",
55
55
  },
56
56
  },
57
57
  {
@@ -59,12 +59,12 @@ export const stair = {
59
59
  geometryId: "dve_quater_cube_west_east",
60
60
  position: [0, 0, 0.5],
61
61
  inputs: {
62
- "@upTex": "@texture",
63
- "@downTex": "@texture",
64
- "@northTex": "@texture",
65
- "@southTex": "@texture",
66
- "@eastTex": "@texture",
67
- "@westTex": "@texture",
62
+ upTex: "@texture",
63
+ downTex: "@texture",
64
+ northTex: "@texture",
65
+ southTex: "@texture",
66
+ eastTex: "@texture",
67
+ westTex: "@texture",
68
68
  },
69
69
  },
70
70
  ],
@@ -74,24 +74,24 @@ export const stair = {
74
74
  geometryId: "dve_half_cube_down_half",
75
75
  position: [0, 0.5, 0],
76
76
  inputs: {
77
- "@upTex": "@texture",
78
- "@downTex": "@texture",
79
- "@northTex": "@texture",
80
- "@southTex": "@texture",
81
- "@eastTex": "@texture",
82
- "@westTex": "@texture",
77
+ upTex: "@texture",
78
+ downTex: "@texture",
79
+ northTex: "@texture",
80
+ southTex: "@texture",
81
+ eastTex: "@texture",
82
+ westTex: "@texture",
83
83
  },
84
84
  },
85
85
  {
86
86
  id: "up",
87
87
  geometryId: "dve_quater_cube_west_east",
88
88
  inputs: {
89
- "@upTex": "@texture",
90
- "@downTex": "@texture",
91
- "@northTex": "@texture",
92
- "@southTex": "@texture",
93
- "@eastTex": "@texture",
94
- "@westTex": "@texture",
89
+ upTex: "@texture",
90
+ downTex: "@texture",
91
+ northTex: "@texture",
92
+ southTex: "@texture",
93
+ eastTex: "@texture",
94
+ westTex: "@texture",
95
95
  },
96
96
  },
97
97
  ],
@@ -101,12 +101,12 @@ export const stair = {
101
101
  geometryId: "dve_half_cube_down_half",
102
102
  position: [0, 0.5, 0],
103
103
  inputs: {
104
- "@upTex": "@texture",
105
- "@downTex": "@texture",
106
- "@northTex": "@texture",
107
- "@southTex": "@texture",
108
- "@eastTex": "@texture",
109
- "@westTex": "@texture",
104
+ upTex: "@texture",
105
+ downTex: "@texture",
106
+ northTex: "@texture",
107
+ southTex: "@texture",
108
+ eastTex: "@texture",
109
+ westTex: "@texture",
110
110
  },
111
111
  },
112
112
  {
@@ -114,12 +114,12 @@ export const stair = {
114
114
  geometryId: "dve_quater_cube_south_north",
115
115
  position: [0.5, 0, 0],
116
116
  inputs: {
117
- "@upTex": "@texture",
118
- "@downTex": "@texture",
119
- "@northTex": "@texture",
120
- "@southTex": "@texture",
121
- "@eastTex": "@texture",
122
- "@westTex": "@texture",
117
+ upTex: "@texture",
118
+ downTex: "@texture",
119
+ northTex: "@texture",
120
+ southTex: "@texture",
121
+ eastTex: "@texture",
122
+ westTex: "@texture",
123
123
  },
124
124
  },
125
125
  ],
@@ -129,24 +129,24 @@ export const stair = {
129
129
  geometryId: "dve_half_cube_down_half",
130
130
  position: [0, 0.5, 0],
131
131
  inputs: {
132
- "@upTex": "@texture",
133
- "@downTex": "@texture",
134
- "@northTex": "@texture",
135
- "@southTex": "@texture",
136
- "@eastTex": "@texture",
137
- "@westTex": "@texture",
132
+ upTex: "@texture",
133
+ downTex: "@texture",
134
+ northTex: "@texture",
135
+ southTex: "@texture",
136
+ eastTex: "@texture",
137
+ westTex: "@texture",
138
138
  },
139
139
  },
140
140
  {
141
141
  id: "up",
142
142
  geometryId: "dve_quater_cube_south_north",
143
143
  inputs: {
144
- "@upTex": "@texture",
145
- "@downTex": "@texture",
146
- "@northTex": "@texture",
147
- "@southTex": "@texture",
148
- "@eastTex": "@texture",
149
- "@westTex": "@texture",
144
+ upTex: "@texture",
145
+ downTex: "@texture",
146
+ northTex: "@texture",
147
+ southTex: "@texture",
148
+ eastTex: "@texture",
149
+ westTex: "@texture",
150
150
  },
151
151
  },
152
152
  ],
@@ -155,12 +155,12 @@ export const stair = {
155
155
  id: "base",
156
156
  geometryId: "dve_half_cube_down_half",
157
157
  inputs: {
158
- "@upTex": "@texture",
159
- "@downTex": "@texture",
160
- "@northTex": "@texture",
161
- "@southTex": "@texture",
162
- "@eastTex": "@texture",
163
- "@westTex": "@texture",
158
+ upTex: "@texture",
159
+ downTex: "@texture",
160
+ northTex: "@texture",
161
+ southTex: "@texture",
162
+ eastTex: "@texture",
163
+ westTex: "@texture",
164
164
  },
165
165
  },
166
166
  {
@@ -168,12 +168,12 @@ export const stair = {
168
168
  geometryId: "dve_quater_cube_west_east",
169
169
  position: [0, 0.5, 0.5],
170
170
  inputs: {
171
- "@upTex": "@texture",
172
- "@downTex": "@texture",
173
- "@northTex": "@texture",
174
- "@southTex": "@texture",
175
- "@eastTex": "@texture",
176
- "@westTex": "@texture",
171
+ upTex: "@texture",
172
+ downTex: "@texture",
173
+ northTex: "@texture",
174
+ southTex: "@texture",
175
+ eastTex: "@texture",
176
+ westTex: "@texture",
177
177
  },
178
178
  },
179
179
  ],
@@ -182,12 +182,12 @@ export const stair = {
182
182
  id: "base",
183
183
  geometryId: "dve_half_cube_down_half",
184
184
  inputs: {
185
- "@upTex": "@texture",
186
- "@downTex": "@texture",
187
- "@northTex": "@texture",
188
- "@southTex": "@texture",
189
- "@eastTex": "@texture",
190
- "@westTex": "@texture",
185
+ upTex: "@texture",
186
+ downTex: "@texture",
187
+ northTex: "@texture",
188
+ southTex: "@texture",
189
+ eastTex: "@texture",
190
+ westTex: "@texture",
191
191
  },
192
192
  },
193
193
  {
@@ -195,12 +195,12 @@ export const stair = {
195
195
  geometryId: "dve_quater_cube_west_east",
196
196
  position: [0, 0.5, 0],
197
197
  inputs: {
198
- "@upTex": "@texture",
199
- "@downTex": "@texture",
200
- "@northTex": "@texture",
201
- "@southTex": "@texture",
202
- "@eastTex": "@texture",
203
- "@westTex": "@texture",
198
+ upTex: "@texture",
199
+ downTex: "@texture",
200
+ northTex: "@texture",
201
+ southTex: "@texture",
202
+ eastTex: "@texture",
203
+ westTex: "@texture",
204
204
  },
205
205
  },
206
206
  ],
@@ -209,12 +209,12 @@ export const stair = {
209
209
  id: "base",
210
210
  geometryId: "dve_half_cube_down_half",
211
211
  inputs: {
212
- "@upTex": "@texture",
213
- "@downTex": "@texture",
214
- "@northTex": "@texture",
215
- "@southTex": "@texture",
216
- "@eastTex": "@texture",
217
- "@westTex": "@texture",
212
+ upTex: "@texture",
213
+ downTex: "@texture",
214
+ northTex: "@texture",
215
+ southTex: "@texture",
216
+ eastTex: "@texture",
217
+ westTex: "@texture",
218
218
  },
219
219
  },
220
220
  {
@@ -222,12 +222,12 @@ export const stair = {
222
222
  geometryId: "dve_quater_cube_south_north",
223
223
  position: [0.5, 0.5, 0],
224
224
  inputs: {
225
- "@upTex": "@texture",
226
- "@downTex": "@texture",
227
- "@northTex": "@texture",
228
- "@southTex": "@texture",
229
- "@eastTex": "@texture",
230
- "@westTex": "@texture",
225
+ upTex: "@texture",
226
+ downTex: "@texture",
227
+ northTex: "@texture",
228
+ southTex: "@texture",
229
+ eastTex: "@texture",
230
+ westTex: "@texture",
231
231
  },
232
232
  },
233
233
  ],
@@ -236,12 +236,12 @@ export const stair = {
236
236
  id: "base",
237
237
  geometryId: "dve_half_cube_down_half",
238
238
  inputs: {
239
- "@upTex": "@texture",
240
- "@downTex": "@texture",
241
- "@northTex": "@texture",
242
- "@southTex": "@texture",
243
- "@eastTex": "@texture",
244
- "@westTex": "@texture",
239
+ upTex: "@texture",
240
+ downTex: "@texture",
241
+ northTex: "@texture",
242
+ southTex: "@texture",
243
+ eastTex: "@texture",
244
+ westTex: "@texture",
245
245
  },
246
246
  },
247
247
  {
@@ -249,12 +249,12 @@ export const stair = {
249
249
  geometryId: "dve_quater_cube_south_north",
250
250
  position: [0, 0.5, 0],
251
251
  inputs: {
252
- "@upTex": "@texture",
253
- "@downTex": "@texture",
254
- "@northTex": "@texture",
255
- "@southTex": "@texture",
256
- "@eastTex": "@texture",
257
- "@westTex": "@texture",
252
+ upTex: "@texture",
253
+ downTex: "@texture",
254
+ northTex: "@texture",
255
+ southTex: "@texture",
256
+ eastTex: "@texture",
257
+ westTex: "@texture",
258
258
  },
259
259
  },
260
260
  ],
@@ -264,12 +264,12 @@ export const stair = {
264
264
  position: [0, 0, 0.5],
265
265
  geometryId: "dve_half_cube_south_half",
266
266
  inputs: {
267
- "@upTex": "@texture",
268
- "@downTex": "@texture",
269
- "@northTex": "@texture",
270
- "@southTex": "@texture",
271
- "@eastTex": "@texture",
272
- "@westTex": "@texture",
267
+ upTex: "@texture",
268
+ downTex: "@texture",
269
+ northTex: "@texture",
270
+ southTex: "@texture",
271
+ eastTex: "@texture",
272
+ westTex: "@texture",
273
273
  },
274
274
  },
275
275
  {
@@ -277,12 +277,12 @@ export const stair = {
277
277
  geometryId: "dve_quater_cube_west_east",
278
278
  position: [0, 0.5, 0],
279
279
  inputs: {
280
- "@upTex": "@texture",
281
- "@downTex": "@texture",
282
- "@northTex": "@texture",
283
- "@southTex": "@texture",
284
- "@eastTex": "@texture",
285
- "@westTex": "@texture",
280
+ upTex: "@texture",
281
+ downTex: "@texture",
282
+ northTex: "@texture",
283
+ southTex: "@texture",
284
+ eastTex: "@texture",
285
+ westTex: "@texture",
286
286
  },
287
287
  },
288
288
  ],
@@ -292,24 +292,24 @@ export const stair = {
292
292
  position: [0, 0, 0.5],
293
293
  geometryId: "dve_half_cube_south_half",
294
294
  inputs: {
295
- "@upTex": "@texture",
296
- "@downTex": "@texture",
297
- "@northTex": "@texture",
298
- "@southTex": "@texture",
299
- "@eastTex": "@texture",
300
- "@westTex": "@texture",
295
+ upTex: "@texture",
296
+ downTex: "@texture",
297
+ northTex: "@texture",
298
+ southTex: "@texture",
299
+ eastTex: "@texture",
300
+ westTex: "@texture",
301
301
  },
302
302
  },
303
303
  {
304
304
  id: "up",
305
305
  geometryId: "dve_quater_cube_west_east",
306
306
  inputs: {
307
- "@upTex": "@texture",
308
- "@downTex": "@texture",
309
- "@northTex": "@texture",
310
- "@southTex": "@texture",
311
- "@eastTex": "@texture",
312
- "@westTex": "@texture",
307
+ upTex: "@texture",
308
+ downTex: "@texture",
309
+ northTex: "@texture",
310
+ southTex: "@texture",
311
+ eastTex: "@texture",
312
+ westTex: "@texture",
313
313
  },
314
314
  },
315
315
  ],
@@ -319,12 +319,12 @@ export const stair = {
319
319
  position: [0, 0, 0.5],
320
320
  geometryId: "dve_half_cube_south_half",
321
321
  inputs: {
322
- "@upTex": "@texture",
323
- "@downTex": "@texture",
324
- "@northTex": "@texture",
325
- "@southTex": "@texture",
326
- "@eastTex": "@texture",
327
- "@westTex": "@texture",
322
+ upTex: "@texture",
323
+ downTex: "@texture",
324
+ northTex: "@texture",
325
+ southTex: "@texture",
326
+ eastTex: "@texture",
327
+ westTex: "@texture",
328
328
  },
329
329
  },
330
330
  {
@@ -332,12 +332,12 @@ export const stair = {
332
332
  geometryId: "dve_quater_cube_up_down",
333
333
  position: [0.5, 0, 0],
334
334
  inputs: {
335
- "@upTex": "@texture",
336
- "@downTex": "@texture",
337
- "@northTex": "@texture",
338
- "@southTex": "@texture",
339
- "@eastTex": "@texture",
340
- "@westTex": "@texture",
335
+ upTex: "@texture",
336
+ downTex: "@texture",
337
+ northTex: "@texture",
338
+ southTex: "@texture",
339
+ eastTex: "@texture",
340
+ westTex: "@texture",
341
341
  },
342
342
  },
343
343
  ],
@@ -347,24 +347,24 @@ export const stair = {
347
347
  position: [0, 0, 0.5],
348
348
  geometryId: "dve_half_cube_south_half",
349
349
  inputs: {
350
- "@upTex": "@texture",
351
- "@downTex": "@texture",
352
- "@northTex": "@texture",
353
- "@southTex": "@texture",
354
- "@eastTex": "@texture",
355
- "@westTex": "@texture",
350
+ upTex: "@texture",
351
+ downTex: "@texture",
352
+ northTex: "@texture",
353
+ southTex: "@texture",
354
+ eastTex: "@texture",
355
+ westTex: "@texture",
356
356
  },
357
357
  },
358
358
  {
359
359
  id: "up",
360
360
  geometryId: "dve_quater_cube_up_down",
361
361
  inputs: {
362
- "@upTex": "@texture",
363
- "@downTex": "@texture",
364
- "@northTex": "@texture",
365
- "@southTex": "@texture",
366
- "@eastTex": "@texture",
367
- "@westTex": "@texture",
362
+ upTex: "@texture",
363
+ downTex: "@texture",
364
+ northTex: "@texture",
365
+ southTex: "@texture",
366
+ eastTex: "@texture",
367
+ westTex: "@texture",
368
368
  },
369
369
  },
370
370
  ],
@@ -373,12 +373,12 @@ export const stair = {
373
373
  id: "base",
374
374
  geometryId: "dve_half_cube_south_half",
375
375
  inputs: {
376
- "@upTex": "@texture",
377
- "@downTex": "@texture",
378
- "@northTex": "@texture",
379
- "@southTex": "@texture",
380
- "@eastTex": "@texture",
381
- "@westTex": "@texture",
376
+ upTex: "@texture",
377
+ downTex: "@texture",
378
+ northTex: "@texture",
379
+ southTex: "@texture",
380
+ eastTex: "@texture",
381
+ westTex: "@texture",
382
382
  },
383
383
  },
384
384
  {
@@ -386,12 +386,12 @@ export const stair = {
386
386
  geometryId: "dve_quater_cube_west_east",
387
387
  position: [0, 0.5, 0.5],
388
388
  inputs: {
389
- "@upTex": "@texture",
390
- "@downTex": "@texture",
391
- "@northTex": "@texture",
392
- "@southTex": "@texture",
393
- "@eastTex": "@texture",
394
- "@westTex": "@texture",
389
+ upTex: "@texture",
390
+ downTex: "@texture",
391
+ northTex: "@texture",
392
+ southTex: "@texture",
393
+ eastTex: "@texture",
394
+ westTex: "@texture",
395
395
  },
396
396
  },
397
397
  ],
@@ -400,12 +400,12 @@ export const stair = {
400
400
  id: "base",
401
401
  geometryId: "dve_half_cube_south_half",
402
402
  inputs: {
403
- "@upTex": "@texture",
404
- "@downTex": "@texture",
405
- "@northTex": "@texture",
406
- "@southTex": "@texture",
407
- "@eastTex": "@texture",
408
- "@westTex": "@texture",
403
+ upTex: "@texture",
404
+ downTex: "@texture",
405
+ northTex: "@texture",
406
+ southTex: "@texture",
407
+ eastTex: "@texture",
408
+ westTex: "@texture",
409
409
  },
410
410
  },
411
411
  {
@@ -413,12 +413,12 @@ export const stair = {
413
413
  geometryId: "dve_quater_cube_west_east",
414
414
  position: [0, 0, 0.5],
415
415
  inputs: {
416
- "@upTex": "@texture",
417
- "@downTex": "@texture",
418
- "@northTex": "@texture",
419
- "@southTex": "@texture",
420
- "@eastTex": "@texture",
421
- "@westTex": "@texture",
416
+ upTex: "@texture",
417
+ downTex: "@texture",
418
+ northTex: "@texture",
419
+ southTex: "@texture",
420
+ eastTex: "@texture",
421
+ westTex: "@texture",
422
422
  },
423
423
  },
424
424
  ],
@@ -427,12 +427,12 @@ export const stair = {
427
427
  id: "base",
428
428
  geometryId: "dve_half_cube_south_half",
429
429
  inputs: {
430
- "@upTex": "@texture",
431
- "@downTex": "@texture",
432
- "@northTex": "@texture",
433
- "@southTex": "@texture",
434
- "@eastTex": "@texture",
435
- "@westTex": "@texture",
430
+ upTex: "@texture",
431
+ downTex: "@texture",
432
+ northTex: "@texture",
433
+ southTex: "@texture",
434
+ eastTex: "@texture",
435
+ westTex: "@texture",
436
436
  },
437
437
  },
438
438
  {
@@ -440,12 +440,12 @@ export const stair = {
440
440
  geometryId: "dve_quater_cube_up_down",
441
441
  position: [0.5, 0, 0.5],
442
442
  inputs: {
443
- "@upTex": "@texture",
444
- "@downTex": "@texture",
445
- "@northTex": "@texture",
446
- "@southTex": "@texture",
447
- "@eastTex": "@texture",
448
- "@westTex": "@texture",
443
+ upTex: "@texture",
444
+ downTex: "@texture",
445
+ northTex: "@texture",
446
+ southTex: "@texture",
447
+ eastTex: "@texture",
448
+ westTex: "@texture",
449
449
  },
450
450
  },
451
451
  ],
@@ -454,12 +454,12 @@ export const stair = {
454
454
  id: "base",
455
455
  geometryId: "dve_half_cube_south_half",
456
456
  inputs: {
457
- "@upTex": "@texture",
458
- "@downTex": "@texture",
459
- "@northTex": "@texture",
460
- "@southTex": "@texture",
461
- "@eastTex": "@texture",
462
- "@westTex": "@texture",
457
+ upTex: "@texture",
458
+ downTex: "@texture",
459
+ northTex: "@texture",
460
+ southTex: "@texture",
461
+ eastTex: "@texture",
462
+ westTex: "@texture",
463
463
  },
464
464
  },
465
465
  {
@@ -467,12 +467,12 @@ export const stair = {
467
467
  geometryId: "dve_quater_cube_up_down",
468
468
  position: [0, 0, 0.5],
469
469
  inputs: {
470
- "@upTex": "@texture",
471
- "@downTex": "@texture",
472
- "@northTex": "@texture",
473
- "@southTex": "@texture",
474
- "@eastTex": "@texture",
475
- "@westTex": "@texture",
470
+ upTex: "@texture",
471
+ downTex: "@texture",
472
+ northTex: "@texture",
473
+ southTex: "@texture",
474
+ eastTex: "@texture",
475
+ westTex: "@texture",
476
476
  },
477
477
  },
478
478
  ],
@@ -482,12 +482,12 @@ export const stair = {
482
482
  geometryId: "dve_half_cube_west_half",
483
483
  position: [0.5, 0, 0],
484
484
  inputs: {
485
- "@upTex": "@texture",
486
- "@downTex": "@texture",
487
- "@northTex": "@texture",
488
- "@southTex": "@texture",
489
- "@eastTex": "@texture",
490
- "@westTex": "@texture",
485
+ upTex: "@texture",
486
+ downTex: "@texture",
487
+ northTex: "@texture",
488
+ southTex: "@texture",
489
+ eastTex: "@texture",
490
+ westTex: "@texture",
491
491
  },
492
492
  },
493
493
  {
@@ -495,12 +495,12 @@ export const stair = {
495
495
  geometryId: "dve_quater_cube_south_north",
496
496
  position: [0, 0.5, 0],
497
497
  inputs: {
498
- "@upTex": "@texture",
499
- "@downTex": "@texture",
500
- "@northTex": "@texture",
501
- "@southTex": "@texture",
502
- "@eastTex": "@texture",
503
- "@westTex": "@texture",
498
+ upTex: "@texture",
499
+ downTex: "@texture",
500
+ northTex: "@texture",
501
+ southTex: "@texture",
502
+ eastTex: "@texture",
503
+ westTex: "@texture",
504
504
  },
505
505
  },
506
506
  ],
@@ -510,12 +510,12 @@ export const stair = {
510
510
  geometryId: "dve_half_cube_west_half",
511
511
  position: [0.5, 0, 0],
512
512
  inputs: {
513
- "@upTex": "@texture",
514
- "@downTex": "@texture",
515
- "@northTex": "@texture",
516
- "@southTex": "@texture",
517
- "@eastTex": "@texture",
518
- "@westTex": "@texture",
513
+ upTex: "@texture",
514
+ downTex: "@texture",
515
+ northTex: "@texture",
516
+ southTex: "@texture",
517
+ eastTex: "@texture",
518
+ westTex: "@texture",
519
519
  },
520
520
  },
521
521
  {
@@ -523,12 +523,12 @@ export const stair = {
523
523
  geometryId: "dve_quater_cube_south_north",
524
524
  position: [0, 0, 0],
525
525
  inputs: {
526
- "@upTex": "@texture",
527
- "@downTex": "@texture",
528
- "@northTex": "@texture",
529
- "@southTex": "@texture",
530
- "@eastTex": "@texture",
531
- "@westTex": "@texture",
526
+ upTex: "@texture",
527
+ downTex: "@texture",
528
+ northTex: "@texture",
529
+ southTex: "@texture",
530
+ eastTex: "@texture",
531
+ westTex: "@texture",
532
532
  },
533
533
  },
534
534
  ],
@@ -538,12 +538,12 @@ export const stair = {
538
538
  geometryId: "dve_half_cube_west_half",
539
539
  position: [0.5, 0, 0],
540
540
  inputs: {
541
- "@upTex": "@texture",
542
- "@downTex": "@texture",
543
- "@northTex": "@texture",
544
- "@southTex": "@texture",
545
- "@eastTex": "@texture",
546
- "@westTex": "@texture",
541
+ upTex: "@texture",
542
+ downTex: "@texture",
543
+ northTex: "@texture",
544
+ southTex: "@texture",
545
+ eastTex: "@texture",
546
+ westTex: "@texture",
547
547
  },
548
548
  },
549
549
  {
@@ -551,12 +551,12 @@ export const stair = {
551
551
  geometryId: "dve_quater_cube_up_down",
552
552
  position: [0, 0, 0.5],
553
553
  inputs: {
554
- "@upTex": "@texture",
555
- "@downTex": "@texture",
556
- "@northTex": "@texture",
557
- "@southTex": "@texture",
558
- "@eastTex": "@texture",
559
- "@westTex": "@texture",
554
+ upTex: "@texture",
555
+ downTex: "@texture",
556
+ northTex: "@texture",
557
+ southTex: "@texture",
558
+ eastTex: "@texture",
559
+ westTex: "@texture",
560
560
  },
561
561
  },
562
562
  ],
@@ -566,12 +566,12 @@ export const stair = {
566
566
  geometryId: "dve_half_cube_west_half",
567
567
  position: [0.5, 0, 0],
568
568
  inputs: {
569
- "@upTex": "@texture",
570
- "@downTex": "@texture",
571
- "@northTex": "@texture",
572
- "@southTex": "@texture",
573
- "@eastTex": "@texture",
574
- "@westTex": "@texture",
569
+ upTex: "@texture",
570
+ downTex: "@texture",
571
+ northTex: "@texture",
572
+ southTex: "@texture",
573
+ eastTex: "@texture",
574
+ westTex: "@texture",
575
575
  },
576
576
  },
577
577
  {
@@ -579,12 +579,12 @@ export const stair = {
579
579
  geometryId: "dve_quater_cube_up_down",
580
580
  position: [0, 0, 0],
581
581
  inputs: {
582
- "@upTex": "@texture",
583
- "@downTex": "@texture",
584
- "@northTex": "@texture",
585
- "@southTex": "@texture",
586
- "@eastTex": "@texture",
587
- "@westTex": "@texture",
582
+ upTex: "@texture",
583
+ downTex: "@texture",
584
+ northTex: "@texture",
585
+ southTex: "@texture",
586
+ eastTex: "@texture",
587
+ westTex: "@texture",
588
588
  },
589
589
  },
590
590
  ],
@@ -593,12 +593,12 @@ export const stair = {
593
593
  id: "base",
594
594
  geometryId: "dve_half_cube_west_half",
595
595
  inputs: {
596
- "@upTex": "@texture",
597
- "@downTex": "@texture",
598
- "@northTex": "@texture",
599
- "@southTex": "@texture",
600
- "@eastTex": "@texture",
601
- "@westTex": "@texture",
596
+ upTex: "@texture",
597
+ downTex: "@texture",
598
+ northTex: "@texture",
599
+ southTex: "@texture",
600
+ eastTex: "@texture",
601
+ westTex: "@texture",
602
602
  },
603
603
  },
604
604
  {
@@ -606,12 +606,12 @@ export const stair = {
606
606
  geometryId: "dve_quater_cube_south_north",
607
607
  position: [0.5, 0.5, 0],
608
608
  inputs: {
609
- "@upTex": "@texture",
610
- "@downTex": "@texture",
611
- "@northTex": "@texture",
612
- "@southTex": "@texture",
613
- "@eastTex": "@texture",
614
- "@westTex": "@texture",
609
+ upTex: "@texture",
610
+ downTex: "@texture",
611
+ northTex: "@texture",
612
+ southTex: "@texture",
613
+ eastTex: "@texture",
614
+ westTex: "@texture",
615
615
  },
616
616
  },
617
617
  ],
@@ -620,12 +620,12 @@ export const stair = {
620
620
  id: "base",
621
621
  geometryId: "dve_half_cube_west_half",
622
622
  inputs: {
623
- "@upTex": "@texture",
624
- "@downTex": "@texture",
625
- "@northTex": "@texture",
626
- "@southTex": "@texture",
627
- "@eastTex": "@texture",
628
- "@westTex": "@texture",
623
+ upTex: "@texture",
624
+ downTex: "@texture",
625
+ northTex: "@texture",
626
+ southTex: "@texture",
627
+ eastTex: "@texture",
628
+ westTex: "@texture",
629
629
  },
630
630
  },
631
631
  {
@@ -633,12 +633,12 @@ export const stair = {
633
633
  geometryId: "dve_quater_cube_south_north",
634
634
  position: [0.5, 0, 0],
635
635
  inputs: {
636
- "@upTex": "@texture",
637
- "@downTex": "@texture",
638
- "@northTex": "@texture",
639
- "@southTex": "@texture",
640
- "@eastTex": "@texture",
641
- "@westTex": "@texture",
636
+ upTex: "@texture",
637
+ downTex: "@texture",
638
+ northTex: "@texture",
639
+ southTex: "@texture",
640
+ eastTex: "@texture",
641
+ westTex: "@texture",
642
642
  },
643
643
  },
644
644
  ],
@@ -647,12 +647,12 @@ export const stair = {
647
647
  id: "base",
648
648
  geometryId: "dve_half_cube_west_half",
649
649
  inputs: {
650
- "@upTex": "@texture",
651
- "@downTex": "@texture",
652
- "@northTex": "@texture",
653
- "@southTex": "@texture",
654
- "@eastTex": "@texture",
655
- "@westTex": "@texture",
650
+ upTex: "@texture",
651
+ downTex: "@texture",
652
+ northTex: "@texture",
653
+ southTex: "@texture",
654
+ eastTex: "@texture",
655
+ westTex: "@texture",
656
656
  },
657
657
  },
658
658
  {
@@ -660,12 +660,12 @@ export const stair = {
660
660
  geometryId: "dve_quater_cube_up_down",
661
661
  position: [0.5, 0, 0.5],
662
662
  inputs: {
663
- "@upTex": "@texture",
664
- "@downTex": "@texture",
665
- "@northTex": "@texture",
666
- "@southTex": "@texture",
667
- "@eastTex": "@texture",
668
- "@westTex": "@texture",
663
+ upTex: "@texture",
664
+ downTex: "@texture",
665
+ northTex: "@texture",
666
+ southTex: "@texture",
667
+ eastTex: "@texture",
668
+ westTex: "@texture",
669
669
  },
670
670
  },
671
671
  ],
@@ -674,12 +674,12 @@ export const stair = {
674
674
  id: "base",
675
675
  geometryId: "dve_half_cube_west_half",
676
676
  inputs: {
677
- "@upTex": "@texture",
678
- "@downTex": "@texture",
679
- "@northTex": "@texture",
680
- "@southTex": "@texture",
681
- "@eastTex": "@texture",
682
- "@westTex": "@texture",
677
+ upTex: "@texture",
678
+ downTex: "@texture",
679
+ northTex: "@texture",
680
+ southTex: "@texture",
681
+ eastTex: "@texture",
682
+ westTex: "@texture",
683
683
  },
684
684
  },
685
685
  {
@@ -687,12 +687,12 @@ export const stair = {
687
687
  geometryId: "dve_quater_cube_up_down",
688
688
  position: [0.5, 0, 0],
689
689
  inputs: {
690
- "@upTex": "@texture",
691
- "@downTex": "@texture",
692
- "@northTex": "@texture",
693
- "@southTex": "@texture",
694
- "@eastTex": "@texture",
695
- "@westTex": "@texture",
690
+ upTex: "@texture",
691
+ downTex: "@texture",
692
+ northTex: "@texture",
693
+ southTex: "@texture",
694
+ eastTex: "@texture",
695
+ westTex: "@texture",
696
696
  },
697
697
  },
698
698
  ],
@@ -703,12 +703,12 @@ export const stair = {
703
703
  geometryId: "dve_half_cube_down_half",
704
704
  position: [0, 0.5, 0],
705
705
  inputs: {
706
- "@upTex": "@texture",
707
- "@downTex": "@texture",
708
- "@northTex": "@texture",
709
- "@southTex": "@texture",
710
- "@eastTex": "@texture",
711
- "@westTex": "@texture",
706
+ upTex: "@texture",
707
+ downTex: "@texture",
708
+ northTex: "@texture",
709
+ southTex: "@texture",
710
+ eastTex: "@texture",
711
+ westTex: "@texture",
712
712
  },
713
713
  },
714
714
  {
@@ -716,12 +716,12 @@ export const stair = {
716
716
  geometryId: "dve_eighth_cube",
717
717
  position: [0.5, 0, 0.5],
718
718
  inputs: {
719
- "@upTex": "@texture",
720
- "@downTex": "@texture",
721
- "@northTex": "@texture",
722
- "@southTex": "@texture",
723
- "@eastTex": "@texture",
724
- "@westTex": "@texture",
719
+ upTex: "@texture",
720
+ downTex: "@texture",
721
+ northTex: "@texture",
722
+ southTex: "@texture",
723
+ eastTex: "@texture",
724
+ westTex: "@texture",
725
725
  },
726
726
  },
727
727
  ],
@@ -731,12 +731,12 @@ export const stair = {
731
731
  geometryId: "dve_half_cube_down_half",
732
732
  position: [0, 0.5, 0],
733
733
  inputs: {
734
- "@upTex": "@texture",
735
- "@downTex": "@texture",
736
- "@northTex": "@texture",
737
- "@southTex": "@texture",
738
- "@eastTex": "@texture",
739
- "@westTex": "@texture",
734
+ upTex: "@texture",
735
+ downTex: "@texture",
736
+ northTex: "@texture",
737
+ southTex: "@texture",
738
+ eastTex: "@texture",
739
+ westTex: "@texture",
740
740
  },
741
741
  },
742
742
  {
@@ -744,12 +744,12 @@ export const stair = {
744
744
  geometryId: "dve_eighth_cube",
745
745
  position: [0, 0, 0.5],
746
746
  inputs: {
747
- "@upTex": "@texture",
748
- "@downTex": "@texture",
749
- "@northTex": "@texture",
750
- "@southTex": "@texture",
751
- "@eastTex": "@texture",
752
- "@westTex": "@texture",
747
+ upTex: "@texture",
748
+ downTex: "@texture",
749
+ northTex: "@texture",
750
+ southTex: "@texture",
751
+ eastTex: "@texture",
752
+ westTex: "@texture",
753
753
  },
754
754
  },
755
755
  ],
@@ -759,12 +759,12 @@ export const stair = {
759
759
  geometryId: "dve_half_cube_down_half",
760
760
  position: [0, 0.5, 0],
761
761
  inputs: {
762
- "@upTex": "@texture",
763
- "@downTex": "@texture",
764
- "@northTex": "@texture",
765
- "@southTex": "@texture",
766
- "@eastTex": "@texture",
767
- "@westTex": "@texture",
762
+ upTex: "@texture",
763
+ downTex: "@texture",
764
+ northTex: "@texture",
765
+ southTex: "@texture",
766
+ eastTex: "@texture",
767
+ westTex: "@texture",
768
768
  },
769
769
  },
770
770
  {
@@ -772,12 +772,12 @@ export const stair = {
772
772
  geometryId: "dve_eighth_cube",
773
773
  position: [0.5, 0, 0],
774
774
  inputs: {
775
- "@upTex": "@texture",
776
- "@downTex": "@texture",
777
- "@northTex": "@texture",
778
- "@southTex": "@texture",
779
- "@eastTex": "@texture",
780
- "@westTex": "@texture",
775
+ upTex: "@texture",
776
+ downTex: "@texture",
777
+ northTex: "@texture",
778
+ southTex: "@texture",
779
+ eastTex: "@texture",
780
+ westTex: "@texture",
781
781
  },
782
782
  },
783
783
  ],
@@ -787,24 +787,24 @@ export const stair = {
787
787
  geometryId: "dve_half_cube_down_half",
788
788
  position: [0, 0.5, 0],
789
789
  inputs: {
790
- "@upTex": "@texture",
791
- "@downTex": "@texture",
792
- "@northTex": "@texture",
793
- "@southTex": "@texture",
794
- "@eastTex": "@texture",
795
- "@westTex": "@texture",
790
+ upTex: "@texture",
791
+ downTex: "@texture",
792
+ northTex: "@texture",
793
+ southTex: "@texture",
794
+ eastTex: "@texture",
795
+ westTex: "@texture",
796
796
  },
797
797
  },
798
798
  {
799
799
  id: "up",
800
800
  geometryId: "dve_eighth_cube",
801
801
  inputs: {
802
- "@upTex": "@texture",
803
- "@downTex": "@texture",
804
- "@northTex": "@texture",
805
- "@southTex": "@texture",
806
- "@eastTex": "@texture",
807
- "@westTex": "@texture",
802
+ upTex: "@texture",
803
+ downTex: "@texture",
804
+ northTex: "@texture",
805
+ southTex: "@texture",
806
+ eastTex: "@texture",
807
+ westTex: "@texture",
808
808
  },
809
809
  },
810
810
  ],
@@ -813,12 +813,12 @@ export const stair = {
813
813
  id: "base",
814
814
  geometryId: "dve_half_cube_down_half",
815
815
  inputs: {
816
- "@upTex": "@texture",
817
- "@downTex": "@texture",
818
- "@northTex": "@texture",
819
- "@southTex": "@texture",
820
- "@eastTex": "@texture",
821
- "@westTex": "@texture",
816
+ upTex: "@texture",
817
+ downTex: "@texture",
818
+ northTex: "@texture",
819
+ southTex: "@texture",
820
+ eastTex: "@texture",
821
+ westTex: "@texture",
822
822
  },
823
823
  },
824
824
  {
@@ -826,12 +826,12 @@ export const stair = {
826
826
  geometryId: "dve_eighth_cube",
827
827
  position: [0.5, 0.5, 0.5],
828
828
  inputs: {
829
- "@upTex": "@texture",
830
- "@downTex": "@texture",
831
- "@northTex": "@texture",
832
- "@southTex": "@texture",
833
- "@eastTex": "@texture",
834
- "@westTex": "@texture",
829
+ upTex: "@texture",
830
+ downTex: "@texture",
831
+ northTex: "@texture",
832
+ southTex: "@texture",
833
+ eastTex: "@texture",
834
+ westTex: "@texture",
835
835
  },
836
836
  },
837
837
  ],
@@ -840,12 +840,12 @@ export const stair = {
840
840
  id: "base",
841
841
  geometryId: "dve_half_cube_down_half",
842
842
  inputs: {
843
- "@upTex": "@texture",
844
- "@downTex": "@texture",
845
- "@northTex": "@texture",
846
- "@southTex": "@texture",
847
- "@eastTex": "@texture",
848
- "@westTex": "@texture",
843
+ upTex: "@texture",
844
+ downTex: "@texture",
845
+ northTex: "@texture",
846
+ southTex: "@texture",
847
+ eastTex: "@texture",
848
+ westTex: "@texture",
849
849
  },
850
850
  },
851
851
  {
@@ -853,12 +853,12 @@ export const stair = {
853
853
  geometryId: "dve_eighth_cube",
854
854
  position: [0, 0.5, 0.5],
855
855
  inputs: {
856
- "@upTex": "@texture",
857
- "@downTex": "@texture",
858
- "@northTex": "@texture",
859
- "@southTex": "@texture",
860
- "@eastTex": "@texture",
861
- "@westTex": "@texture",
856
+ upTex: "@texture",
857
+ downTex: "@texture",
858
+ northTex: "@texture",
859
+ southTex: "@texture",
860
+ eastTex: "@texture",
861
+ westTex: "@texture",
862
862
  },
863
863
  },
864
864
  ],
@@ -867,12 +867,12 @@ export const stair = {
867
867
  id: "base",
868
868
  geometryId: "dve_half_cube_down_half",
869
869
  inputs: {
870
- "@upTex": "@texture",
871
- "@downTex": "@texture",
872
- "@northTex": "@texture",
873
- "@southTex": "@texture",
874
- "@eastTex": "@texture",
875
- "@westTex": "@texture",
870
+ upTex: "@texture",
871
+ downTex: "@texture",
872
+ northTex: "@texture",
873
+ southTex: "@texture",
874
+ eastTex: "@texture",
875
+ westTex: "@texture",
876
876
  },
877
877
  },
878
878
  {
@@ -880,12 +880,12 @@ export const stair = {
880
880
  geometryId: "dve_eighth_cube",
881
881
  position: [0.5, 0.5, 0],
882
882
  inputs: {
883
- "@upTex": "@texture",
884
- "@downTex": "@texture",
885
- "@northTex": "@texture",
886
- "@southTex": "@texture",
887
- "@eastTex": "@texture",
888
- "@westTex": "@texture",
883
+ upTex: "@texture",
884
+ downTex: "@texture",
885
+ northTex: "@texture",
886
+ southTex: "@texture",
887
+ eastTex: "@texture",
888
+ westTex: "@texture",
889
889
  },
890
890
  },
891
891
  ],
@@ -894,12 +894,12 @@ export const stair = {
894
894
  id: "base",
895
895
  geometryId: "dve_half_cube_down_half",
896
896
  inputs: {
897
- "@upTex": "@texture",
898
- "@downTex": "@texture",
899
- "@northTex": "@texture",
900
- "@southTex": "@texture",
901
- "@eastTex": "@texture",
902
- "@westTex": "@texture",
897
+ upTex: "@texture",
898
+ downTex: "@texture",
899
+ northTex: "@texture",
900
+ southTex: "@texture",
901
+ eastTex: "@texture",
902
+ westTex: "@texture",
903
903
  },
904
904
  },
905
905
  {
@@ -907,12 +907,12 @@ export const stair = {
907
907
  geometryId: "dve_eighth_cube",
908
908
  position: [0, 0.5, 0],
909
909
  inputs: {
910
- "@upTex": "@texture",
911
- "@downTex": "@texture",
912
- "@northTex": "@texture",
913
- "@southTex": "@texture",
914
- "@eastTex": "@texture",
915
- "@westTex": "@texture",
910
+ upTex: "@texture",
911
+ downTex: "@texture",
912
+ northTex: "@texture",
913
+ southTex: "@texture",
914
+ eastTex: "@texture",
915
+ westTex: "@texture",
916
916
  },
917
917
  },
918
918
  ],
@@ -922,12 +922,12 @@ export const stair = {
922
922
  position: [0, 0, 0.5],
923
923
  geometryId: "dve_half_cube_south_half",
924
924
  inputs: {
925
- "@upTex": "@texture",
926
- "@downTex": "@texture",
927
- "@northTex": "@texture",
928
- "@southTex": "@texture",
929
- "@eastTex": "@texture",
930
- "@westTex": "@texture",
925
+ upTex: "@texture",
926
+ downTex: "@texture",
927
+ northTex: "@texture",
928
+ southTex: "@texture",
929
+ eastTex: "@texture",
930
+ westTex: "@texture",
931
931
  },
932
932
  },
933
933
  {
@@ -935,12 +935,12 @@ export const stair = {
935
935
  geometryId: "dve_eighth_cube",
936
936
  position: [0.5, 0.5, 0],
937
937
  inputs: {
938
- "@upTex": "@texture",
939
- "@downTex": "@texture",
940
- "@northTex": "@texture",
941
- "@southTex": "@texture",
942
- "@eastTex": "@texture",
943
- "@westTex": "@texture",
938
+ upTex: "@texture",
939
+ downTex: "@texture",
940
+ northTex: "@texture",
941
+ southTex: "@texture",
942
+ eastTex: "@texture",
943
+ westTex: "@texture",
944
944
  },
945
945
  },
946
946
  ],
@@ -950,12 +950,12 @@ export const stair = {
950
950
  position: [0, 0, 0.5],
951
951
  geometryId: "dve_half_cube_south_half",
952
952
  inputs: {
953
- "@upTex": "@texture",
954
- "@downTex": "@texture",
955
- "@northTex": "@texture",
956
- "@southTex": "@texture",
957
- "@eastTex": "@texture",
958
- "@westTex": "@texture",
953
+ upTex: "@texture",
954
+ downTex: "@texture",
955
+ northTex: "@texture",
956
+ southTex: "@texture",
957
+ eastTex: "@texture",
958
+ westTex: "@texture",
959
959
  },
960
960
  },
961
961
  {
@@ -963,12 +963,12 @@ export const stair = {
963
963
  geometryId: "dve_eighth_cube",
964
964
  position: [0, 0.5, 0],
965
965
  inputs: {
966
- "@upTex": "@texture",
967
- "@downTex": "@texture",
968
- "@northTex": "@texture",
969
- "@southTex": "@texture",
970
- "@eastTex": "@texture",
971
- "@westTex": "@texture",
966
+ upTex: "@texture",
967
+ downTex: "@texture",
968
+ northTex: "@texture",
969
+ southTex: "@texture",
970
+ eastTex: "@texture",
971
+ westTex: "@texture",
972
972
  },
973
973
  },
974
974
  ],
@@ -978,12 +978,12 @@ export const stair = {
978
978
  position: [0, 0, 0.5],
979
979
  geometryId: "dve_half_cube_south_half",
980
980
  inputs: {
981
- "@upTex": "@texture",
982
- "@downTex": "@texture",
983
- "@northTex": "@texture",
984
- "@southTex": "@texture",
985
- "@eastTex": "@texture",
986
- "@westTex": "@texture",
981
+ upTex: "@texture",
982
+ downTex: "@texture",
983
+ northTex: "@texture",
984
+ southTex: "@texture",
985
+ eastTex: "@texture",
986
+ westTex: "@texture",
987
987
  },
988
988
  },
989
989
  {
@@ -991,12 +991,12 @@ export const stair = {
991
991
  geometryId: "dve_eighth_cube",
992
992
  position: [0.5, 0, 0],
993
993
  inputs: {
994
- "@upTex": "@texture",
995
- "@downTex": "@texture",
996
- "@northTex": "@texture",
997
- "@southTex": "@texture",
998
- "@eastTex": "@texture",
999
- "@westTex": "@texture",
994
+ upTex: "@texture",
995
+ downTex: "@texture",
996
+ northTex: "@texture",
997
+ southTex: "@texture",
998
+ eastTex: "@texture",
999
+ westTex: "@texture",
1000
1000
  },
1001
1001
  },
1002
1002
  ],
@@ -1006,24 +1006,24 @@ export const stair = {
1006
1006
  position: [0, 0, 0.5],
1007
1007
  geometryId: "dve_half_cube_south_half",
1008
1008
  inputs: {
1009
- "@upTex": "@texture",
1010
- "@downTex": "@texture",
1011
- "@northTex": "@texture",
1012
- "@southTex": "@texture",
1013
- "@eastTex": "@texture",
1014
- "@westTex": "@texture",
1009
+ upTex: "@texture",
1010
+ downTex: "@texture",
1011
+ northTex: "@texture",
1012
+ southTex: "@texture",
1013
+ eastTex: "@texture",
1014
+ westTex: "@texture",
1015
1015
  },
1016
1016
  },
1017
1017
  {
1018
1018
  id: "up",
1019
1019
  geometryId: "dve_eighth_cube",
1020
1020
  inputs: {
1021
- "@upTex": "@texture",
1022
- "@downTex": "@texture",
1023
- "@northTex": "@texture",
1024
- "@southTex": "@texture",
1025
- "@eastTex": "@texture",
1026
- "@westTex": "@texture",
1021
+ upTex: "@texture",
1022
+ downTex: "@texture",
1023
+ northTex: "@texture",
1024
+ southTex: "@texture",
1025
+ eastTex: "@texture",
1026
+ westTex: "@texture",
1027
1027
  },
1028
1028
  },
1029
1029
  ],
@@ -1032,12 +1032,12 @@ export const stair = {
1032
1032
  id: "base",
1033
1033
  geometryId: "dve_half_cube_south_half",
1034
1034
  inputs: {
1035
- "@upTex": "@texture",
1036
- "@downTex": "@texture",
1037
- "@northTex": "@texture",
1038
- "@southTex": "@texture",
1039
- "@eastTex": "@texture",
1040
- "@westTex": "@texture",
1035
+ upTex: "@texture",
1036
+ downTex: "@texture",
1037
+ northTex: "@texture",
1038
+ southTex: "@texture",
1039
+ eastTex: "@texture",
1040
+ westTex: "@texture",
1041
1041
  },
1042
1042
  },
1043
1043
  {
@@ -1045,12 +1045,12 @@ export const stair = {
1045
1045
  geometryId: "dve_eighth_cube",
1046
1046
  position: [0.5, 0.5, 0.5],
1047
1047
  inputs: {
1048
- "@upTex": "@texture",
1049
- "@downTex": "@texture",
1050
- "@northTex": "@texture",
1051
- "@southTex": "@texture",
1052
- "@eastTex": "@texture",
1053
- "@westTex": "@texture",
1048
+ upTex: "@texture",
1049
+ downTex: "@texture",
1050
+ northTex: "@texture",
1051
+ southTex: "@texture",
1052
+ eastTex: "@texture",
1053
+ westTex: "@texture",
1054
1054
  },
1055
1055
  },
1056
1056
  ],
@@ -1059,12 +1059,12 @@ export const stair = {
1059
1059
  id: "base",
1060
1060
  geometryId: "dve_half_cube_south_half",
1061
1061
  inputs: {
1062
- "@upTex": "@texture",
1063
- "@downTex": "@texture",
1064
- "@northTex": "@texture",
1065
- "@southTex": "@texture",
1066
- "@eastTex": "@texture",
1067
- "@westTex": "@texture",
1062
+ upTex: "@texture",
1063
+ downTex: "@texture",
1064
+ northTex: "@texture",
1065
+ southTex: "@texture",
1066
+ eastTex: "@texture",
1067
+ westTex: "@texture",
1068
1068
  },
1069
1069
  },
1070
1070
  {
@@ -1072,12 +1072,12 @@ export const stair = {
1072
1072
  geometryId: "dve_eighth_cube",
1073
1073
  position: [0, 0.5, 0.5],
1074
1074
  inputs: {
1075
- "@upTex": "@texture",
1076
- "@downTex": "@texture",
1077
- "@northTex": "@texture",
1078
- "@southTex": "@texture",
1079
- "@eastTex": "@texture",
1080
- "@westTex": "@texture",
1075
+ upTex: "@texture",
1076
+ downTex: "@texture",
1077
+ northTex: "@texture",
1078
+ southTex: "@texture",
1079
+ eastTex: "@texture",
1080
+ westTex: "@texture",
1081
1081
  },
1082
1082
  },
1083
1083
  ],
@@ -1086,12 +1086,12 @@ export const stair = {
1086
1086
  id: "base",
1087
1087
  geometryId: "dve_half_cube_south_half",
1088
1088
  inputs: {
1089
- "@upTex": "@texture",
1090
- "@downTex": "@texture",
1091
- "@northTex": "@texture",
1092
- "@southTex": "@texture",
1093
- "@eastTex": "@texture",
1094
- "@westTex": "@texture",
1089
+ upTex: "@texture",
1090
+ downTex: "@texture",
1091
+ northTex: "@texture",
1092
+ southTex: "@texture",
1093
+ eastTex: "@texture",
1094
+ westTex: "@texture",
1095
1095
  },
1096
1096
  },
1097
1097
  {
@@ -1099,12 +1099,12 @@ export const stair = {
1099
1099
  geometryId: "dve_eighth_cube",
1100
1100
  position: [0.5, 0, 0.5],
1101
1101
  inputs: {
1102
- "@upTex": "@texture",
1103
- "@downTex": "@texture",
1104
- "@northTex": "@texture",
1105
- "@southTex": "@texture",
1106
- "@eastTex": "@texture",
1107
- "@westTex": "@texture",
1102
+ upTex: "@texture",
1103
+ downTex: "@texture",
1104
+ northTex: "@texture",
1105
+ southTex: "@texture",
1106
+ eastTex: "@texture",
1107
+ westTex: "@texture",
1108
1108
  },
1109
1109
  },
1110
1110
  ],
@@ -1113,12 +1113,12 @@ export const stair = {
1113
1113
  id: "base",
1114
1114
  geometryId: "dve_half_cube_south_half",
1115
1115
  inputs: {
1116
- "@upTex": "@texture",
1117
- "@downTex": "@texture",
1118
- "@northTex": "@texture",
1119
- "@southTex": "@texture",
1120
- "@eastTex": "@texture",
1121
- "@westTex": "@texture",
1116
+ upTex: "@texture",
1117
+ downTex: "@texture",
1118
+ northTex: "@texture",
1119
+ southTex: "@texture",
1120
+ eastTex: "@texture",
1121
+ westTex: "@texture",
1122
1122
  },
1123
1123
  },
1124
1124
  {
@@ -1126,12 +1126,12 @@ export const stair = {
1126
1126
  geometryId: "dve_eighth_cube",
1127
1127
  position: [0, 0, 0.5],
1128
1128
  inputs: {
1129
- "@upTex": "@texture",
1130
- "@downTex": "@texture",
1131
- "@northTex": "@texture",
1132
- "@southTex": "@texture",
1133
- "@eastTex": "@texture",
1134
- "@westTex": "@texture",
1129
+ upTex: "@texture",
1130
+ downTex: "@texture",
1131
+ northTex: "@texture",
1132
+ southTex: "@texture",
1133
+ eastTex: "@texture",
1134
+ westTex: "@texture",
1135
1135
  },
1136
1136
  },
1137
1137
  ],
@@ -1141,12 +1141,12 @@ export const stair = {
1141
1141
  geometryId: "dve_half_cube_west_half",
1142
1142
  position: [0.5, 0, 0],
1143
1143
  inputs: {
1144
- "@upTex": "@texture",
1145
- "@downTex": "@texture",
1146
- "@northTex": "@texture",
1147
- "@southTex": "@texture",
1148
- "@eastTex": "@texture",
1149
- "@westTex": "@texture",
1144
+ upTex: "@texture",
1145
+ downTex: "@texture",
1146
+ northTex: "@texture",
1147
+ southTex: "@texture",
1148
+ eastTex: "@texture",
1149
+ westTex: "@texture",
1150
1150
  },
1151
1151
  },
1152
1152
  {
@@ -1154,12 +1154,12 @@ export const stair = {
1154
1154
  geometryId: "dve_eighth_cube",
1155
1155
  position: [0, 0.5, 0.5],
1156
1156
  inputs: {
1157
- "@upTex": "@texture",
1158
- "@downTex": "@texture",
1159
- "@northTex": "@texture",
1160
- "@southTex": "@texture",
1161
- "@eastTex": "@texture",
1162
- "@westTex": "@texture",
1157
+ upTex: "@texture",
1158
+ downTex: "@texture",
1159
+ northTex: "@texture",
1160
+ southTex: "@texture",
1161
+ eastTex: "@texture",
1162
+ westTex: "@texture",
1163
1163
  },
1164
1164
  },
1165
1165
  ],
@@ -1169,12 +1169,12 @@ export const stair = {
1169
1169
  geometryId: "dve_half_cube_west_half",
1170
1170
  position: [0.5, 0, 0],
1171
1171
  inputs: {
1172
- "@upTex": "@texture",
1173
- "@downTex": "@texture",
1174
- "@northTex": "@texture",
1175
- "@southTex": "@texture",
1176
- "@eastTex": "@texture",
1177
- "@westTex": "@texture",
1172
+ upTex: "@texture",
1173
+ downTex: "@texture",
1174
+ northTex: "@texture",
1175
+ southTex: "@texture",
1176
+ eastTex: "@texture",
1177
+ westTex: "@texture",
1178
1178
  },
1179
1179
  },
1180
1180
  {
@@ -1182,12 +1182,12 @@ export const stair = {
1182
1182
  geometryId: "dve_eighth_cube",
1183
1183
  position: [0, 0.5, 0],
1184
1184
  inputs: {
1185
- "@upTex": "@texture",
1186
- "@downTex": "@texture",
1187
- "@northTex": "@texture",
1188
- "@southTex": "@texture",
1189
- "@eastTex": "@texture",
1190
- "@westTex": "@texture",
1185
+ upTex: "@texture",
1186
+ downTex: "@texture",
1187
+ northTex: "@texture",
1188
+ southTex: "@texture",
1189
+ eastTex: "@texture",
1190
+ westTex: "@texture",
1191
1191
  },
1192
1192
  },
1193
1193
  ],
@@ -1197,12 +1197,12 @@ export const stair = {
1197
1197
  geometryId: "dve_half_cube_west_half",
1198
1198
  position: [0.5, 0, 0],
1199
1199
  inputs: {
1200
- "@upTex": "@texture",
1201
- "@downTex": "@texture",
1202
- "@northTex": "@texture",
1203
- "@southTex": "@texture",
1204
- "@eastTex": "@texture",
1205
- "@westTex": "@texture",
1200
+ upTex: "@texture",
1201
+ downTex: "@texture",
1202
+ northTex: "@texture",
1203
+ southTex: "@texture",
1204
+ eastTex: "@texture",
1205
+ westTex: "@texture",
1206
1206
  },
1207
1207
  },
1208
1208
  {
@@ -1210,12 +1210,12 @@ export const stair = {
1210
1210
  geometryId: "dve_eighth_cube",
1211
1211
  position: [0, 0, 0.5],
1212
1212
  inputs: {
1213
- "@upTex": "@texture",
1214
- "@downTex": "@texture",
1215
- "@northTex": "@texture",
1216
- "@southTex": "@texture",
1217
- "@eastTex": "@texture",
1218
- "@westTex": "@texture",
1213
+ upTex: "@texture",
1214
+ downTex: "@texture",
1215
+ northTex: "@texture",
1216
+ southTex: "@texture",
1217
+ eastTex: "@texture",
1218
+ westTex: "@texture",
1219
1219
  },
1220
1220
  },
1221
1221
  ],
@@ -1225,24 +1225,24 @@ export const stair = {
1225
1225
  geometryId: "dve_half_cube_west_half",
1226
1226
  position: [0.5, 0, 0],
1227
1227
  inputs: {
1228
- "@upTex": "@texture",
1229
- "@downTex": "@texture",
1230
- "@northTex": "@texture",
1231
- "@southTex": "@texture",
1232
- "@eastTex": "@texture",
1233
- "@westTex": "@texture",
1228
+ upTex: "@texture",
1229
+ downTex: "@texture",
1230
+ northTex: "@texture",
1231
+ southTex: "@texture",
1232
+ eastTex: "@texture",
1233
+ westTex: "@texture",
1234
1234
  },
1235
1235
  },
1236
1236
  {
1237
1237
  id: "up",
1238
1238
  geometryId: "dve_eighth_cube",
1239
1239
  inputs: {
1240
- "@upTex": "@texture",
1241
- "@downTex": "@texture",
1242
- "@northTex": "@texture",
1243
- "@southTex": "@texture",
1244
- "@eastTex": "@texture",
1245
- "@westTex": "@texture",
1240
+ upTex: "@texture",
1241
+ downTex: "@texture",
1242
+ northTex: "@texture",
1243
+ southTex: "@texture",
1244
+ eastTex: "@texture",
1245
+ westTex: "@texture",
1246
1246
  },
1247
1247
  },
1248
1248
  ],
@@ -1251,12 +1251,12 @@ export const stair = {
1251
1251
  id: "base",
1252
1252
  geometryId: "dve_half_cube_west_half",
1253
1253
  inputs: {
1254
- "@upTex": "@texture",
1255
- "@downTex": "@texture",
1256
- "@northTex": "@texture",
1257
- "@southTex": "@texture",
1258
- "@eastTex": "@texture",
1259
- "@westTex": "@texture",
1254
+ upTex: "@texture",
1255
+ downTex: "@texture",
1256
+ northTex: "@texture",
1257
+ southTex: "@texture",
1258
+ eastTex: "@texture",
1259
+ westTex: "@texture",
1260
1260
  },
1261
1261
  },
1262
1262
  {
@@ -1264,12 +1264,12 @@ export const stair = {
1264
1264
  geometryId: "dve_eighth_cube",
1265
1265
  position: [0.5, 0.5, 0.5],
1266
1266
  inputs: {
1267
- "@upTex": "@texture",
1268
- "@downTex": "@texture",
1269
- "@northTex": "@texture",
1270
- "@southTex": "@texture",
1271
- "@eastTex": "@texture",
1272
- "@westTex": "@texture",
1267
+ upTex: "@texture",
1268
+ downTex: "@texture",
1269
+ northTex: "@texture",
1270
+ southTex: "@texture",
1271
+ eastTex: "@texture",
1272
+ westTex: "@texture",
1273
1273
  },
1274
1274
  },
1275
1275
  ],
@@ -1278,12 +1278,12 @@ export const stair = {
1278
1278
  id: "base",
1279
1279
  geometryId: "dve_half_cube_west_half",
1280
1280
  inputs: {
1281
- "@upTex": "@texture",
1282
- "@downTex": "@texture",
1283
- "@northTex": "@texture",
1284
- "@southTex": "@texture",
1285
- "@eastTex": "@texture",
1286
- "@westTex": "@texture",
1281
+ upTex: "@texture",
1282
+ downTex: "@texture",
1283
+ northTex: "@texture",
1284
+ southTex: "@texture",
1285
+ eastTex: "@texture",
1286
+ westTex: "@texture",
1287
1287
  },
1288
1288
  },
1289
1289
  {
@@ -1291,12 +1291,12 @@ export const stair = {
1291
1291
  geometryId: "dve_eighth_cube",
1292
1292
  position: [0.5, 0.5, 0],
1293
1293
  inputs: {
1294
- "@upTex": "@texture",
1295
- "@downTex": "@texture",
1296
- "@northTex": "@texture",
1297
- "@southTex": "@texture",
1298
- "@eastTex": "@texture",
1299
- "@westTex": "@texture",
1294
+ upTex: "@texture",
1295
+ downTex: "@texture",
1296
+ northTex: "@texture",
1297
+ southTex: "@texture",
1298
+ eastTex: "@texture",
1299
+ westTex: "@texture",
1300
1300
  },
1301
1301
  },
1302
1302
  ],
@@ -1305,12 +1305,12 @@ export const stair = {
1305
1305
  id: "base",
1306
1306
  geometryId: "dve_half_cube_west_half",
1307
1307
  inputs: {
1308
- "@upTex": "@texture",
1309
- "@downTex": "@texture",
1310
- "@northTex": "@texture",
1311
- "@southTex": "@texture",
1312
- "@eastTex": "@texture",
1313
- "@westTex": "@texture",
1308
+ upTex: "@texture",
1309
+ downTex: "@texture",
1310
+ northTex: "@texture",
1311
+ southTex: "@texture",
1312
+ eastTex: "@texture",
1313
+ westTex: "@texture",
1314
1314
  },
1315
1315
  },
1316
1316
  {
@@ -1318,12 +1318,12 @@ export const stair = {
1318
1318
  geometryId: "dve_eighth_cube",
1319
1319
  position: [0.5, 0, 0.5],
1320
1320
  inputs: {
1321
- "@upTex": "@texture",
1322
- "@downTex": "@texture",
1323
- "@northTex": "@texture",
1324
- "@southTex": "@texture",
1325
- "@eastTex": "@texture",
1326
- "@westTex": "@texture",
1321
+ upTex: "@texture",
1322
+ downTex: "@texture",
1323
+ northTex: "@texture",
1324
+ southTex: "@texture",
1325
+ eastTex: "@texture",
1326
+ westTex: "@texture",
1327
1327
  },
1328
1328
  },
1329
1329
  ],
@@ -1332,12 +1332,12 @@ export const stair = {
1332
1332
  id: "base",
1333
1333
  geometryId: "dve_half_cube_west_half",
1334
1334
  inputs: {
1335
- "@upTex": "@texture",
1336
- "@downTex": "@texture",
1337
- "@northTex": "@texture",
1338
- "@southTex": "@texture",
1339
- "@eastTex": "@texture",
1340
- "@westTex": "@texture",
1335
+ upTex: "@texture",
1336
+ downTex: "@texture",
1337
+ northTex: "@texture",
1338
+ southTex: "@texture",
1339
+ eastTex: "@texture",
1340
+ westTex: "@texture",
1341
1341
  },
1342
1342
  },
1343
1343
  {
@@ -1345,12 +1345,12 @@ export const stair = {
1345
1345
  geometryId: "dve_eighth_cube",
1346
1346
  position: [0.5, 0, 0],
1347
1347
  inputs: {
1348
- "@upTex": "@texture",
1349
- "@downTex": "@texture",
1350
- "@northTex": "@texture",
1351
- "@southTex": "@texture",
1352
- "@eastTex": "@texture",
1353
- "@westTex": "@texture",
1348
+ upTex: "@texture",
1349
+ downTex: "@texture",
1350
+ northTex: "@texture",
1351
+ southTex: "@texture",
1352
+ eastTex: "@texture",
1353
+ westTex: "@texture",
1354
1354
  },
1355
1355
  },
1356
1356
  ],