@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,28 +1,16 @@
1
1
  export const simpleThinPannel = {
2
2
  id: "dve_simple_thin_panel",
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: "north",
22
- 1: "south",
23
- 2: "east",
24
- 3: "west",
25
- },
13
+ values: ["north", "south", "east", "west"],
26
14
  },
27
15
  ],
28
16
  arguments: {
@@ -37,24 +25,23 @@ export const simpleThinPannel = {
37
25
  type: "texture",
38
26
  },
39
27
  },
40
- shapeStatesConditonalNodes: {},
41
- // shapeStatesOverrides: {},
42
- shapeStatesNodes: {
28
+ conditonalNodes: {},
29
+ stateNodes: {
43
30
  "placement=down,direction=south": [
44
31
  {
45
32
  id: "cube",
46
33
  geometryId: "dve_thin_panel_down",
47
34
  inputs: {
48
- "@upTex": "@upDownTextures",
49
- "@upTexRotation": 0,
50
- "@upTexTransparent": "@upDownTexturesTransparent",
51
- "@downTex": "@upDownTextures",
52
- "@downTexRotation": 0,
53
- "@downTexTransparent": "@upDownTexturesTransparent",
54
- "@northTex": "@sideTextures",
55
- "@southTex": "@sideTextures",
56
- "@eastTex": "@sideTextures",
57
- "@westTex": "@sideTextures",
35
+ upTex: "@upDownTextures",
36
+ upTexRotation: 0,
37
+ upTexTransparent: "@upDownTexturesTransparent",
38
+ downTex: "@upDownTextures",
39
+ downTexRotation: 0,
40
+ downTexTransparent: "@upDownTexturesTransparent",
41
+ northTex: "@sideTextures",
42
+ southTex: "@sideTextures",
43
+ eastTex: "@sideTextures",
44
+ westTex: "@sideTextures",
58
45
  },
59
46
  },
60
47
  ],
@@ -63,16 +50,16 @@ export const simpleThinPannel = {
63
50
  id: "cube",
64
51
  geometryId: "dve_thin_panel_down",
65
52
  inputs: {
66
- "@upTex": "@upDownTextures",
67
- "@upTexRotation": 180,
68
- "@upTexTransparent": "@upDownTexturesTransparent",
69
- "@downTex": "@upDownTextures",
70
- "@downTexRotation": 180,
71
- "@downTexTransparent": "@upDownTexturesTransparent",
72
- "@northTex": "@sideTextures",
73
- "@southTex": "@sideTextures",
74
- "@eastTex": "@sideTextures",
75
- "@westTex": "@sideTextures",
53
+ upTex: "@upDownTextures",
54
+ upTexRotation: 180,
55
+ upTexTransparent: "@upDownTexturesTransparent",
56
+ downTex: "@upDownTextures",
57
+ downTexRotation: 180,
58
+ downTexTransparent: "@upDownTexturesTransparent",
59
+ northTex: "@sideTextures",
60
+ southTex: "@sideTextures",
61
+ eastTex: "@sideTextures",
62
+ westTex: "@sideTextures",
76
63
  },
77
64
  },
78
65
  ],
@@ -81,16 +68,16 @@ export const simpleThinPannel = {
81
68
  id: "cube",
82
69
  geometryId: "dve_thin_panel_down",
83
70
  inputs: {
84
- "@upTex": "@upDownTextures",
85
- "@upTexRotation": 90,
86
- "@upTexTransparent": "@upDownTexturesTransparent",
87
- "@downTex": "@upDownTextures",
88
- "@downTexRotation": 90,
89
- "@downTexTransparent": "@upDownTexturesTransparent",
90
- "@northTex": "@sideTextures",
91
- "@southTex": "@sideTextures",
92
- "@eastTex": "@sideTextures",
93
- "@westTex": "@sideTextures",
71
+ upTex: "@upDownTextures",
72
+ upTexRotation: 90,
73
+ upTexTransparent: "@upDownTexturesTransparent",
74
+ downTex: "@upDownTextures",
75
+ downTexRotation: 90,
76
+ downTexTransparent: "@upDownTexturesTransparent",
77
+ northTex: "@sideTextures",
78
+ southTex: "@sideTextures",
79
+ eastTex: "@sideTextures",
80
+ westTex: "@sideTextures",
94
81
  },
95
82
  },
96
83
  ],
@@ -99,16 +86,16 @@ export const simpleThinPannel = {
99
86
  id: "cube",
100
87
  geometryId: "dve_thin_panel_down",
101
88
  inputs: {
102
- "@upTex": "@upDownTextures",
103
- "@upTexRotation": 270,
104
- "@upTexTransparent": "@upDownTexturesTransparent",
105
- "@downTex": "@upDownTextures",
106
- "@downTexRotation": 270,
107
- "@downTexTransparent": "@upDownTexturesTransparent",
108
- "@northTex": "@sideTextures",
109
- "@southTex": "@sideTextures",
110
- "@eastTex": "@sideTextures",
111
- "@westTex": "@sideTextures",
89
+ upTex: "@upDownTextures",
90
+ upTexRotation: 270,
91
+ upTexTransparent: "@upDownTexturesTransparent",
92
+ downTex: "@upDownTextures",
93
+ downTexRotation: 270,
94
+ downTexTransparent: "@upDownTexturesTransparent",
95
+ northTex: "@sideTextures",
96
+ southTex: "@sideTextures",
97
+ eastTex: "@sideTextures",
98
+ westTex: "@sideTextures",
112
99
  },
113
100
  },
114
101
  ],
@@ -118,16 +105,16 @@ export const simpleThinPannel = {
118
105
  geometryId: "dve_thin_panel_down",
119
106
  position: [0, 1 - 3 / 16, 0],
120
107
  inputs: {
121
- "@upTex": "@upDownTextures",
122
- "@upTexRotation": 180,
123
- "@upTexTransparent": "@upDownTexturesTransparent",
124
- "@downTex": "@upDownTextures",
125
- "@downTexRotation": 180,
126
- "@downTexTransparent": "@upDownTexturesTransparent",
127
- "@northTex": "@sideTextures",
128
- "@southTex": "@sideTextures",
129
- "@eastTex": "@sideTextures",
130
- "@westTex": "@sideTextures",
108
+ upTex: "@upDownTextures",
109
+ upTexRotation: 180,
110
+ upTexTransparent: "@upDownTexturesTransparent",
111
+ downTex: "@upDownTextures",
112
+ downTexRotation: 180,
113
+ downTexTransparent: "@upDownTexturesTransparent",
114
+ northTex: "@sideTextures",
115
+ southTex: "@sideTextures",
116
+ eastTex: "@sideTextures",
117
+ westTex: "@sideTextures",
131
118
  },
132
119
  },
133
120
  ],
