@divinevoxel/vlox 0.0.72 → 0.0.74

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 (307) hide show
  1. package/Contexts/Base/Remote/InitDataSync.js +4 -0
  2. package/Contexts/Base/Remote/InitWorldDataSync.js +1 -1
  3. package/Contexts/Render/DivineVoxelEngineRender.d.ts +2 -1
  4. package/Contexts/World/DivineVoxelEngineWorld.d.ts +2 -1
  5. package/Init/StartConstructor.js +8 -4
  6. package/Init/StartWorld.d.ts +1 -1
  7. package/Math/index.d.ts +5 -1
  8. package/Mesher/Functions/CompactVoxelMesh.d.ts +2 -2
  9. package/Mesher/Functions/CompactVoxelMesh.js +1 -1
  10. package/Mesher/Functions/CompactVoxelSectionMesh.d.ts +4 -0
  11. package/Mesher/Functions/CompactVoxelSectionMesh.js +112 -0
  12. package/Mesher/Functions/MeshSection.d.ts +1 -1
  13. package/Mesher/Functions/MeshSection.js +27 -22
  14. package/Mesher/Functions/MeshTexture.d.ts +1 -1
  15. package/Mesher/Functions/MeshTexture.js +3 -4
  16. package/Mesher/Geomtry/CompactedSectionVoxelMesh.d.ts +23 -0
  17. package/Mesher/Geomtry/CompactedSectionVoxelMesh.js +144 -0
  18. package/Mesher/Geomtry/Primitives/QuadVertexData.d.ts +12 -10
  19. package/Mesher/Geomtry/Primitives/QuadVertexData.js +49 -56
  20. package/Mesher/Geomtry/VoxelGeometryBuilder.d.ts +2 -2
  21. package/Mesher/Geomtry/VoxelGeometryBuilder.js +120 -199
  22. package/Mesher/Geomtry/VoxelMesh.d.ts +1 -1
  23. package/Mesher/Geomtry/VoxelMesh.js +4 -4
  24. package/Mesher/Geomtry/VoxelMeshBVHBuilder.d.ts +16 -0
  25. package/Mesher/Geomtry/VoxelMeshBVHBuilder.js +51 -0
  26. package/Mesher/Geomtry/VoxelMeshBVHStructCursor.d.ts +22 -0
  27. package/Mesher/Geomtry/VoxelMeshBVHStructCursor.js +78 -0
  28. package/Mesher/Geomtry/{Buffers.js → VoxelMeshBuffers.js} +2 -2
  29. package/Mesher/Geomtry/index.d.ts +0 -1
  30. package/Mesher/Geomtry/index.js +0 -1
  31. package/Mesher/InitMesher.js +1 -1
  32. package/Mesher/InitTask.js +9 -23
  33. package/Mesher/Models/Common/BoxGeometryNode.js +7 -7
  34. package/Mesher/Models/Common/Calc/CalcConstants.d.ts +1 -1
  35. package/Mesher/Models/Common/Calc/CalcConstants.js +1 -1
  36. package/Mesher/Models/Common/Calc/FaceDataCalc.d.ts +2 -2
  37. package/Mesher/Models/Common/Calc/FaceDataCalc.js +37 -30
  38. package/Mesher/Models/Common/QuadGeometryNode.js +2 -2
  39. package/Mesher/Models/Nodes/Custom/Liquid/FlowGradient.d.ts +2 -2
  40. package/Mesher/Models/Nodes/Custom/Liquid/FlowGradient.js +1 -1
  41. package/Mesher/Models/Nodes/Custom/Liquid/LiquidGeomtryNode.js +18 -24
  42. package/Mesher/Models/Nodes/GeometryNode.d.ts +2 -2
  43. package/Mesher/Models/Nodes/Ruled/BoxVoxelGeometryNode.d.ts +1 -0
  44. package/Mesher/Models/Nodes/Ruled/BoxVoxelGeometryNode.js +40 -31
  45. package/Mesher/Models/Nodes/Ruled/QuadVoxelGeometryNode.js +2 -2
  46. package/Mesher/Models/Nodes/Ruleless/RulelessBoxVoxelGeometryNode.js +2 -2
  47. package/Mesher/Models/Nodes/Ruleless/RulelessQuadVoxelGeometryNode.js +2 -2
  48. package/Mesher/{Tools → Models/Protocols}/OutlinedVoxelTool.d.ts +1 -1
  49. package/Mesher/{Tools → Models/Protocols}/OutlinedVoxelTool.js +1 -1
  50. package/Mesher/Models/RenderedMaterials.d.ts +6 -0
  51. package/Mesher/{RenderedMaterials.js → Models/RenderedMaterials.js} +2 -2
  52. package/Mesher/Models/VoxelConstructor.d.ts +6 -6
  53. package/Mesher/Models/VoxelConstructor.js +8 -8
  54. package/Mesher/Models/VoxelGeometryBuilderCacheSpace.d.ts +3 -5
  55. package/Mesher/Models/VoxelGeometryBuilderCacheSpace.js +8 -32
  56. package/Mesher/{Tools/VoxelMesherDataTool.d.ts → Models/VoxelModelBuilder.d.ts} +4 -5
  57. package/Mesher/{Tools/VoxelMesherDataTool.js → Models/VoxelModelBuilder.js} +5 -8
  58. package/Mesher/Types/Mesher.types.d.ts +1 -0
  59. package/Models/Defaults/CubeVoxelGeometry.js +4 -0
  60. package/Models/Defaults/CubeVoxelModels.js +360 -383
  61. package/Models/Defaults/LiquidVoxelModel.js +5 -5
  62. package/Models/Defaults/PanelVoxelModels.js +442 -468
  63. package/Models/Defaults/StairVoxelModel.js +582 -597
  64. package/Models/Examples.js +490 -498
  65. package/Models/Rules/Classes/VoxelRulesModel.d.ts +1 -1
  66. package/Models/Rules/Classes/VoxelRulesModel.js +3 -3
  67. package/Models/Rules/Functions/BuildFinalInputs.d.ts +1 -1
  68. package/Models/Rules/Functions/BuildFinalInputs.js +21 -19
  69. package/Models/Rules/Functions/BuildGeomtryInputs.js +8 -5
  70. package/Models/Rules/Functions/BuildRules.js +2 -2
  71. package/Models/Rules/{VoxelModelManager.d.ts → VoxelModelRuleBuilderRegister.d.ts} +1 -1
  72. package/Models/Rules/VoxelModelRuleBuilderRegister.js +178 -0
  73. package/Models/VoxelModel.types.d.ts +17 -8
  74. package/Renderer/Classes/DVESectionMeshes.d.ts +2 -3
  75. package/Renderer/Classes/SectorMesh.d.ts +3 -4
  76. package/Renderer/Classes/SectorMesh.js +6 -11
  77. package/Renderer/InitTasks.js +1 -10
  78. package/Renderer/MeshManager.d.ts +1 -1
  79. package/Renderer/MeshManager.js +26 -25
  80. package/Renderer/MeshRegister.d.ts +5 -5
  81. package/Renderer/MeshRegister.js +4 -3
  82. package/Settings/EngineSettings.d.ts +2 -1
  83. package/Settings/EngineSettings.js +6 -5
  84. package/Settings/EngineSettings.types.d.ts +24 -39
  85. package/Settings/EngineSettings.types.js +22 -29
  86. package/Tasks/Logic/InitTasks.d.ts +1 -0
  87. package/Tasks/Logic/InitTasks.js +10 -0
  88. package/Tasks/Logic/VoxelLogicUpdate.d.ts +3 -0
  89. package/Tasks/Logic/VoxelLogicUpdate.js +71 -0
  90. package/Tasks/Propagation/Explosion/ExplosionManager.d.ts +2 -2
  91. package/Tasks/Propagation/Explosion/ExplosionManager.js +1 -2
  92. package/Tasks/Propagation/Flow/FlowManager.d.ts +4 -4
  93. package/Tasks/Propagation/Flow/FlowRemove.d.ts +2 -2
  94. package/Tasks/Propagation/Flow/FlowUpdate.d.ts +2 -2
  95. package/Tasks/Propagation/Flow/WorldFlow.d.ts +2 -2
  96. package/Tasks/Propagation/Illumanation/RGBUpdate.d.ts +3 -3
  97. package/Tasks/Propagation/Illumanation/SunUpdate.d.ts +3 -3
  98. package/Tasks/Propagation/Illumanation/WorldRGB.d.ts +2 -2
  99. package/Tasks/Propagation/Illumanation/WorldSun.d.ts +2 -2
  100. package/Tasks/Propagation/Illumanation/WorldSun.js +8 -15
  101. package/Tasks/Propagation/InitTasks.js +4 -4
  102. package/Tasks/Propagation/Power/PowerUpdate.d.ts +3 -0
  103. package/Tasks/Propagation/Power/PowerUpdate.js +80 -0
  104. package/Tasks/Tasks.types.d.ts +2 -2
  105. package/Tasks/TasksIds.d.ts +2 -1
  106. package/Tasks/TasksIds.js +1 -0
  107. package/Tasks/Update/Common.d.ts +3 -0
  108. package/Tasks/Update/Common.js +41 -0
  109. package/Tasks/Update/EreaseUpdate.d.ts +3 -0
  110. package/Tasks/Update/EreaseUpdate.js +66 -0
  111. package/Tasks/Update/InitTasks.d.ts +2 -2
  112. package/Tasks/Update/InitTasks.js +3 -1
  113. package/Tasks/Update/PaintUpdate.d.ts +3 -0
  114. package/Tasks/Update/PaintUpdate.js +89 -0
  115. package/Tasks/Update/VoxelUpdate.d.ts +2 -5
  116. package/Tasks/Update/VoxelUpdate.js +7 -143
  117. package/Tasks/{Update/UpdateTask.d.ts → VoxelUpdateTask.d.ts} +16 -6
  118. package/Tasks/{Update/UpdateTask.js → VoxelUpdateTask.js} +44 -5
  119. package/Tasks/WorldGeneration/WorldGenBrush.d.ts +3 -3
  120. package/Tasks/WorldGeneration/WorldGenBrush.js +3 -3
  121. package/Tasks/WorldGeneration/WorldGenRegister.d.ts +1 -1
  122. package/Templates/Cursor/TemplateCursor.d.ts +2 -2
  123. package/Templates/Cursor/TemplateCursor.js +1 -2
  124. package/Templates/Functions/CreateTemplate.d.ts +1 -1
  125. package/Templates/VoxelTemplates.types.d.ts +1 -1
  126. package/Textures/Classes/CompiledTexture.d.ts +18 -0
  127. package/Textures/Classes/CompiledTexture.js +50 -0
  128. package/Textures/Classes/CompiledTextureAnimation.d.ts +12 -0
  129. package/Textures/Classes/CompiledTextureAnimation.js +27 -0
  130. package/Textures/Classes/TextureAnimationTexture.d.ts +10 -0
  131. package/Textures/Classes/TextureAnimationTexture.js +32 -0
  132. package/Textures/Functions/BuildTextureData.d.ts +10 -0
  133. package/Textures/Functions/BuildTextureData.js +205 -0
  134. package/Textures/Texture.types.d.ts +50 -64
  135. package/Textures/TextureManager.d.ts +8 -19
  136. package/Textures/TextureManager.js +28 -166
  137. package/Tools/Brush/AdvancedBrushTool.js +1 -1
  138. package/Tools/Brush/Brush.d.ts +3 -3
  139. package/Tools/Brush/Brush.js +40 -8
  140. package/Tools/Tasks/TasksTool.d.ts +1 -0
  141. package/Tools/Tasks/TasksTool.js +2 -0
  142. package/Util/Binary/BinaryArrays.d.ts +6 -0
  143. package/Util/Binary/BinaryArrays.js +25 -0
  144. package/Util/Binary/BinaryBuffer.d.ts +35 -0
  145. package/Util/Binary/BinaryBuffer.js +136 -0
  146. package/Util/Binary/{BitArray.d.ts → BinaryFunctions.d.ts} +1 -2
  147. package/Util/Binary/BinaryFunctions.js +11 -0
  148. package/{Mesher/Tools/VoxelMeshBVHBuilder.d.ts → Util/Binary/BinaryTree.d.ts} +1 -33
  149. package/Util/Binary/BinaryTree.js +104 -0
  150. package/Voxels/Cursor/DataCursor.interface.d.ts +5 -0
  151. package/Voxels/Cursor/VoxelCursor.interface.d.ts +8 -3
  152. package/Voxels/Cursor/VoxelCursor.interface.js +54 -13
  153. package/Voxels/Cursor/VoxelLightData.js +1 -1
  154. package/Voxels/Data/VoxelPalettesRegister.d.ts +0 -5
  155. package/Voxels/Data/VoxelPalettesRegister.js +0 -9
  156. package/Voxels/Data/VoxelTag.types.d.ts +17 -2
  157. package/Voxels/Data/VoxelTag.types.js +6 -1
  158. package/Voxels/Data/VoxelTagsRegister.js +12 -7
  159. package/Voxels/Functions/BuildStateData.d.ts +6 -6
  160. package/Voxels/Functions/BuildStateData.js +37 -37
  161. package/Voxels/Functions/BuildTagAndPaletteData.js +6 -3
  162. package/Voxels/Indexes/VoxelIndex.d.ts +2 -2
  163. package/Voxels/Indexes/VoxelIndex.js +16 -18
  164. package/Voxels/InitVoxelData.js +24 -21
  165. package/Voxels/Logic/Classes/Default/Types/VoxelPoweredLogicType.d.ts +5 -0
  166. package/Voxels/Logic/Classes/Default/Types/VoxelPoweredLogicType.js +6 -0
  167. package/Voxels/Logic/Classes/VoxelLogic.d.ts +11 -0
  168. package/Voxels/Logic/Classes/VoxelLogic.js +49 -0
  169. package/Voxels/Logic/Classes/VoxelLogicType.d.ts +4 -0
  170. package/Voxels/Logic/Classes/VoxelLogicType.js +2 -0
  171. package/Voxels/Logic/VoxelLogic.types.d.ts +23 -0
  172. package/Voxels/Logic/VoxelLogic.types.js +1 -0
  173. package/Voxels/Logic/VoxelLogicRegister.d.ts +9 -0
  174. package/Voxels/Logic/VoxelLogicRegister.js +15 -0
  175. package/Voxels/State/Schema/StateSchema.d.ts +1 -1
  176. package/Voxels/State/SchemaRegister.js +10 -5
  177. package/Voxels/State/State.types.d.ts +1 -1
  178. package/Voxels/State/StateTreeReader.d.ts +1 -1
  179. package/Voxels/State/StateTreeReader.js +2 -3
  180. package/Voxels/Types/Voxel.types.d.ts +21 -0
  181. package/Voxels/Types/Voxel.types.js +6 -2
  182. package/Voxels/Types/VoxelModelCompiledData.types.d.ts +6 -4
  183. package/World/Archive/Archive.types.d.ts +65 -42
  184. package/World/Archive/Classes/ArchiveClasses.d.ts +66 -0
  185. package/World/Archive/Classes/ArchiveClasses.js +78 -0
  186. package/World/Archive/Classes/ImportedSection.d.ts +40 -0
  187. package/World/Archive/Classes/ImportedSection.js +307 -0
  188. package/World/Archive/Classes/ImportedSector.d.ts +23 -0
  189. package/World/Archive/Classes/ImportedSector.js +97 -0
  190. package/World/Archive/Functions/ArchiveArea.d.ts +1 -1
  191. package/World/Archive/Functions/ArchiveArea.js +49 -54
  192. package/World/Archive/Functions/ArchiveSector.js +373 -282
  193. package/World/Archive/Functions/CreateArchivedSection.d.ts +3 -0
  194. package/World/Archive/Functions/CreateArchivedSection.js +207 -0
  195. package/World/Archive/Functions/ImportSector.d.ts +2 -4
  196. package/World/Archive/Functions/ImportSector.js +50 -220
  197. package/World/Archive/Functions/RemoveDuplicates.d.ts +3 -0
  198. package/World/Archive/Functions/RemoveDuplicates.js +92 -0
  199. package/World/Archive/Functions/Shared.d.ts +6 -0
  200. package/World/Archive/Functions/Shared.js +50 -0
  201. package/World/Archive/InitTasks.js +37 -23
  202. package/World/Cursor/SectionCursor.d.ts +3 -3
  203. package/World/Cursor/SectionCursor.js +2 -3
  204. package/World/Cursor/SectorCursor.d.ts +3 -3
  205. package/World/Cursor/SectorCursor.js +1 -2
  206. package/World/Cursor/WorldCursor.d.ts +6 -5
  207. package/World/Cursor/WorldCursor.js +17 -15
  208. package/World/Cursor/WorldVoxelCursor.d.ts +0 -4
  209. package/World/Cursor/WorldVoxelCursor.js +24 -14
  210. package/World/Dimension/Dimension.d.ts +4 -1
  211. package/World/Dimension/Dimension.js +8 -1
  212. package/World/InitTasks.d.ts +1 -1
  213. package/World/Lock/WorldLock.d.ts +1 -1
  214. package/World/Section/Section.d.ts +27 -18
  215. package/World/Section/Section.js +125 -21
  216. package/World/Section/SectionState.d.ts +12 -0
  217. package/World/Section/SectionState.js +13 -0
  218. package/World/Sector/Sector.d.ts +20 -6
  219. package/World/Sector/Sector.js +100 -17
  220. package/World/Sector/SectorHeightMap.js +2 -2
  221. package/World/Sector/SectorState.d.ts +16 -7
  222. package/World/Sector/SectorState.js +29 -15
  223. package/World/Types/WorldData.types.d.ts +2 -7
  224. package/World/Types/WorldStorage.interface.js +1 -0
  225. package/World/WorldRegister.d.ts +13 -9
  226. package/World/WorldRegister.js +24 -9
  227. package/World/WorldSpaces.d.ts +4 -0
  228. package/World/WorldSpaces.js +25 -12
  229. package/{Tasks/IWG → WorldSimulation}/Internal/Classes/DimensionSegment.d.ts +2 -2
  230. package/{Tasks/IWG → WorldSimulation}/Internal/Classes/Generator.d.ts +10 -3
  231. package/{Tasks/IWG → WorldSimulation}/Internal/Classes/Generator.js +19 -3
  232. package/WorldSimulation/Internal/Classes/Queues/BuildQueue.d.ts +5 -0
  233. package/WorldSimulation/Internal/Classes/Queues/BuildQueue.js +6 -0
  234. package/WorldSimulation/Internal/Classes/Queues/LogiccQueue.d.ts +5 -0
  235. package/WorldSimulation/Internal/Classes/Queues/LogiccQueue.js +6 -0
  236. package/{Tasks/IWG → WorldSimulation}/Internal/Classes/SectorVisistedMap.js +1 -1
  237. package/WorldSimulation/Internal/Classes/TickQueue.d.ts +12 -0
  238. package/WorldSimulation/Internal/Classes/TickQueue.js +58 -0
  239. package/WorldSimulation/Internal/Classes/WorldSimulationTaskBase.d.ts +15 -0
  240. package/{Tasks/IWG/Internal/Classes/IWGTaskBase.js → WorldSimulation/Internal/Classes/WorldSimulationTaskBase.js} +8 -8
  241. package/{Tasks/IWG → WorldSimulation}/Internal/Functions/cullSectors.js +9 -9
  242. package/{Tasks/IWG → WorldSimulation}/Internal/Functions/getSectorState.d.ts +1 -1
  243. package/{Tasks/IWG → WorldSimulation}/Internal/Functions/getSectorState.js +4 -4
  244. package/WorldSimulation/Internal/Functions/runTickUpdate.d.ts +2 -0
  245. package/{Tasks/IWG/Internal/Functions/runBuildUpdate.js → WorldSimulation/Internal/Functions/runTickUpdate.js} +38 -9
  246. package/{Tasks/IWG → WorldSimulation}/Internal/Functions/runWorldUpdate.js +13 -13
  247. package/{Tasks/IWG → WorldSimulation}/Internal/TaskRegister.d.ts +2 -2
  248. package/{Tasks/IWG → WorldSimulation}/Internal/TaskRegister.js +1 -1
  249. package/WorldSimulation/Internal/WorldSimulationDimensions.d.ts +6 -0
  250. package/{Tasks/IWG/Internal/IWGDimensions.js → WorldSimulation/Internal/WorldSimulationDimensions.js} +1 -1
  251. package/WorldSimulation/Internal/WorldSimulationTasks.d.ts +30 -0
  252. package/{Tasks/IWG/Internal/IWGTasks.js → WorldSimulation/Internal/WorldSimulationTasks.js} +14 -24
  253. package/WorldSimulation/Internal/WorldSimulationTools.d.ts +8 -0
  254. package/{Tasks/IWG/Internal/IWGTools.js → WorldSimulation/Internal/WorldSimulationTools.js} +1 -1
  255. package/{Tasks/IWG → WorldSimulation}/Procedures/InitalLoad.d.ts +1 -1
  256. package/{Tasks/IWG → WorldSimulation}/Procedures/InitalLoad.js +11 -11
  257. package/{Tasks/IWG → WorldSimulation}/Procedures/SaveAllSectors.js +7 -5
  258. package/{Tasks/IWG/IWG.d.ts → WorldSimulation/WorldSimulation.d.ts} +6 -5
  259. package/{Tasks/IWG/IWG.js → WorldSimulation/WorldSimulation.js} +29 -23
  260. package/{Tasks/IWG → WorldSimulation}/index.d.ts +1 -1
  261. package/{Tasks/IWG → WorldSimulation}/index.js +1 -1
  262. package/package.json +1 -1
  263. package/Mesher/Functions/CompactMesh.d.ts +0 -2
  264. package/Mesher/Functions/CompactMesh.js +0 -42
  265. package/Mesher/Geomtry/GeometryNormals.d.ts +0 -10
  266. package/Mesher/Geomtry/GeometryNormals.js +0 -52
  267. package/Mesher/Geomtry/MeshData.types.d.ts +0 -13
  268. package/Mesher/Geomtry/MeshData.types.js +0 -6
  269. package/Mesher/Geomtry/Tools/MesherDataTools.d.ts +0 -7
  270. package/Mesher/Geomtry/Tools/MesherDataTools.js +0 -12
  271. package/Mesher/Geomtry/Tools/index.d.ts +0 -1
  272. package/Mesher/Geomtry/Tools/index.js +0 -1
  273. package/Mesher/RenderedMaterials.d.ts +0 -6
  274. package/Mesher/Tools/VoxelMeshBVHBuilder.js +0 -216
  275. package/Models/Rules/VoxelModelManager.js +0 -82
  276. package/Tasks/IWG/Internal/Classes/IWGTaskBase.d.ts +0 -15
  277. package/Tasks/IWG/Internal/Functions/runBuildUpdate.d.ts +0 -2
  278. package/Tasks/IWG/Internal/IWGDimensions.d.ts +0 -6
  279. package/Tasks/IWG/Internal/IWGTasks.d.ts +0 -34
  280. package/Tasks/IWG/Internal/IWGTools.d.ts +0 -8
  281. package/Textures/TextureAnimations.d.ts +0 -4
  282. package/Textures/TextureAnimations.js +0 -35
  283. package/Textures/TextureArray.d.ts +0 -47
  284. package/Textures/TextureArray.js +0 -202
  285. package/Textures/TextureBuilder.d.ts +0 -13
  286. package/Textures/TextureBuilder.js +0 -120
  287. package/Textures/TextureRegister.d.ts +0 -9
  288. package/Textures/TextureRegister.js +0 -28
  289. package/Tools/DataCursor.interface.d.ts +0 -5
  290. package/Tools/DataCursor.interface.js +0 -2
  291. package/Util/Binary/BitArray.js +0 -16
  292. package/World/Structs/WorldDataStructProperties.d.ts +0 -8
  293. package/World/Structs/WorldDataStructProperties.js +0 -9
  294. /package/Mesher/Geomtry/{Buffers.d.ts → VoxelMeshBuffers.d.ts} +0 -0
  295. /package/Mesher/{Tools → Geomtry}/VoxelMeshVertexStructCursor.d.ts +0 -0
  296. /package/Mesher/{Tools → Geomtry}/VoxelMeshVertexStructCursor.js +0 -0
  297. /package/Mesher/{VoxelShaderData.d.ts → Geomtry/VoxelShaderData.d.ts} +0 -0
  298. /package/Mesher/{VoxelShaderData.js → Geomtry/VoxelShaderData.js} +0 -0
  299. /package/{World/Storage/WorldStorage.interface.js → Voxels/Cursor/DataCursor.interface.js} +0 -0
  300. /package/World/{Storage → Types}/WorldStorage.interface.d.ts +0 -0
  301. /package/{Tasks/IWG → WorldSimulation}/Internal/Classes/DimensionSegment.js +0 -0
  302. /package/{Tasks/IWG → WorldSimulation}/Internal/Classes/SectorState.d.ts +0 -0
  303. /package/{Tasks/IWG → WorldSimulation}/Internal/Classes/SectorState.js +0 -0
  304. /package/{Tasks/IWG → WorldSimulation}/Internal/Classes/SectorVisistedMap.d.ts +0 -0
  305. /package/{Tasks/IWG → WorldSimulation}/Internal/Functions/cullSectors.d.ts +0 -0
  306. /package/{Tasks/IWG → WorldSimulation}/Internal/Functions/runWorldUpdate.d.ts +0 -0
  307. /package/{Tasks/IWG → WorldSimulation}/Procedures/SaveAllSectors.d.ts +0 -0
