@divinevoxel/vlox 0.0.71 → 0.0.73

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (271) hide show
  1. package/Contexts/Base/Main/InitDataGenerator.js +0 -9
  2. package/Contexts/Base/Remote/DataSync.types.d.ts +0 -5
  3. package/Contexts/Base/Remote/InitDataSync.js +17 -31
  4. package/Contexts/Render/DivineVoxelEngineRender.d.ts +1 -1
  5. package/Contexts/World/DivineVoxelEngineWorld.d.ts +1 -1
  6. package/Init/StartConstructor.js +7 -7
  7. package/Init/StartWorld.d.ts +1 -1
  8. package/Init/StartWorld.js +0 -12
  9. package/Math/Indexing.d.ts +12 -3
  10. package/Math/Indexing.js +24 -15
  11. package/Mesher/Functions/CompactVoxelMesh.d.ts +2 -2
  12. package/Mesher/Functions/CompactVoxelMesh.js +4 -5
  13. package/Mesher/Functions/MeshSection.d.ts +1 -1
  14. package/Mesher/Functions/MeshSection.js +72 -66
  15. package/Mesher/Functions/MeshTexture.d.ts +1 -1
  16. package/Mesher/Functions/MeshTexture.js +3 -4
  17. package/Mesher/Functions/MeshVoxel.js +20 -26
  18. package/Mesher/Geomtry/Primitives/QuadVertexData.d.ts +12 -10
  19. package/Mesher/Geomtry/Primitives/QuadVertexData.js +49 -56
  20. package/Mesher/Geomtry/VoxelGeometryBuilder.d.ts +2 -2
  21. package/Mesher/Geomtry/VoxelGeometryBuilder.js +108 -125
  22. package/Mesher/Geomtry/VoxelMesh.d.ts +1 -1
  23. package/Mesher/Geomtry/VoxelMesh.js +2 -2
  24. package/Mesher/{Tools → Geomtry}/VoxelMeshBVHBuilder.d.ts +2 -9
  25. package/Mesher/{Tools → Geomtry}/VoxelMeshBVHBuilder.js +4 -16
  26. package/Mesher/Geomtry/{Buffers.d.ts → VoxelMeshBuffers.d.ts} +9 -8
  27. package/Mesher/Geomtry/VoxelMeshBuffers.js +49 -0
  28. package/Mesher/{Tools → Geomtry}/VoxelMeshVertexStructCursor.d.ts +10 -0
  29. package/Mesher/{Tools → Geomtry}/VoxelMeshVertexStructCursor.js +10 -0
  30. package/Mesher/Geomtry/index.d.ts +0 -1
  31. package/Mesher/Geomtry/index.js +0 -1
  32. package/Mesher/InitMesher.js +2 -11
  33. package/Mesher/InitTask.js +10 -22
  34. package/Mesher/Models/Common/BoundsFunctions.d.ts +1 -3
  35. package/Mesher/Models/Common/BoundsFunctions.js +0 -16
  36. package/Mesher/Models/Common/Calc/CalcConstants.js +14 -31
  37. package/Mesher/Models/Common/Calc/FaceDataCalc.d.ts +2 -8
  38. package/Mesher/Models/Common/Calc/FaceDataCalc.js +50 -52
  39. package/Mesher/Models/Nodes/Custom/Liquid/FlowGradient.d.ts +2 -2
  40. package/Mesher/Models/Nodes/Custom/Liquid/FlowGradient.js +1 -1
  41. package/Mesher/Models/Nodes/Custom/Liquid/LiquidGeomtryNode.d.ts +1 -5
  42. package/Mesher/Models/Nodes/Custom/Liquid/LiquidGeomtryNode.js +40 -42
  43. package/Mesher/Models/Nodes/GeometryNode.d.ts +3 -5
  44. package/Mesher/Models/Nodes/GeometryNode.js +1 -2
  45. package/Mesher/Models/Nodes/Ruled/BoxVoxelGeometryNode.d.ts +3 -6
  46. package/Mesher/Models/Nodes/Ruled/BoxVoxelGeometryNode.js +55 -40
  47. package/Mesher/Models/Nodes/Ruled/QuadVoxelGeometryNode.d.ts +2 -6
  48. package/Mesher/Models/Nodes/Ruled/QuadVoxelGeometryNode.js +52 -51
  49. package/Mesher/Models/Nodes/Ruleless/RulelessBoxVoxelGeometryNode.d.ts +2 -6
  50. package/Mesher/Models/Nodes/Ruleless/RulelessBoxVoxelGeometryNode.js +18 -19
  51. package/Mesher/Models/Nodes/Ruleless/RulelessQuadVoxelGeometryNode.d.ts +2 -6
  52. package/Mesher/Models/Nodes/Ruleless/RulelessQuadVoxelGeometryNode.js +37 -40
  53. package/Mesher/{Tools → Models/Protocols}/OutlinedVoxelTool.d.ts +1 -1
  54. package/Mesher/{Tools → Models/Protocols}/OutlinedVoxelTool.js +1 -1
  55. package/Mesher/Models/RenderedMaterials.d.ts +6 -0
  56. package/Mesher/{RenderedMaterials.js → Models/RenderedMaterials.js} +2 -2
  57. package/Mesher/Models/VoxelConstructor.d.ts +4 -5
  58. package/Mesher/Models/VoxelConstructor.js +23 -12
  59. package/Mesher/Models/{VoxelGeometryLookUp.d.ts → VoxelGeometryBuilderCacheSpace.d.ts} +6 -14
  60. package/Mesher/Models/{VoxelGeometryLookUp.js → VoxelGeometryBuilderCacheSpace.js} +26 -44
  61. package/Mesher/{Tools/VoxelMesherDataTool.d.ts → Models/VoxelModelBuilder.d.ts} +10 -8
  62. package/Mesher/{Tools/VoxelMesherDataTool.js → Models/VoxelModelBuilder.js} +44 -19
  63. package/Mesher/Models/VoxelModelConstructorRegister.js +3 -3
  64. package/Models/Defaults/CubeVoxelGeometry.js +4 -0
  65. package/Models/Defaults/CubeVoxelModels.js +344 -344
  66. package/Models/Defaults/LiquidVoxelModel.js +2 -2
  67. package/Models/Defaults/PanelVoxelModels.js +432 -432
  68. package/Models/Defaults/StairVoxelModel.js +576 -576
  69. package/Models/Examples.js +469 -456
  70. package/Models/Indexing/VoxelAOResultsIndex.d.ts +4 -4
  71. package/Models/Indexing/VoxelAOResultsIndex.js +15 -9
  72. package/Models/Indexing/VoxelFaceCullResultsIndex.d.ts +3 -3
  73. package/Models/Indexing/VoxelFaceCullResultsIndex.js +14 -9
  74. package/Models/Indexing/VoxelFaceTransparentResultsIndex.d.ts +1 -1
  75. package/Models/Indexing/VoxelFaceTransparentResultsIndex.js +1 -1
  76. package/Models/Rules/Functions/BuildFinalInputs.js +9 -7
  77. package/Models/Rules/Functions/BuildGeomtryInputs.js +8 -5
  78. package/Models/Rules/Functions/BuildRules.js +4 -4
  79. package/Models/Rules/{VoxelModelManager.d.ts → VoxelModelRuleBuilderRegister.d.ts} +1 -1
  80. package/Models/Rules/VoxelModelRuleBuilderRegister.js +178 -0
  81. package/Models/VoxelModel.types.d.ts +14 -5
  82. package/Renderer/Classes/SectorMesh.d.ts +3 -4
  83. package/Renderer/Classes/SectorMesh.js +6 -11
  84. package/Renderer/InitTasks.js +6 -7
  85. package/Renderer/MeshManager.js +2 -2
  86. package/Renderer/MeshRegister.js +2 -1
  87. package/Settings/EngineSettings.d.ts +1 -1
  88. package/Settings/EngineSettings.js +3 -5
  89. package/Settings/EngineSettings.types.d.ts +17 -18
  90. package/Settings/EngineSettings.types.js +16 -15
  91. package/Tasks/IWG/IWG.d.ts +2 -1
  92. package/Tasks/IWG/IWG.js +9 -3
  93. package/Tasks/IWG/Internal/Classes/BuildQueue.d.ts +11 -0
  94. package/Tasks/IWG/Internal/Classes/BuildQueue.js +49 -0
  95. package/Tasks/IWG/Internal/Classes/Generator.d.ts +6 -1
  96. package/Tasks/IWG/Internal/Classes/Generator.js +14 -2
  97. package/Tasks/IWG/Internal/Classes/IWGTaskBase.js +2 -2
  98. package/Tasks/IWG/Internal/Functions/getSectorState.js +4 -7
  99. package/Tasks/IWG/Internal/Functions/runBuildUpdate.js +21 -2
  100. package/Tasks/IWG/Internal/Functions/runWorldUpdate.js +5 -6
  101. package/Tasks/IWG/Internal/IWGTasks.d.ts +0 -4
  102. package/Tasks/IWG/Internal/IWGTasks.js +12 -31
  103. package/Tasks/IWG/Internal/IWGTools.d.ts +1 -1
  104. package/Tasks/IWG/Procedures/SaveAllSectors.js +2 -0
  105. package/Tasks/Propagation/Flow/FlowManager.d.ts +0 -2
  106. package/Tasks/Propagation/Flow/FlowManager.js +86 -87
  107. package/Tasks/Propagation/Flow/WorldFlow.js +2 -3
  108. package/Tasks/Propagation/Illumanation/WorldRGB.js +1 -2
  109. package/Tasks/Update/InitTasks.d.ts +2 -1
  110. package/Tasks/Update/InitTasks.js +6 -6
  111. package/Tasks/Update/UpdateTask.d.ts +3 -1
  112. package/Tasks/Update/UpdateTask.js +28 -2
  113. package/Tasks/Update/VoxelUpdate.js +21 -7
  114. package/Tasks/WorldGeneration/WorldGenBrush.js +2 -1
  115. package/Templates/Cursor/TemplateCursor.d.ts +2 -2
  116. package/Templates/Cursor/TemplateCursor.js +1 -2
  117. package/Templates/Functions/CreateTemplate.js +1 -1
  118. package/Templates/VoxelTemplate.js +6 -8
  119. package/Templates/VoxelTemplates.types.d.ts +1 -1
  120. package/Textures/Classes/CompiledTexture.d.ts +18 -0
  121. package/Textures/Classes/CompiledTexture.js +50 -0
  122. package/Textures/Classes/CompiledTextureAnimation.d.ts +12 -0
  123. package/Textures/Classes/CompiledTextureAnimation.js +27 -0
  124. package/Textures/Classes/TextureAnimationTexture.d.ts +10 -0
  125. package/Textures/Classes/TextureAnimationTexture.js +32 -0
  126. package/Textures/Functions/BuildTextureData.d.ts +10 -0
  127. package/Textures/Functions/BuildTextureData.js +205 -0
  128. package/Textures/Texture.types.d.ts +50 -64
  129. package/Textures/TextureManager.d.ts +8 -19
  130. package/Textures/TextureManager.js +28 -166
  131. package/Tools/Brush/Brush.d.ts +1 -3
  132. package/Tools/Brush/Brush.js +43 -12
  133. package/Util/Binary/BinaryArrays.d.ts +6 -0
  134. package/Util/Binary/BinaryArrays.js +25 -0
  135. package/Util/Binary/BinaryBuffer.d.ts +29 -0
  136. package/Util/Binary/BinaryBuffer.js +130 -0
  137. package/Util/Binary/BinaryFunctions.d.ts +3 -0
  138. package/Util/Binary/BinaryFunctions.js +11 -0
  139. package/Util/StringPalette.d.ts +1 -0
  140. package/Util/StringPalette.js +8 -0
  141. package/Voxels/Cursor/DataCursor.interface.d.ts +5 -0
  142. package/Voxels/Cursor/VoxelCursor.d.ts +6 -6
  143. package/Voxels/Cursor/VoxelCursor.interface.d.ts +11 -16
  144. package/Voxels/Cursor/VoxelCursor.interface.js +35 -58
  145. package/Voxels/Cursor/VoxelCursor.js +13 -12
  146. package/Voxels/Cursor/VoxelLightData.d.ts +3 -4
  147. package/Voxels/Cursor/VoxelLightData.js +8 -7
  148. package/Voxels/Data/VoxelPalettesRegister.d.ts +8 -0
  149. package/Voxels/Data/VoxelPalettesRegister.js +8 -0
  150. package/Voxels/Data/VoxelTag.types.d.ts +56 -0
  151. package/Voxels/Data/VoxelTag.types.js +23 -0
  152. package/Voxels/{State → Data}/VoxelTagStates.d.ts +2 -2
  153. package/Voxels/{State → Data}/VoxelTagStates.js +5 -5
  154. package/Voxels/Data/VoxelTagsRegister.d.ts +9 -0
  155. package/Voxels/Data/VoxelTagsRegister.js +32 -0
  156. package/Voxels/Functions/BuildStateData.js +12 -12
  157. package/Voxels/Functions/BuildTagAndPaletteData.d.ts +13 -0
  158. package/Voxels/Functions/BuildTagAndPaletteData.js +55 -0
  159. package/Voxels/Indexes/VoxelIndex.js +3 -3
  160. package/Voxels/InitVoxelData.js +31 -73
  161. package/Voxels/State/Schema/StateSchema.d.ts +1 -1
  162. package/Voxels/Types/Voxel.types.d.ts +20 -42
  163. package/Voxels/Types/Voxel.types.js +6 -17
  164. package/Voxels/Types/VoxelModelCompiledData.types.d.ts +11 -13
  165. package/Voxels/Types/VoxelSubstances.types.d.ts +2 -15
  166. package/Voxels/Types/VoxelSubstances.types.js +1 -9
  167. package/World/Archive/Archive.types.d.ts +38 -34
  168. package/World/Archive/Functions/ArchiveArea.js +18 -30
  169. package/World/Archive/Functions/ArchiveSector.js +484 -213
  170. package/World/Archive/Functions/ImportSector.d.ts +3 -3
  171. package/World/Archive/Functions/ImportSector.js +205 -151
  172. package/World/Archive/Functions/Shared.d.ts +6 -0
  173. package/World/Archive/Functions/Shared.js +75 -0
  174. package/World/Archive/InitTasks.js +30 -13
  175. package/World/Cursor/SectionCursor.d.ts +3 -2
  176. package/World/Cursor/SectionCursor.js +9 -4
  177. package/World/Cursor/SectorCursor.d.ts +3 -2
  178. package/World/Cursor/SectorCursor.js +5 -3
  179. package/World/Cursor/WorldCursor.d.ts +2 -2
  180. package/World/Cursor/WorldCursor.js +6 -3
  181. package/World/Cursor/WorldVoxelCursor.d.ts +7 -7
  182. package/World/Cursor/WorldVoxelCursor.js +21 -24
  183. package/World/InitTasks.d.ts +1 -1
  184. package/World/Lock/WorldLock.d.ts +1 -1
  185. package/World/Section/Section.d.ts +31 -23
  186. package/World/Section/Section.js +116 -18
  187. package/World/Section/SectionState.d.ts +10 -0
  188. package/World/Section/SectionState.js +11 -0
  189. package/World/Sector/Sector.d.ts +24 -9
  190. package/World/Sector/Sector.js +92 -21
  191. package/World/Sector/SectorHeightMap.js +3 -5
  192. package/World/Sector/SectorState.d.ts +21 -0
  193. package/World/Sector/SectorState.js +28 -0
  194. package/World/WorldRegister.d.ts +4 -0
  195. package/World/WorldRegister.js +15 -3
  196. package/World/WorldSpaces.d.ts +6 -0
  197. package/World/WorldSpaces.js +25 -6
  198. package/package.json +1 -1
  199. package/Data/Cursor/DataCursor.interface.d.ts +0 -5
  200. package/Data/Cursor/DataCursor.interface.js +0 -2
  201. package/Data/Register/MappedDataRegister.d.ts +0 -5
  202. package/Data/Register/MappedDataRegister.js +0 -9
  203. package/Data/Register/MappedRegisterBase.d.ts +0 -14
  204. package/Data/Register/MappedRegisterBase.js +0 -50
  205. package/Data/Structs/StructBuilder.d.ts +0 -34
  206. package/Data/Structs/StructBuilder.js +0 -157
  207. package/Data/Structs/StructBuilder.types.d.ts +0 -30
  208. package/Mesher/Functions/CompactMesh.d.ts +0 -2
  209. package/Mesher/Functions/CompactMesh.js +0 -42
  210. package/Mesher/Geomtry/Buffers.js +0 -81
  211. package/Mesher/Geomtry/GeometryNormals.d.ts +0 -10
  212. package/Mesher/Geomtry/GeometryNormals.js +0 -52
  213. package/Mesher/Geomtry/MeshData.types.d.ts +0 -13
  214. package/Mesher/Geomtry/MeshData.types.js +0 -6
  215. package/Mesher/Geomtry/Tools/MesherDataTools.d.ts +0 -7
  216. package/Mesher/Geomtry/Tools/MesherDataTools.js +0 -12
  217. package/Mesher/Geomtry/Tools/index.d.ts +0 -1
  218. package/Mesher/Geomtry/Tools/index.js +0 -1
  219. package/Mesher/RenderedMaterials.d.ts +0 -6
  220. package/Models/Rules/VoxelModelManager.js +0 -82
  221. package/Textures/TextureAnimations.d.ts +0 -4
  222. package/Textures/TextureAnimations.js +0 -35
  223. package/Textures/TextureArray.d.ts +0 -47
  224. package/Textures/TextureArray.js +0 -202
  225. package/Textures/TextureBuilder.d.ts +0 -13
  226. package/Textures/TextureBuilder.js +0 -120
  227. package/Textures/TextureRegister.d.ts +0 -9
  228. package/Textures/TextureRegister.js +0 -28
  229. package/Tools/Data/SubstanceDataTool.d.ts +0 -13
  230. package/Tools/Data/SubstanceDataTool.js +0 -51
  231. package/Voxels/Palettes/MaterialPalette.d.ts +0 -9
  232. package/Voxels/Palettes/MaterialPalette.js +0 -11
  233. package/Voxels/Palettes/SubstancePalette.d.ts +0 -9
  234. package/Voxels/Palettes/SubstancePalette.js +0 -11
  235. package/Voxels/Palettes/VoxelPalette.d.ts +0 -11
  236. package/Voxels/Palettes/VoxelPalette.js +0 -15
  237. package/Voxels/Segments/MaterialDataGenerator.d.ts +0 -6
  238. package/Voxels/Segments/MaterialDataGenerator.js +0 -12
  239. package/Voxels/Segments/SubstanceDataGenerator.d.ts +0 -6
  240. package/Voxels/Segments/SubstanceDataGenerator.js +0 -35
  241. package/Voxels/Segments/VoxelDataGenerator.d.ts +0 -10
  242. package/Voxels/Segments/VoxelDataGenerator.js +0 -56
  243. package/Voxels/Structs/Builder/SubstanceStructBuilder.d.ts +0 -2
  244. package/Voxels/Structs/Builder/SubstanceStructBuilder.js +0 -42
  245. package/Voxels/Structs/Builder/VoxelStructBuilder.d.ts +0 -2
  246. package/Voxels/Structs/Builder/VoxelStructBuilder.js +0 -68
  247. package/Voxels/Structs/SubstanceStruct.d.ts +0 -17
  248. package/Voxels/Structs/SubstanceStruct.js +0 -17
  249. package/Voxels/Structs/VoxelStruct.d.ts +0 -27
  250. package/Voxels/Structs/VoxelStruct.js +0 -29
  251. package/World/Section/SectionHeightMap.d.ts +0 -10
  252. package/World/Section/SectionHeightMap.js +0 -39
  253. package/World/Section/SectionStruct.d.ts +0 -8
  254. package/World/Section/SectionStruct.js +0 -29
  255. package/World/Section/SectionStructProperties.d.ts +0 -10
  256. package/World/Section/SectionStructProperties.js +0 -11
  257. package/World/Sector/SectorStruct.d.ts +0 -1
  258. package/World/Sector/SectorStruct.js +0 -46
  259. package/World/Sector/SectorStructIds.d.ts +0 -13
  260. package/World/Sector/SectorStructIds.js +0 -14
  261. package/World/Structs/WorldDataStructProperties.d.ts +0 -8
  262. package/World/Structs/WorldDataStructProperties.js +0 -9
  263. /package/Mesher/{VoxelShaderData.d.ts → Geomtry/VoxelShaderData.d.ts} +0 -0
  264. /package/Mesher/{VoxelShaderData.js → Geomtry/VoxelShaderData.js} +0 -0
  265. /package/{Data/Functions → Util/Binary}/Palettes.d.ts +0 -0
  266. /package/{Data/Functions → Util/Binary}/Palettes.js +0 -0
  267. /package/{Data/Structs/StructBuilder.types.js → Voxels/Cursor/DataCursor.interface.js} +0 -0
  268. /package/Voxels/{VoxelLevelReader.d.ts → Cursor/VoxelLevelReader.d.ts} +0 -0
  269. /package/Voxels/{VoxelLevelReader.js → Cursor/VoxelLevelReader.js} +0 -0
  270. /package/World/{Storage → Types}/WorldStorage.interface.d.ts +0 -0
  271. /package/World/{Storage → Types}/WorldStorage.interface.js +0 -0