@@ -137,16 +124,16 @@ export const simpleThinPannel = {
137
124
  geometryId: "dve_thin_panel_down",
138
125
  position: [0, 1 - 3 / 16, 0],
139
126
  inputs: {
140
- "@upTex": "@upDownTextures",
141
- "@upTexRotation": 0,
142
- "@upTexTransparent": "@upDownTexturesTransparent",
143
- "@downTex": "@upDownTextures",
144
- "@downTexRotation": 0,
145
- "@downTexTransparent": "@upDownTexturesTransparent",
146
- "@northTex": "@sideTextures",
147
- "@southTex": "@sideTextures",
148
- "@eastTex": "@sideTextures",
149
- "@westTex": "@sideTextures",
127
+ upTex: "@upDownTextures",
128
+ upTexRotation: 0,
129
+ upTexTransparent: "@upDownTexturesTransparent",
130
+ downTex: "@upDownTextures",
131
+ downTexRotation: 0,
132
+ downTexTransparent: "@upDownTexturesTransparent",
133
+ northTex: "@sideTextures",
134
+ southTex: "@sideTextures",
135
+ eastTex: "@sideTextures",
136
+ westTex: "@sideTextures",
150
137
  },
151
138
  },
152
139
  ],
@@ -156,16 +143,16 @@ export const simpleThinPannel = {
156
143
  geometryId: "dve_thin_panel_down",
157
144
  position: [0, 1 - 3 / 16, 0],
158
145
  inputs: {
159
- "@upTex": "@upDownTextures",
160
- "@upTexRotation": 90,
161
- "@upTexTransparent": "@upDownTexturesTransparent",
162
- "@downTex": "@upDownTextures",
163
- "@downTexRotation": 90,
164
- "@downTexTransparent": "@upDownTexturesTransparent",
165
- "@northTex": "@sideTextures",
166
- "@southTex": "@sideTextures",
167
- "@eastTex": "@sideTextures",
168
- "@westTex": "@sideTextures",
146
+ upTex: "@upDownTextures",
147
+ upTexRotation: 90,
148
+ upTexTransparent: "@upDownTexturesTransparent",
149
+ downTex: "@upDownTextures",
150
+ downTexRotation: 90,
151
+ downTexTransparent: "@upDownTexturesTransparent",
152
+ northTex: "@sideTextures",
153
+ southTex: "@sideTextures",
154
+ eastTex: "@sideTextures",
155
+ westTex: "@sideTextures",
169
156
  },
170
157
  },
171
158
  ],
@@ -175,16 +162,16 @@ export const simpleThinPannel = {
175
162
  geometryId: "dve_thin_panel_down",
176
163
  position: [0, 1 - 3 / 16, 0],
177
164
  inputs: {
178
- "@upTex": "@upDownTextures",
179
- "@upTexRotation": 270,
180
- "@upTexTransparent": "@upDownTexturesTransparent",
181
- "@downTex": "@upDownTextures",
182
- "@downTexRotation": 270,
183
- "@downTexTransparent": "@upDownTexturesTransparent",
184
- "@northTex": "@sideTextures",
185
- "@southTex": "@sideTextures",
186
- "@eastTex": "@sideTextures",
187
- "@westTex": "@sideTextures",
165
+ upTex: "@upDownTextures",
166
+ upTexRotation: 270,
167
+ upTexTransparent: "@upDownTexturesTransparent",
168
+ downTex: "@upDownTextures",
169
+ downTexRotation: 270,
170
+ downTexTransparent: "@upDownTexturesTransparent",
171
+ northTex: "@sideTextures",
172
+ southTex: "@sideTextures",
173
+ eastTex: "@sideTextures",
174
+ westTex: "@sideTextures",
188
175
  },
189
176
  },
190
177
  ],
@@ -194,16 +181,16 @@ export const simpleThinPannel = {
194
181
  geometryId: "dve_thin_panel_south",
195
182
  position: [0, 0, 1 - 3 / 16],
196
183
  inputs: {
197
- "@upTex": "@sideTextures",
198
- "@downTex": "@sideTextures",
199
- "@northTex": "@upDownTextures",
200
- "@northTexRotation": 180,
201
- "@northTexTransparent": "@upDownTexturesTransparent",
202
- "@southTex": "@upDownTextures",
203
- "@southTexRotation": 180,
204
- "@southTexTransparent": "@upDownTexturesTransparent",
205
- "@eastTex": "@sideTextures",
206
- "@westTex": "@sideTextures",
184
+ upTex: "@sideTextures",
185
+ downTex: "@sideTextures",
186
+ northTex: "@upDownTextures",
187
+ northTexRotation: 180,
188
+ northTexTransparent: "@upDownTexturesTransparent",
189
+ southTex: "@upDownTextures",
190
+ southTexRotation: 180,
191
+ southTexTransparent: "@upDownTexturesTransparent",
192
+ eastTex: "@sideTextures",
193
+ westTex: "@sideTextures",
207
194
  },
208
195
  },
209
196
  ],
@@ -213,16 +200,16 @@ export const simpleThinPannel = {
213
200
  geometryId: "dve_thin_panel_south",
214
201
  position: [0, 0, 1 - 3 / 16],
215
202
  inputs: {
216
- "@upTex": "@sideTextures",
217
- "@downTex": "@sideTextures",
218
- "@northTex": "@upDownTextures",
219
- "@northTexRotation": 0,
220
- "@northTexTransparent": "@upDownTexturesTransparent",
221
- "@southTex": "@upDownTextures",
222
- "@southTexRotation": 0,
223
- "@southTexTransparent": "@upDownTexturesTransparent",
224
- "@eastTex": "@sideTextures",
225
- "@westTex": "@sideTextures",
203
+ upTex: "@sideTextures",
204
+ downTex: "@sideTextures",
205
+ northTex: "@upDownTextures",
206
+ northTexRotation: 0,
207
+ northTexTransparent: "@upDownTexturesTransparent",
208
+ southTex: "@upDownTextures",
209
+ southTexRotation: 0,
210
+ southTexTransparent: "@upDownTexturesTransparent",
211
+ eastTex: "@sideTextures",
212
+ westTex: "@sideTextures",
226
213
  },
227
214
  },
228
215
  ],
@@ -232,16 +219,16 @@ export const simpleThinPannel = {
232
219
  geometryId: "dve_thin_panel_south",
233
220
  position: [0, 0, 1 - 3 / 16],
234
221
  inputs: {
235
- "@upTex": "@sideTextures",
236
- "@downTex": "@sideTextures",
237
- "@northTex": "@upDownTextures",
238
- "@northTexRotation": 90,
239
- "@northTexTransparent": "@upDownTexturesTransparent",
240
- "@southTex": "@upDownTextures",
241
- "@southTexRotation": 90,
242
- "@southTexTransparent": "@upDownTexturesTransparent",
243
- "@eastTex": "@sideTextures",
244
- "@westTex": "@sideTextures",
222
+ upTex: "@sideTextures",
223
+ downTex: "@sideTextures",
224
+ northTex: "@upDownTextures",
225
+ northTexRotation: 90,
226
+ northTexTransparent: "@upDownTexturesTransparent",
227
+ southTex: "@upDownTextures",
228
+ southTexRotation: 90,
229
+ southTexTransparent: "@upDownTexturesTransparent",
230
+ eastTex: "@sideTextures",
231
+ westTex: "@sideTextures",
245
232
  },
246
233
  },
247
234
  ],