@@ -1,36 +1,21 @@
1
1
  export const stair = {
2
2
  id: "dve_simple_stair",
3
3
  relationsSchema: [],
4
- shapeStateSchema: [
4
+ stateSchema: [
5
5
  {
6
6
  name: "placement",
7
7
  type: "string",
8
- values: {
9
- 0: "down",
10
- 1: "up",
11
- 2: "north",
12
- 3: "south",
13
- 4: "east",
14
- 5: "west",
15
- },
8
+ values: ["down", "up", "north", "south", "east", "west"],
16
9
  },
17
10
  {
18
11
  name: "direction",
19
12
  type: "string",
20
- values: {
21
- 0: "south",
22
- 1: "north",
23
- 2: "east",
24
- 3: "west",
25
- },
13
+ values: ["south", "north", "east", "west"],
26
14
  },
27
15
  {
28
16
  name: "connected",
29
17
  type: "string",
30
- values: {
31
- 0: "false",
32
- 1: "true",
33
- },
18
+ values: ["false", "true"],
34
19
  },
35
20
  ],
36
21
  arguments: {
@@ -38,20 +23,20 @@ export const stair = {
38
23
  type: "texture",
39
24
  },
40
25
  },
41
- shapeStatesConditonalNodes: {},
42
- shapeStatesNodes: {
26
+ conditonalNodes: {},
27
+ stateNodes: {
43
28
  "placement=up,direction=north,connected=false": [
44
29
  {
45
30
  id: "base",
46
31
  geometryId: "dve_half_cube_down_half",
47
32
  position: [0, 0.5, 0],
48
33
  inputs: {
49
- "@upTex": "@texture",
50
- "@downTex": "@texture",
51
- "@northTex": "@texture",
52
- "@southTex": "@texture",
53
- "@eastTex": "@texture",
54
- "@westTex": "@texture",
34
+ upTex: "@texture",
35
+ downTex: "@texture",
36
+ northTex: "@texture",
37
+ southTex: "@texture",
38
+ eastTex: "@texture",
39
+ westTex: "@texture",
55
40
  },
56
41
  },
57
42
  {
@@ -59,12 +44,12 @@ export const stair = {
59
44
  geometryId: "dve_quater_cube_west_east",
60
45
  position: [0, 0, 0.5],
61
46
  inputs: {
62
- "@upTex": "@texture",
63
- "@downTex": "@texture",
64
- "@northTex": "@texture",
65
- "@southTex": "@texture",
66
- "@eastTex": "@texture",
67
- "@westTex": "@texture",
47
+ upTex: "@texture",
48
+ downTex: "@texture",
49
+ northTex: "@texture",
50
+ southTex: "@texture",
51
+ eastTex: "@texture",
52
+ westTex: "@texture",
68
53
  },
69
54
  },
70
55
  ],
@@ -74,24 +59,24 @@ export const stair = {
74
59
  geometryId: "dve_half_cube_down_half",
75
60
  position: [0, 0.5, 0],
76
61
  inputs: {
77
- "@upTex": "@texture",
78
- "@downTex": "@texture",
79
- "@northTex": "@texture",
80
- "@southTex": "@texture",
81
- "@eastTex": "@texture",
82
- "@westTex": "@texture",
62
+ upTex: "@texture",
63
+ downTex: "@texture",
64
+ northTex: "@texture",
65
+ southTex: "@texture",
66
+ eastTex: "@texture",
67
+ westTex: "@texture",
83
68
  },
84
69
  },
85
70
  {
86
71
  id: "up",
87
72
  geometryId: "dve_quater_cube_west_east",
88
73
  inputs: {
89
- "@upTex": "@texture",
90
- "@downTex": "@texture",
91
- "@northTex": "@texture",
92
- "@southTex": "@texture",
93
- "@eastTex": "@texture",
94
- "@westTex": "@texture",
74
+ upTex: "@texture",
75
+ downTex: "@texture",
76
+ northTex: "@texture",
77
+ southTex: "@texture",
78
+ eastTex: "@texture",
79
+ westTex: "@texture",
95
80
  },
96
81
  },
97
82
  ],
@@ -101,12 +86,12 @@ export const stair = {
101
86
  geometryId: "dve_half_cube_down_half",
102
87
  position: [0, 0.5, 0],
103
88
  inputs: {
104
- "@upTex": "@texture",
105
- "@downTex": "@texture",
106
- "@northTex": "@texture",
107
- "@southTex": "@texture",
108
- "@eastTex": "@texture",
109
- "@westTex": "@texture",
89
+ upTex: "@texture",
90
+ downTex: "@texture",
91
+ northTex: "@texture",
92
+ southTex: "@texture",
93
+ eastTex: "@texture",
94
+ westTex: "@texture",
110
95
  },
111
96
  },
112
97
  {
@@ -114,12 +99,12 @@ export const stair = {
114
99
  geometryId: "dve_quater_cube_south_north",
115
100
  position: [0.5, 0, 0],
116
101
  inputs: {
117
- "@upTex": "@texture",
118
- "@downTex": "@texture",
119
- "@northTex": "@texture",
120
- "@southTex": "@texture",
121
- "@eastTex": "@texture",
122
- "@westTex": "@texture",
102
+ upTex: "@texture",
103
+ downTex: "@texture",
104
+ northTex: "@texture",
105
+ southTex: "@texture",
106
+ eastTex: "@texture",
107
+ westTex: "@texture",
123
108
  },
124
109
  },
125
110
  ],
@@ -129,24 +114,24 @@ export const stair = {
129
114
  geometryId: "dve_half_cube_down_half",
130
115
  position: [0, 0.5, 0],
131
116
  inputs: {
132
- "@upTex": "@texture",
133
- "@downTex": "@texture",
134
- "@northTex": "@texture",
135
- "@southTex": "@texture",
136
- "@eastTex": "@texture",
137
- "@westTex": "@texture",
117
+ upTex: "@texture",
118
+ downTex: "@texture",
119
+ northTex: "@texture",
120
+ southTex: "@texture",
121
+ eastTex: "@texture",
122
+ westTex: "@texture",
138
123
  },
139
124
  },
140
125
  {
141
126
  id: "up",
142
127
  geometryId: "dve_quater_cube_south_north",
143
128
  inputs: {
144
- "@upTex": "@texture",
145
- "@downTex": "@texture",
146
- "@northTex": "@texture",
147
- "@southTex": "@texture",
148
- "@eastTex": "@texture",
149
- "@westTex": "@texture",
129
+ upTex: "@texture",
130
+ downTex: "@texture",
131
+ northTex: "@texture",
132
+ southTex: "@texture",
133
+ eastTex: "@texture",
134
+ westTex: "@texture",
150
135
  },
151
136
  },
152
137
  ],
@@ -155,12 +140,12 @@ export const stair = {
155
140
  id: "base",
156
141
  geometryId: "dve_half_cube_down_half",
157
142
  inputs: {
158
- "@upTex": "@texture",
159
- "@downTex": "@texture",
160
- "@northTex": "@texture",
161
- "@southTex": "@texture",
162
- "@eastTex": "@texture",
163
- "@westTex": "@texture",
143
+ upTex: "@texture",
144
+ downTex: "@texture",
145
+ northTex: "@texture",
146
+ southTex: "@texture",
147
+ eastTex: "@texture",
148
+ westTex: "@texture",
164
149
  },
165
150
  },
166
151
  {
@@ -168,12 +153,12 @@ export const stair = {
168
153
  geometryId: "dve_quater_cube_west_east",
169
154
  position: [0, 0.5, 0.5],
170
155
  inputs: {
171
- "@upTex": "@texture",
172
- "@downTex": "@texture",
173
- "@northTex": "@texture",
174
- "@southTex": "@texture",
175
- "@eastTex": "@texture",
176
- "@westTex": "@texture",
156
+ upTex: "@texture",
157
+ downTex: "@texture",
158
+ northTex: "@texture",
159
+ southTex: "@texture",
160
+ eastTex: "@texture",
161
+ westTex: "@texture",
177
162
  },
178
163
  },
179
164
  ],
@@ -182,12 +167,12 @@ export const stair = {
182
167
  id: "base",
183
168
  geometryId: "dve_half_cube_down_half",
184
169
  inputs: {
185
- "@upTex": "@texture",
186
- "@downTex": "@texture",
187
- "@northTex": "@texture",
188
- "@southTex": "@texture",
189
- "@eastTex": "@texture",
190
- "@westTex": "@texture",
170
+ upTex: "@texture",
171
+ downTex: "@texture",
172
+ northTex: "@texture",
173
+ southTex: "@texture",
174
+ eastTex: "@texture",
175
+ westTex: "@texture",
191
176
  },
192
177
  },
193
178
  {
@@ -195,12 +180,12 @@ export const stair = {
195
180
  geometryId: "dve_quater_cube_west_east",
196
181
  position: [0, 0.5, 0],
197
182
  inputs: {
198
- "@upTex": "@texture",
199
- "@downTex": "@texture",
200
- "@northTex": "@texture",
201
- "@southTex": "@texture",
202
- "@eastTex": "@texture",
203
- "@westTex": "@texture",
183
+ upTex: "@texture",
184
+ downTex: "@texture",
185
+ northTex: "@texture",
186
+ southTex: "@texture",
187
+ eastTex: "@texture",
188
+ westTex: "@texture",
204
189
  },
205
190
  },
206
191
  ],
@@ -209,12 +194,12 @@ export const stair = {
209
194
  id: "base",
210
195
  geometryId: "dve_half_cube_down_half",
211
196
  inputs: {
212
- "@upTex": "@texture",
213
- "@downTex": "@texture",
214
- "@northTex": "@texture",
215
- "@southTex": "@texture",
216
- "@eastTex": "@texture",
217
- "@westTex": "@texture",
197
+ upTex: "@texture",
198
+ downTex: "@texture",
199
+ northTex: "@texture",
200
+ southTex: "@texture",
201
+ eastTex: "@texture",
202
+ westTex: "@texture",
218
203
  },
219
204
  },
220
205
  {
@@ -222,12 +207,12 @@ export const stair = {
222
207
  geometryId: "dve_quater_cube_south_north",
223
208
  position: [0.5, 0.5, 0],
224
209
  inputs: {
225
- "@upTex": "@texture",
226
- "@downTex": "@texture",
227
- "@northTex": "@texture",
228
- "@southTex": "@texture",
229
- "@eastTex": "@texture",
230
- "@westTex": "@texture",
210
+ upTex: "@texture",
211
+ downTex: "@texture",
212
+ northTex: "@texture",
213
+ southTex: "@texture",
214
+ eastTex: "@texture",
215
+ westTex: "@texture",
231
216
  },
232
217
  },
233
218
  ],
@@ -236,12 +221,12 @@ export const stair = {
236
221
  id: "base",
237
222
  geometryId: "dve_half_cube_down_half",
238
223
  inputs: {
239
- "@upTex": "@texture",
240
- "@downTex": "@texture",
241
- "@northTex": "@texture",
242
- "@southTex": "@texture",
243
- "@eastTex": "@texture",
244
- "@westTex": "@texture",
224
+ upTex: "@texture",
225
+ downTex: "@texture",
226
+ northTex: "@texture",
227
+ southTex: "@texture",
228
+ eastTex: "@texture",
229
+ westTex: "@texture",
245
230
  },
246
231
  },
247
232
  {
@@ -249,12 +234,12 @@ export const stair = {
249
234
  geometryId: "dve_quater_cube_south_north",
250
235
  position: [0, 0.5, 0],
251
236
  inputs: {
252
- "@upTex": "@texture",
253
- "@downTex": "@texture",
254
- "@northTex": "@texture",
255
- "@southTex": "@texture",
256
- "@eastTex": "@texture",
257
- "@westTex": "@texture",
237
+ upTex: "@texture",
238
+ downTex: "@texture",
239
+ northTex: "@texture",
240
+ southTex: "@texture",
241
+ eastTex: "@texture",
242
+ westTex: "@texture",
258
243
  },
259
244
  },
260
245
  ],
@@ -264,12 +249,12 @@ export const stair = {
264
249
  position: [0, 0, 0.5],
265
250
  geometryId: "dve_half_cube_south_half",
266
251
  inputs: {
267
- "@upTex": "@texture",
268
- "@downTex": "@texture",
269
- "@northTex": "@texture",
270
- "@southTex": "@texture",
271
- "@eastTex": "@texture",
272
- "@westTex": "@texture",
252
+ upTex: "@texture",
253
+ downTex: "@texture",
254
+ northTex: "@texture",
255
+ southTex: "@texture",
256
+ eastTex: "@texture",
257
+ westTex: "@texture",
273
258
  },
274
259
  },
275
260
  {
@@ -277,12 +262,12 @@ export const stair = {
277
262
  geometryId: "dve_quater_cube_west_east",
278
263
  position: [0, 0.5, 0],
279
264
  inputs: {
280
- "@upTex": "@texture",
281
- "@downTex": "@texture",
282
- "@northTex": "@texture",
283
- "@southTex": "@texture",
284
- "@eastTex": "@texture",
285
- "@westTex": "@texture",
265
+ upTex: "@texture",
266
+ downTex: "@texture",
267
+ northTex: "@texture",
268
+ southTex: "@texture",
269
+ eastTex: "@texture",
270
+ westTex: "@texture",
286
271
  },
287
272
  },
288
273
  ],
@@ -292,24 +277,24 @@ export const stair = {
292
277
  position: [0, 0, 0.5],
293
278
  geometryId: "dve_half_cube_south_half",
294
279
  inputs: {
295
- "@upTex": "@texture",
296
- "@downTex": "@texture",
297
- "@northTex": "@texture",
298
- "@southTex": "@texture",
299
- "@eastTex": "@texture",
300
- "@westTex": "@texture",
280
+ upTex: "@texture",
281
+ downTex: "@texture",
282
+ northTex: "@texture",
283
+ southTex: "@texture",
284
+ eastTex: "@texture",
285
+ westTex: "@texture",
301
286
  },
302
287
  },
303
288
  {
304
289
  id: "up",
305
290
  geometryId: "dve_quater_cube_west_east",
306
291
  inputs: {
307
- "@upTex": "@texture",
308
- "@downTex": "@texture",
309
- "@northTex": "@texture",
310
- "@southTex": "@texture",
311
- "@eastTex": "@texture",
312
- "@westTex": "@texture",
292
+ upTex: "@texture",
293
+ downTex: "@texture",
294
+ northTex: "@texture",
295
+ southTex: "@texture",
296
+ eastTex: "@texture",
297
+ westTex: "@texture",
313
298
  },
314
299
  },
315
300
  ],
@@ -319,12 +304,12 @@ export const stair = {
319
304
  position: [0, 0, 0.5],
320
305
  geometryId: "dve_half_cube_south_half",
321
306
  inputs: {
322
- "@upTex": "@texture",
323
- "@downTex": "@texture",
324
- "@northTex": "@texture",
325
- "@southTex": "@texture",
326
- "@eastTex": "@texture",
327
- "@westTex": "@texture",
307
+ upTex: "@texture",
308
+ downTex: "@texture",
309
+ northTex: "@texture",
310
+ southTex: "@texture",
311
+ eastTex: "@texture",
312
+ westTex: "@texture",
328
313
  },
329
314
  },
330
315
  {
@@ -332,12 +317,12 @@ export const stair = {
332
317
  geometryId: "dve_quater_cube_up_down",
333
318
  position: [0.5, 0, 0],
334
319
  inputs: {
335
- "@upTex": "@texture",
336
- "@downTex": "@texture",
337
- "@northTex": "@texture",
338
- "@southTex": "@texture",
339
- "@eastTex": "@texture",
340
- "@westTex": "@texture",
320
+ upTex: "@texture",
321
+ downTex: "@texture",
322
+ northTex: "@texture",
323
+ southTex: "@texture",
324
+ eastTex: "@texture",
325
+ westTex: "@texture",
341
326
  },
342
327
  },
343
328
  ],
@@ -347,24 +332,24 @@ export const stair = {
347
332
  position: [0, 0, 0.5],
348
333
  geometryId: "dve_half_cube_south_half",
349
334
  inputs: {
350
- "@upTex": "@texture",
351
- "@downTex": "@texture",
352
- "@northTex": "@texture",
353
- "@southTex": "@texture",
354
- "@eastTex": "@texture",
355
- "@westTex": "@texture",
335
+ upTex: "@texture",
336
+ downTex: "@texture",
337
+ northTex: "@texture",
338
+ southTex: "@texture",
339
+ eastTex: "@texture",
340
+ westTex: "@texture",
356
341
  },
357
342
  },
358
343
  {
359
344
  id: "up",
360
345
  geometryId: "dve_quater_cube_up_down",
361
346
  inputs: {
362
- "@upTex": "@texture",
363
- "@downTex": "@texture",
364
- "@northTex": "@texture",
365
- "@southTex": "@texture",
366
- "@eastTex": "@texture",
367
- "@westTex": "@texture",
347
+ upTex: "@texture",
348
+ downTex: "@texture",
349
+ northTex: "@texture",
350
+ southTex: "@texture",
351
+ eastTex: "@texture",
352
+ westTex: "@texture",
368
353
  },
369
354
  },
370
355
  ],
@@ -373,12 +358,12 @@ export const stair = {
373
358
  id: "base",
374
359
  geometryId: "dve_half_cube_south_half",
375
360
  inputs: {
376
- "@upTex": "@texture",
377
- "@downTex": "@texture",
378
- "@northTex": "@texture",
379
- "@southTex": "@texture",
380
- "@eastTex": "@texture",
381
- "@westTex": "@texture",
361
+ upTex: "@texture",
362
+ downTex: "@texture",
363
+ northTex: "@texture",
364
+ southTex: "@texture",
365
+ eastTex: "@texture",
366
+ westTex: "@texture",
382
367
  },
383
368
  },
384
369
  {
@@ -386,12 +371,12 @@ export const stair = {
386
371
  geometryId: "dve_quater_cube_west_east",
387
372
  position: [0, 0.5, 0.5],
388
373
  inputs: {
389
- "@upTex": "@texture",
390
- "@downTex": "@texture",
391
- "@northTex": "@texture",
392
- "@southTex": "@texture",
393
- "@eastTex": "@texture",
394
- "@westTex": "@texture",
374
+ upTex: "@texture",
375
+ downTex: "@texture",
376
+ northTex: "@texture",
377
+ southTex: "@texture",
378
+ eastTex: "@texture",
379
+ westTex: "@texture",
395
380
  },
396
381
  },
397
382
  ],
@@ -400,12 +385,12 @@ export const stair = {
400
385
  id: "base",
401
386
  geometryId: "dve_half_cube_south_half",
402
387
  inputs: {
403
- "@upTex": "@texture",
404
- "@downTex": "@texture",
405
- "@northTex": "@texture",
406
- "@southTex": "@texture",
407
- "@eastTex": "@texture",
408
- "@westTex": "@texture",
388
+ upTex: "@texture",
389
+ downTex: "@texture",
390
+ northTex: "@texture",
391
+ southTex: "@texture",
392
+ eastTex: "@texture",
393
+ westTex: "@texture",
409
394
  },
410
395
  },
411
396
  {
@@ -413,12 +398,12 @@ export const stair = {
413
398
  geometryId: "dve_quater_cube_west_east",
414
399
  position: [0, 0, 0.5],
415
400
  inputs: {
416
- "@upTex": "@texture",
417
- "@downTex": "@texture",
418
- "@northTex": "@texture",
419
- "@southTex": "@texture",
420
- "@eastTex": "@texture",
421
- "@westTex": "@texture",
401
+ upTex: "@texture",
402
+ downTex: "@texture",
403
+ northTex: "@texture",
404
+ southTex: "@texture",
405
+ eastTex: "@texture",
406
+ westTex: "@texture",
422
407
  },
423
408
  },
424
409
  ],
@@ -427,12 +412,12 @@ export const stair = {
427
412
  id: "base",
428
413
  geometryId: "dve_half_cube_south_half",
429
414
  inputs: {
430
- "@upTex": "@texture",
431
- "@downTex": "@texture",
432
- "@northTex": "@texture",
433
- "@southTex": "@texture",
434
- "@eastTex": "@texture",
435
- "@westTex": "@texture",
415
+ upTex: "@texture",
416
+ downTex: "@texture",
417
+ northTex: "@texture",
418
+ southTex: "@texture",
419
+ eastTex: "@texture",
420
+ westTex: "@texture",
436
421
  },
437
422
  },
438
423
  {
@@ -440,12 +425,12 @@ export const stair = {
440
425
  geometryId: "dve_quater_cube_up_down",
441
426
  position: [0.5, 0, 0.5],
442
427
  inputs: {
443
- "@upTex": "@texture",
444
- "@downTex": "@texture",
445
- "@northTex": "@texture",
446
- "@southTex": "@texture",
447
- "@eastTex": "@texture",
448
- "@westTex": "@texture",
428
+ upTex: "@texture",
429
+ downTex: "@texture",
430
+ northTex: "@texture",
431
+ southTex: "@texture",
432
+ eastTex: "@texture",
433
+ westTex: "@texture",
449
434
  },
450
435
  },
451
436
  ],
@@ -454,12 +439,12 @@ export const stair = {
454
439
  id: "base",
455
440
  geometryId: "dve_half_cube_south_half",
456
441
  inputs: {
457
- "@upTex": "@texture",
458
- "@downTex": "@texture",
459
- "@northTex": "@texture",
460
- "@southTex": "@texture",
461
- "@eastTex": "@texture",
462
- "@westTex": "@texture",
442
+ upTex: "@texture",
443
+ downTex: "@texture",
444
+ northTex: "@texture",
445
+ southTex: "@texture",
446
+ eastTex: "@texture",
447
+ westTex: "@texture",
463
448
  },
464
449
  },
465
450
  {
@@ -467,12 +452,12 @@ export const stair = {
467
452
  geometryId: "dve_quater_cube_up_down",
468
453
  position: [0, 0, 0.5],
469
454
  inputs: {
470
- "@upTex": "@texture",
471
- "@downTex": "@texture",
472
- "@northTex": "@texture",
473
- "@southTex": "@texture",
474
- "@eastTex": "@texture",
475
- "@westTex": "@texture",
455
+ upTex: "@texture",
456
+ downTex: "@texture",
457
+ northTex: "@texture",
458
+ southTex: "@texture",
459
+ eastTex: "@texture",
460
+ westTex: "@texture",
476
461
  },
477
462
  },
478
463
  ],
@@ -482,12 +467,12 @@ export const stair = {
482
467
  geometryId: "dve_half_cube_west_half",
483
468
  position: [0.5, 0, 0],
484
469
  inputs: {
485
- "@upTex": "@texture",
486
- "@downTex": "@texture",
487
- "@northTex": "@texture",
488
- "@southTex": "@texture",
489
- "@eastTex": "@texture",
490
- "@westTex": "@texture",
470
+ upTex: "@texture",
471
+ downTex: "@texture",
472
+ northTex: "@texture",
473
+ southTex: "@texture",
474
+ eastTex: "@texture",
475
+ westTex: "@texture",
491
476
  },
492
477
  },
493
478
  {
@@ -495,12 +480,12 @@ export const stair = {
495
480
  geometryId: "dve_quater_cube_south_north",
496
481
  position: [0, 0.5, 0],
497
482
  inputs: {
498
- "@upTex": "@texture",
499
- "@downTex": "@texture",
500
- "@northTex": "@texture",
501
- "@southTex": "@texture",
502
- "@eastTex": "@texture",
503
- "@westTex": "@texture",
483
+ upTex: "@texture",
484
+ downTex: "@texture",
485
+ northTex: "@texture",
486
+ southTex: "@texture",
487
+ eastTex: "@texture",
488
+ westTex: "@texture",
504
489
  },
505
490
  },
506
491
  ],
@@ -510,12 +495,12 @@ export const stair = {
510
495
  geometryId: "dve_half_cube_west_half",
511
496
  position: [0.5, 0, 0],
512
497
  inputs: {
513
- "@upTex": "@texture",
514
- "@downTex": "@texture",
515
- "@northTex": "@texture",
516
- "@southTex": "@texture",
517
- "@eastTex": "@texture",
518
- "@westTex": "@texture",
498
+ upTex: "@texture",
499
+ downTex: "@texture",
500
+ northTex: "@texture",
501
+ southTex: "@texture",
502
+ eastTex: "@texture",
503
+ westTex: "@texture",
519
504
  },
520
505
  },
521
506
  {
@@ -523,12 +508,12 @@ export const stair = {
523
508
  geometryId: "dve_quater_cube_south_north",
524
509
  position: [0, 0, 0],
525
510
  inputs: {
526
- "@upTex": "@texture",
527
- "@downTex": "@texture",
528
- "@northTex": "@texture",
529
- "@southTex": "@texture",
530
- "@eastTex": "@texture",
531
- "@westTex": "@texture",
511
+ upTex: "@texture",
512
+ downTex: "@texture",
513
+ northTex: "@texture",
514
+ southTex: "@texture",
515
+ eastTex: "@texture",
516
+ westTex: "@texture",
532
517
  },
533
518
  },
534
519
  ],
@@ -538,12 +523,12 @@ export const stair = {
538
523
  geometryId: "dve_half_cube_west_half",
539
524
  position: [0.5, 0, 0],
540
525
  inputs: {
541
- "@upTex": "@texture",
542
- "@downTex": "@texture",
543
- "@northTex": "@texture",
544
- "@southTex": "@texture",
545
- "@eastTex": "@texture",
546
- "@westTex": "@texture",
526
+ upTex: "@texture",
527
+ downTex: "@texture",
528
+ northTex: "@texture",
529
+ southTex: "@texture",
530
+ eastTex: "@texture",
531
+ westTex: "@texture",
547
532
  },
548
533
  },
549
534
  {
@@ -551,12 +536,12 @@ export const stair = {
551
536
  geometryId: "dve_quater_cube_up_down",
552
537
  position: [0, 0, 0.5],
553
538
  inputs: {
554
- "@upTex": "@texture",
555
- "@downTex": "@texture",
556
- "@northTex": "@texture",
557
- "@southTex": "@texture",
558
- "@eastTex": "@texture",
559
- "@westTex": "@texture",
539
+ upTex: "@texture",
540
+ downTex: "@texture",
541
+ northTex: "@texture",
542
+ southTex: "@texture",
543
+ eastTex: "@texture",
544
+ westTex: "@texture",
560
545
  },
561
546
  },
562
547
  ],
@@ -566,12 +551,12 @@ export const stair = {
566
551
  geometryId: "dve_half_cube_west_half",
567
552
  position: [0.5, 0, 0],
568
553
  inputs: {
569
- "@upTex": "@texture",
570
- "@downTex": "@texture",
571
- "@northTex": "@texture",
572
- "@southTex": "@texture",
573
- "@eastTex": "@texture",
574
- "@westTex": "@texture",
554
+ upTex: "@texture",
555
+ downTex: "@texture",
556
+ northTex: "@texture",
557
+ southTex: "@texture",
558
+ eastTex: "@texture",
559
+ westTex: "@texture",
575
560
  },
576
561
  },
577
562
  {
@@ -579,12 +564,12 @@ export const stair = {
579
564
  geometryId: "dve_quater_cube_up_down",
580
565
  position: [0, 0, 0],
581
566
  inputs: {
582
- "@upTex": "@texture",
583
- "@downTex": "@texture",
584
- "@northTex": "@texture",
585
- "@southTex": "@texture",
586
- "@eastTex": "@texture",
587
- "@westTex": "@texture",
567
+ upTex: "@texture",
568
+ downTex: "@texture",
569
+ northTex: "@texture",
570
+ southTex: "@texture",
571
+ eastTex: "@texture",
572
+ westTex: "@texture",
588
573
  },
589
574
  },
590
575
  ],
@@ -593,12 +578,12 @@ export const stair = {
593
578
  id: "base",
594
579
  geometryId: "dve_half_cube_west_half",
595
580
  inputs: {
596
- "@upTex": "@texture",
597
- "@downTex": "@texture",
598
- "@northTex": "@texture",
599
- "@southTex": "@texture",
600
- "@eastTex": "@texture",
601
- "@westTex": "@texture",
581
+ upTex: "@texture",
582
+ downTex: "@texture",
583
+ northTex: "@texture",
584
+ southTex: "@texture",
585
+ eastTex: "@texture",
586
+ westTex: "@texture",
602
587
  },
603
588
  },
604
589
  {
@@ -606,12 +591,12 @@ export const stair = {
606
591
  geometryId: "dve_quater_cube_south_north",
607
592
  position: [0.5, 0.5, 0],
608
593
  inputs: {
609
- "@upTex": "@texture",
610
- "@downTex": "@texture",
611
- "@northTex": "@texture",
612
- "@southTex": "@texture",
613
- "@eastTex": "@texture",
614
- "@westTex": "@texture",
594
+ upTex: "@texture",
595
+ downTex: "@texture",
596
+ northTex: "@texture",
597
+ southTex: "@texture",
598
+ eastTex: "@texture",
599
+ westTex: "@texture",
615
600
  },
616
601
  },
617
602
  ],
@@ -620,12 +605,12 @@ export const stair = {
620
605
  id: "base",
621
606
  geometryId: "dve_half_cube_west_half",
622
607
  inputs: {
623
- "@upTex": "@texture",
624
- "@downTex": "@texture",
625
- "@northTex": "@texture",
626
- "@southTex": "@texture",
627
- "@eastTex": "@texture",
628
- "@westTex": "@texture",
608
+ upTex: "@texture",
609
+ downTex: "@texture",
610
+ northTex: "@texture",
611
+ southTex: "@texture",
612
+ eastTex: "@texture",
613
+ westTex: "@texture",
629
614
  },
630
615
  },
631
616
  {
@@ -633,12 +618,12 @@ export const stair = {
633
618
  geometryId: "dve_quater_cube_south_north",
634
619
  position: [0.5, 0, 0],
635
620
  inputs: {
636
- "@upTex": "@texture",
637
- "@downTex": "@texture",
638
- "@northTex": "@texture",
639
- "@southTex": "@texture",
640
- "@eastTex": "@texture",
641
- "@westTex": "@texture",
621
+ upTex: "@texture",
622
+ downTex: "@texture",
623
+ northTex: "@texture",
624
+ southTex: "@texture",
625
+ eastTex: "@texture",
626
+ westTex: "@texture",
642
627
  },
643
628
  },
644
629
  ],
@@ -647,12 +632,12 @@ export const stair = {
647
632
  id: "base",
648
633
  geometryId: "dve_half_cube_west_half",
649
634
  inputs: {
650
- "@upTex": "@texture",
651
- "@downTex": "@texture",
652
- "@northTex": "@texture",
653
- "@southTex": "@texture",
654
- "@eastTex": "@texture",
655
- "@westTex": "@texture",
635
+ upTex: "@texture",
636
+ downTex: "@texture",
637
+ northTex: "@texture",
638
+ southTex: "@texture",
639
+ eastTex: "@texture",
640
+ westTex: "@texture",
656
641
  },
657
642
  },
658
643
  {
@@ -660,12 +645,12 @@ export const stair = {
660
645
  geometryId: "dve_quater_cube_up_down",
661
646
  position: [0.5, 0, 0.5],
662
647
  inputs: {
663
- "@upTex": "@texture",
664
- "@downTex": "@texture",
665
- "@northTex": "@texture",
666
- "@southTex": "@texture",
667
- "@eastTex": "@texture",
668
- "@westTex": "@texture",
648
+ upTex: "@texture",
649
+ downTex: "@texture",
650
+ northTex: "@texture",
651
+ southTex: "@texture",
652
+ eastTex: "@texture",
653
+ westTex: "@texture",
669
654
  },
670
655
  },
671
656
  ],
@@ -674,12 +659,12 @@ export const stair = {
674
659
  id: "base",
675
660
  geometryId: "dve_half_cube_west_half",
676
661
  inputs: {
677
- "@upTex": "@texture",
678
- "@downTex": "@texture",
679
- "@northTex": "@texture",
680
- "@southTex": "@texture",
681
- "@eastTex": "@texture",
682
- "@westTex": "@texture",
662
+ upTex: "@texture",
663
+ downTex: "@texture",
664
+ northTex: "@texture",
665
+ southTex: "@texture",
666
+ eastTex: "@texture",
667
+ westTex: "@texture",
683
668
  },
684
669
  },
685
670
  {
@@ -687,12 +672,12 @@ export const stair = {
687
672
  geometryId: "dve_quater_cube_up_down",
688
673
  position: [0.5, 0, 0],
689
674
  inputs: {
690
- "@upTex": "@texture",
691
- "@downTex": "@texture",
692
- "@northTex": "@texture",
693
- "@southTex": "@texture",
694
- "@eastTex": "@texture",
695
- "@westTex": "@texture",
675
+ upTex: "@texture",
676
+ downTex: "@texture",
677
+ northTex: "@texture",
678
+ southTex: "@texture",
679
+ eastTex: "@texture",
680
+ westTex: "@texture",
696
681
  },
697
682
  },
698
683
  ],
@@ -703,12 +688,12 @@ export const stair = {
703
688
  geometryId: "dve_half_cube_down_half",
704
689
  position: [0, 0.5, 0],
705
690
  inputs: {
706
- "@upTex": "@texture",
707
- "@downTex": "@texture",
708
- "@northTex": "@texture",
709
- "@southTex": "@texture",
710
- "@eastTex": "@texture",
711
- "@westTex": "@texture",
691
+ upTex: "@texture",
692
+ downTex: "@texture",
693
+ northTex: "@texture",
694
+ southTex: "@texture",
695
+ eastTex: "@texture",
696
+ westTex: "@texture",
712
697
  },
713
698
  },
714
699
  {
@@ -716,12 +701,12 @@ export const stair = {
716
701
  geometryId: "dve_eighth_cube",
717
702
  position: [0.5, 0, 0.5],
718
703
  inputs: {
719
- "@upTex": "@texture",
720
- "@downTex": "@texture",
721
- "@northTex": "@texture",
722
- "@southTex": "@texture",
723
- "@eastTex": "@texture",
724
- "@westTex": "@texture",
704
+ upTex: "@texture",
705
+ downTex: "@texture",
706
+ northTex: "@texture",
707
+ southTex: "@texture",
708
+ eastTex: "@texture",
709
+ westTex: "@texture",
725
710
  },
726
711
  },
727
712
  ],
@@ -731,12 +716,12 @@ export const stair = {
731
716
  geometryId: "dve_half_cube_down_half",
732
717
  position: [0, 0.5, 0],
733
718
  inputs: {
734
- "@upTex": "@texture",
735
- "@downTex": "@texture",
736
- "@northTex": "@texture",
737
- "@southTex": "@texture",
738
- "@eastTex": "@texture",
739
- "@westTex": "@texture",
719
+ upTex: "@texture",
720
+ downTex: "@texture",
721
+ northTex: "@texture",
722
+ southTex: "@texture",
723
+ eastTex: "@texture",
724
+ westTex: "@texture",
740
725
  },
741
726
  },
742
727
  {
@@ -744,12 +729,12 @@ export const stair = {
744
729
  geometryId: "dve_eighth_cube",
745
730
  position: [0, 0, 0.5],
746
731
  inputs: {
747
- "@upTex": "@texture",
748
- "@downTex": "@texture",
749
- "@northTex": "@texture",
750
- "@southTex": "@texture",
751
- "@eastTex": "@texture",
752
- "@westTex": "@texture",
732
+ upTex: "@texture",
733
+ downTex: "@texture",
734
+ northTex: "@texture",
735
+ southTex: "@texture",
736
+ eastTex: "@texture",
737
+ westTex: "@texture",
753
738
  },
754
739
  },
755
740
  ],
@@ -759,12 +744,12 @@ export const stair = {
759
744
  geometryId: "dve_half_cube_down_half",
760
745
  position: [0, 0.5, 0],
761
746
  inputs: {
762
- "@upTex": "@texture",
763
- "@downTex": "@texture",
764
- "@northTex": "@texture",
765
- "@southTex": "@texture",
766
- "@eastTex": "@texture",
767
- "@westTex": "@texture",
747
+ upTex: "@texture",
748
+ downTex: "@texture",
749
+ northTex: "@texture",
750
+ southTex: "@texture",
751
+ eastTex: "@texture",
752
+ westTex: "@texture",
768
753
  },
769
754
  },
770
755
  {
@@ -772,12 +757,12 @@ export const stair = {
772
757
  geometryId: "dve_eighth_cube",
773
758
  position: [0.5, 0, 0],
774
759
  inputs: {
775
- "@upTex": "@texture",
776
- "@downTex": "@texture",
777
- "@northTex": "@texture",
778
- "@southTex": "@texture",
779
- "@eastTex": "@texture",
780
- "@westTex": "@texture",
760
+ upTex: "@texture",
761
+ downTex: "@texture",
762
+ northTex: "@texture",
763
+ southTex: "@texture",
764
+ eastTex: "@texture",
765
+ westTex: "@texture",
781
766
  },
782
767
  },
783
768
  ],
@@ -787,24 +772,24 @@ export const stair = {
787
772
  geometryId: "dve_half_cube_down_half",
788
773
  position: [0, 0.5, 0],
789
774
  inputs: {
790
- "@upTex": "@texture",
791
- "@downTex": "@texture",
792
- "@northTex": "@texture",
793
- "@southTex": "@texture",
794
- "@eastTex": "@texture",
795
- "@westTex": "@texture",
775
+ upTex: "@texture",
776
+ downTex: "@texture",
777
+ northTex: "@texture",
778
+ southTex: "@texture",
779
+ eastTex: "@texture",
780
+ westTex: "@texture",
796
781
  },
797
782
  },
798
783
  {
799
784
  id: "up",
800
785
  geometryId: "dve_eighth_cube",
801
786
  inputs: {
802
- "@upTex": "@texture",
803
- "@downTex": "@texture",
804
- "@northTex": "@texture",
805
- "@southTex": "@texture",
806
- "@eastTex": "@texture",
807
- "@westTex": "@texture",
787
+ upTex: "@texture",
788
+ downTex: "@texture",
789
+ northTex: "@texture",
790
+ southTex: "@texture",
791
+ eastTex: "@texture",
792
+ westTex: "@texture",
808
793
  },
809
794
  },
810
795
  ],
