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