@@ -251,16 +238,16 @@ export const simpleThinPannel = {
251
238
  geometryId: "dve_thin_panel_south",
252
239
  position: [0, 0, 1 - 3 / 16],
253
240
  inputs: {
254
- "@upTex": "@sideTextures",
255
- "@downTex": "@sideTextures",
256
- "@northTex": "@upDownTextures",
257
- "@northTexRotation": 270,
258
- "@northTexTransparent": "@upDownTexturesTransparent",
259
- "@southTex": "@upDownTextures",
260
- "@southTexRotation": 270,
261
- "@southTexTransparent": "@upDownTexturesTransparent",
262
- "@eastTex": "@sideTextures",
263
- "@westTex": "@sideTextures",
241
+ upTex: "@sideTextures",
242
+ downTex: "@sideTextures",
243
+ northTex: "@upDownTextures",
244
+ northTexRotation: 270,
245
+ northTexTransparent: "@upDownTexturesTransparent",
246
+ southTex: "@upDownTextures",
247
+ southTexRotation: 270,
248
+ southTexTransparent: "@upDownTexturesTransparent",
249
+ eastTex: "@sideTextures",
250
+ westTex: "@sideTextures",
264
251
  },
265
252
  },
266
253
  ],
@@ -269,16 +256,16 @@ export const simpleThinPannel = {
269
256
  id: "cube",
270
257
  geometryId: "dve_thin_panel_south",
271
258
  inputs: {
272
- "@upTex": "@sideTextures",
273
- "@downTex": "@sideTextures",
274
- "@northTex": "@upDownTextures",
275
- "@northTexRotation": 180,
276
- "@northTexTransparent": "@upDownTexturesTransparent",
277
- "@southTex": "@upDownTextures",
278
- "@southTexRotation": 180,
279
- "@southTexTransparent": "@upDownTexturesTransparent",
280
- "@eastTex": "@sideTextures",
281
- "@westTex": "@sideTextures",
259
+ upTex: "@sideTextures",
260
+ downTex: "@sideTextures",
261
+ northTex: "@upDownTextures",
262
+ northTexRotation: 180,
263
+ northTexTransparent: "@upDownTexturesTransparent",
264
+ southTex: "@upDownTextures",
265
+ southTexRotation: 180,
266
+ southTexTransparent: "@upDownTexturesTransparent",
267
+ eastTex: "@sideTextures",
268
+ westTex: "@sideTextures",
282
269
  },
283
270
  },
284
271
  ],
@@ -287,16 +274,16 @@ export const simpleThinPannel = {
287
274
  id: "cube",
288
275
  geometryId: "dve_thin_panel_south",
289
276
  inputs: {
290
- "@upTex": "@sideTextures",
291
- "@downTex": "@sideTextures",
292
- "@northTex": "@upDownTextures",
293
- "@northTexRotation": 0,
294
- "@northTexTransparent": "@upDownTexturesTransparent",
295
- "@southTex": "@upDownTextures",
296
- "@southTexRotation": 0,
297
- "@southTexTransparent": "@upDownTexturesTransparent",
298
- "@eastTex": "@sideTextures",
299
- "@westTex": "@sideTextures",
277
+ upTex: "@sideTextures",
278
+ downTex: "@sideTextures",
279
+ northTex: "@upDownTextures",
280
+ northTexRotation: 0,
281
+ northTexTransparent: "@upDownTexturesTransparent",
282
+ southTex: "@upDownTextures",
283
+ southTexRotation: 0,
284
+ southTexTransparent: "@upDownTexturesTransparent",
285
+ eastTex: "@sideTextures",
286
+ westTex: "@sideTextures",
300
287
  },
301
288
  },
302
289
  ],
@@ -305,16 +292,16 @@ export const simpleThinPannel = {
305
292
  id: "cube",
306
293
  geometryId: "dve_thin_panel_south",
307
294
  inputs: {
308
- "@upTex": "@sideTextures",
309
- "@downTex": "@sideTextures",
310
- "@northTex": "@upDownTextures",
311
- "@northTexRotation": 90,
312
- "@northTexTransparent": "@upDownTexturesTransparent",
313
- "@southTex": "@upDownTextures",
314
- "@southTexRotation": 90,
315
- "@southTexTransparent": "@upDownTexturesTransparent",
316
- "@eastTex": "@sideTextures",
317
- "@westTex": "@sideTextures",
295
+ upTex: "@sideTextures",
296
+ downTex: "@sideTextures",
297
+ northTex: "@upDownTextures",
298
+ northTexRotation: 90,
299
+ northTexTransparent: "@upDownTexturesTransparent",
300
+ southTex: "@upDownTextures",
301
+ southTexRotation: 90,
302
+ southTexTransparent: "@upDownTexturesTransparent",
303
+ eastTex: "@sideTextures",
304
+ westTex: "@sideTextures",
318
305
  },
319
306
  },
320
307
  ],
@@ -323,16 +310,16 @@ export const simpleThinPannel = {
323
310
  id: "cube",
324
311
  geometryId: "dve_thin_panel_south",
325
312
  inputs: {
326
- "@upTex": "@sideTextures",
327
- "@downTex": "@sideTextures",
328
- "@northTex": "@upDownTextures",
329
- "@northTexRotation": 270,
330
- "@northTexTransparent": "@upDownTexturesTransparent",
331
- "@southTex": "@upDownTextures",
332
- "@southTexRotation": 270,
333
- "@southTexTransparent": "@upDownTexturesTransparent",
334
- "@eastTex": "@sideTextures",
335
- "@westTex": "@sideTextures",
313
+ upTex: "@sideTextures",
314
+ downTex: "@sideTextures",
315
+ northTex: "@upDownTextures",
316
+ northTexRotation: 270,
317
+ northTexTransparent: "@upDownTexturesTransparent",
318
+ southTex: "@upDownTextures",
319
+ southTexRotation: 270,
320
+ southTexTransparent: "@upDownTexturesTransparent",
321
+ eastTex: "@sideTextures",
322
+ westTex: "@sideTextures",
336
323
  },
337
324
  },
338
325
  ],
@@ -342,16 +329,16 @@ export const simpleThinPannel = {
342
329
  geometryId: "dve_thin_panel_west",
343
330
  position: [1 - 3 / 16, 0, 0],
344
331
  inputs: {
345
- "@upTex": "@sideTextures",
346
- "@downTex": "@sideTextures",
347
- "@northTex": "@sideTextures",
348
- "@southTex": "@sideTextures",
349
- "@eastTex": "@upDownTextures",
350
- "@eastTexRotation": 0,
351
- "@eastTexTransparent": "@upDownTexturesTransparent",
352
- "@westTex": "@upDownTextures",
353
- "@westTexRotation": 0,
354
- "@westTexTransparent": "@upDownTexturesTransparent",
332
+ upTex: "@sideTextures",
333
+ downTex: "@sideTextures",
334
+ northTex: "@sideTextures",
335
+ southTex: "@sideTextures",
336
+ eastTex: "@upDownTextures",
337
+ eastTexRotation: 0,
338
+ eastTexTransparent: "@upDownTexturesTransparent",
339
+ westTex: "@upDownTextures",
340
+ westTexRotation: 0,
341
+ westTexTransparent: "@upDownTexturesTransparent",
355
342
  },
356
343
  },
357
344
  ],