@@ -813,12 +798,12 @@ export const stair = {
813
798
  id: "base",
814
799
  geometryId: "dve_half_cube_down_half",
815
800
  inputs: {
816
- "@upTex": "@texture",
817
- "@downTex": "@texture",
818
- "@northTex": "@texture",
819
- "@southTex": "@texture",
820
- "@eastTex": "@texture",
821
- "@westTex": "@texture",
801
+ upTex: "@texture",
802
+ downTex: "@texture",
803
+ northTex: "@texture",
804
+ southTex: "@texture",
805
+ eastTex: "@texture",
806
+ westTex: "@texture",
822
807
  },
823
808
  },
824
809
  {
@@ -826,12 +811,12 @@ export const stair = {
826
811
  geometryId: "dve_eighth_cube",
827
812
  position: [0.5, 0.5, 0.5],
828
813
  inputs: {
829
- "@upTex": "@texture",
830
- "@downTex": "@texture",
831
- "@northTex": "@texture",
832
- "@southTex": "@texture",
833
- "@eastTex": "@texture",
834
- "@westTex": "@texture",
814
+ upTex: "@texture",
815
+ downTex: "@texture",
816
+ northTex: "@texture",
817
+ southTex: "@texture",
818
+ eastTex: "@texture",
819
+ westTex: "@texture",
835
820
  },
836
821
  },
837
822
  ],