@@ -1,5 +1,6 @@
1
1
  export const chainGeometry = {
2
2
  id: "dve_chain",
3
+ divisor: [16, 16, 16],
3
4
  doNotBuildRules: true,
4
5
  arguments: {
5
6
  texture: {
@@ -10,24 +11,24 @@ export const chainGeometry = {
10
11
  {
11
12
  type: "quad",
12
13
  points: [
13
- [5 / 16, 1, 11 / 16],
14
- [11 / 16, 1, 5 / 16],
15
- [11 / 16, 0, 5 / 16],
16
- [5 / 16, 0, 11 / 16],
14
+ [5, 16, 11],
15
+ [11, 16, 5],
16
+ [11, 0, 5],
17
+ [5, 0, 11],
17
18
  ],
18
- uv: [0, 0, 6 / 16, 1],
19
+ uv: [0, 0, 6, 1],
19
20
  texture: "@texture",
20
21
  doubleSided: true,
21
22
  },
22
23
  {
23
24
  type: "quad",
24
25
  points: [
25
- [11 / 16, 1, 11 / 16],
26
- [5 / 16, 1, 5 / 16],
27
- [5 / 16, 0, 5 / 16],
28
- [11 / 16, 0, 11 / 16],
26
+ [11, 16, 11],
27
+ [5, 16, 5],
28
+ [5, 0, 5],
29
+ [11, 0, 11],
29
30
  ],
30
- uv: [0, 0, 6 / 16, 1],
31
+ uv: [0, 0, 6, 16],
31
32
  texture: "@texture",
32
33
  doubleSided: true,
33
34
  },
@@ -59,7 +60,7 @@ export const chainModel = {
59
60
  id: "main",
60
61
  geometryId: "dve_chain",
61
62
  inputs: {
62
- "@texture": "@texture",
63
+ texture: "@texture",
63
64
  },
64
65
  },
65
66
  ],
@@ -67,9 +68,9 @@ export const chainModel = {
67
68
  {
68
69
  id: "main",
69
70
  geometryId: "dve_chain",
70
- rotation: [Math.PI / 2, 0, 0],
71
+ rotation: [90, 0, 0],
71
72
  inputs: {
72
- "@texture": "@texture",
73
+ texture: "@texture",
73
74
  },
74
75
  },
75
76
  ],
@@ -77,9 +78,9 @@ export const chainModel = {
77
78
  {
78
79
  id: "main",
79
80
  geometryId: "dve_chain",
80
- rotation: [0, 0, Math.PI / 2],
81
+ rotation: [0, 0, 90],
81
82
  inputs: {
82
- "@texture": "@texture",
83
+ texture: "@texture",
83
84
  },
84
85
  },
85
86
  ],
@@ -87,6 +88,7 @@ export const chainModel = {
87
88
  };
88
89
  export const carpetGeometry = {
89
90
  id: "dve_carpet",
91
+ divisor: [16, 16, 16],
90
92
  arguments: {
91
93
  topBottomTex: {
92
94
  type: "texture",
@@ -100,32 +102,32 @@ export const carpetGeometry = {
100
102
  type: "box",
101
103
  points: [
102
104
  [0, 0, 0],
103
- [1, 1 / 16, 1],
105
+ [16, 1, 16],
104
106
  ],
105
107
  faces: {
106
108
  up: {
107
109
  texture: "@topBottomTex",
108
- uv: [0, 0, 1, 1],
110
+ uv: [0, 0, 16, 16],
109
111
  },
110
112
  down: {
111
113
  texture: "@topBottomTex",
112
- uv: [0, 0, 1, 1],
114
+ uv: [0, 0, 16, 16],
113
115
  },
114
116
  north: {
115
117
  texture: "@sideTex",
116
- uv: [0, 0, 1, 1 / 16],
118
+ uv: [0, 0, 16, 1],
117
119
  },
118
120
  south: {
119
121
  texture: "@sideTex",
120
- uv: [0, 0, 1, 1 / 16],
122
+ uv: [0, 0, 16, 1],
121
123
  },
122
124
  east: {
123
125
  texture: "@sideTex",
124
- uv: [0, 0, 1, 1 / 16],
126
+ uv: [0, 0, 16, 1],
125
127
  },
126
128
  west: {
127
129
  texture: "@sideTex",
128
- uv: [0, 0, 1, 1 / 16],
130
+ uv: [0, 0, 16, 1],
129
131
  },
130
132
  },
131
133
  },
@@ -150,8 +152,8 @@ export const carpetModel = {
150
152
  id: "main",
151
153
  geometryId: "dve_carpet",
152
154
  inputs: {
153
- "@topBottomTex": "@topBottomTex",
154
- "@sideTex": "@sideTex",
155
+ topBottomTex: "@topBottomTex",
156
+ sideTex: "@sideTex",
155
157
  },
156
158
  },
157
159
  ],
@@ -159,6 +161,7 @@ export const carpetModel = {
159
161
  };
160
162
  export const fencePost = {
161
163
  id: "dve_fence_post",
164
+ divisor: [16, 16, 16],
162
165
  arguments: {
163
166
  upTex: {
164
167
  type: "texture",
@@ -183,33 +186,33 @@ export const fencePost = {
183
186
  {
184
187
  type: "box",
185
188
  points: [
186
- [6 / 16, 0, 6 / 16],
187
- [10 / 16, 1, 10 / 16],
189
+ [6, 0, 6],
190
+ [10, 16, 10],
188
191
  ],
189
192
  faces: {
190
193
  up: {
191
194
  texture: "@upTex",
192
- uv: [6 / 16, 6 / 16, 10 / 16, 10 / 16],
195
+ uv: [6, 6, 10, 10],
193
196
  },
194
197
  down: {
195
198
  texture: "@downTex",
196
- uv: [6 / 16, 6 / 16, 10 / 16, 10 / 16],
199
+ uv: [6, 6, 10, 10],
197
200
  },
198
201
  north: {
199
202
  texture: "@northTex",
200
- uv: [6 / 16, 0, 10 / 16, 1],
203
+ uv: [6, 0, 10, 16],
201
204
  },
202
205
  south: {
203
206
  texture: "@southTex",
204
- uv: [6 / 16, 0, 10 / 16, 1],
207
+ uv: [6, 0, 10, 16],
205
208
  },
206
209
  east: {
207
210
  texture: "@eastTex",
208
- uv: [6 / 16, 0, 10 / 16, 1],
211
+ uv: [6, 0, 10, 16],
209
212
  },
210
213
  west: {
211
214
  texture: "@westTex",
212
- uv: [6 / 16, 0, 10 / 16, 1],
215
+ uv: [6, 0, 10, 16],
213
216
  },
214
217
  },
215
218
  },
@@ -217,6 +220,7 @@ export const fencePost = {
217
220
  };
218
221
  export const fenceEastWest = {
219
222
  id: "dve_fence_east_west",
223
+ divisor: [16, 16, 16],
220
224
  arguments: {
221
225
  upTex: {
222
226
  type: "texture",
@@ -241,66 +245,66 @@ export const fenceEastWest = {
241
245
  {
242
246
  type: "box",
243
247
  points: [
244
- [0, 12 / 16, 7 / 16],
245
- [6 / 16, 15 / 16, 9 / 16],
248
+ [0, 12, 7],
249
+ [6, 15, 9],
246
250
  ],
247
251
  faces: {
248
252
  up: {
249
253
  texture: "@upTex",
250
- uv: [0, 7 / 16, 7 / 16, 9 / 16],
254
+ uv: [0, 7, 7, 9],
251
255
  },
252
256
  down: {
253
257
  texture: "@downTex",
254
- uv: [0, 7 / 16, 7 / 16, 9 / 16],
258
+ uv: [0, 7, 7, 9],
255
259
  },
256
260
  north: {
257
261
  texture: "@northTex",
258
- uv: [0, 7 / 16, 6 / 16, 10 / 16],
262
+ uv: [0, 7, 6, 10],
259
263
  },
260
264
  south: {
261
265
  texture: "@southTex",
262
- uv: [0, 7 / 16, 6 / 16, 10 / 16],
266
+ uv: [0, 7, 6, 10],
263
267
  },
264
268
  east: {
265
269
  texture: "@eastTex",
266
- uv: [0, 7 / 16, 6 / 16, 10 / 16],
270
+ uv: [0, 7, 6, 10],
267
271
  },
268
272
  west: {
269
273
  texture: "@westTex",
270
- uv: [0, 7 / 16, 6 / 16, 10 / 16],
274
+ uv: [0, 7, 6, 10],
271
275
  },
272
276
  },
273
277
  },
274
278
  {
275
279
  type: "box",
276
280
  points: [
277
- [0, 6 / 16, 7 / 16],
278
- [6 / 16, 9 / 16, 9 / 16],
281
+ [0, 6, 7],
282
+ [6, 9, 9],
279
283
  ],
280
284
  faces: {
281
285
  up: {
282
286
  texture: "@upTex",
283
- uv: [0, 7 / 16, 7 / 16, 9 / 16],
287
+ uv: [0, 7, 7, 9],
284
288
  },
285
289
  down: {
286
290
  texture: "@downTex",
287
- uv: [0, 7 / 16, 7 / 16, 9 / 16],
291
+ uv: [0, 7, 7, 9],
288
292
  },
289
293
  north: {
290
294
  texture: "@northTex",
291
- uv: [0, 7 / 16, 6 / 16, 10 / 16],
295
+ uv: [0, 7, 6, 10],
292
296
  },
293
297
  south: {
294
298
  texture: "@southTex",
295
- uv: [0, 7 / 16, 6 / 16, 10 / 16],
299
+ uv: [0, 7, 6, 10],
296
300
  },
297
301
  east: {
298
302
  texture: "@eastTex",
299
- uv: [0, 7 / 16, 6 / 16, 10 / 16],
303
+ uv: [0, 7, 6, 10],
300
304
  },
301
305
  west: {
302
306
  texture: "@westTex",
303
- uv: [0, 7 / 16, 6 / 16, 10 / 16],
307
+ uv: [0, 7, 6, 10],
304
308
  },
305
309
  },
306
310
  },
@@ -308,6 +312,7 @@ export const fenceEastWest = {
308
312
  };
309
313
  export const fenceNorthsouth = {
310
314
  id: "dve_fence_north_south",
315
+ divisor: [16, 16, 16],
311
316
  arguments: {
312
317
  upTex: {
313
318
  type: "texture",
@@ -332,66 +337,66 @@ export const fenceNorthsouth = {
332
337
  {
333
338
  type: "box",
334
339
  points: [
335
- [7 / 16, 12 / 16, 0],
336
- [9 / 16, 15 / 16, 6 / 16],
340
+ [7, 12, 0],
341
+ [9, 15, 6],
337
342
  ],
338
343
  faces: {
339
344
  up: {
340
345
  texture: "@upTex",
341
- uv: [7 / 16, 0, 9 / 16, 7 / 16],
346
+ uv: [7, 0, 9, 7],
342
347
  },
343
348
  down: {
344
349
  texture: "@downTex",
345
- uv: [7 / 16, 0, 9 / 16, 7 / 16],
350
+ uv: [7, 0, 9, 7],
346
351
  },
347
352
  north: {
348
353
  texture: "@northTex",
349
- uv: [0, 7 / 16, 6 / 16, 10 / 16],
354
+ uv: [0, 7, 6, 10],
350
355
  },
351
356
  south: {
352
357
  texture: "@southTex",
353
- uv: [0, 7 / 16, 6 / 16, 10 / 16],
358
+ uv: [0, 7, 6, 10],
354
359
  },
355
360
  east: {
356
361
  texture: "@eastTex",
357
- uv: [0, 7 / 16, 6 / 16, 10 / 16],
362
+ uv: [0, 7, 6, 10],
358
363
  },
359
364
  west: {
360
365
  texture: "@westTex",
361
- uv: [0, 7 / 16, 6 / 16, 10 / 16],
366
+ uv: [0, 7, 6, 10],
362
367
  },
363
368
  },
364
369
  },
365
370
  {
366
371
  type: "box",
367
372
  points: [
368
- [7 / 16, 6 / 16, 0],
369
- [9 / 16, 9 / 16, 6 / 16],
373
+ [7, 6, 0],
374
+ [9, 9, 6],
370
375
  ],
371
376
  faces: {
372
377
  up: {
373
378
  texture: "@upTex",
374
- uv: [7 / 16, 0, 9 / 16, 7 / 16],
379
+ uv: [7, 0, 9, 7],
375
380
  },
376
381
  down: {
377
382
  texture: "@downTex",
378
- uv: [7 / 16, 0, 9 / 16, 7 / 16],
383
+ uv: [7, 0, 9, 7],
379
384
  },
380
385
  north: {
381
386
  texture: "@northTex",
382
- uv: [0, 7 / 16, 6 / 16, 10 / 16],
387
+ uv: [0, 7, 6, 10],
383
388
  },
384
389
  south: {
385
390
  texture: "@southTex",
386
- uv: [0, 7 / 16, 6 / 16, 10 / 16],
391
+ uv: [0, 7, 6, 10],
387
392
  },
388
393
  east: {
389
394
  texture: "@eastTex",
390
- uv: [0, 7 / 16, 6 / 16, 10 / 16],
395
+ uv: [0, 7, 6, 10],
391
396
  },
392
397
  west: {
393
398
  texture: "@westTex",
394
- uv: [0, 7 / 16, 6 / 16, 10 / 16],
399
+ uv: [0, 7, 6, 10],
395
400
  },
396
401
  },
397
402
  },
@@ -464,12 +469,12 @@ export const fence = {
464
469
  id: "fence_connection_south",
465
470
  geometryId: "dve_fence_north_south",
466
471
  inputs: {
467
- "@upTex": "@upTex",
468
- "@downTex": "@downTex",
469
- "@northTex": "@northTex",
470
- "@southTex": "@southTex",
471
- "@eastTex": "@eastTex",
472
- "@westTex": "@westTex",
472
+ upTex: "@upTex",
473
+ downTex: "@downTex",
474
+ northTex: "@northTex",
475
+ southTex: "@southTex",
476
+ eastTex: "@eastTex",
477
+ westTex: "@westTex",
473
478
  },
474
479
  },
475
480
  ],
@@ -477,29 +482,29 @@ export const fence = {
477
482
  {
478
483
  id: "fence_connection_north",
479
484
  geometryId: "dve_fence_north_south",
480
- position: [0, 0, 10 / 16],
485
+ position: [0, 0, 10],
481
486
  inputs: {
482
- "@upTex": "@upTex",
483
- "@downTex": "@downTex",
484
- "@northTex": "@northTex",
485
- "@southTex": "@southTex",
486
- "@eastTex": "@eastTex",
487
- "@westTex": "@westTex",
487
+ upTex: "@upTex",
488
+ downTex: "@downTex",
489
+ northTex: "@northTex",
490
+ southTex: "@southTex",
491
+ eastTex: "@eastTex",
492
+ westTex: "@westTex",
488
493
  },
489
494
  },
490
495
  ],
491
496
  "same-east=true": [
492
497
  {
493
498
  id: "fence_connection_east",
494
- position: [10 / 16, 0, 0],
499
+ position: [10, 0, 0],
495
500
  geometryId: "dve_fence_east_west",
496
501
  inputs: {
497
- "@upTex": "@upTex",
498
- "@downTex": "@downTex",
499
- "@northTex": "@northTex",
500
- "@southTex": "@southTex",
501
- "@eastTex": "@eastTex",
502
- "@westTex": "@westTex",
502
+ upTex: "@upTex",
503
+ downTex: "@downTex",
504
+ northTex: "@northTex",
505
+ southTex: "@southTex",
506
+ eastTex: "@eastTex",
507
+ westTex: "@westTex",
503
508
  },
504
509
  },
505
510
  ],
@@ -508,12 +513,12 @@ export const fence = {
508
513
  id: "fence_connection_west",
509
514
  geometryId: "dve_fence_east_west",
510
515
  inputs: {
511
- "@upTex": "@upTex",
512
- "@downTex": "@downTex",
513
- "@northTex": "@northTex",
514
- "@southTex": "@southTex",
515
- "@eastTex": "@eastTex",
516
- "@westTex": "@westTex",
516
+ upTex: "@upTex",
517
+ downTex: "@downTex",
518
+ northTex: "@northTex",
519
+ southTex: "@southTex",
520
+ eastTex: "@eastTex",
521
+ westTex: "@westTex",
517
522
  },
518
523
  },
519
524
  ],
@@ -524,12 +529,12 @@ export const fence = {
524
529
  id: "fence_post",
525
530
  geometryId: "dve_fence_post",
526
531
  inputs: {
527
- "@upTex": "@upTex",
528
- "@downTex": "@downTex",
529
- "@northTex": "@northTex",
530
- "@southTex": "@southTex",
531
- "@eastTex": "@eastTex",
532
- "@westTex": "@westTex",
532
+ upTex: "@upTex",
533
+ downTex: "@downTex",
534
+ northTex: "@northTex",
535
+ southTex: "@southTex",
536
+ eastTex: "@eastTex",
537
+ westTex: "@westTex",
533
538
  },
534
539
  },
535
540
  ],
@@ -537,6 +542,7 @@ export const fence = {
537
542
  };
538
543
  export const candlesGeometry1 = {
539
544
  id: "dve_candle_state_1",
545
+ divisor: [16, 16, 16],
540
546
  doNotBuildRules: true,
541
547
  arguments: {
542
548
  candleTexture: {
@@ -547,57 +553,57 @@ export const candlesGeometry1 = {
547
553
  {
548
554
  type: "box",
549
555
  points: [
550
- [7 / 16, 0, 7 / 16],
551
- [9 / 16, 6 / 16, 9 / 16],
556
+ [7, 0, 7],
557
+ [9, 6, 9],
552
558
  ],
553
559
  faces: {
554
560
  up: {
555
561
  texture: "@candleTexture",
556
- uv: [10 / 16, 13 / 16, 11 / 16, 15 / 16],
562
+ uv: [10, 13, 11, 15],
557
563
  },
558
564
  down: {
559
565
  texture: "@candleTexture",
560
- uv: [9 / 16, 12 / 16, 12 / 16, 1],
566
+ uv: [9, 12, 12, 16],
561
567
  },
562
568
  north: {
563
569
  texture: "@candleTexture",
564
- uv: [0 / 16, 10 / 16, 2 / 16, 1],
570
+ uv: [0, 10, 2, 16],
565
571
  },
566
572
  south: {
567
573
  texture: "@candleTexture",
568
- uv: [3 / 16, 10 / 16, 5 / 16, 1],
574
+ uv: [3, 10, 5, 16],
569
575
  },
570
576
  east: {
571
577
  texture: "@candleTexture",
572
- uv: [6 / 16, 10 / 16, 8 / 16, 1],
578
+ uv: [6, 10, 8, 16],
573
579
  },
574
580
  west: {
575
581
  texture: "@candleTexture",
576
- uv: [0 / 16, 10 / 16, 2 / 16, 1],
582
+ uv: [0, 10, 2, 16],
577
583
  },
578
584
  },
579
585
  },
580
586
  {
581
587
  type: "quad",
582
588
  points: [
583
- [7 / 16, 8 / 16, 9 / 16],
584
- [9 / 16, 8 / 16, 7 / 16],
585
- [9 / 16, 6 / 16, 7 / 16],
586
- [7 / 16, 6 / 16, 9 / 16],
589
+ [7, 8, 9],
590
+ [9, 8, 7],
591
+ [9, 6, 7],
592
+ [7, 6, 9],
587
593
  ],
588
- uv: [14 / 16, 14 / 16, 1, 1],
594
+ uv: [14, 14, 16, 16],
589
595
  texture: "@candleTexture",
590
596
  doubleSided: true,
591
597
  },
592
598
  {
593
599
  type: "quad",
594
600
  points: [
595
- [9 / 16, 8 / 16, 9 / 16],
596
- [7 / 16, 8 / 16, 7 / 16],
597
- [7 / 16, 6 / 16, 7 / 16],
598
- [9 / 16, 6 / 16, 9 / 16],
601
+ [9, 8, 9],
602
+ [7, 8, 7],
603
+ [7, 6, 7],
604
+ [9, 6, 9],
599
605
  ],
600
- uv: [14 / 16, 14 / 16, 1, 1],
606
+ uv: [14, 14, 16, 16],
601
607
  texture: "@candleTexture",
602
608
  doubleSided: true,
603
609
  },
@@ -606,6 +612,7 @@ export const candlesGeometry1 = {
606
612
  export const candlesGeometry2 = {
607
613
  id: "dve_candle_state_2",
608
614
  doNotBuildRules: true,
615
+ divisor: [16, 16, 16],
609
616
  arguments: {
610
617
  candleTexture: {
611
618
  type: "texture",
@@ -615,57 +622,57 @@ export const candlesGeometry2 = {
615
622
  {
616
623
  type: "box",
617
624
  points: [
618
- [7 / 16, 0, 7 / 16],
619
- [9 / 16, 5 / 16, 9 / 16],
625
+ [7, 0, 7],
626
+ [9, 5, 9],
620
627
  ],
621
628
  faces: {
622
629
  up: {
623
630
  texture: "@candleTexture",
624
- uv: [10 / 16, 13 / 16, 11 / 16, 15 / 16],
631
+ uv: [10, 13, 11, 15],
625
632
  },
626
633
  down: {
627
634
  texture: "@candleTexture",
628
- uv: [9 / 16, 12 / 16, 12 / 16, 1],
635
+ uv: [9, 12, 12, 16],
629
636
  },
630
637
  north: {
631
638
  texture: "@candleTexture",
632
- uv: [0 / 16, 11 / 16, 2 / 16, 1],
639
+ uv: [0, 11, 2, 16],
633
640
  },
634
641
  south: {
635
642
  texture: "@candleTexture",
636
- uv: [3 / 16, 11 / 16, 5 / 16, 1],
643
+ uv: [3, 11, 5, 16],
637
644
  },
638
645
  east: {
639
646
  texture: "@candleTexture",
640
- uv: [6 / 16, 11 / 16, 8 / 16, 1],
647
+ uv: [6, 11, 8, 16],
641
648
  },
642
649
  west: {
643
650
  texture: "@candleTexture",
644
- uv: [0 / 16, 11 / 16, 2 / 16, 1],
651
+ uv: [0, 11, 2, 16],
645
652
  },
646
653
  },
647
654
  },
648
655
  {
649
656
  type: "quad",
650
657
  points: [
651
- [7 / 16, 7 / 16, 9 / 16],
652
- [9 / 16, 7 / 16, 7 / 16],
653
- [9 / 16, 5 / 16, 7 / 16],
654
- [7 / 16, 5 / 16, 9 / 16],
658
+ [7, 7, 9],
659
+ [9, 7, 7],
660
+ [9, 5, 7],
661
+ [7, 5, 9],
655
662
  ],
656
- uv: [14 / 16, 14 / 16, 1, 1],
663
+ uv: [14, 14, 16, 16],
657
664
  texture: "@candleTexture",
658
665
  doubleSided: true,
659
666
  },
660
667
  {
661
668
  type: "quad",
662
669
  points: [
663
- [9 / 16, 7 / 16, 9 / 16],
664
- [7 / 16, 7 / 16, 7 / 16],
665
- [7 / 16, 5 / 16, 7 / 16],
666
- [9 / 16, 5 / 16, 9 / 16],
670
+ [9, 7, 9],
671
+ [7, 7, 7],
672
+ [7, 5, 7],
673
+ [9, 5, 9],
667
674
  ],
668
- uv: [14 / 16, 14 / 16, 1, 1],
675
+ uv: [14, 14, 16, 16],
669
676
  texture: "@candleTexture",
670
677
  doubleSided: true,
671
678
  },
@@ -674,6 +681,7 @@ export const candlesGeometry2 = {
674
681
  export const candlesGeometry3 = {
675
682
  id: "dve_candle_state_3",
676
683
  doNotBuildRules: true,
684
+ divisor: [16, 16, 16],
677
685
  arguments: {
678
686
  candleTexture: {
679
687
  type: "texture",
@@ -683,57 +691,57 @@ export const candlesGeometry3 = {
683
691
  {
684
692
  type: "box",
685
693
  points: [
686
- [7 / 16, 0, 7 / 16],
687
- [9 / 16, 4 / 16, 9 / 16],
694
+ [7, 0, 7],
695
+ [9, 4, 9],
688
696
  ],
689
697
  faces: {
690
698
  up: {
691
699
  texture: "@candleTexture",
692
- uv: [10 / 16, 13 / 16, 11 / 16, 15 / 16],
700
+ uv: [10, 13, 11, 15],
693
701
  },
694
702
  down: {
695
703
  texture: "@candleTexture",
696
- uv: [9 / 16, 12 / 16, 12 / 16, 1],
704
+ uv: [9, 12, 12, 16],
697
705
  },
698
706
  north: {
699
707
  texture: "@candleTexture",
700
- uv: [0 / 16, 12 / 16, 2 / 16, 1],
708
+ uv: [0, 12, 2, 16],
701
709
  },
702
710
  south: {
703
711
  texture: "@candleTexture",
704
- uv: [3 / 16, 12 / 16, 5 / 16, 1],
712
+ uv: [3, 12, 5, 16],
705
713
  },
706
714
  east: {
707
715
  texture: "@candleTexture",
708
- uv: [6 / 16, 12 / 16, 8 / 16, 1],
716
+ uv: [6, 12, 8, 16],
709
717
  },
710
718
  west: {
711
719
  texture: "@candleTexture",
712
- uv: [0 / 16, 12 / 16, 2 / 16, 1],
720
+ uv: [0, 12, 2, 16],
713
721
  },
714
722
  },
715
723
  },
716
724
  {
717
725
  type: "quad",
718
726
  points: [
719
- [7 / 16, 6 / 16, 9 / 16],
720
- [9 / 16, 6 / 16, 7 / 16],
721
- [9 / 16, 4 / 16, 7 / 16],
722
- [7 / 16, 4 / 16, 9 / 16],
727
+ [7, 6, 9],
728
+ [9, 6, 7],
729
+ [9, 4, 7],
730
+ [7, 4, 9],
723
731
  ],
724
- uv: [14 / 16, 14 / 16, 1, 1],
732
+ uv: [14, 14, 16, 16],
725
733
  texture: "@candleTexture",
726
734
  doubleSided: true,
727
735
  },
728
736
  {
729
737
  type: "quad",
730
738
  points: [
731
- [9 / 16, 6 / 16, 9 / 16],
732
- [7 / 16, 6 / 16, 7 / 16],
733
- [7 / 16, 4 / 16, 7 / 16],
734
- [9 / 16, 4 / 16, 9 / 16],
739
+ [9, 6, 9],
740
+ [7, 6, 7],
741
+ [7, 4, 7],
742
+ [9, 4, 9],
735
743
  ],
736
- uv: [14 / 16, 14 / 16, 1, 1],
744
+ uv: [14, 14, 16, 16],
737
745
  texture: "@candleTexture",
738
746
  doubleSided: true,
739
747
  },
@@ -742,6 +750,7 @@ export const candlesGeometry3 = {
742
750
  export const candlesGeometry4 = {
743
751
  id: "dve_candle_state_4",
744
752
  doNotBuildRules: true,
753
+ divisor: [16, 16, 16],
745
754
  arguments: {
746
755
  candleTexture: {
747
756
  type: "texture",
@@ -751,57 +760,57 @@ export const candlesGeometry4 = {
751
760
  {
752
761
  type: "box",
753
762
  points: [
754
- [7 / 16, 0, 7 / 16],
755
- [9 / 16, 3 / 16, 9 / 16],
763
+ [7, 0, 7],
764
+ [9, 3, 9],
756
765
  ],
757
766
  faces: {
758
767
  up: {
759
768
  texture: "@candleTexture",
760
- uv: [10 / 16, 13 / 16, 11 / 16, 15 / 16],
769
+ uv: [10, 13, 11, 15],
761
770
  },
762
771
  down: {
763
772
  texture: "@candleTexture",
764
- uv: [9 / 16, 12 / 16, 12 / 16, 1],
773
+ uv: [9, 12, 12, 1],
765
774
  },
766
775
  north: {
767
776
  texture: "@candleTexture",
768
- uv: [0 / 16, 13 / 16, 2 / 16, 1],
777
+ uv: [0, 13, 2, 1],
769
778
  },
770
779
  south: {
771
780
  texture: "@candleTexture",
772
- uv: [3 / 16, 13 / 16, 5 / 16, 1],
781
+ uv: [3, 13, 5, 1],
773
782
  },
774
783
  east: {
775
784
  texture: "@candleTexture",
776
- uv: [6 / 16, 13 / 16, 8 / 16, 1],
785
+ uv: [6, 13, 8, 1],
777
786
  },
778
787
  west: {
779
788
  texture: "@candleTexture",
780
- uv: [0 / 16, 13 / 16, 2 / 16, 1],
789
+ uv: [0, 13, 2, 1],
781
790
  },
782
791
  },
783
792
  },
784
793
  {
785
794
  type: "quad",
786
795
  points: [
787
- [7 / 16, 5 / 16, 9 / 16],
788
- [9 / 16, 5 / 16, 7 / 16],
789
- [9 / 16, 3 / 16, 7 / 16],
790
- [7 / 16, 3 / 16, 9 / 16],
796
+ [7, 5, 9],
797
+ [9, 5, 7],
798
+ [9, 3, 7],
799
+ [7, 3, 9],
791
800
  ],
792
- uv: [14 / 16, 14 / 16, 1, 1],
801
+ uv: [14, 14, 1, 1],
793
802
  texture: "@candleTexture",
794
803
  doubleSided: true,
795
804
  },
796
805
  {
797
806
  type: "quad",
798
807
  points: [
799
- [9 / 16, 5 / 16, 9 / 16],
800
- [7 / 16, 5 / 16, 7 / 16],
801
- [7 / 16, 3 / 16, 7 / 16],
802
- [9 / 16, 3 / 16, 9 / 16],
808
+ [9, 5, 9],
809
+ [7, 5, 7],
810
+ [7, 3, 7],
811
+ [9, 3, 9],
803
812
  ],
804
- uv: [14 / 16, 14 / 16, 1, 1],
813
+ uv: [14, 14, 1, 1],
805
814
  texture: "@candleTexture",
806
815
  doubleSided: true,
807
816
  },
@@ -809,6 +818,7 @@ export const candlesGeometry4 = {
809
818
  };
810
819
  export const candlesModel = {
811
820
  id: "dve_candle",
821
+ divisor: [16, 16, 16],
812
822
  arguments: {
813
823
  candleTexture: {
814
824
  type: "texture",
@@ -838,21 +848,21 @@ export const candlesModel = {
838
848
  type: "fx-points",
839
849
  effectId: "candle_particles",
840
850
  values: {
841
- "num_candles=0,lit=true": [[8 / 16, 8.5 / 16, 8 / 16]],
851
+ "num_candles=0,lit=true": [[8, 8.5, 8]],
842
852
  "num_candles=1,lit=true": [
843
- [8 / 16 + -2 / 16, 8.5 / 16, 8 / 16],
844
- [8 / 16 + 2 / 16, 8.5 / 16, 8 / 16],
853
+ [8 + -2, 8.5, 8],
854
+ [8 + 2, 8.5, 8],
845
855
  ],
846
856
  "num_candles=2,lit=true": [
847
- [8 / 16 + -2 / 16, 8.5 / 16, 8 / 16 + 2 / 16],
848
- [8 / 16 + 2 / 16, 7.5 / 16, 8 / 16 + 2 / 16],
849
- [8 / 16 + 2 / 16, 6.5 / 16, 8 / 16 + -2 / 16],
857
+ [8 + -2, 8.5, 8 + 2],
858
+ [8 + 2, 7.5, 8 + 2],
859
+ [8 + 2, 6.5, 8 + -2],
850
860
  ],
851
861
  "num_candles=3,lit=true": [
852
- [8 / 16 + -2 / 16, 8.5 / 16, 8 / 16 + 2 / 16],
853
- [8 / 16 + 2 / 16, 7.5 / 16, 8 / 16 + 2 / 16],
854
- [8 / 16 + 2 / 16, 6.5 / 16, 8 / 16 + -2 / 16],
855
- [8 / 16 + -2 / 16, 5.5 / 16, 8 / 16 + -2 / 16],
862
+ [8 + -2, 8.5, 8 + 2],
863
+ [8 + 2, 7.5, 8 + 2],
864
+ [8 + 2, 6.5, 8 + -2],
865
+ [8 + -2, 5.5, 8 + -2],
856
866
  ],
857
867
  },
858
868
  },
@@ -878,7 +888,7 @@ export const candlesModel = {
878
888
  id: "candel_1",
879
889
  geometryId: "dve_candle_state_1",
880
890
  inputs: {
881
- "@candleTexture": "@candleTexture",
891
+ candleTexture: "@candleTexture",
882
892
  },
883
893
  },
884
894
  ],
@@ -886,17 +896,17 @@ export const candlesModel = {
886
896
  {
887
897
  id: "candel_1",
888
898
  geometryId: "dve_candle_state_1",
889
- position: [-2 / 16, 0, 0],
899
+ position: [-2, 0, 0],
890
900
  inputs: {
891
- "@candleTexture": "@candleTexture",
901
+ candleTexture: "@candleTexture",
892
902
  },
893
903
  },
894
904
  {
895
905
  id: "candel_2",
896
906
  geometryId: "dve_candle_state_2",
897
- position: [2 / 16, 0, 0],
907
+ position: [2, 0, 0],
898
908
  inputs: {
899
- "@candleTexture": "@candleTexture",
909
+ candleTexture: "@candleTexture",
900
910
  },
901
911
  },
902
912
  ],
@@ -904,25 +914,25 @@ export const candlesModel = {
904
914
  {
905
915
  id: "candel_1",
906
916
  geometryId: "dve_candle_state_1",
907
- position: [-2 / 16, 0, 2 / 16],
917
+ position: [-2, 0, 2],
908
918
  inputs: {
909
- "@candleTexture": "@candleTexture",
919
+ candleTexture: "@candleTexture",
910
920
  },
911
921
  },
912
922
  {
913
923
  id: "candel_2",
914
924
  geometryId: "dve_candle_state_2",
915
- position: [2 / 16, 0, 2 / 16],
925
+ position: [2, 0, 2],
916
926
  inputs: {
917
- "@candleTexture": "@candleTexture",
927
+ candleTexture: "@candleTexture",
918
928
  },
919
929
  },
920
930
  {
921
931
  id: "candel_3",
922
932
  geometryId: "dve_candle_state_3",
923
- position: [2 / 16, 0, -2 / 16],
933
+ position: [2, 0, -2],
924
934
  inputs: {
925
- "@candleTexture": "@candleTexture",
935
+ candleTexture: "@candleTexture",
926
936
  },
927
937
  },
928
938
  ],
@@ -930,33 +940,33 @@ export const candlesModel = {
930
940
  {
931
941
  id: "candel_1",
932
942
  geometryId: "dve_candle_state_1",
933
- position: [-2 / 16, 0, 2 / 16],
943
+ position: [-2, 0, 2],
934
944
  inputs: {
935
- "@candleTexture": "@candleTexture",
945
+ candleTexture: "@candleTexture",
936
946
  },
937
947
  },
938
948
  {
939
949
  id: "candel_2",
940
950
  geometryId: "dve_candle_state_2",
941
- position: [2 / 16, 0, 2 / 16],
951
+ position: [2, 0, 2],
942
952
  inputs: {
943
- "@candleTexture": "@candleTexture",
953
+ candleTexture: "@candleTexture",
944
954
  },
945
955
  },
946
956
  {
947
957
  id: "candel_3",
948
958
  geometryId: "dve_candle_state_3",
949
- position: [2 / 16, 0, -2 / 16],
959
+ position: [2, 0, -2],
950
960
  inputs: {
951
- "@candleTexture": "@candleTexture",
961
+ candleTexture: "@candleTexture",
952
962
  },
953
963
  },
954
964
  {
955
965
  id: "candel_4",
956
966
  geometryId: "dve_candle_state_4",
957
- position: [-2 / 16, 0, -2 / 16],
967
+ position: [-2, 0, -2],
958
968
  inputs: {
959
- "@candleTexture": "@candleTexture",
969
+ candleTexture: "@candleTexture",
960
970
  },
961
971
  },
962
972
  ],
@@ -965,7 +975,7 @@ export const candlesModel = {
965
975
  id: "candel_1",
966
976
  geometryId: "dve_candle_state_1",
967
977
  inputs: {
968
- "@candleTexture": "@candleLitTexture",
978
+ candleTexture: "@candleLitTexture",
969
979
  },
970
980
  },
971
981
  ],
@@ -973,17 +983,17 @@ export const candlesModel = {
973
983
  {
974
984
  id: "candel_1",
975
985
  geometryId: "dve_candle_state_1",
976
- position: [-2 / 16, 0, 0],
986
+ position: [-2, 0, 0],
977
987
  inputs: {
978
- "@candleTexture": "@candleLitTexture",
988
+ candleTexture: "@candleLitTexture",
979
989
  },
980
990
  },
981
991
  {
982
992
  id: "candel_2",
983
993
  geometryId: "dve_candle_state_2",
984
- position: [2 / 16, 0, 0],
994
+ position: [2, 0, 0],
985
995
  inputs: {
986
- "@candleTexture": "@candleLitTexture",
996
+ candleTexture: "@candleLitTexture",
987
997
  },
988
998
  },
989
999
  ],
@@ -991,25 +1001,25 @@ export const candlesModel = {
991
1001
  {
992
1002
  id: "candel_1",
993
1003
  geometryId: "dve_candle_state_1",
994
- position: [-2 / 16, 0, 2 / 16],
1004
+ position: [-2, 0, 2],
995
1005
  inputs: {
996
- "@candleTexture": "@candleLitTexture",
1006
+ candleTexture: "@candleLitTexture",
997
1007
  },
998
1008
  },
999
1009
  {
1000
1010
  id: "candel_2",
1001
1011
  geometryId: "dve_candle_state_2",
1002
- position: [2 / 16, 0, 2 / 16],
1012
+ position: [2, 0, 2],
1003
1013
  inputs: {
1004
- "@candleTexture": "@candleLitTexture",
1014
+ candleTexture: "@candleLitTexture",
1005
1015
  },
1006
1016
  },
1007
1017
  {
1008
1018
  id: "candel_3",
1009
1019
  geometryId: "dve_candle_state_3",
1010
- position: [2 / 16, 0, -2 / 16],
1020
+ position: [2, 0, -2],
1011
1021
  inputs: {
1012
- "@candleTexture": "@candleLitTexture",
1022
+ candleTexture: "@candleLitTexture",
1013
1023
  },
1014
1024
  },
1015
1025
  ],
@@ -1017,33 +1027,33 @@ export const candlesModel = {
1017
1027
  {
1018
1028
  id: "candel_1",
1019
1029
  geometryId: "dve_candle_state_1",
1020
- position: [-2 / 16, 0, 2 / 16],
1030
+ position: [-2, 0, 2],
1021
1031
  inputs: {
1022
- "@candleTexture": "@candleLitTexture",
1032
+ candleTexture: "@candleLitTexture",
1023
1033
  },
1024
1034
  },
1025
1035
  {
1026
1036
  id: "candel_2",
1027
1037
  geometryId: "dve_candle_state_2",
1028
- position: [2 / 16, 0, 2 / 16],
1038
+ position: [2, 0, 2],
1029
1039
  inputs: {
1030
- "@candleTexture": "@candleLitTexture",
1040
+ candleTexture: "@candleLitTexture",
1031
1041
  },
1032
1042
  },
1033
1043
  {
1034
1044
  id: "candel_3",
1035
1045
  geometryId: "dve_candle_state_3",
1036
- position: [2 / 16, 0, -2 / 16],
1046
+ position: [2, 0, -2],
1037
1047
  inputs: {
1038
- "@candleTexture": "@candleLitTexture",
1048
+ candleTexture: "@candleLitTexture",
1039
1049
  },
1040
1050
  },
1041
1051
  {
1042
1052
  id: "candel_4",
1043
1053
  geometryId: "dve_candle_state_4",
1044
- position: [-2 / 16, 0, -2 / 16],
1054
+ position: [-2, 0, -2],
1045
1055
  inputs: {
1046
- "@candleTexture": "@candleLitTexture",
1056
+ candleTexture: "@candleLitTexture",
1047
1057
  },
1048
1058
  },
1049
1059
  ],
@@ -1051,6 +1061,7 @@ export const candlesModel = {
1051
1061
  };
1052
1062
  export const leverGeometryBase = {
1053
1063
  id: "dve_lever_model_base",
1064
+ divisor: [16, 16, 16],
1054
1065
  arguments: {
1055
1066
  texture: {
1056
1067
  type: "texture",
@@ -1060,33 +1071,33 @@ export const leverGeometryBase = {
1060
1071
  {
1061
1072
  type: "box",
1062
1073
  points: [
1063
- [4 / 16, 0, 4 / 16],
1064
- [12 / 16, 3 / 16, 12 / 16],
1074
+ [4, 0, 4],
1075
+ [12, 3, 12],
1065
1076
  ],
1066
1077
  faces: {
1067
1078
  up: {
1068
1079
  texture: "@texture",
1069
- uv: [4 / 16, 4 / 16, 12 / 16, 12 / 16],
1080
+ uv: [4, 4, 12, 12],
1070
1081
  },
1071
1082
  down: {
1072
1083
  texture: "@texture",
1073
- uv: [5 / 16, 4 / 16, 10 / 16, 12 / 16],
1084
+ uv: [5, 4, 10, 12],
1074
1085
  },
1075
1086
  north: {
1076
1087
  texture: "@texture",
1077
- uv: [5 / 16, 0 / 16, 10 / 16, 3 / 16],
1088
+ uv: [5, 0, 10, 3],
1078
1089
  },
1079
1090
  south: {
1080
1091
  texture: "@texture",
1081
- uv: [5 / 16, 0 / 16, 10 / 16, 3 / 16],
1092
+ uv: [5, 0, 10, 3],
1082
1093
  },
1083
1094
  east: {
1084
1095
  texture: "@texture",
1085
- uv: [4 / 16, 0 / 16, 12 / 16, 3 / 16],
1096
+ uv: [4, 0, 12, 3],
1086
1097
  },
1087
1098
  west: {
1088
1099
  texture: "@texture",
1089
- uv: [4 / 16, 0 / 16, 12 / 16, 3 / 16],
1100
+ uv: [4, 0, 12, 3],
1090
1101
  },
1091
1102
  },
1092
1103
  },
@@ -1094,6 +1105,7 @@ export const leverGeometryBase = {
1094
1105
  };
1095
1106
  export const leverGeometryDown = {
1096
1107
  id: "dve_lever_model",
1108
+ divisor: [16, 16, 16],
1097
1109
  doNotBuildRules: true,
1098
1110
  arguments: {
1099
1111
  texture: {
@@ -1104,33 +1116,33 @@ export const leverGeometryDown = {
1104
1116
  {
1105
1117
  type: "box",
1106
1118
  points: [
1107
- [7 / 16, 0, 7 / 16],
1108
- [9 / 16, 14 / 16, 9 / 16],
1119
+ [7, 0, 7],
1120
+ [9, 14, 9],
1109
1121
  ],
1110
1122
  faces: {
1111
1123
  up: {
1112
1124
  texture: "@texture",
1113
- uv: [7 / 16, 0 / 16, 9 / 16, 14 / 16],
1125
+ uv: [7, 0, 9, 14],
1114
1126
  },
1115
1127
  down: {
1116
1128
  texture: "@texture",
1117
- uv: [7 / 16, 0 / 16, 9 / 16, 14 / 16],
1129
+ uv: [7, 0, 9, 14],
1118
1130
  },
1119
1131
  north: {
1120
1132
  texture: "@texture",
1121
- uv: [7 / 16, 0 / 16, 9 / 16, 14 / 16],
1133
+ uv: [7, 0, 9, 14],
1122
1134
  },
1123
1135
  south: {
1124
1136
  texture: "@texture",
1125
- uv: [7 / 16, 0 / 16, 9 / 16, 14 / 16],
1137
+ uv: [7, 0, 9, 14],
1126
1138
  },
1127
1139
  east: {
1128
1140
  texture: "@texture",
1129
- uv: [7 / 16, 0 / 16, 9 / 16, 14 / 16],
1141
+ uv: [7, 0, 9, 14],
1130
1142
  },
1131
1143
  west: {
1132
1144
  texture: "@texture",
1133
- uv: [7 / 16, 0 / 16, 9 / 16, 14 / 16],
1145
+ uv: [7, 0, 9, 14],
1134
1146
  },
1135
1147
  },
1136
1148
  },
@@ -1139,6 +1151,7 @@ export const leverGeometryDown = {
1139
1151
  export const leverGeometry = [leverGeometryBase, leverGeometryDown];
1140
1152
  export const leverModel = {
1141
1153
  id: "dve_lever",
1154
+ divisor: [16, 16, 16],
1142
1155
  arguments: {
1143
1156
  baseTexture: {
1144
1157
  type: "texture",
@@ -1187,16 +1200,16 @@ export const leverModel = {
1187
1200
  id: "lever_base",
1188
1201
  geometryId: "dve_lever_model_base",
1189
1202
  inputs: {
1190
- "@texture": "@baseTexture",
1203
+ texture: "@baseTexture",
1191
1204
  },
1192
1205
  },
1193
1206
  {
1194
1207
  id: "lever",
1195
1208
  geometryId: "dve_lever_model",
1196
- position: [0, -0.03, -0.2],
1209
+ position: [0, -8, -3],
1197
1210
  rotation: [-45, 0, 0],
1198
1211
  inputs: {
1199
- "@texture": "@leverTexture",
1212
+ texture: "@leverTexture",
1200
1213
  },
1201
1214
  },
1202
1215
  ],
@@ -1205,16 +1218,16 @@ export const leverModel = {
1205
1218
  id: "lever_base",
1206
1219
  geometryId: "dve_lever_model_base",
1207
1220
  inputs: {
1208
- "@texture": "@baseTexture",
1221
+ texture: "@baseTexture",
1209
1222
  },
1210
1223
  },
1211
1224
  {
1212
1225
  id: "lever",
1213
1226
  geometryId: "dve_lever_model",
1214
- position: [0, -0.03, 0.2],
1227
+ position: [0, -8, 3],
1215
1228
  rotation: [45, 0, 0],
1216
1229
  inputs: {
1217
- "@texture": "@leverTexture",
1230
+ texture: "@leverTexture",
1218
1231
  },
1219
1232
  },
1220
1233
  ],
@@ -1223,16 +1236,16 @@ export const leverModel = {
1223
1236
  id: "lever_base",
1224
1237
  geometryId: "dve_lever_model_base",
1225
1238
  inputs: {
1226
- "@texture": "@baseTexture",
1239
+ texture: "@baseTexture",
1227
1240
  },
1228
1241
  },
1229
1242
  {
1230
1243
  id: "lever",
1231
1244
  geometryId: "dve_lever_model",
1232
- position: [0, -0.05, 0.2],
1245
+ position: [0, -.8, 3],
1233
1246
  rotation: [45, 0, 0],
1234
1247
  inputs: {
1235
- "@texture": "@leverTexture",
1248
+ texture: "@leverTexture",
1236
1249
  },
1237
1250
  },
1238
1251
  ],
@@ -1241,16 +1254,16 @@ export const leverModel = {
1241
1254
  id: "lever_base",
1242
1255
  geometryId: "dve_lever_model_base",
1243
1256
  inputs: {
1244
- "@texture": "@baseTexture",
1257
+ texture: "@baseTexture",
1245
1258
  },
1246
1259
  },
1247
1260
  {
1248
1261
  id: "lever",
1249
1262
  geometryId: "dve_lever_model",
1250
- position: [0, -0.05, -0.2],
1263
+ position: [0, -.8, -3],
1251
1264
  rotation: [-45, 0, 0],
1252
1265
  inputs: {
1253
- "@texture": "@leverTexture",
1266
+ texture: "@leverTexture",
1254
1267
  },
1255
1268
  },
1256
1269
  ],
@@ -1259,16 +1272,16 @@ export const leverModel = {
1259
1272
  id: "lever_base",
1260
1273
  geometryId: "dve_lever_model_base",
1261
1274
  inputs: {
1262
- "@texture": "@baseTexture",
1275
+ texture: "@baseTexture",
1263
1276
  },
1264
1277
  },
1265
1278
  {
1266
1279
  id: "lever",
1267
1280
  geometryId: "dve_lever_model",
1268
- position: [-0.2, -0.03, 0],
1281
+ position: [-3, -8, 0],
1269
1282
  rotation: [0, 0, 45],
1270
1283
  inputs: {
1271
- "@texture": "@leverTexture",
1284
+ texture: "@leverTexture",
1272
1285
  },
1273
1286
  },
1274
1287
  ],
@@ -1277,16 +1290,16 @@ export const leverModel = {
1277
1290
  id: "lever_base",
1278
1291
  geometryId: "dve_lever_model_base",
1279
1292
  inputs: {
1280
- "@texture": "@baseTexture",
1293
+ texture: "@baseTexture",
1281
1294
  },
1282
1295
  },
1283
1296
  {
1284
1297
  id: "lever",
1285
1298
  geometryId: "dve_lever_model",
1286
- position: [0.2, -0.03, 0],
1299
+ position: [3, -8, 0],
1287
1300
  rotation: [0, 0, -45],
1288
1301
  inputs: {
1289
- "@texture": "@leverTexture",
1302
+ texture: "@leverTexture",
1290
1303
  },
1291
1304
  },
1292
1305
  ],
@@ -1295,16 +1308,16 @@ export const leverModel = {
1295
1308
  id: "lever_base",
1296
1309
  geometryId: "dve_lever_model_base",
1297
1310
  inputs: {
1298
- "@texture": "@baseTexture",
1311
+ texture: "@baseTexture",
1299
1312
  },
1300
1313
  },
1301
1314
  {
1302
1315
  id: "lever",
1303
1316
  geometryId: "dve_lever_model",
1304
- position: [0.2, -0.03, 0],
1317
+ position: [3, -8, 0],
1305
1318
  rotation: [0, 0, -45],
1306
1319
  inputs: {
1307
- "@texture": "@leverTexture",
1320
+ texture: "@leverTexture",
1308
1321
  },
1309
1322
  },
1310
1323
  ],
@@ -1313,16 +1326,16 @@ export const leverModel = {
1313
1326
  id: "lever_base",
1314
1327
  geometryId: "dve_lever_model_base",
1315
1328
  inputs: {
1316
- "@texture": "@baseTexture",
1329
+ texture: "@baseTexture",
1317
1330
  },
1318
1331
  },
1319
1332
  {
1320
1333
  id: "lever",
1321
1334
  geometryId: "dve_lever_model",
1322
- position: [-0.2, -0.03, 0],
1335
+ position: [-3, -8, 0],
1323
1336
  rotation: [0, 0, 45],
1324
1337
  inputs: {
1325
- "@texture": "@leverTexture",
1338
+ texture: "@leverTexture",
1326
1339
  },
1327
1340
  },
1328
1341
  ],
@@ -1331,21 +1344,21 @@ export const leverModel = {
1331
1344
  {
1332
1345
  id: "lever_base",
1333
1346
  rotation: [0, 0, 180],
1334
- rotationPivot: [0.5, 0.5, 0.5],
1347
+ rotationPivot: [8, 8, 8],
1335
1348
  geometryId: "dve_lever_model_base",
1336
1349
  inputs: {
1337
- "@texture": "@baseTexture",
1350
+ texture: "@baseTexture",
1338
1351
  },
1339
1352
  },
1340
1353
  {
1341
1354
  id: "lever",
1342
1355
  geometryId: "dve_lever_model",
1343
1356
  rotation: [45, 0, 0],
1344
- position: [0, 2 / 16, -0.2],
1345
- rotationPivot: [0.5, 0.5, 0.5],
1357
+ position: [0, 2, -3],
1358
+ rotationPivot: [8, 8, 8],
1346
1359
  flip: [0, 1, 0],
1347
1360
  inputs: {
1348
- "@texture": "@leverTexture",
1361
+ texture: "@leverTexture",
1349
1362
  },
1350
1363
  },
1351
1364
  ],
@@ -1353,21 +1366,21 @@ export const leverModel = {
1353
1366
  {
1354
1367
  id: "lever_base",
1355
1368
  rotation: [0, 0, 180],
1356
- rotationPivot: [0.5, 0.5, 0.5],
1369
+ rotationPivot: [8, 8, 8],
1357
1370
  geometryId: "dve_lever_model_base",
1358
1371
  inputs: {
1359
- "@texture": "@baseTexture",
1372
+ texture: "@baseTexture",
1360
1373
  },
1361
1374
  },
1362
1375
  {
1363
1376
  id: "lever",
1364
1377
  geometryId: "dve_lever_model",
1365
1378
  rotation: [-45, 0, 0],
1366
- position: [0, 2 / 16, 0.2],
1367
- rotationPivot: [0.5, 0.5, 0.5],
1379
+ position: [0, 2, 3],
1380
+ rotationPivot: [8, 8, 8],
1368
1381
  flip: [0, 1, 0],
1369
1382
  inputs: {
1370
- "@texture": "@leverTexture",
1383
+ texture: "@leverTexture",
1371
1384
  },
1372
1385
  },
1373
1386
  ],
@@ -1375,21 +1388,21 @@ export const leverModel = {
1375
1388
  {
1376
1389
  id: "lever_base",
1377
1390
  rotation: [0, 0, 180],
1378
- rotationPivot: [0.5, 0.5, 0.5],
1391
+ rotationPivot: [8, 8, 8],
1379
1392
  geometryId: "dve_lever_model_base",
1380
1393
  inputs: {
1381
- "@texture": "@baseTexture",
1394
+ texture: "@baseTexture",
1382
1395
  },
1383
1396
  },
1384
1397
  {
1385
1398
  id: "lever",
1386
1399
  geometryId: "dve_lever_model",
1387
1400
  rotation: [-45, 0, 0],
1388
- position: [0, 2 / 16, 0.2],
1389
- rotationPivot: [0.5, 0.5, 0.5],
1401
+ position: [0, 2, 3],
1402
+ rotationPivot: [8, 8, 8],
1390
1403
  flip: [0, 1, 0],
1391
1404
  inputs: {
1392
- "@texture": "@leverTexture",
1405
+ texture: "@leverTexture",
1393
1406
  },
1394
1407
  },
1395
1408
  ],
@@ -1397,21 +1410,21 @@ export const leverModel = {
1397
1410
  {
1398
1411
  id: "lever_base",
1399
1412
  rotation: [0, 0, 180],
1400
- rotationPivot: [0.5, 0.5, 0.5],
1413
+ rotationPivot: [8, 8, 8],
1401
1414
  geometryId: "dve_lever_model_base",
1402
1415
  inputs: {
1403
- "@texture": "@baseTexture",
1416
+ texture: "@baseTexture",
1404
1417
  },
1405
1418
  },
1406
1419
  {
1407
1420
  id: "lever",
1408
1421
  geometryId: "dve_lever_model",
1409
1422
  rotation: [45, 0, 0],
1410
- position: [0, 2 / 16, -0.2],
1411
- rotationPivot: [0.5, 0.5, 0.5],
1423
+ position: [0, 2, -3],
1424
+ rotationPivot: [8, 8, 8],
1412
1425
  flip: [0, 1, 0],
1413
1426
  inputs: {
1414
- "@texture": "@leverTexture",
1427
+ texture: "@leverTexture",
1415
1428
  },
1416
1429
  },
1417
1430
  ],
@@ -1419,21 +1432,21 @@ export const leverModel = {
1419
1432
  {
1420
1433
  id: "lever_base",
1421
1434
  rotation: [0, 0, 180],
1422
- rotationPivot: [0.5, 0.5, 0.5],
1435
+ rotationPivot: [8, 8, 8],
1423
1436
  geometryId: "dve_lever_model_base",
1424
1437
  inputs: {
1425
- "@texture": "@baseTexture",
1438
+ texture: "@baseTexture",
1426
1439
  },
1427
1440
  },
1428
1441
  {
1429
1442
  id: "lever",
1430
1443
  geometryId: "dve_lever_model",
1431
1444
  rotation: [0, 0, -45],
1432
- position: [-0.2, 2 / 16, -0],
1433
- rotationPivot: [0.5, 0.5, 0.5],
1445
+ position: [-3, 2, -0],
1446
+ rotationPivot: [8, 8, 8],
1434
1447
  flip: [0, 1, 0],
1435
1448
  inputs: {
1436
- "@texture": "@leverTexture",
1449
+ texture: "@leverTexture",
1437
1450
  },
1438
1451
  },
1439
1452
  ],
@@ -1441,21 +1454,21 @@ export const leverModel = {
1441
1454
  {
1442
1455
  id: "lever_base",
1443
1456
  rotation: [0, 0, 180],
1444
- rotationPivot: [0.5, 0.5, 0.5],
1457
+ rotationPivot: [8, 8, 8],
1445
1458
  geometryId: "dve_lever_model_base",
1446
1459
  inputs: {
1447
- "@texture": "@baseTexture",
1460
+ texture: "@baseTexture",
1448
1461
  },
1449
1462
  },
1450
1463
  {
1451
1464
  id: "lever",
1452
1465
  geometryId: "dve_lever_model",
1453
1466
  rotation: [0, 0, 45],
1454
- position: [0.2, 2 / 16, -0],
1455
- rotationPivot: [0.5, 0.5, 0.5],
1467
+ position: [3, 2, -0],
1468
+ rotationPivot: [8, 8, 8],
1456
1469
  flip: [0, 1, 0],
1457
1470
  inputs: {
1458
- "@texture": "@leverTexture",
1471
+ texture: "@leverTexture",
1459
1472
  },
1460
1473
  },
1461
1474
  ],
@@ -1463,21 +1476,21 @@ export const leverModel = {
1463
1476
  {
1464
1477
  id: "lever_base",
1465
1478
  rotation: [0, 0, 180],
1466
- rotationPivot: [0.5, 0.5, 0.5],
1479
+ rotationPivot: [8, 8, 8],
1467
1480
  geometryId: "dve_lever_model_base",
1468
1481
  inputs: {
1469
- "@texture": "@baseTexture",
1482
+ texture: "@baseTexture",
1470
1483
  },
1471
1484
  },
1472
1485
  {
1473
1486
  id: "lever",
1474
1487
  geometryId: "dve_lever_model",
1475
1488
  rotation: [0, 0, 45],
1476
- position: [0.2, 2 / 16, -0],
1477
- rotationPivot: [0.5, 0.5, 0.5],
1489
+ position: [3, 2, -0],
1490
+ rotationPivot: [8, 8, 8],
1478
1491
  flip: [0, 1, 0],
1479
1492
  inputs: {
1480
- "@texture": "@leverTexture",
1493
+ texture: "@leverTexture",
1481
1494
  },
1482
1495
  },
1483
1496
  ],
@@ -1485,21 +1498,21 @@ export const leverModel = {
1485
1498
  {
1486
1499
  id: "lever_base",
1487
1500
  rotation: [0, 0, 180],
1488
- rotationPivot: [0.5, 0.5, 0.5],
1501
+ rotationPivot: [8, 8, 8],
1489
1502
  geometryId: "dve_lever_model_base",
1490
1503
  inputs: {
1491
- "@texture": "@baseTexture",
1504
+ texture: "@baseTexture",
1492
1505
  },
1493
1506
  },
1494
1507
  {
1495
1508
  id: "lever",
1496
1509
  geometryId: "dve_lever_model",
1497
1510
  rotation: [0, 0, -45],
1498
- position: [-0.2, 2 / 16, -0],
1499
- rotationPivot: [0.5, 0.5, 0.5],
1511
+ position: [-3, 2, -0],
1512
+ rotationPivot: [8, 8, 8],
1500
1513
  flip: [0, 1, 0],
1501
1514
  inputs: {
1502
- "@texture": "@leverTexture",
1515
+ texture: "@leverTexture",
1503
1516
  },
1504
1517
  },
1505
1518
  ],
@@ -1509,19 +1522,19 @@ export const leverModel = {
1509
1522
  id: "lever_base",
1510
1523
  geometryId: "dve_lever_model_base",
1511
1524
  rotation: [-90, 0, 0],
1512
- rotationPivot: [0.5, 0.5, 0.5],
1525
+ rotationPivot: [8, 8, 8],
1513
1526
  inputs: {
1514
- "@texture": "@baseTexture",
1527
+ texture: "@baseTexture",
1515
1528
  },
1516
1529
  },
1517
1530
  {
1518
1531
  id: "lever",
1519
1532
  geometryId: "dve_lever_model",
1520
- position: [0, -5 / 16, 0.03],
1533
+ position: [0, -5, 8],
1521
1534
  rotation: [-90 - 45, 0, 0],
1522
- rotationPivot: [0.5, 0.5, 0.5],
1535
+ rotationPivot: [8, 8, 8],
1523
1536
  inputs: {
1524
- "@texture": "@leverTexture",
1537
+ texture: "@leverTexture",
1525
1538
  },
1526
1539
  },
1527
1540
  ],
@@ -1530,19 +1543,19 @@ export const leverModel = {
1530
1543
  id: "lever_base",
1531
1544
  geometryId: "dve_lever_model_base",
1532
1545
  rotation: [-90, 0, 0],
1533
- rotationPivot: [0.5, 0.5, 0.5],
1546
+ rotationPivot: [8, 8, 8],
1534
1547
  inputs: {
1535
- "@texture": "@baseTexture",
1548
+ texture: "@baseTexture",
1536
1549
  },
1537
1550
  },
1538
1551
  {
1539
1552
  id: "lever",
1540
1553
  geometryId: "dve_lever_model",
1541
- position: [0, 5 / 16, 0.03],
1554
+ position: [0, 5, 8],
1542
1555
  rotation: [-90 + 45, 0, 0],
1543
- rotationPivot: [0.5, 0.5, 0.5],
1556
+ rotationPivot: [8, 8, 8],
1544
1557
  inputs: {
1545
- "@texture": "@leverTexture",
1558
+ texture: "@leverTexture",
1546
1559
  },
1547
1560
  },
1548
1561
  ],
@@ -1551,19 +1564,19 @@ export const leverModel = {
1551
1564
  id: "lever_base",
1552
1565
  geometryId: "dve_lever_model_base",
1553
1566
  rotation: [-90, 0, 0],
1554
- rotationPivot: [0.5, 0.5, 0.5],
1567
+ rotationPivot: [8, 8, 8],
1555
1568
  inputs: {
1556
- "@texture": "@baseTexture",
1569
+ texture: "@baseTexture",
1557
1570
  },
1558
1571
  },
1559
1572
  {
1560
1573
  id: "lever",
1561
1574
  geometryId: "dve_lever_model",
1562
- position: [0, 5 / 16, 0.03],
1575
+ position: [0, 5, 8],
1563
1576
  rotation: [-90 + 45, 0, 0],
1564
- rotationPivot: [0.5, 0.5, 0.5],
1577
+ rotationPivot: [8, 8, 8],
1565
1578
  inputs: {
1566
- "@texture": "@leverTexture",
1579
+ texture: "@leverTexture",
1567
1580
  },
1568
1581
  },
1569
1582
  ],
@@ -1572,19 +1585,19 @@ export const leverModel = {
1572
1585
  id: "lever_base",
1573
1586
  geometryId: "dve_lever_model_base",
1574
1587
  rotation: [-90, 0, 0],
1575
- rotationPivot: [0.5, 0.5, 0.5],
1588
+ rotationPivot: [8, 8, 8],
1576
1589
  inputs: {
1577
- "@texture": "@baseTexture",
1590
+ texture: "@baseTexture",
1578
1591
  },
1579
1592
  },
1580
1593
  {
1581
1594
  id: "lever",
1582
1595
  geometryId: "dve_lever_model",
1583
- position: [0, -5 / 16, 0.03],
1596
+ position: [0, -5, 8],
1584
1597
  rotation: [-90 - 45, 0, 0],
1585
- rotationPivot: [0.5, 0.5, 0.5],
1598
+ rotationPivot: [8, 8, 8],
1586
1599
  inputs: {
1587
- "@texture": "@leverTexture",
1600
+ texture: "@leverTexture",
1588
1601
  },
1589
1602
  },
1590
1603
  ],
@@ -1593,19 +1606,19 @@ export const leverModel = {
1593
1606
  id: "lever_base",
1594
1607
  geometryId: "dve_lever_model_base",
1595
1608
  rotation: [-90, 0, 0],
1596
- rotationPivot: [0.5, 0.5, 0.5],
1609
+ rotationPivot: [8, 8, 8],
1597
1610
  inputs: {
1598
- "@texture": "@baseTexture",
1611
+ texture: "@baseTexture",
1599
1612
  },
1600
1613
  },
1601
1614
  {
1602
1615
  id: "lever",
1603
1616
  geometryId: "dve_lever_model",
1604
- position: [-5 / 16, 0, 0.03],
1617
+ position: [-5, 0, 8],
1605
1618
  rotation: [-90, 45, 0],
1606
- rotationPivot: [0.5, 0.5, 0.5],
1619
+ rotationPivot: [8, 8, 8],
1607
1620
  inputs: {
1608
- "@texture": "@leverTexture",
1621
+ texture: "@leverTexture",
1609
1622
  },
1610
1623
  },
1611
1624
  ],
@@ -1614,19 +1627,19 @@ export const leverModel = {
1614
1627
  id: "lever_base",
1615
1628
  geometryId: "dve_lever_model_base",
1616
1629
  rotation: [-90, 0, 0],
1617
- rotationPivot: [0.5, 0.5, 0.5],
1630
+ rotationPivot: [8, 8, 8],
1618
1631
  inputs: {
1619
- "@texture": "@baseTexture",
1632
+ texture: "@baseTexture",
1620
1633
  },
1621
1634
  },
1622
1635
  {
1623
1636
  id: "lever",
1624
1637
  geometryId: "dve_lever_model",
1625
- position: [5 / 16, 0, 0.03],
1638
+ position: [5, 0, 8],
1626
1639
  rotation: [-90, -45, 0],
1627
- rotationPivot: [0.5, 0.5, 0.5],
1640
+ rotationPivot: [8, 8, 8],
1628
1641
  inputs: {
1629
- "@texture": "@leverTexture",
1642
+ texture: "@leverTexture",
1630
1643
  },
1631
1644
  },
1632
1645
  ],
@@ -1635,19 +1648,19 @@ export const leverModel = {
1635
1648
  id: "lever_base",
1636
1649
  geometryId: "dve_lever_model_base",
1637
1650
  rotation: [-90, 0, 0],
1638
- rotationPivot: [0.5, 0.5, 0.5],
1651
+ rotationPivot: [8, 8, 8],
1639
1652
  inputs: {
1640
- "@texture": "@baseTexture",
1653
+ texture: "@baseTexture",
1641
1654
  },
1642
1655
  },
1643
1656
  {
1644
1657
  id: "lever",
1645
1658
  geometryId: "dve_lever_model",
1646
- position: [-5 / 16, 0, 0.03],
1659
+ position: [-5, 0, 8],
1647
1660
  rotation: [-90, 45, 0],
1648
- rotationPivot: [0.5, 0.5, 0.5],
1661
+ rotationPivot: [8, 8, 8],
1649
1662
  inputs: {
1650
- "@texture": "@leverTexture",
1663
+ texture: "@leverTexture",
1651
1664
  },
1652
1665
  },
1653
1666
  ],
@@ -1656,19 +1669,19 @@ export const leverModel = {
1656
1669
  id: "lever_base",
1657
1670
  geometryId: "dve_lever_model_base",
1658
1671
  rotation: [-90, 0, 0],
1659
- rotationPivot: [0.5, 0.5, 0.5],
1672
+ rotationPivot: [8, 8, 8],
1660
1673
  inputs: {
1661
- "@texture": "@baseTexture",
1674
+ texture: "@baseTexture",
1662
1675
  },
1663
1676
  },
1664
1677
  {
1665
1678
  id: "lever",
1666
1679
  geometryId: "dve_lever_model",
1667
- position: [5 / 16, 0, 0.03],
1680
+ position: [5, 0, 8],
1668
1681
  rotation: [-90, -45, 0],
1669
- rotationPivot: [0.5, 0.5, 0.5],
1682
+ rotationPivot: [8, 8, 8],
1670
1683
  inputs: {
1671
- "@texture": "@leverTexture",
1684
+ texture: "@leverTexture",
1672
1685
  },
1673
1686
  },
1674
1687
  ],
@@ -1677,19 +1690,19 @@ export const leverModel = {
1677
1690
  id: "lever_base",
1678
1691
  geometryId: "dve_lever_model_base",
1679
1692
  rotation: [90, 0, 0],
1680
- rotationPivot: [0.5, 0.5, 0.5],
1693
+ rotationPivot: [8, 8, 8],
1681
1694
  inputs: {
1682
- "@texture": "@baseTexture",
1695
+ texture: "@baseTexture",
1683
1696
  },
1684
1697
  },
1685
1698
  {
1686
1699
  id: "lever",
1687
1700
  geometryId: "dve_lever_model",
1688
- position: [0, -5 / 16, 0.03],
1701
+ position: [0, -5, 8],
1689
1702
  rotation: [90 + 45, 0, 0],
1690
- rotationPivot: [0.5, 0.5, 0.5],
1703
+ rotationPivot: [8, 8, 8],
1691
1704
  inputs: {
1692
- "@texture": "@leverTexture",
1705
+ texture: "@leverTexture",
1693
1706
  },
1694
1707
  },
1695
1708
  ],
@@ -1698,19 +1711,19 @@ export const leverModel = {
1698
1711
  id: "lever_base",
1699
1712
  geometryId: "dve_lever_model_base",
1700
1713
  rotation: [90, 0, 0],
1701
- rotationPivot: [0.5, 0.5, 0.5],
1714
+ rotationPivot: [8, 8, 8],
1702
1715
  inputs: {
1703
- "@texture": "@baseTexture",
1716
+ texture: "@baseTexture",
1704
1717
  },
1705
1718
  },
1706
1719
  {
1707
1720
  id: "lever",
1708
1721
  geometryId: "dve_lever_model",
1709
- position: [0, 5 / 16, 0.03],
1722
+ position: [0, 5, 8],
1710
1723
  rotation: [90 - 45, 0, 0],
1711
- rotationPivot: [0.5, 0.5, 0.5],
1724
+ rotationPivot: [8, 8, 8],
1712
1725
  inputs: {
1713
- "@texture": "@leverTexture",
1726
+ texture: "@leverTexture",
1714
1727
  },
1715
1728
  },
1716
1729
  ],
@@ -1719,19 +1732,19 @@ export const leverModel = {
1719
1732
  id: "lever_base",
1720
1733
  geometryId: "dve_lever_model_base",
1721
1734
  rotation: [90, 0, 0],
1722
- rotationPivot: [0.5, 0.5, 0.5],
1735
+ rotationPivot: [8, 8, 8],
1723
1736
  inputs: {
1724
- "@texture": "@baseTexture",
1737
+ texture: "@baseTexture",
1725
1738
  },
1726
1739
  },
1727
1740
  {
1728
1741
  id: "lever",
1729
1742
  geometryId: "dve_lever_model",
1730
- position: [0, 5 / 16, 0.03],
1743
+ position: [0, 5, 8],
1731
1744
  rotation: [90 - 45, 0, 0],
1732
- rotationPivot: [0.5, 0.5, 0.5],
1745
+ rotationPivot: [8, 8, 8],
1733
1746
  inputs: {
1734
- "@texture": "@leverTexture",
1747
+ texture: "@leverTexture",
1735
1748
  },
1736
1749
  },
1737
1750
  ],
@@ -1740,19 +1753,19 @@ export const leverModel = {
1740
1753
  id: "lever_base",
1741
1754
  geometryId: "dve_lever_model_base",
1742
1755
  rotation: [90, 0, 0],
1743
- rotationPivot: [0.5, 0.5, 0.5],
1756
+ rotationPivot: [8, 8, 8],
1744
1757
  inputs: {
1745
- "@texture": "@baseTexture",
1758
+ texture: "@baseTexture",
1746
1759
  },
1747
1760
  },
1748
1761
  {
1749
1762
  id: "lever",
1750
1763
  geometryId: "dve_lever_model",
1751
- position: [0, -5 / 16, 0.03],
1764
+ position: [0, -5, 8],
1752
1765
  rotation: [90 + 45, 0, 0],
1753
- rotationPivot: [0.5, 0.5, 0.5],
1766
+ rotationPivot: [8, 8, 8],
1754
1767
  inputs: {
1755
- "@texture": "@leverTexture",
1768
+ texture: "@leverTexture",
1756
1769
  },
1757
1770
  },
1758
1771
  ],
@@ -1761,19 +1774,19 @@ export const leverModel = {
1761
1774
  id: "lever_base",
1762
1775
  geometryId: "dve_lever_model_base",
1763
1776
  rotation: [90, 0, 0],
1764
- rotationPivot: [0.5, 0.5, 0.5],
1777
+ rotationPivot: [8, 8, 8],
1765
1778
  inputs: {
1766
- "@texture": "@baseTexture",
1779
+ texture: "@baseTexture",
1767
1780
  },
1768
1781
  },
1769
1782
  {
1770
1783
  id: "lever",
1771
1784
  geometryId: "dve_lever_model",
1772
- position: [-5 / 16, 0, 0.03],
1785
+ position: [-5, 0, 8],
1773
1786
  rotation: [90, -45, 0],
1774
- rotationPivot: [0.5, 0.5, 0.5],
1787
+ rotationPivot: [8, 8, 8],
1775
1788
  inputs: {
1776
- "@texture": "@leverTexture",
1789
+ texture: "@leverTexture",
1777
1790
  },
1778
1791
  },
1779
1792
  ],
@@ -1782,19 +1795,19 @@ export const leverModel = {
1782
1795
  id: "lever_base",
1783
1796
  geometryId: "dve_lever_model_base",
1784
1797
  rotation: [90, 0, 0],
1785
- rotationPivot: [0.5, 0.5, 0.5],
1798
+ rotationPivot: [8, 8, 8],
1786
1799
  inputs: {
1787
- "@texture": "@baseTexture",
1800
+ texture: "@baseTexture",
1788
1801
  },
1789
1802
  },
1790
1803
  {
1791
1804
  id: "lever",
1792
1805
  geometryId: "dve_lever_model",
1793
- position: [5 / 16, 0, 0.03],
1806
+ position: [5, 0, 8],
1794
1807
  rotation: [90, 45, 0],
1795
- rotationPivot: [0.5, 0.5, 0.5],
1808
+ rotationPivot: [8, 8, 8],
1796
1809
  inputs: {
1797
- "@texture": "@leverTexture",
1810
+ texture: "@leverTexture",
1798
1811
  },
1799
1812
  },
1800
1813
  ],
@@ -1803,19 +1816,19 @@ export const leverModel = {
1803
1816
  id: "lever_base",
1804
1817
  geometryId: "dve_lever_model_base",
1805
1818
  rotation: [90, 0, 0],
1806
- rotationPivot: [0.5, 0.5, 0.5],
1819
+ rotationPivot: [8, 8, 8],
1807
1820
  inputs: {
1808
- "@texture": "@baseTexture",
1821
+ texture: "@baseTexture",
1809
1822
  },
1810
1823
  },
1811
1824
  {
1812
1825
  id: "lever",
1813
1826
  geometryId: "dve_lever_model",
1814
- position: [-5 / 16, 0, 0.03],
1827
+ position: [-5, 0, 8],
1815
1828
  rotation: [90, -45, 0],
1816
- rotationPivot: [0.5, 0.5, 0.5],
1829
+ rotationPivot: [8, 8, 8],
1817
1830
  inputs: {
1818
- "@texture": "@leverTexture",
1831
+ texture: "@leverTexture",
1819
1832
  },
1820
1833
  },
1821
1834
  ],
@@ -1824,19 +1837,19 @@ export const leverModel = {
1824
1837
  id: "lever_base",
1825
1838
  geometryId: "dve_lever_model_base",
1826
1839
  rotation: [90, 0, 0],
1827
- rotationPivot: [0.5, 0.5, 0.5],
1840
+ rotationPivot: [8, 8, 8],
1828
1841
  inputs: {
1829
- "@texture": "@baseTexture",
1842
+ texture: "@baseTexture",
1830
1843
  },
1831
1844
  },
1832
1845
  {
1833
1846
  id: "lever",
1834
1847
  geometryId: "dve_lever_model",
1835
- position: [5 / 16, 0, 0.03],
1848
+ position: [5, 0, 8],
1836
1849
  rotation: [90, 45, 0],
1837
- rotationPivot: [0.5, 0.5, 0.5],
1850
+ rotationPivot: [8, 8, 8],
1838
1851
  inputs: {
1839
- "@texture": "@leverTexture",
1852
+ texture: "@leverTexture",
1840
1853
  },
1841
1854
  },
1842
1855
  ],
@@ -1845,19 +1858,19 @@ export const leverModel = {
1845
1858
  id: "lever_base",
1846
1859
  geometryId: "dve_lever_model_base",
1847
1860
  rotation: [0, 0, 90],
1848
- rotationPivot: [0.5, 0.5, 0.5],
1861
+ rotationPivot: [8, 8, 8],
1849
1862
  inputs: {
1850
- "@texture": "@baseTexture",
1863
+ texture: "@baseTexture",
1851
1864
  },
1852
1865
  },
1853
1866
  {
1854
1867
  id: "lever",
1855
1868
  geometryId: "dve_lever_model",
1856
- position: [0, -5 / 16, 0.03],
1869
+ position: [0, -5, 8],
1857
1870
  rotation: [90, -90, 45],
1858
- rotationPivot: [0.5, 0.5, 0.5],
1871
+ rotationPivot: [8, 8, 8],
1859
1872
  inputs: {
1860
- "@texture": "@leverTexture",
1873
+ texture: "@leverTexture",
1861
1874
  },
1862
1875
  },
1863
1876
  ],
@@ -1866,19 +1879,19 @@ export const leverModel = {
1866
1879
  id: "lever_base",
1867
1880
  geometryId: "dve_lever_model_base",
1868
1881
  rotation: [0, 0, 90],
1869
- rotationPivot: [0.5, 0.5, 0.5],
1882
+ rotationPivot: [8, 8, 8],
1870
1883
  inputs: {
1871
- "@texture": "@baseTexture",
1884
+ texture: "@baseTexture",
1872
1885
  },
1873
1886
  },
1874
1887
  {
1875
1888
  id: "lever",
1876
1889
  geometryId: "dve_lever_model",
1877
- position: [0, 5 / 16, 0.03],
1890
+ position: [0, 5, 8],
1878
1891
  rotation: [90, -90, -45],
1879
- rotationPivot: [0.5, 0.5, 0.5],
1892
+ rotationPivot: [8, 8, 8],
1880
1893
  inputs: {
1881
- "@texture": "@leverTexture",
1894
+ texture: "@leverTexture",
1882
1895
  },
1883
1896
  },
1884
1897
  ],
@@ -1887,19 +1900,19 @@ export const leverModel = {
1887
1900
  id: "lever_base",
1888
1901
  geometryId: "dve_lever_model_base",
1889
1902
  rotation: [0, 0, 90],
1890
- rotationPivot: [0.5, 0.5, 0.5],
1903
+ rotationPivot: [8, 8, 8],
1891
1904
  inputs: {
1892
- "@texture": "@baseTexture",
1905
+ texture: "@baseTexture",
1893
1906
  },
1894
1907
  },
1895
1908
  {
1896
1909
  id: "lever",
1897
1910
  geometryId: "dve_lever_model",
1898
- position: [0, 5 / 16, 0.03],
1911
+ position: [0, 5, 8],
1899
1912
  rotation: [90, -90, -45],
1900
- rotationPivot: [0.5, 0.5, 0.5],
1913
+ rotationPivot: [8, 8, 8],
1901
1914
  inputs: {
1902
- "@texture": "@leverTexture",
1915
+ texture: "@leverTexture",
1903
1916
  },
1904
1917
  },
1905
1918
  ],
@@ -1908,19 +1921,19 @@ export const leverModel = {
1908
1921
  id: "lever_base",
1909
1922
  geometryId: "dve_lever_model_base",
1910
1923
  rotation: [0, 0, 90],
1911
- rotationPivot: [0.5, 0.5, 0.5],
1924
+ rotationPivot: [8, 8, 8],
1912
1925
  inputs: {
1913
- "@texture": "@baseTexture",
1926
+ texture: "@baseTexture",
1914
1927
  },
1915
1928
  },
1916
1929
  {
1917
1930
  id: "lever",
1918
1931
  geometryId: "dve_lever_model",
1919
- position: [0, -5 / 16, 0.03],
1932
+ position: [0, -5, 8],
1920
1933
  rotation: [90, -90, 45],
1921
- rotationPivot: [0.5, 0.5, 0.5],
1934
+ rotationPivot: [8, 8, 8],
1922
1935
  inputs: {
1923
- "@texture": "@leverTexture",
1936
+ texture: "@leverTexture",
1924
1937
  },
1925
1938
  },
1926
1939
  ],
@@ -1929,19 +1942,19 @@ export const leverModel = {
1929
1942
  id: "lever_base",
1930
1943
  geometryId: "dve_lever_model_base",
1931
1944
  rotation: [0, 0, 90],
1932
- rotationPivot: [0.5, 0.5, 0.5],
1945
+ rotationPivot: [8, 8, 8],
1933
1946
  inputs: {
1934
- "@texture": "@baseTexture",
1947
+ texture: "@baseTexture",
1935
1948
  },
1936
1949
  },
1937
1950
  {
1938
1951
  id: "lever",
1939
1952
  geometryId: "dve_lever_model",
1940
- position: [0.03, 0, 5 / 16],
1953
+ position: [8, 0, 5],
1941
1954
  rotation: [90, -90 + 45, 0],
1942
- rotationPivot: [0.5, 0.5, 0.5],
1955
+ rotationPivot: [8, 8, 8],
1943
1956
  inputs: {
1944
- "@texture": "@leverTexture",
1957
+ texture: "@leverTexture",
1945
1958
  },
1946
1959
  },
1947
1960
  ],
@@ -1950,19 +1963,19 @@ export const leverModel = {
1950
1963
  id: "lever_base",
1951
1964
  geometryId: "dve_lever_model_base",
1952
1965
  rotation: [0, 0, 90],
1953
- rotationPivot: [0.5, 0.5, 0.5],
1966
+ rotationPivot: [8, 8, 8],
1954
1967
  inputs: {
1955
- "@texture": "@baseTexture",
1968
+ texture: "@baseTexture",
1956
1969
  },
1957
1970
  },
1958
1971
  {
1959
1972
  id: "lever",
1960
1973
  geometryId: "dve_lever_model",
1961
- position: [0.03, 0, -5 / 16],
1974
+ position: [8, 0, -5],
1962
1975
  rotation: [90, -90 - 45, 0],
1963
- rotationPivot: [0.5, 0.5, 0.5],
1976
+ rotationPivot: [8, 8, 8],
1964
1977
  inputs: {
1965
- "@texture": "@leverTexture",
1978
+ texture: "@leverTexture",
1966
1979
  },
1967
1980
  },
1968
1981
  ],
@@ -1971,19 +1984,19 @@ export const leverModel = {
1971
1984
  id: "lever_base",
1972
1985
  geometryId: "dve_lever_model_base",
1973
1986
  rotation: [0, 0, 90],
1974
- rotationPivot: [0.5, 0.5, 0.5],
1987
+ rotationPivot: [8, 8, 8],
1975
1988
  inputs: {
1976
- "@texture": "@baseTexture",
1989
+ texture: "@baseTexture",
1977
1990
  },
1978
1991
  },
1979
1992
  {
1980
1993
  id: "lever",
1981
1994
  geometryId: "dve_lever_model",
1982
- position: [0.03, 0, -5 / 16],
1995
+ position: [8, 0, -5],
1983
1996
  rotation: [90, -90 - 45, 0],
1984
- rotationPivot: [0.5, 0.5, 0.5],
1997
+ rotationPivot: [8, 8, 8],
1985
1998
  inputs: {
1986
- "@texture": "@leverTexture",
1999
+ texture: "@leverTexture",
1987
2000
  },
1988
2001
  },
1989
2002
  ],
@@ -1992,19 +2005,19 @@ export const leverModel = {
1992
2005
  id: "lever_base",
1993
2006
  geometryId: "dve_lever_model_base",
1994
2007
  rotation: [0, 0, 90],
1995
- rotationPivot: [0.5, 0.5, 0.5],
2008
+ rotationPivot: [8, 8, 8],
1996
2009
  inputs: {
1997
- "@texture": "@baseTexture",
2010
+ texture: "@baseTexture",
1998
2011
  },
1999
2012
  },
2000
2013
  {
2001
2014
  id: "lever",
2002
2015
  geometryId: "dve_lever_model",
2003
- position: [0.03, 0, 5 / 16],
2016
+ position: [8, 0, 5],
2004
2017
  rotation: [90, -90 + 45, 0],
2005
- rotationPivot: [0.5, 0.5, 0.5],
2018
+ rotationPivot: [8, 8, 8],
2006
2019
  inputs: {
2007
- "@texture": "@leverTexture",
2020
+ texture: "@leverTexture",
2008
2021
  },
2009
2022
  },
2010
2023
  ],
@@ -2013,19 +2026,19 @@ export const leverModel = {
2013
2026
  id: "lever_base",
2014
2027
  geometryId: "dve_lever_model_base",
2015
2028
  rotation: [0, 0, -90],
2016
- rotationPivot: [0.5, 0.5, 0.5],
2029
+ rotationPivot: [8, 8, 8],
2017
2030
  inputs: {
2018
- "@texture": "@baseTexture",
2031
+ texture: "@baseTexture",
2019
2032
  },
2020
2033
  },
2021
2034
  {
2022
2035
  id: "lever",
2023
2036
  geometryId: "dve_lever_model",
2024
- position: [0, -5 / 16, 0.03],
2037
+ position: [0, -5, 8],
2025
2038
  rotation: [90, 90, -45],
2026
- rotationPivot: [0.5, 0.5, 0.5],
2039
+ rotationPivot: [8, 8, 8],
2027
2040
  inputs: {
2028
- "@texture": "@leverTexture",
2041
+ texture: "@leverTexture",
2029
2042
  },
2030
2043
  },
2031
2044
  ],
@@ -2034,19 +2047,19 @@ export const leverModel = {
2034
2047
  id: "lever_base",
2035
2048
  geometryId: "dve_lever_model_base",
2036
2049
  rotation: [0, 0, -90],
2037
- rotationPivot: [0.5, 0.5, 0.5],
2050
+ rotationPivot: [8, 8, 8],
2038
2051
  inputs: {
2039
- "@texture": "@baseTexture",
2052
+ texture: "@baseTexture",
2040
2053
  },
2041
2054
  },
2042
2055
  {
2043
2056
  id: "lever",
2044
2057
  geometryId: "dve_lever_model",
2045
- position: [0, 5 / 16, 0.03],
2058
+ position: [0, 5, 8],
2046
2059
  rotation: [90, 90, 45],
2047
- rotationPivot: [0.5, 0.5, 0.5],
2060
+ rotationPivot: [8, 8, 8],
2048
2061
  inputs: {
2049
- "@texture": "@leverTexture",
2062
+ texture: "@leverTexture",
2050
2063
  },
2051
2064
  },
2052
2065
  ],
@@ -2055,19 +2068,19 @@ export const leverModel = {
2055
2068
  id: "lever_base",
2056
2069
  geometryId: "dve_lever_model_base",
2057
2070
  rotation: [0, 0, -90],
2058
- rotationPivot: [0.5, 0.5, 0.5],
2071
+ rotationPivot: [8, 8, 8],
2059
2072
  inputs: {
2060
- "@texture": "@baseTexture",
2073
+ texture: "@baseTexture",
2061
2074
  },
2062
2075
  },
2063
2076
  {
2064
2077
  id: "lever",
2065
2078
  geometryId: "dve_lever_model",
2066
- position: [0, 5 / 16, 0.03],
2079
+ position: [0, 5, 8],
2067
2080
  rotation: [90, 90, 45],
2068
- rotationPivot: [0.5, 0.5, 0.5],
2081
+ rotationPivot: [8, 8, 8],
2069
2082
  inputs: {
2070
- "@texture": "@leverTexture",
2083
+ texture: "@leverTexture",
2071
2084
  },
2072
2085
  },
2073
2086
  ],
@@ -2076,19 +2089,19 @@ export const leverModel = {
2076
2089
  id: "lever_base",
2077
2090
  geometryId: "dve_lever_model_base",
2078
2091
  rotation: [0, 0, -90],
2079
- rotationPivot: [0.5, 0.5, 0.5],
2092
+ rotationPivot: [8, 8, 8],
2080
2093
  inputs: {
2081
- "@texture": "@baseTexture",
2094
+ texture: "@baseTexture",
2082
2095
  },
2083
2096
  },
2084
2097
  {
2085
2098
  id: "lever",
2086
2099
  geometryId: "dve_lever_model",
2087
- position: [0, -5 / 16, 0.03],
2100
+ position: [0, -5, 8],
2088
2101
  rotation: [90, 90, -45],
2089
- rotationPivot: [0.5, 0.5, 0.5],
2102
+ rotationPivot: [8, 8, 8],
2090
2103
  inputs: {
2091
- "@texture": "@leverTexture",
2104
+ texture: "@leverTexture",
2092
2105
  },
2093
2106
  },
2094
2107
  ],
@@ -2097,19 +2110,19 @@ export const leverModel = {
2097
2110
  id: "lever_base",
2098
2111
  geometryId: "dve_lever_model_base",
2099
2112
  rotation: [0, 0, -90],
2100
- rotationPivot: [0.5, 0.5, 0.5],
2113
+ rotationPivot: [8, 8, 8],
2101
2114
  inputs: {
2102
- "@texture": "@baseTexture",
2115
+ texture: "@baseTexture",
2103
2116
  },
2104
2117
  },
2105
2118
  {
2106
2119
  id: "lever",
2107
2120
  geometryId: "dve_lever_model",
2108
- position: [0.03, 0, 5 / 16],
2121
+ position: [8, 0, 5],
2109
2122
  rotation: [90, 90 - 45, 0],
2110
- rotationPivot: [0.5, 0.5, 0.5],
2123
+ rotationPivot: [8, 8, 8],
2111
2124
  inputs: {
2112
- "@texture": "@leverTexture",
2125
+ texture: "@leverTexture",
2113
2126
  },
2114
2127
  },
2115
2128
  ],
@@ -2118,19 +2131,19 @@ export const leverModel = {
2118
2131
  id: "lever_base",
2119
2132
  geometryId: "dve_lever_model_base",
2120
2133
  rotation: [0, 0, -90],
2121
- rotationPivot: [0.5, 0.5, 0.5],
2134
+ rotationPivot: [8, 8, 8],
2122
2135
  inputs: {
2123
- "@texture": "@baseTexture",
2136
+ texture: "@baseTexture",
2124
2137
  },
2125
2138
  },
2126
2139
  {
2127
2140
  id: "lever",
2128
2141
  geometryId: "dve_lever_model",
2129
- position: [0.03, 0, -5 / 16],
2142
+ position: [8, 0, -5],
2130
2143
  rotation: [90, 90 + 45, 0],
2131
- rotationPivot: [0.5, 0.5, 0.5],
2144
+ rotationPivot: [8, 8, 8],
2132
2145
  inputs: {
2133
- "@texture": "@leverTexture",
2146
+ texture: "@leverTexture",
2134
2147
  },
2135
2148
  },
2136
2149
  ],
@@ -2139,19 +2152,19 @@ export const leverModel = {
2139
2152
  id: "lever_base",
2140
2153
  geometryId: "dve_lever_model_base",
2141
2154
  rotation: [0, 0, -90],
2142
- rotationPivot: [0.5, 0.5, 0.5],
2155
+ rotationPivot: [8, 8, 8],
2143
2156
  inputs: {
2144
- "@texture": "@baseTexture",
2157
+ texture: "@baseTexture",
2145
2158
  },
2146
2159
  },
2147
2160
  {
2148
2161
  id: "lever",
2149
2162
  geometryId: "dve_lever_model",
2150
- position: [0.03, 0, -5 / 16],
2163
+ position: [8, 0, -5],
2151
2164
  rotation: [90, 90 + 45, 0],
2152
- rotationPivot: [0.5, 0.5, 0.5],
2165
+ rotationPivot: [8, 8, 8],
2153
2166
  inputs: {
2154
- "@texture": "@leverTexture",
2167
+ texture: "@leverTexture",
2155
2168
  },
2156
2169
  },
2157
2170
  ],
@@ -2160,19 +2173,19 @@ export const leverModel = {
2160
2173
  id: "lever_base",
2161
2174
  geometryId: "dve_lever_model_base",
2162
2175
  rotation: [0, 0, -90],
2163
- rotationPivot: [0.5, 0.5, 0.5],
2176
+ rotationPivot: [8, 8, 8],
2164
2177
  inputs: {
2165
- "@texture": "@baseTexture",
2178
+ texture: "@baseTexture",
2166
2179
  },
2167
2180
  },
2168
2181
  {
2169
2182
  id: "lever",
2170
2183
  geometryId: "dve_lever_model",
2171
- position: [0.03, 0, 5 / 16],
2184
+ position: [8, 0, 5],
2172
2185
  rotation: [90, 90 - 45, 0],
2173
- rotationPivot: [0.5, 0.5, 0.5],
2186
+ rotationPivot: [8, 8, 8],
2174
2187
  inputs: {
2175
- "@texture": "@leverTexture",
2188
+ texture: "@leverTexture",
2176
2189
  },
2177
2190
  },
2178
2191
  ],