@@ -361,16 +348,16 @@ export const simpleThinPannel = {
361
348
  geometryId: "dve_thin_panel_west",
362
349
  position: [1 - 3 / 16, 0, 0],
363
350
  inputs: {
364
- "@upTex": "@sideTextures",
365
- "@downTex": "@sideTextures",
366
- "@northTex": "@sideTextures",
367
- "@southTex": "@sideTextures",
368
- "@eastTex": "@upDownTextures",
369
- "@eastTexRotation": 180,
370
- "@eastTexTransparent": "@upDownTexturesTransparent",
371
- "@westTex": "@upDownTextures",
372
- "@westTexRotation": 180,
373
- "@westTexTransparent": "@upDownTexturesTransparent",
351
+ upTex: "@sideTextures",
352
+ downTex: "@sideTextures",
353
+ northTex: "@sideTextures",
354
+ southTex: "@sideTextures",
355
+ eastTex: "@upDownTextures",
356
+ eastTexRotation: 180,
357
+ eastTexTransparent: "@upDownTexturesTransparent",
358
+ westTex: "@upDownTextures",
359
+ westTexRotation: 180,
360
+ westTexTransparent: "@upDownTexturesTransparent",
374
361
  },
375
362
  },
376
363
  ],
@@ -380,16 +367,16 @@ export const simpleThinPannel = {
380
367
  geometryId: "dve_thin_panel_west",
381
368
  position: [1 - 3 / 16, 0, 0],
382
369
  inputs: {
383
- "@upTex": "@sideTextures",
384
- "@downTex": "@sideTextures",
385
- "@northTex": "@sideTextures",
386
- "@southTex": "@sideTextures",
387
- "@eastTex": "@upDownTextures",
388
- "@eastTexRotation": 90,
389
- "@eastTexTransparent": "@upDownTexturesTransparent",
390
- "@westTex": "@upDownTextures",
391
- "@westTexRotation": 90,
392
- "@westTexTransparent": "@upDownTexturesTransparent",
370
+ upTex: "@sideTextures",
371
+ downTex: "@sideTextures",
372
+ northTex: "@sideTextures",
373
+ southTex: "@sideTextures",
374
+ eastTex: "@upDownTextures",
375
+ eastTexRotation: 90,
376
+ eastTexTransparent: "@upDownTexturesTransparent",
377
+ westTex: "@upDownTextures",
378
+ westTexRotation: 90,
379
+ westTexTransparent: "@upDownTexturesTransparent",
393
380
  },
394
381
  },
395
382
  ],
@@ -399,16 +386,16 @@ export const simpleThinPannel = {
399
386
  geometryId: "dve_thin_panel_west",
400
387
  position: [1 - 3 / 16, 0, 0],
401
388
  inputs: {
402
- "@upTex": "@sideTextures",
403
- "@downTex": "@sideTextures",
404
- "@northTex": "@sideTextures",
405
- "@southTex": "@sideTextures",
406
- "@eastTex": "@upDownTextures",
407
- "@eastTexRotation": 270,
408
- "@eastTexTransparent": "@upDownTexturesTransparent",
409
- "@westTex": "@upDownTextures",
410
- "@westTexRotation": 270,
411
- "@westTexTransparent": "@upDownTexturesTransparent",
389
+ upTex: "@sideTextures",
390
+ downTex: "@sideTextures",
391
+ northTex: "@sideTextures",
392
+ southTex: "@sideTextures",
393
+ eastTex: "@upDownTextures",
394
+ eastTexRotation: 270,
395
+ eastTexTransparent: "@upDownTexturesTransparent",
396
+ westTex: "@upDownTextures",
397
+ westTexRotation: 270,
398
+ westTexTransparent: "@upDownTexturesTransparent",
412
399
  },
413
400
  },
414
401
  ],
@@ -417,16 +404,16 @@ export const simpleThinPannel = {
417
404
  id: "cube",
418
405
  geometryId: "dve_thin_panel_west",
419
406
  inputs: {
420
- "@upTex": "@sideTextures",
421
- "@downTex": "@sideTextures",
422
- "@northTex": "@sideTextures",
423
- "@southTex": "@sideTextures",
424
- "@eastTex": "@upDownTextures",
425
- "@eastTexRotation": 0,
426
- "@eastTexTransparent": "@upDownTexturesTransparent",
427
- "@westTex": "@upDownTextures",
428
- "@westTexRotation": 0,
429
- "@westTexTransparent": "@upDownTexturesTransparent",
407
+ upTex: "@sideTextures",
408
+ downTex: "@sideTextures",
409
+ northTex: "@sideTextures",
410
+ southTex: "@sideTextures",
411
+ eastTex: "@upDownTextures",
412
+ eastTexRotation: 0,
413
+ eastTexTransparent: "@upDownTexturesTransparent",
414
+ westTex: "@upDownTextures",
415
+ westTexRotation: 0,
416
+ westTexTransparent: "@upDownTexturesTransparent",
430
417
  },
431
418
  },
432
419
  ],
@@ -435,16 +422,16 @@ export const simpleThinPannel = {
435
422
  id: "cube",
436
423
  geometryId: "dve_thin_panel_west",
437
424
  inputs: {
438
- "@upTex": "@sideTextures",
439
- "@downTex": "@sideTextures",
440
- "@northTex": "@sideTextures",
441
- "@southTex": "@sideTextures",
442
- "@eastTex": "@upDownTextures",
443
- "@eastTexRotation": 180,
444
- "@eastTexTransparent": "@upDownTexturesTransparent",
445
- "@westTex": "@upDownTextures",
446
- "@westTexRotation": 180,
447
- "@westTexTransparent": "@upDownTexturesTransparent",
425
+ upTex: "@sideTextures",
426
+ downTex: "@sideTextures",
427
+ northTex: "@sideTextures",
428
+ southTex: "@sideTextures",
429
+ eastTex: "@upDownTextures",
430
+ eastTexRotation: 180,
431
+ eastTexTransparent: "@upDownTexturesTransparent",
432
+ westTex: "@upDownTextures",
433
+ westTexRotation: 180,
434
+ westTexTransparent: "@upDownTexturesTransparent",
448
435
  },
449
436
  },
450
437
  ],
@@ -453,16 +440,16 @@ export const simpleThinPannel = {
453
440
  id: "cube",
454
441
  geometryId: "dve_thin_panel_west",
455
442
  inputs: {
456
- "@upTex": "@sideTextures",
457
- "@downTex": "@sideTextures",
458
- "@northTex": "@sideTextures",
459
- "@southTex": "@sideTextures",
460
- "@eastTex": "@upDownTextures",
461
- "@eastTexRotation": 90,
462
- "@eastTexTransparent": "@upDownTexturesTransparent",
463
- "@westTex": "@upDownTextures",
464
- "@westTexRotation": 90,
465
- "@westTexTransparent": "@upDownTexturesTransparent",
443
+ upTex: "@sideTextures",
444
+ downTex: "@sideTextures",
445
+ northTex: "@sideTextures",
446
+ southTex: "@sideTextures",
447
+ eastTex: "@upDownTextures",
448
+ eastTexRotation: 90,
449
+ eastTexTransparent: "@upDownTexturesTransparent",
450
+ westTex: "@upDownTextures",
451
+ westTexRotation: 90,
452
+ westTexTransparent: "@upDownTexturesTransparent",
466
453
  },
467
454
  },
468
455
  ],