@@ -840,12 +825,12 @@ export const stair = {
840
825
  id: "base",
841
826
  geometryId: "dve_half_cube_down_half",
842
827
  inputs: {
843
- "@upTex": "@texture",
844
- "@downTex": "@texture",
845
- "@northTex": "@texture",
846
- "@southTex": "@texture",
847
- "@eastTex": "@texture",
848
- "@westTex": "@texture",
828
+ upTex: "@texture",
829
+ downTex: "@texture",
830
+ northTex: "@texture",
831
+ southTex: "@texture",
832
+ eastTex: "@texture",
833
+ westTex: "@texture",
849
834
  },
850
835
  },
851
836
  {
@@ -853,12 +838,12 @@ export const stair = {
853
838
  geometryId: "dve_eighth_cube",
854
839
  position: [0, 0.5, 0.5],
855
840
  inputs: {
856
- "@upTex": "@texture",
857
- "@downTex": "@texture",
858
- "@northTex": "@texture",
859
- "@southTex": "@texture",
860
- "@eastTex": "@texture",
861
- "@westTex": "@texture",
841
+ upTex: "@texture",
842
+ downTex: "@texture",
843
+ northTex: "@texture",
844
+ southTex: "@texture",
845
+ eastTex: "@texture",
846
+ westTex: "@texture",
862
847
  },
863
848
  },
864
849
  ],