@@ -471,16 +458,16 @@ export const simpleThinPannel = {
471
458
  id: "cube",
472
459
  geometryId: "dve_thin_panel_west",
473
460
  inputs: {
474
- "@upTex": "@sideTextures",
475
- "@downTex": "@sideTextures",
476
- "@northTex": "@sideTextures",
477
- "@southTex": "@sideTextures",
478
- "@eastTex": "@upDownTextures",
479
- "@eastTexRotation": 270,
480
- "@eastTexTransparent": "@upDownTexturesTransparent",
481
- "@westTex": "@upDownTextures",
482
- "@westTexRotation": 270,
483
- "@westTexTransparent": "@upDownTexturesTransparent",
461
+ upTex: "@sideTextures",
462
+ downTex: "@sideTextures",
463
+ northTex: "@sideTextures",
464
+ southTex: "@sideTextures",
465
+ eastTex: "@upDownTextures",
466
+ eastTexRotation: 270,
467
+ eastTexTransparent: "@upDownTexturesTransparent",
468
+ westTex: "@upDownTextures",
469
+ westTexRotation: 270,
470
+ westTexTransparent: "@upDownTexturesTransparent",
484
471
  },
485
472
  },
486
473
  ],
@@ -489,28 +476,16 @@ export const simpleThinPannel = {
489
476
  export const simpleCrossedPannel = {
490
477
  id: "dve_simple_crossed_panels",
491
478
  relationsSchema: [],
492
- shapeStateSchema: [
479
+ stateSchema: [
493
480
  {
494
481
  name: "placement",
495
482
  type: "string",
496
- values: {
497
- 0: "down",
498
- 1: "up",
499
- 2: "north",
500
- 3: "south",
501
- 4: "east",
502
- 5: "west",
503
- },
483
+ values: ["down", "up", "north", "south", "east", "west"],
504
484
  },
505
485
  {
506
486
  name: "direction",
507
487
  type: "string",
508
- values: {
509
- 0: "north",
510
- 1: "south",
511
- 2: "east",
512
- 3: "west",
513
- },
488
+ values: ["north", "south", "east", "west"],
514
489
  },
515
490
  ],
516
491
  arguments: {
@@ -526,28 +501,27 @@ export const simpleCrossedPannel = {
526
501
  default: false,
527
502
  },
528
503
  },
529
- shapeStatesConditonalNodes: {},
530
- // shapeStatesOverrides: {},
531
- shapeStatesNodes: {
504
+ conditonalNodes: {},
505
+ stateNodes: {
532
506
  "placement=down,direction=north": [
533
507
  {
534
508
  id: "quad-1",
535
509
  geometryId: "dve_diagonal_flat_panel_west_east",
536
510
  inputs: {
537
- "@texture": "@texture",
538
- "@textureRotation": 0,
539
- "@transaprent": "@transparent",
540
- "@doubleSided": "@doubleSided",
511
+ texture: "@texture",
512
+ textureRotation: 0,
513
+ transaprent: "@transparent",
514
+ doubleSided: "@doubleSided",
541
515
  },
542
516
  },
543
517
  {
544
518
  id: "quad-2",
545
519
  geometryId: "dve_diagonal_flat_panel_east_west",
546
520
  inputs: {
547
- "@texture": "@texture",
548
- "@textureRotation": 0,
549
- "@transaprent": "@transparent",
550
- "@doubleSided": "@doubleSided",
521
+ texture: "@texture",
522
+ textureRotation: 0,
523
+ transaprent: "@transparent",
524
+ doubleSided: "@doubleSided",
551
525
  },
552
526
  },
553
527
  ],
@@ -556,20 +530,20 @@ export const simpleCrossedPannel = {
556
530
  id: "quad-1",
557
531
  geometryId: "dve_diagonal_flat_panel_west_east",
558
532
  inputs: {
559
- "@texture": "@texture",
560
- "@textureRotation": 180,
561
- "@transaprent": "@transparent",
562
- "@doubleSided": "@doubleSided",
533
+ texture: "@texture",
534
+ textureRotation: 180,
535
+ transaprent: "@transparent",
536
+ doubleSided: "@doubleSided",
563
537
  },
564
538
  },
565
539
  {
566
540
  id: "quad-2",
567
541
  geometryId: "dve_diagonal_flat_panel_east_west",
568
542
  inputs: {
569
- "@texture": "@texture",
570
- "@textureRotation": 180,
571
- "@transaprent": "@transparent",
572
- "@doubleSided": "@doubleSided",
543
+ texture: "@texture",
544
+ textureRotation: 180,
545
+ transaprent: "@transparent",
546
+ doubleSided: "@doubleSided",
573
547
  },
574
548
  },
575
549
  ],
@@ -578,20 +552,20 @@ export const simpleCrossedPannel = {
578
552
  id: "quad-1",
579
553
  geometryId: "dve_diagonal_flat_panel_west_east",
580
554
  inputs: {
581
- "@texture": "@texture",
582
- "@textureRotation": 90,
583
- "@transaprent": "@transparent",
584
- "@doubleSided": "@doubleSided",
555
+ texture: "@texture",
556
+ textureRotation: 90,
557
+ transaprent: "@transparent",
558
+ doubleSided: "@doubleSided",
585
559
  },
586
560
  },
587
561
  {
588
562
  id: "quad-2",
589
563
  geometryId: "dve_diagonal_flat_panel_east_west",
590
564
  inputs: {
591
- "@texture": "@texture",
592
- "@textureRotation": 90,
593
- "@transaprent": "@transparent",
594
- "@doubleSided": "@doubleSided",
565
+ texture: "@texture",
566
+ textureRotation: 90,
567
+ transaprent: "@transparent",
568
+ doubleSided: "@doubleSided",
595
569
  },
596
570
  },
597
571
  ],
@@ -600,20 +574,20 @@ export const simpleCrossedPannel = {
600
574
  id: "quad-1",
601
575
  geometryId: "dve_diagonal_flat_panel_west_east",
602
576
  inputs: {
603
- "@texture": "@texture",
604
- "@textureRotation": 270,
605
- "@transaprent": "@transparent",
606
- "@doubleSided": "@doubleSided",
577
+ texture: "@texture",
578
+ textureRotation: 270,
579
+ transaprent: "@transparent",
580
+ doubleSided: "@doubleSided",
607
581
  },
608
582
  },
609
583
  {
610
584
  id: "quad-2",
611
585
  geometryId: "dve_diagonal_flat_panel_east_west",
612
586
  inputs: {
613
- "@texture": "@texture",
614
- "@textureRotation": 270,
615
- "@transaprent": "@transparent",
616
- "@doubleSided": "@doubleSided",
587
+ texture: "@texture",
588
+ textureRotation: 270,
589
+ transaprent: "@transparent",
590
+ doubleSided: "@doubleSided",
617
591
  },
618
592
  },
619
593
  ],
@@ -622,20 +596,20 @@ export const simpleCrossedPannel = {
622
596
  id: "quad-1",
623
597
  geometryId: "dve_diagonal_flat_panel_west_east",
624
598
  inputs: {
625
- "@texture": "@texture",
626
- "@textureRotation": 180,
627
- "@transaprent": "@transparent",
628
- "@doubleSided": "@doubleSided",
599
+ texture: "@texture",
600
+ textureRotation: 180,
601
+ transaprent: "@transparent",
602
+ doubleSided: "@doubleSided",
629
603
  },
630
604
  },
631
605
  {
632
606
  id: "quad-2",
633
607
  geometryId: "dve_diagonal_flat_panel_east_west",
634
608
  inputs: {
635
- "@texture": "@texture",
636
- "@textureRotation": 180,
637
- "@transaprent": "@transparent",
638
- "@doubleSided": "@doubleSided",
609
+ texture: "@texture",
610
+ textureRotation: 180,
611
+ transaprent: "@transparent",
612
+ doubleSided: "@doubleSided",
639
613
  },
640
614
  },
641
615
  ],
@@ -644,20 +618,20 @@ export const simpleCrossedPannel = {
644
618
  id: "quad-1",
645
619
  geometryId: "dve_diagonal_flat_panel_west_east",
646
620
  inputs: {
647
- "@texture": "@texture",
648
- "@textureRotation": 0,
649
- "@transaprent": "@transparent",
650
- "@doubleSided": "@doubleSided",
621
+ texture: "@texture",
622
+ textureRotation: 0,
623
+ transaprent: "@transparent",
624
+ doubleSided: "@doubleSided",
651
625
  },
652
626
  },
653
627
  {
654
628
  id: "quad-2",
655
629
  geometryId: "dve_diagonal_flat_panel_east_west",
656
630
  inputs: {
657
- "@texture": "@texture",
658
- "@textureRotation": 0,
659
- "@transaprent": "@transparent",
660
- "@doubleSided": "@doubleSided",
631
+ texture: "@texture",
632
+ textureRotation: 0,
633
+ transaprent: "@transparent",
634
+ doubleSided: "@doubleSided",
661
635
  },
662
636
  },
663
637
  ],