@@ -867,12 +852,12 @@ export const stair = {
867
852
  id: "base",
868
853
  geometryId: "dve_half_cube_down_half",
869
854
  inputs: {
870
- "@upTex": "@texture",
871
- "@downTex": "@texture",
872
- "@northTex": "@texture",
873
- "@southTex": "@texture",
874
- "@eastTex": "@texture",
875
- "@westTex": "@texture",
855
+ upTex: "@texture",
856
+ downTex: "@texture",
857
+ northTex: "@texture",
858
+ southTex: "@texture",
859
+ eastTex: "@texture",
860
+ westTex: "@texture",
876
861
  },
877
862
  },
878
863
  {
@@ -880,12 +865,12 @@ export const stair = {
880
865
  geometryId: "dve_eighth_cube",
881
866
  position: [0.5, 0.5, 0],
882
867
  inputs: {
883
- "@upTex": "@texture",
884
- "@downTex": "@texture",
885
- "@northTex": "@texture",
886
- "@southTex": "@texture",
887
- "@eastTex": "@texture",
888
- "@westTex": "@texture",
868
+ upTex: "@texture",
869
+ downTex: "@texture",
870
+ northTex: "@texture",
871
+ southTex: "@texture",
872
+ eastTex: "@texture",
873
+ westTex: "@texture",
889
874
  },
890
875
  },
891
876
  ],
@@ -894,12 +879,12 @@ export const stair = {
894
879
  id: "base",
895
880
  geometryId: "dve_half_cube_down_half",
896
881
  inputs: {
897
- "@upTex": "@texture",
898
- "@downTex": "@texture",
899
- "@northTex": "@texture",
900
- "@southTex": "@texture",
901
- "@eastTex": "@texture",
902
- "@westTex": "@texture",
882
+ upTex: "@texture",
883
+ downTex: "@texture",
884
+ northTex: "@texture",
885
+ southTex: "@texture",
886
+ eastTex: "@texture",
887
+ westTex: "@texture",
903
888
  },
904
889
  },
905
890
  {
@@ -907,12 +892,12 @@ export const stair = {
907
892
  geometryId: "dve_eighth_cube",
908
893
  position: [0, 0.5, 0],
909
894
  inputs: {
910
- "@upTex": "@texture",
911
- "@downTex": "@texture",
912
- "@northTex": "@texture",
913
- "@southTex": "@texture",
914
- "@eastTex": "@texture",
915
- "@westTex": "@texture",
895
+ upTex: "@texture",
896
+ downTex: "@texture",
897
+ northTex: "@texture",
898
+ southTex: "@texture",
899
+ eastTex: "@texture",
900
+ westTex: "@texture",
916
901
  },
917
902
  },
918
903
  ],