@@ -666,20 +640,20 @@ export const simpleCrossedPannel = {
666
640
  id: "quad-1",
667
641
  geometryId: "dve_diagonal_flat_panel_west_east",
668
642
  inputs: {
669
- "@texture": "@texture",
670
- "@textureRotation": 270,
671
- "@transaprent": "@transparent",
672
- "@doubleSided": "@doubleSided",
643
+ texture: "@texture",
644
+ textureRotation: 270,
645
+ transaprent: "@transparent",
646
+ doubleSided: "@doubleSided",
673
647
  },
674
648
  },
675
649
  {
676
650
  id: "quad-2",
677
651
  geometryId: "dve_diagonal_flat_panel_east_west",
678
652
  inputs: {
679
- "@texture": "@texture",
680
- "@textureRotation": 270,
681
- "@transaprent": "@transparent",
682
- "@doubleSided": "@doubleSided",
653
+ texture: "@texture",
654
+ textureRotation: 270,
655
+ transaprent: "@transparent",
656
+ doubleSided: "@doubleSided",
683
657
  },
684
658
  },
685
659
  ],
@@ -688,20 +662,20 @@ export const simpleCrossedPannel = {
688
662
  id: "quad-1",
689
663
  geometryId: "dve_diagonal_flat_panel_west_east",
690
664
  inputs: {
691
- "@texture": "@texture",
692
- "@textureRotation": 90,
693
- "@transaprent": "@transparent",
694
- "@doubleSided": "@doubleSided",
665
+ texture: "@texture",
666
+ textureRotation: 90,
667
+ transaprent: "@transparent",
668
+ doubleSided: "@doubleSided",
695
669
  },
696
670
  },
697
671
  {
698
672
  id: "quad-2",
699
673
  geometryId: "dve_diagonal_flat_panel_east_west",
700
674
  inputs: {
701
- "@texture": "@texture",
702
- "@textureRotation": 90,
703
- "@transaprent": "@transparent",
704
- "@doubleSided": "@doubleSided",
675
+ texture: "@texture",
676
+ textureRotation: 90,
677
+ transaprent: "@transparent",
678
+ doubleSided: "@doubleSided",
705
679
  },
706
680
  },
707
681
  ],
@@ -710,20 +684,20 @@ export const simpleCrossedPannel = {
710
684
  id: "quad-1",
711
685
  geometryId: "dve_diagonal_flat_panel_west_east",
712
686
  inputs: {
713
- "@texture": "@texture",
714
- "@textureRotation": 0,
715
- "@transaprent": "@transparent",
716
- "@doubleSided": "@doubleSided",
687
+ texture: "@texture",
688
+ textureRotation: 0,
689
+ transaprent: "@transparent",
690
+ doubleSided: "@doubleSided",
717
691
  },
718
692
  },
719
693
  {
720
694
  id: "quad-2",
721
695
  geometryId: "dve_diagonal_flat_panel_east_west",
722
696
  inputs: {
723
- "@texture": "@texture",
724
- "@textureRotation": 0,
725
- "@transaprent": "@transparent",
726
- "@doubleSided": "@doubleSided",
697
+ texture: "@texture",
698
+ textureRotation: 0,
699
+ transaprent: "@transparent",
700
+ doubleSided: "@doubleSided",
727
701
  },
728
702
  },
729
703
  ],
@@ -732,20 +706,20 @@ export const simpleCrossedPannel = {
732
706
  id: "quad-1",
733
707
  geometryId: "dve_diagonal_flat_panel_west_east",
734
708
  inputs: {
735
- "@texture": "@texture",
736
- "@textureRotation": 180,
737
- "@transaprent": "@transparent",
738
- "@doubleSided": "@doubleSided",
709
+ texture: "@texture",
710
+ textureRotation: 180,
711
+ transaprent: "@transparent",
712
+ doubleSided: "@doubleSided",
739
713
  },
740
714
  },
741
715
  {
742
716
  id: "quad-2",
743
717
  geometryId: "dve_diagonal_flat_panel_east_west",
744
718
  inputs: {
745
- "@texture": "@texture",
746
- "@textureRotation": 180,
747
- "@transaprent": "@transparent",
748
- "@doubleSided": "@doubleSided",
719
+ texture: "@texture",
720
+ textureRotation: 180,
721
+ transaprent: "@transparent",
722
+ doubleSided: "@doubleSided",
749
723
  },
750
724
  },
751
725
  ],
@@ -754,20 +728,20 @@ export const simpleCrossedPannel = {
754
728
  id: "quad-1",
755
729
  geometryId: "dve_diagonal_flat_panel_west_east",
756
730
  inputs: {
757
- "@texture": "@texture",
758
- "@textureRotation": 90,
759
- "@transaprent": "@transparent",
760
- "@doubleSided": "@doubleSided",
731
+ texture: "@texture",
732
+ textureRotation: 90,
733
+ transaprent: "@transparent",
734
+ doubleSided: "@doubleSided",
761
735
  },
762
736
  },
763
737
  {
764
738
  id: "quad-2",
765
739
  geometryId: "dve_diagonal_flat_panel_east_west",
766
740
  inputs: {
767
- "@texture": "@texture",
768
- "@textureRotation": 90,
769
- "@transaprent": "@transparent",
770
- "@doubleSided": "@doubleSided",
741
+ texture: "@texture",
742
+ textureRotation: 90,
743
+ transaprent: "@transparent",
744
+ doubleSided: "@doubleSided",
771
745
  },
772
746
  },
773
747
  ],