@@ -922,12 +907,12 @@ export const stair = {
922
907
  position: [0, 0, 0.5],
923
908
  geometryId: "dve_half_cube_south_half",
924
909
  inputs: {
925
- "@upTex": "@texture",
926
- "@downTex": "@texture",
927
- "@northTex": "@texture",
928
- "@southTex": "@texture",
929
- "@eastTex": "@texture",
930
- "@westTex": "@texture",
910
+ upTex: "@texture",
911
+ downTex: "@texture",
912
+ northTex: "@texture",
913
+ southTex: "@texture",
914
+ eastTex: "@texture",
915
+ westTex: "@texture",
931
916
  },
932
917
  },
933
918
  {
@@ -935,12 +920,12 @@ export const stair = {
935
920
  geometryId: "dve_eighth_cube",
936
921
  position: [0.5, 0.5, 0],
937
922
  inputs: {
938
- "@upTex": "@texture",
939
- "@downTex": "@texture",
940
- "@northTex": "@texture",
941
- "@southTex": "@texture",
942
- "@eastTex": "@texture",
943
- "@westTex": "@texture",
923
+ upTex: "@texture",
924
+ downTex: "@texture",
925
+ northTex: "@texture",
926
+ southTex: "@texture",
927
+ eastTex: "@texture",
928
+ westTex: "@texture",
944
929
  },
945
930
  },
946
931
  ],
@@ -950,12 +935,12 @@ export const stair = {
950
935
  position: [0, 0, 0.5],
951
936
  geometryId: "dve_half_cube_south_half",
952
937
  inputs: {
953
- "@upTex": "@texture",
954
- "@downTex": "@texture",
955
- "@northTex": "@texture",
956
- "@southTex": "@texture",
957
- "@eastTex": "@texture",
958
- "@westTex": "@texture",
938
+ upTex: "@texture",
939
+ downTex: "@texture",
940
+ northTex: "@texture",
941
+ southTex: "@texture",
942
+ eastTex: "@texture",
943
+ westTex: "@texture",
959
944
  },
960
945
  },
961
946
  {
@@ -963,12 +948,12 @@ export const stair = {
963
948
  geometryId: "dve_eighth_cube",
964
949
  position: [0, 0.5, 0],
965
950
  inputs: {
966
- "@upTex": "@texture",
967
- "@downTex": "@texture",
968
- "@northTex": "@texture",
969
- "@southTex": "@texture",
970
- "@eastTex": "@texture",
971
- "@westTex": "@texture",
951
+ upTex: "@texture",
952
+ downTex: "@texture",
953
+ northTex: "@texture",
954
+ southTex: "@texture",
955
+ eastTex: "@texture",
956
+ westTex: "@texture",
972
957
  },
973
958
  },
974
959
  ],
@@ -978,12 +963,12 @@ export const stair = {
978
963
  position: [0, 0, 0.5],
979
964
  geometryId: "dve_half_cube_south_half",
980
965
  inputs: {
981
- "@upTex": "@texture",
982
- "@downTex": "@texture",
983
- "@northTex": "@texture",
984
- "@southTex": "@texture",
985
- "@eastTex": "@texture",
986
- "@westTex": "@texture",
966
+ upTex: "@texture",
967
+ downTex: "@texture",
968
+ northTex: "@texture",
969
+ southTex: "@texture",
970
+ eastTex: "@texture",
971
+ westTex: "@texture",
987
972
  },
988
973
  },
989
974
  {
@@ -991,12 +976,12 @@ export const stair = {
991
976
  geometryId: "dve_eighth_cube",
992
977
  position: [0.5, 0, 0],
993
978
  inputs: {
994
- "@upTex": "@texture",
995
- "@downTex": "@texture",
996
- "@northTex": "@texture",
997
- "@southTex": "@texture",
998
- "@eastTex": "@texture",
999
- "@westTex": "@texture",
979
+ upTex: "@texture",
980
+ downTex: "@texture",
981
+ northTex: "@texture",
982
+ southTex: "@texture",
983
+ eastTex: "@texture",
984
+ westTex: "@texture",
1000
985
  },
1001
986
  },
1002
987
  ],
@@ -1006,24 +991,24 @@ export const stair = {
1006
991
  position: [0, 0, 0.5],
1007
992
  geometryId: "dve_half_cube_south_half",
1008
993
  inputs: {
1009
- "@upTex": "@texture",
1010
- "@downTex": "@texture",
1011
- "@northTex": "@texture",
1012
- "@southTex": "@texture",
1013
- "@eastTex": "@texture",
1014
- "@westTex": "@texture",
994
+ upTex: "@texture",
995
+ downTex: "@texture",
996
+ northTex: "@texture",
997
+ southTex: "@texture",
998
+ eastTex: "@texture",
999
+ westTex: "@texture",
1015
1000
  },
1016
1001
  },
1017
1002
  {
1018
1003
  id: "up",
1019
1004
  geometryId: "dve_eighth_cube",
1020
1005
  inputs: {
1021
- "@upTex": "@texture",
1022
- "@downTex": "@texture",
1023
- "@northTex": "@texture",
1024
- "@southTex": "@texture",
1025
- "@eastTex": "@texture",
1026
- "@westTex": "@texture",
1006
+ upTex: "@texture",
1007
+ downTex: "@texture",
1008
+ northTex: "@texture",
1009
+ southTex: "@texture",
1010
+ eastTex: "@texture",
1011
+ westTex: "@texture",
1027
1012
  },
1028
1013
  },
1029
1014
  ],
@@ -1032,12 +1017,12 @@ export const stair = {
1032
1017
  id: "base",
1033
1018
  geometryId: "dve_half_cube_south_half",
1034
1019
  inputs: {
1035
- "@upTex": "@texture",
1036
- "@downTex": "@texture",
1037
- "@northTex": "@texture",
1038
- "@southTex": "@texture",
1039
- "@eastTex": "@texture",
1040
- "@westTex": "@texture",
1020
+ upTex: "@texture",
1021
+ downTex: "@texture",
1022
+ northTex: "@texture",
1023
+ southTex: "@texture",
1024
+ eastTex: "@texture",
1025
+ westTex: "@texture",
1041
1026
  },
1042
1027
  },
1043
1028
  {
@@ -1045,12 +1030,12 @@ export const stair = {
1045
1030
  geometryId: "dve_eighth_cube",
1046
1031
  position: [0.5, 0.5, 0.5],
1047
1032
  inputs: {
1048
- "@upTex": "@texture",
1049
- "@downTex": "@texture",
1050
- "@northTex": "@texture",
1051
- "@southTex": "@texture",
1052
- "@eastTex": "@texture",
1053
- "@westTex": "@texture",
1033
+ upTex: "@texture",
1034
+ downTex: "@texture",
1035
+ northTex: "@texture",
1036
+ southTex: "@texture",
1037
+ eastTex: "@texture",
1038
+ westTex: "@texture",
1054
1039
  },
1055
1040
  },
1056
1041
  ],
@@ -1059,12 +1044,12 @@ export const stair = {
1059
1044
  id: "base",
1060
1045
  geometryId: "dve_half_cube_south_half",
1061
1046
  inputs: {
1062
- "@upTex": "@texture",
1063
- "@downTex": "@texture",
1064
- "@northTex": "@texture",
1065
- "@southTex": "@texture",
1066
- "@eastTex": "@texture",
1067
- "@westTex": "@texture",
1047
+ upTex: "@texture",
1048
+ downTex: "@texture",
1049
+ northTex: "@texture",
1050
+ southTex: "@texture",
1051
+ eastTex: "@texture",
1052
+ westTex: "@texture",
1068
1053
  },
1069
1054
  },
1070
1055
  {
@@ -1072,12 +1057,12 @@ export const stair = {
1072
1057
  geometryId: "dve_eighth_cube",
1073
1058
  position: [0, 0.5, 0.5],
1074
1059
  inputs: {
1075
- "@upTex": "@texture",
1076
- "@downTex": "@texture",
1077
- "@northTex": "@texture",
1078
- "@southTex": "@texture",
1079
- "@eastTex": "@texture",
1080
- "@westTex": "@texture",
1060
+ upTex: "@texture",
1061
+ downTex: "@texture",
1062
+ northTex: "@texture",
1063
+ southTex: "@texture",
1064
+ eastTex: "@texture",
1065
+ westTex: "@texture",
1081
1066
  },
1082
1067
  },
1083
1068
  ],
@@ -1086,12 +1071,12 @@ export const stair = {
1086
1071
  id: "base",
1087
1072
  geometryId: "dve_half_cube_south_half",
1088
1073
  inputs: {
1089
- "@upTex": "@texture",
1090
- "@downTex": "@texture",
1091
- "@northTex": "@texture",
1092
- "@southTex": "@texture",
1093
- "@eastTex": "@texture",
1094
- "@westTex": "@texture",
1074
+ upTex: "@texture",
1075
+ downTex: "@texture",
1076
+ northTex: "@texture",
1077
+ southTex: "@texture",
1078
+ eastTex: "@texture",
1079
+ westTex: "@texture",
1095
1080
  },
1096
1081
  },
1097
1082
  {
@@ -1099,12 +1084,12 @@ export const stair = {
1099
1084
  geometryId: "dve_eighth_cube",
1100
1085
  position: [0.5, 0, 0.5],
1101
1086
  inputs: {
1102
- "@upTex": "@texture",
1103
- "@downTex": "@texture",
1104
- "@northTex": "@texture",
1105
- "@southTex": "@texture",
1106
- "@eastTex": "@texture",
1107
- "@westTex": "@texture",
1087
+ upTex: "@texture",
1088
+ downTex: "@texture",
1089
+ northTex: "@texture",
1090
+ southTex: "@texture",
1091
+ eastTex: "@texture",
1092
+ westTex: "@texture",
1108
1093
  },
1109
1094
  },
1110
1095
  ],
@@ -1113,12 +1098,12 @@ export const stair = {
1113
1098
  id: "base",
1114
1099
  geometryId: "dve_half_cube_south_half",
1115
1100
  inputs: {
1116
- "@upTex": "@texture",
1117
- "@downTex": "@texture",
1118
- "@northTex": "@texture",
1119
- "@southTex": "@texture",
1120
- "@eastTex": "@texture",
1121
- "@westTex": "@texture",
1101
+ upTex: "@texture",
1102
+ downTex: "@texture",
1103
+ northTex: "@texture",
1104
+ southTex: "@texture",
1105
+ eastTex: "@texture",
1106
+ westTex: "@texture",
1122
1107
  },
1123
1108
  },
1124
1109
  {
@@ -1126,12 +1111,12 @@ export const stair = {
1126
1111
  geometryId: "dve_eighth_cube",
1127
1112
  position: [0, 0, 0.5],
1128
1113
  inputs: {
1129
- "@upTex": "@texture",
1130
- "@downTex": "@texture",
1131
- "@northTex": "@texture",
1132
- "@southTex": "@texture",
1133
- "@eastTex": "@texture",
1134
- "@westTex": "@texture",
1114
+ upTex: "@texture",
1115
+ downTex: "@texture",
1116
+ northTex: "@texture",
1117
+ southTex: "@texture",
1118
+ eastTex: "@texture",
1119
+ westTex: "@texture",
1135
1120
  },
1136
1121
  },
1137
1122
  ],
@@ -1141,12 +1126,12 @@ export const stair = {
1141
1126
  geometryId: "dve_half_cube_west_half",
1142
1127
  position: [0.5, 0, 0],
1143
1128
  inputs: {
1144
- "@upTex": "@texture",
1145
- "@downTex": "@texture",
1146
- "@northTex": "@texture",
1147
- "@southTex": "@texture",
1148
- "@eastTex": "@texture",
1149
- "@westTex": "@texture",
1129
+ upTex: "@texture",
1130
+ downTex: "@texture",
1131
+ northTex: "@texture",
1132
+ southTex: "@texture",
1133
+ eastTex: "@texture",
1134
+ westTex: "@texture",
1150
1135
  },
1151
1136
  },
1152
1137
  {
@@ -1154,12 +1139,12 @@ export const stair = {
1154
1139
  geometryId: "dve_eighth_cube",
1155
1140
  position: [0, 0.5, 0.5],
1156
1141
  inputs: {
1157
- "@upTex": "@texture",
1158
- "@downTex": "@texture",
1159
- "@northTex": "@texture",
1160
- "@southTex": "@texture",
1161
- "@eastTex": "@texture",
1162
- "@westTex": "@texture",
1142
+ upTex: "@texture",
1143
+ downTex: "@texture",
1144
+ northTex: "@texture",
1145
+ southTex: "@texture",
1146
+ eastTex: "@texture",
1147
+ westTex: "@texture",
1163
1148
  },
1164
1149
  },
1165
1150
  ],
@@ -1169,12 +1154,12 @@ export const stair = {
1169
1154
  geometryId: "dve_half_cube_west_half",
1170
1155
  position: [0.5, 0, 0],
1171
1156
  inputs: {
1172
- "@upTex": "@texture",
1173
- "@downTex": "@texture",
1174
- "@northTex": "@texture",
1175
- "@southTex": "@texture",
1176
- "@eastTex": "@texture",
1177
- "@westTex": "@texture",
1157
+ upTex: "@texture",
1158
+ downTex: "@texture",
1159
+ northTex: "@texture",
1160
+ southTex: "@texture",
1161
+ eastTex: "@texture",
1162
+ westTex: "@texture",
1178
1163
  },
1179
1164
  },
1180
1165
  {
@@ -1182,12 +1167,12 @@ export const stair = {
1182
1167
  geometryId: "dve_eighth_cube",
1183
1168
  position: [0, 0.5, 0],
1184
1169
  inputs: {
1185
- "@upTex": "@texture",
1186
- "@downTex": "@texture",
1187
- "@northTex": "@texture",
1188
- "@southTex": "@texture",
1189
- "@eastTex": "@texture",
1190
- "@westTex": "@texture",
1170
+ upTex: "@texture",
1171
+ downTex: "@texture",
1172
+ northTex: "@texture",
1173
+ southTex: "@texture",
1174
+ eastTex: "@texture",
1175
+ westTex: "@texture",
1191
1176
  },
1192
1177
  },
1193
1178
  ],
@@ -1197,12 +1182,12 @@ export const stair = {
1197
1182
  geometryId: "dve_half_cube_west_half",
1198
1183
  position: [0.5, 0, 0],
1199
1184
  inputs: {
1200
- "@upTex": "@texture",
1201
- "@downTex": "@texture",
1202
- "@northTex": "@texture",
1203
- "@southTex": "@texture",
1204
- "@eastTex": "@texture",
1205
- "@westTex": "@texture",
1185
+ upTex: "@texture",
1186
+ downTex: "@texture",
1187
+ northTex: "@texture",
1188
+ southTex: "@texture",
1189
+ eastTex: "@texture",
1190
+ westTex: "@texture",
1206
1191
  },
1207
1192
  },
1208
1193
  {
@@ -1210,12 +1195,12 @@ export const stair = {
1210
1195
  geometryId: "dve_eighth_cube",
1211
1196
  position: [0, 0, 0.5],
1212
1197
  inputs: {
1213
- "@upTex": "@texture",
1214
- "@downTex": "@texture",
1215
- "@northTex": "@texture",
1216
- "@southTex": "@texture",
1217
- "@eastTex": "@texture",
1218
- "@westTex": "@texture",
1198
+ upTex: "@texture",
1199
+ downTex: "@texture",
1200
+ northTex: "@texture",
1201
+ southTex: "@texture",
1202
+ eastTex: "@texture",
1203
+ westTex: "@texture",
1219
1204
  },
1220
1205
  },
1221
1206
  ],
@@ -1225,24 +1210,24 @@ export const stair = {
1225
1210
  geometryId: "dve_half_cube_west_half",
1226
1211
  position: [0.5, 0, 0],
1227
1212
  inputs: {
1228
- "@upTex": "@texture",
1229
- "@downTex": "@texture",
1230
- "@northTex": "@texture",
1231
- "@southTex": "@texture",
1232
- "@eastTex": "@texture",
1233
- "@westTex": "@texture",
1213
+ upTex: "@texture",
1214
+ downTex: "@texture",
1215
+ northTex: "@texture",
1216
+ southTex: "@texture",
1217
+ eastTex: "@texture",
1218
+ westTex: "@texture",
1234
1219
  },
1235
1220
  },
1236
1221
  {
1237
1222
  id: "up",
1238
1223
  geometryId: "dve_eighth_cube",
1239
1224
  inputs: {
1240
- "@upTex": "@texture",
1241
- "@downTex": "@texture",
1242
- "@northTex": "@texture",
1243
- "@southTex": "@texture",
1244
- "@eastTex": "@texture",
1245
- "@westTex": "@texture",
1225
+ upTex: "@texture",
1226
+ downTex: "@texture",
1227
+ northTex: "@texture",
1228
+ southTex: "@texture",
1229
+ eastTex: "@texture",
1230
+ westTex: "@texture",
1246
1231
  },
1247
1232
  },
1248
1233
  ],
@@ -1251,12 +1236,12 @@ export const stair = {
1251
1236
  id: "base",
1252
1237
  geometryId: "dve_half_cube_west_half",
1253
1238
  inputs: {
1254
- "@upTex": "@texture",
1255
- "@downTex": "@texture",
1256
- "@northTex": "@texture",
1257
- "@southTex": "@texture",
1258
- "@eastTex": "@texture",
1259
- "@westTex": "@texture",
1239
+ upTex: "@texture",
1240
+ downTex: "@texture",
1241
+ northTex: "@texture",
1242
+ southTex: "@texture",
1243
+ eastTex: "@texture",
1244
+ westTex: "@texture",
1260
1245
  },
1261
1246
  },
1262
1247
  {
@@ -1264,12 +1249,12 @@ export const stair = {
1264
1249
  geometryId: "dve_eighth_cube",
1265
1250
  position: [0.5, 0.5, 0.5],
1266
1251
  inputs: {
1267
- "@upTex": "@texture",
1268
- "@downTex": "@texture",
1269
- "@northTex": "@texture",
1270
- "@southTex": "@texture",
1271
- "@eastTex": "@texture",
1272
- "@westTex": "@texture",
1252
+ upTex: "@texture",
1253
+ downTex: "@texture",
1254
+ northTex: "@texture",
1255
+ southTex: "@texture",
1256
+ eastTex: "@texture",
1257
+ westTex: "@texture",
1273
1258
  },
1274
1259
  },
1275
1260
  ],
@@ -1278,12 +1263,12 @@ export const stair = {
1278
1263
  id: "base",
1279
1264
  geometryId: "dve_half_cube_west_half",
1280
1265
  inputs: {
1281
- "@upTex": "@texture",
1282
- "@downTex": "@texture",
1283
- "@northTex": "@texture",
1284
- "@southTex": "@texture",
1285
- "@eastTex": "@texture",
1286
- "@westTex": "@texture",
1266
+ upTex: "@texture",
1267
+ downTex: "@texture",
1268
+ northTex: "@texture",
1269
+ southTex: "@texture",
1270
+ eastTex: "@texture",
1271
+ westTex: "@texture",
1287
1272
  },
1288
1273
  },
1289
1274
  {
@@ -1291,12 +1276,12 @@ export const stair = {
1291
1276
  geometryId: "dve_eighth_cube",
1292
1277
  position: [0.5, 0.5, 0],
1293
1278
  inputs: {
1294
- "@upTex": "@texture",
1295
- "@downTex": "@texture",
1296
- "@northTex": "@texture",
1297
- "@southTex": "@texture",
1298
- "@eastTex": "@texture",
1299
- "@westTex": "@texture",
1279
+ upTex: "@texture",
1280
+ downTex: "@texture",
1281
+ northTex: "@texture",
1282
+ southTex: "@texture",
1283
+ eastTex: "@texture",
1284
+ westTex: "@texture",
1300
1285
  },
1301
1286
  },
1302
1287
  ],
@@ -1305,12 +1290,12 @@ export const stair = {
1305
1290
  id: "base",
1306
1291
  geometryId: "dve_half_cube_west_half",
1307
1292
  inputs: {
1308
- "@upTex": "@texture",
1309
- "@downTex": "@texture",
1310
- "@northTex": "@texture",
1311
- "@southTex": "@texture",
1312
- "@eastTex": "@texture",
1313
- "@westTex": "@texture",
1293
+ upTex: "@texture",
1294
+ downTex: "@texture",
1295
+ northTex: "@texture",
1296
+ southTex: "@texture",
1297
+ eastTex: "@texture",
1298
+ westTex: "@texture",
1314
1299
  },
1315
1300
  },
1316
1301
  {
@@ -1318,12 +1303,12 @@ export const stair = {
1318
1303
  geometryId: "dve_eighth_cube",
1319
1304
  position: [0.5, 0, 0.5],
1320
1305
  inputs: {
1321
- "@upTex": "@texture",
1322
- "@downTex": "@texture",
1323
- "@northTex": "@texture",
1324
- "@southTex": "@texture",
1325
- "@eastTex": "@texture",
1326
- "@westTex": "@texture",
1306
+ upTex: "@texture",
1307
+ downTex: "@texture",
1308
+ northTex: "@texture",
1309
+ southTex: "@texture",
1310
+ eastTex: "@texture",
1311
+ westTex: "@texture",
1327
1312
  },
1328
1313
  },
1329
1314
  ],
@@ -1332,12 +1317,12 @@ export const stair = {
1332
1317
  id: "base",
1333
1318
  geometryId: "dve_half_cube_west_half",
1334
1319
  inputs: {
1335
- "@upTex": "@texture",
1336
- "@downTex": "@texture",
1337
- "@northTex": "@texture",
1338
- "@southTex": "@texture",
1339
- "@eastTex": "@texture",
1340
- "@westTex": "@texture",
1320
+ upTex: "@texture",
1321
+ downTex: "@texture",
1322
+ northTex: "@texture",
1323
+ southTex: "@texture",
1324
+ eastTex: "@texture",
1325
+ westTex: "@texture",
1341
1326
  },
1342
1327
  },
1343
1328
  {
@@ -1345,12 +1330,12 @@ export const stair = {
1345
1330
  geometryId: "dve_eighth_cube",
1346
1331
  position: [0.5, 0, 0],
1347
1332
  inputs: {
1348
- "@upTex": "@texture",
1349
- "@downTex": "@texture",
1350
- "@northTex": "@texture",
1351
- "@southTex": "@texture",
1352
- "@eastTex": "@texture",
1353
- "@westTex": "@texture",
1333
+ upTex: "@texture",
1334
+ downTex: "@texture",
1335
+ northTex: "@texture",
1336
+ southTex: "@texture",
1337
+ eastTex: "@texture",
1338
+ westTex: "@texture",
1354
1339
  },
1355
1340
  },
1356
1341
  ],