@@ -776,20 +750,20 @@ export const simpleCrossedPannel = {
776
750
  id: "quad-1",
777
751
  geometryId: "dve_diagonal_flat_panel_west_east",
778
752
  inputs: {
779
- "@texture": "@texture",
780
- "@textureRotation": 270,
781
- "@transaprent": "@transparent",
782
- "@doubleSided": "@doubleSided",
753
+ texture: "@texture",
754
+ textureRotation: 270,
755
+ transaprent: "@transparent",
756
+ doubleSided: "@doubleSided",
783
757
  },
784
758
  },
785
759
  {
786
760
  id: "quad-2",
787
761
  geometryId: "dve_diagonal_flat_panel_east_west",
788
762
  inputs: {
789
- "@texture": "@texture",
790
- "@textureRotation": 270,
791
- "@transaprent": "@transparent",
792
- "@doubleSided": "@doubleSided",
763
+ texture: "@texture",
764
+ textureRotation: 270,
765
+ transaprent: "@transparent",
766
+ doubleSided: "@doubleSided",
793
767
  },
794
768
  },
795
769
  ],
@@ -798,20 +772,20 @@ export const simpleCrossedPannel = {
798
772
  id: "quad-1",
799
773
  geometryId: "dve_diagonal_flat_panel_west_east",
800
774
  inputs: {
801
- "@texture": "@texture",
802
- "@textureRotation": 0,
803
- "@transaprent": "@transparent",
804
- "@doubleSided": "@doubleSided",
775
+ texture: "@texture",
776
+ textureRotation: 0,
777
+ transaprent: "@transparent",
778
+ doubleSided: "@doubleSided",
805
779
  },
806
780
  },
807
781
  {
808
782
  id: "quad-2",
809
783
  geometryId: "dve_diagonal_flat_panel_east_west",
810
784
  inputs: {
811
- "@texture": "@texture",
812
- "@textureRotation": 0,
813
- "@transaprent": "@transparent",
814
- "@doubleSided": "@doubleSided",
785
+ texture: "@texture",
786
+ textureRotation: 0,
787
+ transaprent: "@transparent",
788
+ doubleSided: "@doubleSided",
815
789
  },
816
790
  },
817
791
  ],
@@ -820,20 +794,20 @@ export const simpleCrossedPannel = {
820
794
  id: "quad-1",
821
795
  geometryId: "dve_diagonal_flat_panel_west_east",
822
796
  inputs: {
823
- "@texture": "@texture",
824
- "@textureRotation": 180,
825
- "@transaprent": "@transparent",
826
- "@doubleSided": "@doubleSided",
797
+ texture: "@texture",
798
+ textureRotation: 180,
799
+ transaprent: "@transparent",
800
+ doubleSided: "@doubleSided",
827
801
  },
828
802
  },
829
803
  {
830
804
  id: "quad-2",
831
805
  geometryId: "dve_diagonal_flat_panel_east_west",
832
806
  inputs: {
833
- "@texture": "@texture",
834
- "@textureRotation": 180,
835
- "@transaprent": "@transparent",
836
- "@doubleSided": "@doubleSided",
807
+ texture: "@texture",
808
+ textureRotation: 180,
809
+ transaprent: "@transparent",
810
+ doubleSided: "@doubleSided",
837
811
  },
838
812
  },
839
813
  ],
@@ -842,20 +816,20 @@ export const simpleCrossedPannel = {
842
816
  id: "quad-1",
843
817
  geometryId: "dve_diagonal_flat_panel_west_east",
844
818
  inputs: {
845
- "@texture": "@texture",
846
- "@textureRotation": 270,
847
- "@transaprent": "@transparent",
848
- "@doubleSided": "@doubleSided",
819
+ texture: "@texture",
820
+ textureRotation: 270,
821
+ transaprent: "@transparent",
822
+ doubleSided: "@doubleSided",
849
823
  },
850
824
  },
851
825
  {
852
826
  id: "quad-2",
853
827
  geometryId: "dve_diagonal_flat_panel_east_west",
854
828
  inputs: {
855
- "@texture": "@texture",
856
- "@textureRotation": 270,
857
- "@transaprent": "@transparent",
858
- "@doubleSided": "@doubleSided",
829
+ texture: "@texture",
830
+ textureRotation: 270,
831
+ transaprent: "@transparent",
832
+ doubleSided: "@doubleSided",
859
833
  },
860
834
  },
861
835
  ],
@@ -864,20 +838,20 @@ export const simpleCrossedPannel = {
864
838
  id: "quad-1",
865
839
  geometryId: "dve_diagonal_flat_panel_west_east",
866
840
  inputs: {
867
- "@texture": "@texture",
868
- "@textureRotation": 90,
869
- "@transaprent": "@transparent",
870
- "@doubleSided": "@doubleSided",
841
+ texture: "@texture",
842
+ textureRotation: 90,
843
+ transaprent: "@transparent",
844
+ doubleSided: "@doubleSided",
871
845
  },
872
846
  },
873
847
  {
874
848
  id: "quad-2",
875
849
  geometryId: "dve_diagonal_flat_panel_east_west",
876
850
  inputs: {
877
- "@texture": "@texture",
878
- "@textureRotation": 90,
879
- "@transaprent": "@transparent",
880
- "@doubleSided": "@doubleSided",
851
+ texture: "@texture",
852
+ textureRotation: 90,
853
+ transaprent: "@transparent",
854
+ doubleSided: "@doubleSided",
881
855
  },
882
856
  },
883
857
  ],
@@ -886,20 +860,20 @@ export const simpleCrossedPannel = {
886
860
  id: "quad-1",
887
861
  geometryId: "dve_diagonal_flat_panel_west_east",
888
862
  inputs: {
889
- "@texture": "@texture",
890
- "@textureRotation": 0,
891
- "@transaprent": "@transparent",
892
- "@doubleSided": "@doubleSided",
863
+ texture: "@texture",
864
+ textureRotation: 0,
865
+ transaprent: "@transparent",
866
+ doubleSided: "@doubleSided",
893
867
  },
894
868
  },
895
869
  {
896
870
  id: "quad-2",
897
871
  geometryId: "dve_diagonal_flat_panel_east_west",
898
872
  inputs: {
899
- "@texture": "@texture",
900
- "@textureRotation": 0,
901
- "@transaprent": "@transparent",
902
- "@doubleSided": "@doubleSided",
873
+ texture: "@texture",
874
+ textureRotation: 0,
875
+ transaprent: "@transparent",
876
+ doubleSided: "@doubleSided",
903
877
  },
904
878
  },
905
879
  ],
@@ -908,20 +882,20 @@ export const simpleCrossedPannel = {
908
882
  id: "quad-1",
909
883
  geometryId: "dve_diagonal_flat_panel_west_east",
910
884
  inputs: {
911
- "@texture": "@texture",
912
- "@textureRotation": 180,
913
- "@transaprent": "@transparent",
914
- "@doubleSided": "@doubleSided",
885
+ texture: "@texture",
886
+ textureRotation: 180,
887
+ transaprent: "@transparent",
888
+ doubleSided: "@doubleSided",
915
889
  },
916
890
  },
917
891
  {
918
892
  id: "quad-2",
919
893
  geometryId: "dve_diagonal_flat_panel_east_west",
920
894
  inputs: {
921
- "@texture": "@texture",
922
- "@textureRotation": 180,
923
- "@transaprent": "@transparent",
924
- "@doubleSided": "@doubleSided",
895
+ texture: "@texture",
896
+ textureRotation: 180,
897
+ transaprent: "@transparent",
898
+ doubleSided: "@doubleSided",
925
899
  },
926
900
  },
927
901
  ],
@@ -930,20 +904,20 @@ export const simpleCrossedPannel = {
930
904
  id: "quad-1",
931
905
  geometryId: "dve_diagonal_flat_panel_west_east",
932
906
  inputs: {
933
- "@texture": "@texture",
934
- "@textureRotation": 270,
935
- "@transaprent": "@transparent",
936
- "@doubleSided": "@doubleSided",
907
+ texture: "@texture",
908
+ textureRotation: 270,
909
+ transaprent: "@transparent",
910
+ doubleSided: "@doubleSided",
937
911
  },
938
912
  },
939
913
  {
940
914
  id: "quad-2",
941
915
  geometryId: "dve_diagonal_flat_panel_east_west",
942
916
  inputs: {
943
- "@texture": "@texture",
944
- "@textureRotation": 270,
945
- "@transaprent": "@transparent",
946
- "@doubleSided": "@doubleSided",
917
+ texture: "@texture",
918
+ textureRotation: 270,
919
+ transaprent: "@transparent",
920
+ doubleSided: "@doubleSided",
947
921
  },
948
922
  },
949
923
  ],
@@ -952,20 +926,20 @@ export const simpleCrossedPannel = {
952
926
  id: "quad-1",
953
927
  geometryId: "dve_diagonal_flat_panel_west_east",
954
928
  inputs: {
955
- "@texture": "@texture",
956
- "@textureRotation": 90,
957
- "@transaprent": "@transparent",
958
- "@doubleSided": "@doubleSided",
929
+ texture: "@texture",
930
+ textureRotation: 90,
931
+ transaprent: "@transparent",
932
+ doubleSided: "@doubleSided",
959
933
  },
960
934
  },
961
935
  {
962
936
  id: "quad-2",
963
937
  geometryId: "dve_diagonal_flat_panel_east_west",
964
938
  inputs: {
965
- "@texture": "@texture",
966
- "@textureRotation": 90,
967
- "@transaprent": "@transparent",
968
- "@doubleSided": "@doubleSided",
939
+ texture: "@texture",
940
+ textureRotation: 90,
941
+ transaprent: "@transparent",
942
+ doubleSided: "@doubleSided",
969
943
  },
970
944
  },
971
945
  ],
@@ -974,20 +948,20 @@ export const simpleCrossedPannel = {
974
948
  id: "quad-1",
975
949
  geometryId: "dve_diagonal_flat_panel_west_east",
976
950
  inputs: {
977
- "@texture": "@texture",
978
- "@textureRotation": 0,
979
- "@transaprent": "@transparent",
980
- "@doubleSided": "@doubleSided",
951
+ texture: "@texture",
952
+ textureRotation: 0,
953
+ transaprent: "@transparent",
954
+ doubleSided: "@doubleSided",
981
955
  },
982
956
  },
983
957
  {
984
958
  id: "quad-2",
985
959
  geometryId: "dve_diagonal_flat_panel_east_west",
986
960
  inputs: {
987
- "@texture": "@texture",
988
- "@textureRotation": 0,
989
- "@transaprent": "@transparent",
990
- "@doubleSided": "@doubleSided",
961
+ texture: "@texture",
962
+ textureRotation: 0,
963
+ transaprent: "@transparent",
964
+ doubleSided: "@doubleSided",
991
965
  },
992
966
  },
993
967
  ],
@@ -996,20 +970,20 @@ export const simpleCrossedPannel = {
996
970
  id: "quad-1",
997
971
  geometryId: "dve_diagonal_flat_panel_west_east",
998
972
  inputs: {
999
- "@texture": "@texture",
1000
- "@textureRotation": 180,
1001
- "@transaprent": "@transparent",
1002
- "@doubleSided": "@doubleSided",
973
+ texture: "@texture",
974
+ textureRotation: 180,
975
+ transaprent: "@transparent",
976
+ doubleSided: "@doubleSided",
1003
977
  },
1004
978
  },
1005
979
  {
1006
980
  id: "quad-2",
1007
981
  geometryId: "dve_diagonal_flat_panel_east_west",
1008
982
  inputs: {
1009
- "@texture": "@texture",
1010
- "@textureRotation": 180,
1011
- "@transaprent": "@transparent",
1012
- "@doubleSided": "@doubleSided",
983
+ texture: "@texture",
984
+ textureRotation: 180,
985
+ transaprent: "@transparent",
986
+ doubleSided: "@doubleSided",
1013
987
  },
1014
988
  },
1015
989
  ],
@@ -1018,20 +992,20 @@ export const simpleCrossedPannel = {
1018
992
  id: "quad-1",
1019
993
  geometryId: "dve_diagonal_flat_panel_west_east",
1020
994
  inputs: {
1021
- "@texture": "@texture",
1022
- "@textureRotation": 270,
1023
- "@transaprent": "@transparent",
1024
- "@doubleSided": "@doubleSided",
995
+ texture: "@texture",
996
+ textureRotation: 270,
997
+ transaprent: "@transparent",
998
+ doubleSided: "@doubleSided",
1025
999
  },
1026
1000
  },
1027
1001
  {
1028
1002
  id: "quad-2",
1029
1003
  geometryId: "dve_diagonal_flat_panel_east_west",
1030
1004
  inputs: {
1031
- "@texture": "@texture",
1032
- "@textureRotation": 270,
1033
- "@transaprent": "@transparent",
1034
- "@doubleSided": "@doubleSided",
1005
+ texture: "@texture",
1006
+ textureRotation: 270,
1007
+ transaprent: "@transparent",
1008
+ doubleSided: "@doubleSided",
1035
1009
  },
1036
1010
  },
1037
1011
  ],
@@ -1040,20 +1014,20 @@ export const simpleCrossedPannel = {
1040
1014
  id: "quad-1",
1041
1015
  geometryId: "dve_diagonal_flat_panel_west_east",
1042
1016
  inputs: {
1043
- "@texture": "@texture",
1044
- "@textureRotation": 90,
1045
- "@transaprent": "@transparent",
1046
- "@doubleSided": "@doubleSided",
1017
+ texture: "@texture",
1018
+ textureRotation: 90,
1019
+ transaprent: "@transparent",
1020
+ doubleSided: "@doubleSided",
1047
1021
  },
1048
1022
  },
1049
1023
  {
1050
1024
  id: "quad-2",
1051
1025
  geometryId: "dve_diagonal_flat_panel_east_west",
1052
1026
  inputs: {
1053
- "@texture": "@texture",
1054
- "@textureRotation": 90,
1055
- "@transaprent": "@transparent",
1056
- "@doubleSided": "@doubleSided",
1027
+ texture: "@texture",
1028
+ textureRotation: 90,
1029
+ transaprent: "@transparent",
1030
+ doubleSided: "@doubleSided",
1057
1031
  },
1058
1032
  },
1059
1033
  ],