From 44985902148b8ba57f45c011a3f3bdc5eb192716 Mon Sep 17 00:00:00 2001 From: "Craig (Jeryn)" Date: Wed, 11 Dec 2024 18:00:45 +0000 Subject: [PATCH] Model changes 1.20.2 (#407) --- changelog.md | 2 + .../tardis/JsonToAnimationDefinition.java | 1 + .../tardis_refined/client/ModelRegistry.java | 153 +- .../door/interior/BulkHeadDoorModel.java | 20 +- .../door/interior/CastleShellDoorModel.java | 77 - .../door/interior/DrifterDoorModel.java | 83 - ...rModel.java => DualInteriorDoorModel.java} | 15 +- .../interior/DualTexInteriorDoorModel.java | 81 + .../door/interior/GroeningDoorModel.java | 86 - .../door/interior/HieroglyphShellDoor.java | 120 - .../door/interior/LiftShellDoorModel.java | 103 - .../door/interior/MysticDoorModel.java | 103 - .../door/interior/NukaDoorModel.java | 83 - .../door/interior/PagodaDoorModel.java | 1 + .../door/interior/PhoneBoothDoorModel.java | 84 - .../door/interior/PortalooDoorModel.java | 71 - .../door/interior/PresentDoorModel.java | 50 +- ...l.java => SingleTexInteriorDoorModel.java} | 24 +- .../interior/VendingMachineDoorModel.java | 64 - .../shell/ShellModelCollection.java | 41 +- .../door/BulkHeadDoorRenderer.java | 8 +- .../renderer/vortex/RenderTargetHelper.java | 8 +- .../block/console/GlobalConsoleBlock.java | 6 + .../common/block/door/BulkHeadDoorBlock.java | 76 +- .../common/block/door/GlobalDoorBlock.java | 11 + .../door/GlobalDoorBlockEntity.java | 46 +- .../compat/portals/IPStencil.java | 2 - .../animations/console/copper/flight.json | 3091 ------- .../animations/console/copper/idle.json | 2275 ----- .../animations/console/coral/flight.json | 7489 ---------------- .../animations/console/coral/idle.json | 4183 --------- .../animations/console/crystal/flight.json | 4066 --------- .../animations/console/crystal/idle.json | 4615 ---------- .../animations/console/factory/crash.json | 4723 ---------- .../animations/console/factory/flight.json | 7702 ----------------- .../animations/console/factory/idle.json | 5584 ------------ .../animations/console/factory/power_off.json | 426 - .../animations/console/factory/power_on.json | 426 - .../animations/console/initiative/flight.json | 6193 ------------- .../animations/console/initiative/idle.json | 4309 --------- .../animations/console/nuka/flight.json | 163 - .../console/refurbished/flight.json | 2368 ----- .../animations/console/refurbished/idle.json | 2131 ----- .../animations/console/toyota/flight.json | 2476 ------ .../animations/console/toyota/idle.json | 1087 --- .../animations/console/victorian/flight.json | 5458 ------------ .../animations/console/victorian/idle.json | 1093 --- .../{shell => door}/big_ben_door.json | 0 .../model_layers/door/bulk_head_door.json | 39 + .../model_layers/door/castle_door.json | 81 + .../model_layers/door/drifter_door.json | 53 + .../{shell => door}/factory_door.json | 0 .../model_layers/door/groening_door.json | 62 + .../model_layers/door/hieroglyph_door.json | 132 + .../model_layers/door/lift_door.json | 121 + .../model_layers/door/mystic_door.json | 98 + .../model_layers/door/nuka_door.json | 47 + .../{shell => door}/pathfinder_door.json | 0 .../model_layers/door/phone_booth_door.json | 56 + .../{shell => door}/police_box_door.json | 0 .../model_layers/door/portaloo_door.json | 52 + .../model_layers/door/present_door.json | 43 + .../model_layers/door/vending_door.json | 41 + .../blockentity/door/bulk_head_door.png | Bin 3713 -> 0 bytes .../door/bulk_head_door_modern.png | Bin 0 -> 2906 bytes .../blockentity/door/bulk_head_door_rough.png | Bin 0 -> 3706 bytes .../shell/drifter/drifter_interior.png | Bin 9970 -> 1636 bytes .../shell/groening/groening_interior.png | Bin 11119 -> 2200 bytes .../shell/mystic/mystic_interior.png | Bin 11112 -> 2035 bytes .../blockentity/shell/nuka/nuka_interior.png | Bin 11278 -> 1954 bytes .../shell/phone_booth/metal_interior.png | Bin 2631 -> 2634 bytes .../phone_booth/phone_booth_interior.png | Bin 12970 -> 2469 bytes 72 files changed, 1196 insertions(+), 70906 deletions(-) delete mode 100644 common/src/main/java/whocraft/tardis_refined/client/model/blockentity/door/interior/CastleShellDoorModel.java delete mode 100644 common/src/main/java/whocraft/tardis_refined/client/model/blockentity/door/interior/DrifterDoorModel.java rename common/src/main/java/whocraft/tardis_refined/client/model/blockentity/door/interior/{LeftRightInteriorDoorModel.java => DualInteriorDoorModel.java} (86%) create mode 100644 common/src/main/java/whocraft/tardis_refined/client/model/blockentity/door/interior/DualTexInteriorDoorModel.java delete mode 100644 common/src/main/java/whocraft/tardis_refined/client/model/blockentity/door/interior/GroeningDoorModel.java delete mode 100644 common/src/main/java/whocraft/tardis_refined/client/model/blockentity/door/interior/HieroglyphShellDoor.java delete mode 100644 common/src/main/java/whocraft/tardis_refined/client/model/blockentity/door/interior/LiftShellDoorModel.java delete mode 100644 common/src/main/java/whocraft/tardis_refined/client/model/blockentity/door/interior/MysticDoorModel.java delete mode 100644 common/src/main/java/whocraft/tardis_refined/client/model/blockentity/door/interior/NukaDoorModel.java delete mode 100644 common/src/main/java/whocraft/tardis_refined/client/model/blockentity/door/interior/PhoneBoothDoorModel.java delete mode 100644 common/src/main/java/whocraft/tardis_refined/client/model/blockentity/door/interior/PortalooDoorModel.java rename common/src/main/java/whocraft/tardis_refined/client/model/blockentity/door/interior/{PoliceBoxDoorModel.java => SingleTexInteriorDoorModel.java} (74%) delete mode 100644 common/src/main/java/whocraft/tardis_refined/client/model/blockentity/door/interior/VendingMachineDoorModel.java delete mode 100644 common/src/main/resources/assets/tardis_refined/animations/console/copper/flight.json delete mode 100644 common/src/main/resources/assets/tardis_refined/animations/console/copper/idle.json delete mode 100644 common/src/main/resources/assets/tardis_refined/animations/console/coral/flight.json delete mode 100644 common/src/main/resources/assets/tardis_refined/animations/console/coral/idle.json delete mode 100644 common/src/main/resources/assets/tardis_refined/animations/console/crystal/flight.json delete mode 100644 common/src/main/resources/assets/tardis_refined/animations/console/crystal/idle.json delete mode 100644 common/src/main/resources/assets/tardis_refined/animations/console/factory/crash.json delete mode 100644 common/src/main/resources/assets/tardis_refined/animations/console/factory/flight.json delete mode 100644 common/src/main/resources/assets/tardis_refined/animations/console/factory/idle.json delete mode 100644 common/src/main/resources/assets/tardis_refined/animations/console/factory/power_off.json delete mode 100644 common/src/main/resources/assets/tardis_refined/animations/console/factory/power_on.json delete mode 100644 common/src/main/resources/assets/tardis_refined/animations/console/initiative/flight.json delete mode 100644 common/src/main/resources/assets/tardis_refined/animations/console/initiative/idle.json delete mode 100644 common/src/main/resources/assets/tardis_refined/animations/console/nuka/flight.json delete mode 100644 common/src/main/resources/assets/tardis_refined/animations/console/refurbished/flight.json delete mode 100644 common/src/main/resources/assets/tardis_refined/animations/console/refurbished/idle.json delete mode 100644 common/src/main/resources/assets/tardis_refined/animations/console/toyota/flight.json delete mode 100644 common/src/main/resources/assets/tardis_refined/animations/console/toyota/idle.json delete mode 100644 common/src/main/resources/assets/tardis_refined/animations/console/victorian/flight.json delete mode 100644 common/src/main/resources/assets/tardis_refined/animations/console/victorian/idle.json rename common/src/main/resources/assets/tardis_refined/tardis_refined/model_layers/{shell => door}/big_ben_door.json (100%) create mode 100644 common/src/main/resources/assets/tardis_refined/tardis_refined/model_layers/door/bulk_head_door.json create mode 100644 common/src/main/resources/assets/tardis_refined/tardis_refined/model_layers/door/castle_door.json create mode 100644 common/src/main/resources/assets/tardis_refined/tardis_refined/model_layers/door/drifter_door.json rename common/src/main/resources/assets/tardis_refined/tardis_refined/model_layers/{shell => door}/factory_door.json (100%) create mode 100644 common/src/main/resources/assets/tardis_refined/tardis_refined/model_layers/door/groening_door.json create mode 100644 common/src/main/resources/assets/tardis_refined/tardis_refined/model_layers/door/hieroglyph_door.json create mode 100644 common/src/main/resources/assets/tardis_refined/tardis_refined/model_layers/door/lift_door.json create mode 100644 common/src/main/resources/assets/tardis_refined/tardis_refined/model_layers/door/mystic_door.json create mode 100644 common/src/main/resources/assets/tardis_refined/tardis_refined/model_layers/door/nuka_door.json rename common/src/main/resources/assets/tardis_refined/tardis_refined/model_layers/{shell => door}/pathfinder_door.json (100%) create mode 100644 common/src/main/resources/assets/tardis_refined/tardis_refined/model_layers/door/phone_booth_door.json rename common/src/main/resources/assets/tardis_refined/tardis_refined/model_layers/{shell => door}/police_box_door.json (100%) create mode 100644 common/src/main/resources/assets/tardis_refined/tardis_refined/model_layers/door/portaloo_door.json create mode 100644 common/src/main/resources/assets/tardis_refined/tardis_refined/model_layers/door/present_door.json create mode 100644 common/src/main/resources/assets/tardis_refined/tardis_refined/model_layers/door/vending_door.json delete mode 100644 common/src/main/resources/assets/tardis_refined/textures/blockentity/door/bulk_head_door.png create mode 100644 common/src/main/resources/assets/tardis_refined/textures/blockentity/door/bulk_head_door_modern.png create mode 100644 common/src/main/resources/assets/tardis_refined/textures/blockentity/door/bulk_head_door_rough.png diff --git a/changelog.md b/changelog.md index d0d900b6b..cd6018eb4 100644 --- a/changelog.md +++ b/changelog.md @@ -24,6 +24,8 @@ - Enhancement: Speed up downwards descent for Gravity Shaft - Enhancement: Improved UI for Gravity Shaft - Enhancement: Colored various texts on Key item +- Enhancement: Alarm now sounds when Fuel is below 5% and the TARDIS is not fueling+ +- Enhancement: Bulkhead doors now have some variants, changed via the Pattern Manipulator - Enhancement: Alarm now sounds when Fuel is below 5% and the TARDIS is not fueling #### Additions diff --git a/common/src/main/java/dev/jeryn/anim/tardis/JsonToAnimationDefinition.java b/common/src/main/java/dev/jeryn/anim/tardis/JsonToAnimationDefinition.java index 7b8f65549..e4c881d54 100644 --- a/common/src/main/java/dev/jeryn/anim/tardis/JsonToAnimationDefinition.java +++ b/common/src/main/java/dev/jeryn/anim/tardis/JsonToAnimationDefinition.java @@ -43,6 +43,7 @@ public class JsonToAnimationDefinition { public static ModelPart findPart(HierarchicalModel hierarchicalModel, String string) { + System.out.println(string + " " + hierarchicalModel.getClass()); return hierarchicalModel.root().getAllParts().filter((modelPart) -> modelPart.hasChild(string)).findFirst().map((modelPart) -> modelPart.getChild(string)).get(); } diff --git a/common/src/main/java/whocraft/tardis_refined/client/ModelRegistry.java b/common/src/main/java/whocraft/tardis_refined/client/ModelRegistry.java index 27c578585..26880d97e 100644 --- a/common/src/main/java/whocraft/tardis_refined/client/ModelRegistry.java +++ b/common/src/main/java/whocraft/tardis_refined/client/ModelRegistry.java @@ -4,7 +4,6 @@ import net.minecraft.client.model.geom.ModelLayerLocation; import net.minecraft.client.model.geom.builders.LayerDefinition; import net.minecraft.resources.ResourceLocation; -import whocraft.tardis_refined.TardisRefined; import whocraft.tardis_refined.client.model.blockentity.console.*; import whocraft.tardis_refined.client.model.blockentity.device.ArtronPillarBlockModel; import whocraft.tardis_refined.client.model.blockentity.door.interior.*; @@ -15,6 +14,8 @@ import java.util.function.Supplier; +import static whocraft.tardis_refined.TardisRefined.MODID; + public class ModelRegistry { // Root Plants - Sorry in advance. @@ -24,12 +25,12 @@ public class ModelRegistry { public static ModelLayerLocation ROOT_PLANT_STATE_FOUR; public static ModelLayerLocation ROOT_PLANT_STATE_FIVE; - public static ModelLayerLocation FACTORY_CONSOLE = new ModelLayerLocation(new ResourceLocation(TardisRefined.MODID, "factory"), "console"); + public static ModelLayerLocation FACTORY_CONSOLE = console("factory"); public static ModelLayerLocation NUKA_CONSOLE; - public static ModelLayerLocation CORAL_CONSOLE = new ModelLayerLocation(new ResourceLocation(TardisRefined.MODID, "coral"), "console"); - public static ModelLayerLocation COPPER_CONSOLE = new ModelLayerLocation(new ResourceLocation(TardisRefined.MODID, "copper"), "console"); + public static ModelLayerLocation CORAL_CONSOLE = console("coral"); + public static ModelLayerLocation COPPER_CONSOLE = console( "copper"); - public static ModelLayerLocation TOYOTA_CONSOLE = new ModelLayerLocation(new ResourceLocation(TardisRefined.MODID, "toyota"), "console"); + public static ModelLayerLocation TOYOTA_CONSOLE = console("toyota"); public static ModelLayerLocation CRYSTAL_CONSOLE; public static ModelLayerLocation VICTORIAN_CONSOLE; public static ModelLayerLocation MYST_CONSOLE; @@ -57,89 +58,85 @@ public class ModelRegistry { public static ModelLayerLocation PATHFINDER_SHELL; public static ModelLayerLocation HALF_BAKED_SHELL; - public static ModelLayerLocation ROOT_SHELL_DOOR; - public static ModelLayerLocation FACTORY_DOOR = new ModelLayerLocation(new ResourceLocation(TardisRefined.MODID, "factory_door"), "shell"); - public static ModelLayerLocation POLICE_BOX_DOOR = new ModelLayerLocation(new ResourceLocation(TardisRefined.MODID, "police_box_door"), "shell"); - public static ModelLayerLocation PHONE_BOOTH_DOOR; - public static ModelLayerLocation MYSTIC_DOOR; - public static ModelLayerLocation DRIFTER_DOOR; - public static ModelLayerLocation PRESENT_DOOR; - public static ModelLayerLocation VENDING_DOOR; + public static ModelLayerLocation FACTORY_DOOR = interiorDoor("factory_door"); + public static ModelLayerLocation POLICE_BOX_DOOR = interiorDoor("police_box_door"); + public static ModelLayerLocation DRIFTER_DOOR = interiorDoor("drifter_door"); + public static ModelLayerLocation MYSTIC_DOOR = interiorDoor("mystic_door"); + public static ModelLayerLocation PHONE_BOOTH_DOOR = interiorDoor("phone_booth_door"); + public static ModelLayerLocation PRESENT_DOOR = interiorDoor("present_door"); + public static ModelLayerLocation GROENING_DOOR = interiorDoor("groening_door"); public static ModelLayerLocation BRIEFCASE_DOOR; - public static ModelLayerLocation GROENING_DOOR; - public static ModelLayerLocation NUKA_DOOR; public static ModelLayerLocation GROWTH_DOOR; - public static ModelLayerLocation PORTALOO_DOOR; public static ModelLayerLocation PAGODA_DOOR; - public static ModelLayerLocation LIFT_DOOR; - public static ModelLayerLocation HIEROGLYPH_DOOR; - public static ModelLayerLocation CASTLE_DOOR; - public static ModelLayerLocation PATHFINDER_DOOR = new ModelLayerLocation(new ResourceLocation(TardisRefined.MODID, "pathfinder_door"), "shell");; - public static ModelLayerLocation BIG_BEN_DOOR = new ModelLayerLocation(new ResourceLocation(TardisRefined.MODID, "big_ben_door"), "shell");; + public static ModelLayerLocation HIEROGLYPH_DOOR = interiorDoor("hieroglyph_door"); + public static ModelLayerLocation CASTLE_DOOR = interiorDoor("castle_door"); + public static ModelLayerLocation NUKA_DOOR = interiorDoor("nuka_door"); + public static ModelLayerLocation PORTALOO_DOOR = interiorDoor("portaloo_door"); + public static ModelLayerLocation VENDING_DOOR = interiorDoor("vending_door"); + public static ModelLayerLocation LIFT_DOOR = interiorDoor("lift_door"); + public static ModelLayerLocation PATHFINDER_DOOR = interiorDoor("pathfinder_door"); + public static ModelLayerLocation BIG_BEN_DOOR = interiorDoor("big_ben_door"); public static ModelLayerLocation HALF_BAKED_DOOR; - - public static ModelLayerLocation ARS_EGG = new ModelLayerLocation(new ResourceLocation(TardisRefined.MODID, "ars_egg"), "living"); - public static ModelLayerLocation BULK_HEAD_DOOR; + public static ModelLayerLocation ARS_EGG = createLocation("ars_egg", "living"); + public static ModelLayerLocation BULK_HEAD_DOOR = interiorDoor("bulk_head_door"); public static ModelLayerLocation ARTRON_PILLAR; + private static ModelLayerLocation interiorDoor(String name) { + return createLocation(name, "door"); + } + + private static ModelLayerLocation console(String name) { + return createLocation(name, "console"); + } + + private static ModelLayerLocation createLocation(String name, String layer) { + return new ModelLayerLocation(new ResourceLocation(MODID, name), layer); + } public static void init() { - ROOT_PLANT_STATE_ONE = register(new ModelLayerLocation(new ResourceLocation(TardisRefined.MODID, "root_plant_one"), "root_plant_one"), RootPlantStateOneModel::createBodyLayer); - ROOT_PLANT_STATE_TWO = register(new ModelLayerLocation(new ResourceLocation(TardisRefined.MODID, "root_plant_two"), "root_plant_two"), RootPlantStateTwoModel::createBodyLayer); - ROOT_PLANT_STATE_THREE = register(new ModelLayerLocation(new ResourceLocation(TardisRefined.MODID, "root_plant_three"), "root_plant_three"), RootPlantStateThreeModel::createBodyLayer); - ROOT_PLANT_STATE_FOUR = register(new ModelLayerLocation(new ResourceLocation(TardisRefined.MODID, "root_plant_four"), "root_plant_four"), RootPlantStateFourModel::createBodyLayer); - ROOT_PLANT_STATE_FIVE = register(new ModelLayerLocation(new ResourceLocation(TardisRefined.MODID, "root_plant_five"), "root_plant_five"), RootPlantStateFiveModel::createBodyLayer); - - NUKA_CONSOLE = register(new ModelLayerLocation(new ResourceLocation(TardisRefined.MODID, "nuka_console"), "nuka_console"), NukaConsoleModel::createBodyLayer); - CRYSTAL_CONSOLE = register(new ModelLayerLocation(new ResourceLocation(TardisRefined.MODID, "crystal_console"), "crystal_console"), CrystalConsoleModel::createBodyLayer); - VICTORIAN_CONSOLE = register(new ModelLayerLocation(new ResourceLocation(TardisRefined.MODID, "victorian_console"), "victorian_console"), VictorianConsoleModel::createBodyLayer); - MYST_CONSOLE = register(new ModelLayerLocation(new ResourceLocation(TardisRefined.MODID, "myst_console"), "myst_console"), MystConsoleModel::createBodyLayer); - INITIATIVE_CONSOLE = register(new ModelLayerLocation(new ResourceLocation(TardisRefined.MODID, "initiative_console"), "initiative_console"), InitiativeConsoleModel::createBodyLayer); - REFURBISHED_CONSOLE = register(new ModelLayerLocation(new ResourceLocation(TardisRefined.MODID, "refurbished_console"), "refurbished_console"), RefurbishedConsoleModel::createBodyLayer); - - ROOT_SHELL = register(new ModelLayerLocation(new ResourceLocation(TardisRefined.MODID, "root_shell"), "root_shell"), RootShellModel::createBodyLayer); - FACTORY_SHELL = register(new ModelLayerLocation(new ResourceLocation(TardisRefined.MODID, "factory_shell"), "factory_shell"), FactoryShellModel::createBodyLayer); - POLICE_BOX_SHELL = register(new ModelLayerLocation(new ResourceLocation(TardisRefined.MODID, "police_box_shell"), "police_box_shell"), PoliceBoxModel::createBodyLayer); - PHONE_BOOTH_SHELL = register(new ModelLayerLocation(new ResourceLocation(TardisRefined.MODID, "phone_booth_shell"), "phone_booth_shell"), PhoneBoothModel::createBodyLayer); - MYSTIC_SHELL = register(new ModelLayerLocation(new ResourceLocation(TardisRefined.MODID, "mystic_shell"), "mystic_shell"), MysticShellModel::createBodyLayer); - DRIFTER_SHELL = register(new ModelLayerLocation(new ResourceLocation(TardisRefined.MODID, "drifter_shell"), "drifter_shell"), DrifterShellModel::createBodyLayer); - PRESENT_SHELL = register(new ModelLayerLocation(new ResourceLocation(TardisRefined.MODID, "present_shell"), "present_shell"), PresentShellModel::createBodyLayer); - VENDING_SHELL = register(new ModelLayerLocation(new ResourceLocation(TardisRefined.MODID, "vending_shell"), "vending_shell"), VendingMachineShellModel::createBodyLayer); - BRIEFCASE_SHELL = register(new ModelLayerLocation(new ResourceLocation(TardisRefined.MODID, "briefcase_shell"), "briefcase_shell"), BriefcaseShellModel::createBodyLayer); - GROENING_SHELL = register(new ModelLayerLocation(new ResourceLocation(TardisRefined.MODID, "groening_shell"), "groening_shell"), GroeningShellModel::createBodyLayer); - BIG_BEN_SHELL = register(new ModelLayerLocation(new ResourceLocation(TardisRefined.MODID, "big_ben_shell"), "big_ben_shell"), BigBenShellModel::createBodyLayer); - NUKA_SHELL = register(new ModelLayerLocation(new ResourceLocation(TardisRefined.MODID, "nuka_shell"), "nuka_shell"), NukaShellModel::createBodyLayer); - GROWTH_SHELL = register(new ModelLayerLocation(new ResourceLocation(TardisRefined.MODID, "growth_shell"), "growth_shell"), GrowthShellModel::createBodyLayer); - PORTALOO_SHELL = register(new ModelLayerLocation(new ResourceLocation(TardisRefined.MODID, "portaloo_shell"), "portaloo_shell"), PortalooShellModel::createBodyLayer); - PAGODA_SHELL = register(new ModelLayerLocation(new ResourceLocation(TardisRefined.MODID, "pagoda_shell"), "pagoda_shell"), PagodaShellModel::createBodyLayer); - LIFT_SHELL = register(new ModelLayerLocation(new ResourceLocation(TardisRefined.MODID, "lift_shell"), "lift_shell"), LiftShellModel::createBodyLayer); - HIEROGLYPH_SHELL = register(new ModelLayerLocation(new ResourceLocation(TardisRefined.MODID, "hieroglyph_shell"), "hieroglyph_shell"), HieroglyphModel::createBodyLayer); - CASTLE_SHELL = register(new ModelLayerLocation(new ResourceLocation(TardisRefined.MODID, "castle_shell"), "castle_shell"), CastleShellModel::createBodyLayer); - PATHFINDER_SHELL = register(new ModelLayerLocation(new ResourceLocation(TardisRefined.MODID, "pathfinder_shell"), "pathfinder_shell"), PathfinderShellModel::createBodyLayer); - HALF_BAKED_SHELL = register(new ModelLayerLocation(new ResourceLocation(TardisRefined.MODID, "half_baked_shell"), "half_baked_shell"), HalfBakedShellModel::createBodyLayer); - - - ROOT_SHELL_DOOR = register(new ModelLayerLocation(new ResourceLocation(TardisRefined.MODID, "root_shell_door"), "root_shell_door"), RootShellDoorModel::createBodyLayer); - PHONE_BOOTH_DOOR = register(new ModelLayerLocation(new ResourceLocation(TardisRefined.MODID, "phone_booth_door"), "phone_booth_door"), PhoneBoothDoorModel::createBodyLayer); - MYSTIC_DOOR = register(new ModelLayerLocation(new ResourceLocation(TardisRefined.MODID, "mystic_door"), "mystic_door"), MysticDoorModel::createBodyLayer); - DRIFTER_DOOR = register(new ModelLayerLocation(new ResourceLocation(TardisRefined.MODID, "drifter_door"), "drifter_door"), DrifterDoorModel::createBodyLayer); - PRESENT_DOOR = register(new ModelLayerLocation(new ResourceLocation(TardisRefined.MODID, "present_door"), "present_door"), PresentDoorModel::createBodyLayer); - VENDING_DOOR = register(new ModelLayerLocation(new ResourceLocation(TardisRefined.MODID, "vending_door"), "vending_door"), VendingMachineDoorModel::createBodyLayer); - BRIEFCASE_DOOR = register(new ModelLayerLocation(new ResourceLocation(TardisRefined.MODID, "briefcase_door"), "briefcase_door"), BriefcaseDoorModel::createBodyLayer); - GROENING_DOOR = register(new ModelLayerLocation(new ResourceLocation(TardisRefined.MODID, "groening_door"), "groening_door"), GroeningDoorModel::createBodyLayer); - NUKA_DOOR = register(new ModelLayerLocation(new ResourceLocation(TardisRefined.MODID, "nuka_door"), "nuka_door"), NukaDoorModel::createBodyLayer); - GROWTH_DOOR = register(new ModelLayerLocation(new ResourceLocation(TardisRefined.MODID, "growth_door"), "growth_door"), GrowthDoorModel::createBodyLayer); - PORTALOO_DOOR = register(new ModelLayerLocation(new ResourceLocation(TardisRefined.MODID, "portaloo_door"), "portaloo_door"), PortalooDoorModel::createBodyLayer); - PAGODA_DOOR = register(new ModelLayerLocation(new ResourceLocation(TardisRefined.MODID, "pagoda_door"), "pagoda_door"), PagodaDoorModel::createBodyLayer); - LIFT_DOOR = register(new ModelLayerLocation(new ResourceLocation(TardisRefined.MODID, "lift_door"), "lift_door"), LiftShellDoorModel::createBodyLayer); - HIEROGLYPH_DOOR = register(new ModelLayerLocation(new ResourceLocation(TardisRefined.MODID, "hieroglyph_door"), "hieroglyph_door"), HieroglyphShellDoor::createBodyLayer); - CASTLE_DOOR = register(new ModelLayerLocation(new ResourceLocation(TardisRefined.MODID, "castle_door"), "castle_door"), CastleShellDoorModel::createBodyLayer); - HALF_BAKED_DOOR = register(new ModelLayerLocation(new ResourceLocation(TardisRefined.MODID, "half_baked_door"), "half_baked_door"), HalfBakedDoorModel::createBodyLayer); - - BULK_HEAD_DOOR = register(new ModelLayerLocation(new ResourceLocation(TardisRefined.MODID, "bulk_head_door"), "bulk_head_door"), BulkHeadDoorModel::createBodyLayer); - ARTRON_PILLAR = register(new ModelLayerLocation(new ResourceLocation(TardisRefined.MODID, "artron_pillar"), "artron_pillar"), ArtronPillarBlockModel::createBodyLayer); + ROOT_PLANT_STATE_ONE = register(new ModelLayerLocation(new ResourceLocation(MODID, "root_plant_one"), "root_plant_one"), RootPlantStateOneModel::createBodyLayer); + ROOT_PLANT_STATE_TWO = register(new ModelLayerLocation(new ResourceLocation(MODID, "root_plant_two"), "root_plant_two"), RootPlantStateTwoModel::createBodyLayer); + ROOT_PLANT_STATE_THREE = register(new ModelLayerLocation(new ResourceLocation(MODID, "root_plant_three"), "root_plant_three"), RootPlantStateThreeModel::createBodyLayer); + ROOT_PLANT_STATE_FOUR = register(new ModelLayerLocation(new ResourceLocation(MODID, "root_plant_four"), "root_plant_four"), RootPlantStateFourModel::createBodyLayer); + ROOT_PLANT_STATE_FIVE = register(new ModelLayerLocation(new ResourceLocation(MODID, "root_plant_five"), "root_plant_five"), RootPlantStateFiveModel::createBodyLayer); + + NUKA_CONSOLE = register(new ModelLayerLocation(new ResourceLocation(MODID, "nuka_console"), "nuka_console"), NukaConsoleModel::createBodyLayer); + CRYSTAL_CONSOLE = register(new ModelLayerLocation(new ResourceLocation(MODID, "crystal_console"), "crystal_console"), CrystalConsoleModel::createBodyLayer); + VICTORIAN_CONSOLE = register(new ModelLayerLocation(new ResourceLocation(MODID, "victorian_console"), "victorian_console"), VictorianConsoleModel::createBodyLayer); + MYST_CONSOLE = register(new ModelLayerLocation(new ResourceLocation(MODID, "myst_console"), "myst_console"), MystConsoleModel::createBodyLayer); + INITIATIVE_CONSOLE = register(new ModelLayerLocation(new ResourceLocation(MODID, "initiative_console"), "initiative_console"), InitiativeConsoleModel::createBodyLayer); + REFURBISHED_CONSOLE = register(new ModelLayerLocation(new ResourceLocation(MODID, "refurbished_console"), "refurbished_console"), RefurbishedConsoleModel::createBodyLayer); + + ROOT_SHELL = register(new ModelLayerLocation(new ResourceLocation(MODID, "root_shell"), "root_shell"), RootShellModel::createBodyLayer); + FACTORY_SHELL = register(new ModelLayerLocation(new ResourceLocation(MODID, "factory_shell"), "factory_shell"), FactoryShellModel::createBodyLayer); + POLICE_BOX_SHELL = register(new ModelLayerLocation(new ResourceLocation(MODID, "police_box_shell"), "police_box_shell"), PoliceBoxModel::createBodyLayer); + PHONE_BOOTH_SHELL = register(new ModelLayerLocation(new ResourceLocation(MODID, "phone_booth_shell"), "phone_booth_shell"), PhoneBoothModel::createBodyLayer); + MYSTIC_SHELL = register(new ModelLayerLocation(new ResourceLocation(MODID, "mystic_shell"), "mystic_shell"), MysticShellModel::createBodyLayer); + DRIFTER_SHELL = register(new ModelLayerLocation(new ResourceLocation(MODID, "drifter_shell"), "drifter_shell"), DrifterShellModel::createBodyLayer); + PRESENT_SHELL = register(new ModelLayerLocation(new ResourceLocation(MODID, "present_shell"), "present_shell"), PresentShellModel::createBodyLayer); + VENDING_SHELL = register(new ModelLayerLocation(new ResourceLocation(MODID, "vending_shell"), "vending_shell"), VendingMachineShellModel::createBodyLayer); + BRIEFCASE_SHELL = register(new ModelLayerLocation(new ResourceLocation(MODID, "briefcase_shell"), "briefcase_shell"), BriefcaseShellModel::createBodyLayer); + GROENING_SHELL = register(new ModelLayerLocation(new ResourceLocation(MODID, "groening_shell"), "groening_shell"), GroeningShellModel::createBodyLayer); + BIG_BEN_SHELL = register(new ModelLayerLocation(new ResourceLocation(MODID, "big_ben_shell"), "big_ben_shell"), BigBenShellModel::createBodyLayer); + NUKA_SHELL = register(new ModelLayerLocation(new ResourceLocation(MODID, "nuka_shell"), "nuka_shell"), NukaShellModel::createBodyLayer); + GROWTH_SHELL = register(new ModelLayerLocation(new ResourceLocation(MODID, "growth_shell"), "growth_shell"), GrowthShellModel::createBodyLayer); + PORTALOO_SHELL = register(new ModelLayerLocation(new ResourceLocation(MODID, "portaloo_shell"), "portaloo_shell"), PortalooShellModel::createBodyLayer); + PAGODA_SHELL = register(new ModelLayerLocation(new ResourceLocation(MODID, "pagoda_shell"), "pagoda_shell"), PagodaShellModel::createBodyLayer); + LIFT_SHELL = register(new ModelLayerLocation(new ResourceLocation(MODID, "lift_shell"), "lift_shell"), LiftShellModel::createBodyLayer); + HIEROGLYPH_SHELL = register(new ModelLayerLocation(new ResourceLocation(MODID, "hieroglyph_shell"), "hieroglyph_shell"), HieroglyphModel::createBodyLayer); + CASTLE_SHELL = register(new ModelLayerLocation(new ResourceLocation(MODID, "castle_shell"), "castle_shell"), CastleShellModel::createBodyLayer); + PATHFINDER_SHELL = register(new ModelLayerLocation(new ResourceLocation(MODID, "pathfinder_shell"), "pathfinder_shell"), PathfinderShellModel::createBodyLayer); + HALF_BAKED_SHELL = register(new ModelLayerLocation(new ResourceLocation(MODID, "half_baked_shell"), "half_baked_shell"), HalfBakedShellModel::createBodyLayer); + + + ROOT_SHELL_DOOR = register(new ModelLayerLocation(new ResourceLocation(MODID, "root_shell_door"), "root_shell_door"), RootShellDoorModel::createBodyLayer); + BRIEFCASE_DOOR = register(new ModelLayerLocation(new ResourceLocation(MODID, "briefcase_door"), "briefcase_door"), BriefcaseDoorModel::createBodyLayer); + GROWTH_DOOR = register(new ModelLayerLocation(new ResourceLocation(MODID, "growth_door"), "growth_door"), GrowthDoorModel::createBodyLayer); + PAGODA_DOOR = register(new ModelLayerLocation(new ResourceLocation(MODID, "pagoda_door"), "pagoda_door"), PagodaDoorModel::createBodyLayer); + HALF_BAKED_DOOR = register(new ModelLayerLocation(new ResourceLocation(MODID, "half_baked_door"), "half_baked_door"), HalfBakedDoorModel::createBodyLayer); + ARTRON_PILLAR = register(new ModelLayerLocation(new ResourceLocation(MODID, "artron_pillar"), "artron_pillar"), ArtronPillarBlockModel::createBodyLayer); } diff --git a/common/src/main/java/whocraft/tardis_refined/client/model/blockentity/door/interior/BulkHeadDoorModel.java b/common/src/main/java/whocraft/tardis_refined/client/model/blockentity/door/interior/BulkHeadDoorModel.java index aa3c359fb..b848e329a 100644 --- a/common/src/main/java/whocraft/tardis_refined/client/model/blockentity/door/interior/BulkHeadDoorModel.java +++ b/common/src/main/java/whocraft/tardis_refined/client/model/blockentity/door/interior/BulkHeadDoorModel.java @@ -19,26 +19,10 @@ public class BulkHeadDoorModel extends HierarchicalModel { public BulkHeadDoorModel(ModelPart root) { this.root = root.getChild("root"); - this.right = this.root.getChild("right"); - this.left = this.root.getChild("left"); + this.right = this.root.getChild("right_door"); + this.left = this.root.getChild("left_door"); } - public static LayerDefinition createBodyLayer() { - MeshDefinition meshdefinition = new MeshDefinition(); - PartDefinition partdefinition = meshdefinition.getRoot(); - - PartDefinition root = partdefinition.addOrReplaceChild("root", CubeListBuilder.create(), PartPose.offset(0.0F, 0.0F, 16.0F)); - - PartDefinition right = root.addOrReplaceChild("right", CubeListBuilder.create().texOffs(64, 54).addBox(0.0F, -48.0F, -19.0F, 24.0F, 48.0F, 6.0F, new CubeDeformation(0.0F)) - .texOffs(0, 56).addBox(0.0F, -48.0F, -20.0F, 24.0F, 48.0F, 8.0F, new CubeDeformation(0.0F)), PartPose.offset(0.0F, 24.0F, 0.0F)); - - PartDefinition left = root.addOrReplaceChild("left", CubeListBuilder.create().texOffs(64, 0).addBox(-24.0F, -48.0F, -19.0F, 24.0F, 48.0F, 6.0F, new CubeDeformation(0.0F)) - .texOffs(0, 0).addBox(-24.0F, -48.0F, -20.0F, 24.0F, 48.0F, 8.0F, new CubeDeformation(0.0F)), PartPose.offset(0.0F, 24.0F, 0.0F)); - - return LayerDefinition.create(meshdefinition, 128, 128); - } - - @Override public void renderToBuffer(PoseStack poseStack, VertexConsumer vertexConsumer, int packedLight, int packedOverlay, float red, float green, float blue, float alpha) { root.render(poseStack, vertexConsumer, packedLight, packedOverlay, red, green, blue, alpha); diff --git a/common/src/main/java/whocraft/tardis_refined/client/model/blockentity/door/interior/CastleShellDoorModel.java b/common/src/main/java/whocraft/tardis_refined/client/model/blockentity/door/interior/CastleShellDoorModel.java deleted file mode 100644 index 817aa83c0..000000000 --- a/common/src/main/java/whocraft/tardis_refined/client/model/blockentity/door/interior/CastleShellDoorModel.java +++ /dev/null @@ -1,77 +0,0 @@ -package whocraft.tardis_refined.client.model.blockentity.door.interior; - -import com.mojang.blaze3d.vertex.PoseStack; -import com.mojang.blaze3d.vertex.VertexConsumer; -import net.minecraft.client.model.geom.ModelPart; -import net.minecraft.client.model.geom.PartPose; -import net.minecraft.client.model.geom.builders.*; -import whocraft.tardis_refined.common.blockentity.door.GlobalDoorBlockEntity; - -public class CastleShellDoorModel extends ShellDoorModel { - - private final ModelPart r_door; - private final ModelPart l_door; - private final ModelPart bone8; - - public CastleShellDoorModel(ModelPart root) { - this.r_door = root.getChild("r_door"); - this.l_door = root.getChild("l_door"); - this.bone8 = root.getChild("bone8"); - } - - public static LayerDefinition createBodyLayer() { - MeshDefinition meshdefinition = new MeshDefinition(); - PartDefinition partdefinition = meshdefinition.getRoot(); - - PartDefinition r_door = partdefinition.addOrReplaceChild("r_door", CubeListBuilder.create().texOffs(0, 40).mirror().addBox(-0.25F, -16.0F, -0.5F, 8.0F, 32.0F, 1.0F, new CubeDeformation(0.0F)).mirror(false), PartPose.offset(-7.5F, 8.0F, 4.5F)); - - PartDefinition l_door = partdefinition.addOrReplaceChild("l_door", CubeListBuilder.create().texOffs(0, 40).addBox(-7.75F, -16.0F, -0.5F, 8.0F, 32.0F, 1.0F, new CubeDeformation(0.0F)), PartPose.offset(7.5F, 8.0F, 4.5F)); - - PartDefinition bone8 = partdefinition.addOrReplaceChild("bone8", CubeListBuilder.create().texOffs(37, 0).addBox(-10.5F, -36.0F, 7.0F, 3.0F, 36.0F, 3.0F, new CubeDeformation(0.0F)) - .texOffs(37, 0).mirror().addBox(7.5F, -36.0F, 7.0F, 3.0F, 36.0F, 3.0F, new CubeDeformation(0.0F)).mirror(false) - .texOffs(0, 0).addBox(-7.5F, -36.0F, 7.0F, 15.0F, 36.0F, 3.0F, new CubeDeformation(0.0F)) - .texOffs(19, 40).addBox(-2.5F, -36.0F, 5.0F, 5.0F, 4.0F, 2.0F, new CubeDeformation(0.0F)) - .texOffs(45, 45).addBox(2.5F, -35.0F, 5.0F, 4.0F, 3.0F, 2.0F, new CubeDeformation(0.0F)) - .texOffs(34, 40).addBox(6.5F, -36.0F, 5.0F, 4.0F, 4.0F, 2.0F, new CubeDeformation(0.0F)) - .texOffs(34, 40).mirror().addBox(-10.5F, -36.0F, 5.0F, 4.0F, 4.0F, 2.0F, new CubeDeformation(0.0F)).mirror(false) - .texOffs(45, 45).mirror().addBox(-6.5F, -35.0F, 5.0F, 4.0F, 3.0F, 2.0F, new CubeDeformation(0.0F)).mirror(false), PartPose.offset(0.0F, 24.0F, -2.0F)); - - PartDefinition bone = bone8.addOrReplaceChild("bone", CubeListBuilder.create().texOffs(34, 40).addBox(7.5F, -4.0F, 5.0F, 4.0F, 4.0F, 2.0F, new CubeDeformation(0.0F)) - .texOffs(19, 47).addBox(7.5F, -8.0F, 5.0F, 3.0F, 4.0F, 2.0F, new CubeDeformation(0.0F)) - .texOffs(34, 40).addBox(7.5F, -12.0F, 5.0F, 4.0F, 4.0F, 2.0F, new CubeDeformation(0.0F)) - .texOffs(19, 47).addBox(7.5F, -16.0F, 5.0F, 3.0F, 4.0F, 2.0F, new CubeDeformation(0.0F)) - .texOffs(30, 47).addBox(7.5F, -20.0F, 5.0F, 2.0F, 4.0F, 2.0F, new CubeDeformation(0.0F)) - .texOffs(19, 47).addBox(7.5F, -24.0F, 5.0F, 3.0F, 4.0F, 2.0F, new CubeDeformation(0.0F)) - .texOffs(30, 47).addBox(7.5F, -28.0F, 5.0F, 2.0F, 4.0F, 2.0F, new CubeDeformation(0.0F)) - .texOffs(19, 47).addBox(7.5F, -32.0F, 5.0F, 3.0F, 4.0F, 2.0F, new CubeDeformation(0.0F)), PartPose.offset(0.0F, 0.0F, 0.0F)); - - PartDefinition bone2 = bone8.addOrReplaceChild("bone2", CubeListBuilder.create().texOffs(34, 40).mirror().addBox(-11.5F, -4.0F, 5.0F, 4.0F, 4.0F, 2.0F, new CubeDeformation(0.0F)).mirror(false) - .texOffs(19, 47).mirror().addBox(-10.5F, -8.0F, 5.0F, 3.0F, 4.0F, 2.0F, new CubeDeformation(0.0F)).mirror(false) - .texOffs(34, 40).mirror().addBox(-11.5F, -12.0F, 5.0F, 4.0F, 4.0F, 2.0F, new CubeDeformation(0.0F)).mirror(false) - .texOffs(19, 47).mirror().addBox(-10.5F, -16.0F, 5.0F, 3.0F, 4.0F, 2.0F, new CubeDeformation(0.0F)).mirror(false) - .texOffs(30, 47).mirror().addBox(-9.5F, -20.0F, 5.0F, 2.0F, 4.0F, 2.0F, new CubeDeformation(0.0F)).mirror(false) - .texOffs(19, 47).mirror().addBox(-10.5F, -24.0F, 5.0F, 3.0F, 4.0F, 2.0F, new CubeDeformation(0.0F)).mirror(false) - .texOffs(30, 47).mirror().addBox(-9.5F, -28.0F, 5.0F, 2.0F, 4.0F, 2.0F, new CubeDeformation(0.0F)).mirror(false) - .texOffs(19, 47).mirror().addBox(-10.5F, -32.0F, 5.0F, 3.0F, 4.0F, 2.0F, new CubeDeformation(0.0F)).mirror(false), PartPose.offset(0.0F, 0.0F, 0.0F)); - - return LayerDefinition.create(meshdefinition, 128, 128); - } - - @Override - public void renderFrame(GlobalDoorBlockEntity doorBlockEntity, boolean open, boolean isBaseModel, PoseStack poseStack, VertexConsumer vertexConsumer, int packedLight, int packedOverlay, float red, float green, float blue, float alpha) { - r_door.render(poseStack, vertexConsumer, packedLight, packedOverlay, red, green, blue, alpha); - l_door.render(poseStack, vertexConsumer, packedLight, packedOverlay, red, green, blue, alpha); - bone8.render(poseStack, vertexConsumer, packedLight, packedOverlay, red, green, blue, alpha); - } - - @Override - public void renderPortalMask(GlobalDoorBlockEntity doorBlockEntity, boolean open, boolean isBaseModel, PoseStack poseStack, VertexConsumer vertexConsumer, int packedLight, int packedOverlay, float red, float green, float blue, float alpha) { - - } - - @Override - public void setDoorPosition(boolean open) { - l_door.yRot = open ? (float) Math.toRadians(90) : (float) Math.toRadians(0); - r_door.yRot = open ? (float) Math.toRadians(-90) : (float) Math.toRadians(0); - } -} diff --git a/common/src/main/java/whocraft/tardis_refined/client/model/blockentity/door/interior/DrifterDoorModel.java b/common/src/main/java/whocraft/tardis_refined/client/model/blockentity/door/interior/DrifterDoorModel.java deleted file mode 100644 index 315bc6574..000000000 --- a/common/src/main/java/whocraft/tardis_refined/client/model/blockentity/door/interior/DrifterDoorModel.java +++ /dev/null @@ -1,83 +0,0 @@ -package whocraft.tardis_refined.client.model.blockentity.door.interior; - - -import com.mojang.blaze3d.vertex.PoseStack; -import com.mojang.blaze3d.vertex.VertexConsumer; -import net.minecraft.client.model.geom.ModelPart; -import net.minecraft.client.model.geom.PartPose; -import net.minecraft.client.model.geom.builders.*; -import net.minecraft.world.entity.Entity; -import whocraft.tardis_refined.client.model.blockentity.shell.ShellModel; -import whocraft.tardis_refined.common.blockentity.door.GlobalDoorBlockEntity; - -public class DrifterDoorModel extends ShellDoorModel { - - private final ModelPart door_closed; - private final ModelPart door_open; - private final ModelPart main; - private final ModelPart root; - boolean isDoorOpen = false; - - public DrifterDoorModel(ModelPart root) { - this.root = root; - this.door_closed = root.getChild("door_closed"); - this.door_open = root.getChild("door_open"); - this.main = root.getChild("main"); - } - - public static LayerDefinition createBodyLayer() { - MeshDefinition meshdefinition = new MeshDefinition(); - PartDefinition partdefinition = meshdefinition.getRoot(); - - PartDefinition door_closed = partdefinition.addOrReplaceChild("door_closed", CubeListBuilder.create().texOffs(33, 77).addBox(-7.0F, -32.0F, 6.25F, 14.0F, 30.0F, 1.0F, new CubeDeformation(0.0F)) - .texOffs(0, 77).addBox(-7.5F, -32.5F, 6.75F, 15.0F, 31.0F, 1.0F, new CubeDeformation(0.0F)), PartPose.offset(0.0F, 24.0F, -0.5F)); - - PartDefinition door_open = partdefinition.addOrReplaceChild("door_open", CubeListBuilder.create().texOffs(33, 36).addBox(-7.0F, -32.0F, 6.25F, 14.0F, 30.0F, 1.0F, new CubeDeformation(0.0F)) - .texOffs(0, 36).addBox(-7.5F, -32.5F, 6.75F, 15.0F, 31.0F, 1.0F, new CubeDeformation(0.0F)), PartPose.offset(0.0F, 24.0F, -0.5F)); - - PartDefinition main = partdefinition.addOrReplaceChild("main", CubeListBuilder.create().texOffs(41, 9).addBox(-7.4F, -2.5F, 4.0F, 1.0F, 3.0F, 3.0F, new CubeDeformation(0.0F)) - .texOffs(0, 0).addBox(-9.5F, -34.025F, 7.025F, 19.0F, 34.0F, 1.0F, new CubeDeformation(0.0F)) - .texOffs(64, 46).addBox(-7.0F, -2.0F, 4.5F, 14.0F, 2.0F, 2.0F, new CubeDeformation(0.0F)) - .texOffs(41, 9).addBox(6.4F, -2.5F, 4.0F, 1.0F, 3.0F, 3.0F, new CubeDeformation(0.0F)) - .texOffs(64, 9).mirror().addBox(7.5F, -34.0F, 6.0F, 2.0F, 34.0F, 2.0F, new CubeDeformation(0.0F)).mirror(false) - .texOffs(41, 0).addBox(-9.5F, -34.0F, 6.0F, 19.0F, 2.0F, 2.0F, new CubeDeformation(0.0F)) - .texOffs(64, 9).addBox(-9.5F, -34.0F, 6.0F, 2.0F, 34.0F, 2.0F, new CubeDeformation(0.0F)), PartPose.offset(0.0F, 24.0F, 0.0F)); - - PartDefinition bone = main.addOrReplaceChild("bone", CubeListBuilder.create().texOffs(41, 5).addBox(-9.5F, 0.0F, -2.0F, 19.0F, 1.0F, 2.0F, new CubeDeformation(0.0F)), PartPose.offsetAndRotation(0.0F, -34.0F, 6.0F, 0.7418F, 0.0F, 0.0F)); - - ShellModel.addMaterializationPart(partdefinition); - - return LayerDefinition.create(meshdefinition, 128, 128); - } - - @Override - public void renderFrame(GlobalDoorBlockEntity doorBlockEntity, boolean open, boolean isBaseModel, PoseStack poseStack, VertexConsumer vertexConsumer, int packedLight, int packedOverlay, float red, float green, float blue, float alpha) { - door_open.visible = isDoorOpen; - door_closed.visible = !isDoorOpen; - - door_open.render(poseStack, vertexConsumer, packedLight, packedOverlay, red, green, blue, alpha); - door_closed.render(poseStack, vertexConsumer, packedLight, packedOverlay, red, green, blue, alpha); - main.render(poseStack, vertexConsumer, packedLight, packedOverlay, red, green, blue, alpha); - } - - @Override - public void renderPortalMask(GlobalDoorBlockEntity doorBlockEntity, boolean open, boolean isBaseModel, PoseStack poseStack, VertexConsumer vertexConsumer, int packedLight, int packedOverlay, float red, float green, float blue, float alpha) { - - } - - @Override - public ModelPart root() { - return root; - } - - @Override - public void setDoorPosition(boolean open) { - this.isDoorOpen = open; - } - - - @Override - public void setupAnim(Entity entity, float limbSwing, float limbSwingAmount, float ageInTicks, float netHeadYaw, float headPitch) { - - } -} \ No newline at end of file diff --git a/common/src/main/java/whocraft/tardis_refined/client/model/blockentity/door/interior/LeftRightInteriorDoorModel.java b/common/src/main/java/whocraft/tardis_refined/client/model/blockentity/door/interior/DualInteriorDoorModel.java similarity index 86% rename from common/src/main/java/whocraft/tardis_refined/client/model/blockentity/door/interior/LeftRightInteriorDoorModel.java rename to common/src/main/java/whocraft/tardis_refined/client/model/blockentity/door/interior/DualInteriorDoorModel.java index b63e2b1c6..fddd6a59c 100644 --- a/common/src/main/java/whocraft/tardis_refined/client/model/blockentity/door/interior/LeftRightInteriorDoorModel.java +++ b/common/src/main/java/whocraft/tardis_refined/client/model/blockentity/door/interior/DualInteriorDoorModel.java @@ -10,7 +10,7 @@ import whocraft.tardis_refined.compat.ModCompatChecker; import whocraft.tardis_refined.compat.portals.ImmersivePortalsClient; -public class LeftRightInteriorDoorModel extends ShellDoorModel { +public class DualInteriorDoorModel extends ShellDoorModel { private final ModelPart root; public final ModelPart leftDoor; @@ -18,14 +18,21 @@ public class LeftRightInteriorDoorModel extends ShellDoorModel { private final ModelPart portal; private final ModelPart frame; private final float openAmount; + private final boolean openLeft, openRight; - public LeftRightInteriorDoorModel(ModelPart root, float openAmount) { + public DualInteriorDoorModel(ModelPart root, float openAmount) { + this(root, openAmount, true, true); + } + + public DualInteriorDoorModel(ModelPart root, float openAmount, boolean openLeft, boolean openRight) { this.root = root; this.leftDoor = JsonToAnimationDefinition.findPart(this, "left_door"); this.frame = JsonToAnimationDefinition.findPart(this, "frame"); this.rightDoor = JsonToAnimationDefinition.findPart(this, "right_door"); this.portal = JsonToAnimationDefinition.findPart(this, "portal"); this.openAmount = openAmount; + this.openLeft = openLeft; + this.openRight = openRight; } @@ -76,8 +83,8 @@ public void setupAnim(Entity entity, float f, float g, float h, float i, float j @Override public void setDoorPosition(boolean open) { if (open) { - this.leftDoor.yRot = -openAmount; - this.rightDoor.yRot = openAmount; + this.leftDoor.yRot = openLeft ? -openAmount : 0; + this.rightDoor.yRot = openRight ? openAmount : 0; } else { this.leftDoor.yRot = 0; this.rightDoor.yRot = 0; diff --git a/common/src/main/java/whocraft/tardis_refined/client/model/blockentity/door/interior/DualTexInteriorDoorModel.java b/common/src/main/java/whocraft/tardis_refined/client/model/blockentity/door/interior/DualTexInteriorDoorModel.java new file mode 100644 index 000000000..29eee065d --- /dev/null +++ b/common/src/main/java/whocraft/tardis_refined/client/model/blockentity/door/interior/DualTexInteriorDoorModel.java @@ -0,0 +1,81 @@ +package whocraft.tardis_refined.client.model.blockentity.door.interior; + + +import com.mojang.blaze3d.vertex.PoseStack; +import com.mojang.blaze3d.vertex.VertexConsumer; +import dev.jeryn.anim.tardis.JsonToAnimationDefinition; +import net.minecraft.client.model.geom.ModelPart; +import net.minecraft.world.entity.Entity; +import whocraft.tardis_refined.common.blockentity.door.GlobalDoorBlockEntity; +import whocraft.tardis_refined.compat.ModCompatChecker; +import whocraft.tardis_refined.compat.portals.ImmersivePortalsClient; + +public class DualTexInteriorDoorModel extends ShellDoorModel { + + private final ModelPart root; + public final ModelPart open_door; + public final ModelPart closed_door; + private final ModelPart portal; + private final ModelPart frame; + + public DualTexInteriorDoorModel(ModelPart root) { + this.root = root; + this.open_door = JsonToAnimationDefinition.findPart(this, "door_open"); + this.closed_door = JsonToAnimationDefinition.findPart(this, "door_closed"); + this.frame = JsonToAnimationDefinition.findPart(this, "frame"); + this.portal = JsonToAnimationDefinition.findPart(this, "portal"); + } + + + @Override + public void renderToBuffer(PoseStack poseStack, VertexConsumer vertexConsumer, int packedLight, int packedOverlay, float red, float green, float blue, float alpha) { + this.root().getAllParts().forEach(ModelPart::resetPose); + this.portal.visible = false; + this.root().render(poseStack, vertexConsumer, packedLight, packedOverlay, red, green, blue, alpha); + } + + @Override + public void renderFrame(GlobalDoorBlockEntity doorBlockEntity, boolean open, boolean isBaseModel, PoseStack poseStack, VertexConsumer vertexConsumer, int packedLight, int packedOverlay, float red, float green, float blue, float alpha) { + this.root().getAllParts().forEach(ModelPart::resetPose); + setDoorPosition(open); + this.root().getAllParts().forEach(modelPart -> { + modelPart.visible = true; + }); + this.portal.visible = false; + closed_door.visible = !open; + open_door.visible = open; + this.root().render(poseStack, vertexConsumer, packedLight, packedOverlay, red, green, blue, alpha); + } + + @Override + public void renderPortalMask(GlobalDoorBlockEntity doorBlockEntity, boolean open, boolean isBaseModel, PoseStack poseStack, VertexConsumer vertexConsumer, int packedLight, int packedOverlay, float red, float green, float blue, float alpha) { + + if (ModCompatChecker.immersivePortals()) { + if (ImmersivePortalsClient.shouldStopRenderingInPortal()) { + return; + } + } + + this.root().getAllParts().forEach(ModelPart::resetPose); + setDoorPosition(open); + this.root().getAllParts().forEach(modelPart -> modelPart.visible = false); + this.portal.visible = true; + portal.render(poseStack, vertexConsumer, packedLight, packedOverlay, red, green, blue, alpha); + } + + @Override + public ModelPart root() { + return root; + } + + @Override + public void setupAnim(Entity entity, float f, float g, float h, float i, float j) { + + } + + @Override + public void setDoorPosition(boolean open) { + // No OP + } + +} \ No newline at end of file diff --git a/common/src/main/java/whocraft/tardis_refined/client/model/blockentity/door/interior/GroeningDoorModel.java b/common/src/main/java/whocraft/tardis_refined/client/model/blockentity/door/interior/GroeningDoorModel.java deleted file mode 100644 index 16829266f..000000000 --- a/common/src/main/java/whocraft/tardis_refined/client/model/blockentity/door/interior/GroeningDoorModel.java +++ /dev/null @@ -1,86 +0,0 @@ -package whocraft.tardis_refined.client.model.blockentity.door.interior; - -import com.mojang.blaze3d.vertex.PoseStack; -import com.mojang.blaze3d.vertex.VertexConsumer; -import net.minecraft.client.model.geom.ModelPart; -import net.minecraft.client.model.geom.PartPose; -import net.minecraft.client.model.geom.builders.*; -import net.minecraft.world.entity.Entity; -import whocraft.tardis_refined.client.model.blockentity.shell.ShellModel; -import whocraft.tardis_refined.common.blockentity.door.GlobalDoorBlockEntity; - -public class GroeningDoorModel extends ShellDoorModel { - - private final ModelPart root; - private final ModelPart door; - private final ModelPart bone; - private final ModelPart bone2; - private final ModelPart bb_main; - - public GroeningDoorModel(ModelPart root) { - this.root = root; - this.door = root.getChild("door"); - this.bone = root.getChild("bone"); - this.bone2 = root.getChild("bone2"); - this.bb_main = root.getChild("bb_main"); - } - - public static LayerDefinition createBodyLayer() { - MeshDefinition meshdefinition = new MeshDefinition(); - PartDefinition partdefinition = meshdefinition.getRoot(); - - PartDefinition door = partdefinition.addOrReplaceChild("door", CubeListBuilder.create().texOffs(47, 0).addBox(0.0F, 9.0F, -2.0F, 15.0F, 8.0F, 1.0F, new CubeDeformation(0.0F)).texOffs(0, 42).addBox(0.0F, -17.0F, -1.0F, 15.0F, 34.0F, 2.0F, new CubeDeformation(0.0F)), PartPose.offset(-7.5F, 7.0F, 5.025F)); - - PartDefinition cube_r1 = door.addOrReplaceChild("cube_r1", CubeListBuilder.create().texOffs(47, 25).addBox(-8.0F, -2.0F, 0.0F, 15.0F, 2.0F, 1.0F, new CubeDeformation(0.0F)), PartPose.offsetAndRotation(8.0F, 9.0F, -2.0F, -0.5236F, 0.0F, 0.0F)); - - PartDefinition bone = partdefinition.addOrReplaceChild("bone", CubeListBuilder.create().texOffs(35, 52).addBox(-1.0F, -28.0171F, -0.9687F, 2.0F, 39.0F, 3.0F, new CubeDeformation(0.0F)).texOffs(46, 52).addBox(-1.025F, 2.9829F, -3.6187F, 3.0F, 8.0F, 5.0F, new CubeDeformation(0.0F)), PartPose.offsetAndRotation(9.5F, 13.0171F, 5.9937F, 0.0F, -1.5708F, 0.0F)); - - PartDefinition cube_r2 = bone.addOrReplaceChild("cube_r2", CubeListBuilder.create().texOffs(47, 10).addBox(-2.0F, 0.0F, 0.0F, 3.0F, 4.0F, 10.0F, new CubeDeformation(0.025F)), PartPose.offsetAndRotation(0.975F, 2.9829F, -3.7187F, 0.9599F, 0.0F, 0.0F)); - - PartDefinition bone2 = partdefinition.addOrReplaceChild("bone2", CubeListBuilder.create().texOffs(35, 52).mirror().addBox(-1.0F, -28.0171F, -0.9687F, 2.0F, 39.0F, 3.0F, new CubeDeformation(0.0F)).mirror(false).texOffs(46, 52).mirror().addBox(-1.975F, 2.9829F, -3.6187F, 3.0F, 8.0F, 5.0F, new CubeDeformation(0.0F)).mirror(false), PartPose.offsetAndRotation(-9.5F, 13.0171F, 5.9937F, 0.0F, 1.5708F, 0.0F)); - - PartDefinition cube_r3 = bone2.addOrReplaceChild("cube_r3", CubeListBuilder.create().texOffs(47, 29).addBox(-1.0F, 0.0F, 0.0F, 3.0F, 4.0F, 6.0F, new CubeDeformation(0.025F)), PartPose.offsetAndRotation(-0.975F, 2.9829F, -3.7187F, 0.9599F, 0.0F, 0.0F)); - - PartDefinition bb_main = partdefinition.addOrReplaceChild("bb_main", CubeListBuilder.create().texOffs(0, 0).addBox(-10.5F, -39.0F, 6.0F, 21.0F, 39.0F, 2.0F, new CubeDeformation(0.0F)).texOffs(35, 42).addBox(-9.0F, -39.0F, 3.025F, 18.0F, 5.0F, 4.0F, new CubeDeformation(0.0F)), PartPose.offset(0.0F, 24.0F, 0.0F)); - - ShellModel.addMaterializationPart(partdefinition); - - return LayerDefinition.create(meshdefinition, 128, 128); - } - - @Override - public void setDoorPosition(boolean open) { - this.door.yRot = (open) ? -275f : 0; - } - - @Override - public void renderToBuffer(PoseStack poseStack, VertexConsumer vertexConsumer, int packedLight, int packedOverlay, float red, float green, float blue, float alpha) { - door.render(poseStack, vertexConsumer, packedLight, packedOverlay, red, green, blue, alpha); - bone.render(poseStack, vertexConsumer, packedLight, packedOverlay, red, green, blue, alpha); - bone2.render(poseStack, vertexConsumer, packedLight, packedOverlay, red, green, blue, alpha); - bb_main.render(poseStack, vertexConsumer, packedLight, packedOverlay, red, green, blue, alpha); - } - - @Override - public void renderFrame(GlobalDoorBlockEntity doorBlockEntity, boolean open, boolean isBaseModel, PoseStack poseStack, VertexConsumer vertexConsumer, int packedLight, int packedOverlay, float red, float green, float blue, float alpha) { - door.render(poseStack, vertexConsumer, packedLight, packedOverlay, red, green, blue, alpha); - bone.render(poseStack, vertexConsumer, packedLight, packedOverlay, red, green, blue, alpha); - bone2.render(poseStack, vertexConsumer, packedLight, packedOverlay, red, green, blue, alpha); - bb_main.render(poseStack, vertexConsumer, packedLight, packedOverlay, red, green, blue, alpha); - } - - @Override - public void renderPortalMask(GlobalDoorBlockEntity doorBlockEntity, boolean open, boolean isBaseModel, PoseStack poseStack, VertexConsumer vertexConsumer, int packedLight, int packedOverlay, float red, float green, float blue, float alpha) { - - } - - @Override - public ModelPart root() { - return root; - } - - @Override - public void setupAnim(Entity entity, float limbSwing, float limbSwingAmount, float ageInTicks, float netHeadYaw, float headPitch) { - - } -} \ No newline at end of file diff --git a/common/src/main/java/whocraft/tardis_refined/client/model/blockentity/door/interior/HieroglyphShellDoor.java b/common/src/main/java/whocraft/tardis_refined/client/model/blockentity/door/interior/HieroglyphShellDoor.java deleted file mode 100644 index db88dd544..000000000 --- a/common/src/main/java/whocraft/tardis_refined/client/model/blockentity/door/interior/HieroglyphShellDoor.java +++ /dev/null @@ -1,120 +0,0 @@ -package whocraft.tardis_refined.client.model.blockentity.door.interior; - -import com.mojang.blaze3d.vertex.PoseStack; -import com.mojang.blaze3d.vertex.VertexConsumer; -import net.minecraft.client.model.geom.ModelPart; -import net.minecraft.client.model.geom.PartPose; -import net.minecraft.client.model.geom.builders.*; -import whocraft.tardis_refined.common.blockentity.door.GlobalDoorBlockEntity; - -public class HieroglyphShellDoor extends ShellDoorModel { - - private final ModelPart root; - private final ModelPart door_closed; - private final ModelPart door_open; - private final ModelPart bone6; - private final ModelPart pillars; - private final ModelPart bone18; - private final ModelPart bb_main; - - - public HieroglyphShellDoor(ModelPart modelPart) { - this.root = modelPart; - this.door_closed = root.getChild("door_closed"); - this.door_open = root.getChild("door_open"); - this.bone6 = root.getChild("bone6"); - this.pillars = root.getChild("pillars"); - this.bone18 = root.getChild("bone18"); - this.bb_main = root.getChild("bb_main"); - } - - public static LayerDefinition createBodyLayer() { - MeshDefinition meshdefinition = new MeshDefinition(); - PartDefinition partdefinition = meshdefinition.getRoot(); - - PartDefinition door_closed = partdefinition.addOrReplaceChild("door_closed", CubeListBuilder.create().texOffs(66, 69).addBox(-7.5F, -33.0F, -7.5F, 15.0F, 31.0F, 1.0F, new CubeDeformation(0.0F)) - .texOffs(95, 98).addBox(-5.0F, -27.0F, -11.0F, 10.0F, 3.0F, 4.0F, new CubeDeformation(0.025F)) - .texOffs(0, 25).addBox(2.5F, -24.0F, -9.5F, 2.0F, 12.0F, 2.0F, new CubeDeformation(0.0F)) - .texOffs(0, 25).mirror().addBox(-4.5F, -24.0F, -9.5F, 2.0F, 12.0F, 2.0F, new CubeDeformation(0.0F)).mirror(false) - .texOffs(98, 33).addBox(-5.0F, -12.0F, -11.0F, 10.0F, 12.0F, 4.0F, new CubeDeformation(0.0F)) - .texOffs(64, 33).addBox(-4.5F, -11.5F, -10.5F, 9.0F, 9.0F, 3.0F, new CubeDeformation(0.0F)), PartPose.offset(0.0F, 24.0F, 12.5F)); - - PartDefinition cube_r1 = door_closed.addOrReplaceChild("cube_r1", CubeListBuilder.create().texOffs(0, 13).addBox(-2.5F, -2.5F, -1.0F, 5.0F, 5.0F, 2.0F, new CubeDeformation(0.0F)), PartPose.offsetAndRotation(0.0F, -12.0F, -9.0F, 0.0F, 0.0F, 0.7854F)); - - PartDefinition cube_r2 = door_closed.addOrReplaceChild("cube_r2", CubeListBuilder.create().texOffs(99, 69).addBox(-5.0F, -5.0F, 0.0F, 10.0F, 5.0F, 3.0F, new CubeDeformation(0.0F)), PartPose.offsetAndRotation(0.0F, -27.0F, -11.0F, -0.5236F, 0.0F, 0.0F)); - - PartDefinition bone29 = door_closed.addOrReplaceChild("bone29", CubeListBuilder.create().texOffs(9, 25).addBox(-1.5F, 0.0F, 0.25F, 3.0F, 5.0F, 1.0F, new CubeDeformation(0.25F)), PartPose.offset(0.0F, -24.0F, -9.75F)); - - PartDefinition door_open = partdefinition.addOrReplaceChild("door_open", CubeListBuilder.create().texOffs(33, 69).addBox(5.5F, -33.0F, -7.5F, 15.0F, 33.0F, 1.0F, new CubeDeformation(0.0F)) - .texOffs(0, 60).addBox(5.5F, -33.0F, -6.5F, 15.0F, 33.0F, 1.0F, new CubeDeformation(0.0F)) - .texOffs(95, 98).addBox(8.0F, -27.0F, -11.0F, 10.0F, 3.0F, 4.0F, new CubeDeformation(0.025F)) - .texOffs(9, 25).addBox(11.5F, -24.0F, -9.5F, 3.0F, 5.0F, 1.0F, new CubeDeformation(0.25F)) - .texOffs(0, 25).addBox(15.5F, -24.0F, -9.5F, 2.0F, 12.0F, 2.0F, new CubeDeformation(0.0F)) - .texOffs(0, 25).mirror().addBox(8.5F, -24.0F, -9.5F, 2.0F, 12.0F, 2.0F, new CubeDeformation(0.0F)).mirror(false) - .texOffs(98, 33).addBox(8.0F, -12.0F, -11.0F, 10.0F, 12.0F, 4.0F, new CubeDeformation(0.0F)) - .texOffs(64, 33).addBox(8.5F, -11.5F, -10.5F, 9.0F, 9.0F, 3.0F, new CubeDeformation(0.0F)) - .texOffs(0, 49).addBox(-8.5F, -0.2F, -14.75F, 26.0F, 1.0F, 9.0F, new CubeDeformation(0.0F)), PartPose.offsetAndRotation(1.5F, 24.0F, 8.0F, 0.0F, -0.0873F, 0.0F)); - - PartDefinition cube_r3 = door_open.addOrReplaceChild("cube_r3", CubeListBuilder.create().texOffs(0, 13).addBox(-2.5F, -2.5F, -1.0F, 5.0F, 5.0F, 2.0F, new CubeDeformation(0.0F)), PartPose.offsetAndRotation(13.0F, -12.0F, -9.0F, 0.0F, 0.0F, 0.7854F)); - - PartDefinition cube_r4 = door_open.addOrReplaceChild("cube_r4", CubeListBuilder.create().texOffs(99, 69).addBox(-5.0F, -5.0F, 0.0F, 10.0F, 5.0F, 3.0F, new CubeDeformation(0.0F)), PartPose.offsetAndRotation(13.0F, -27.0F, -11.0F, -0.5236F, 0.0F, 0.0F)); - - PartDefinition bone6 = partdefinition.addOrReplaceChild("bone6", CubeListBuilder.create().texOffs(0, 40).addBox(1.25F, -40.0F, -8.5F, 6.0F, 3.0F, 1.0F, new CubeDeformation(0.0F)) - .texOffs(0, 40).mirror().addBox(-7.25F, -40.0F, -8.5F, 6.0F, 3.0F, 1.0F, new CubeDeformation(0.0F)).mirror(false), PartPose.offset(0.0F, 22.0F, 12.5F)); - - PartDefinition bone5 = bone6.addOrReplaceChild("bone5", CubeListBuilder.create(), PartPose.offsetAndRotation(-3.245F, -36.7704F, -8.0F, 0.0F, -0.0044F, 0.0F)); - - PartDefinition cube_r5 = bone5.addOrReplaceChild("cube_r5", CubeListBuilder.create().texOffs(33, 60).mirror().addBox(-0.55F, 0.0F, 0.0F, 8.0F, 3.0F, 3.0F, new CubeDeformation(0.0F)).mirror(false), PartPose.offsetAndRotation(-3.755F, -0.2296F, -1.5F, 0.0F, 0.0F, -0.3491F)); - - PartDefinition bone2 = bone6.addOrReplaceChild("bone2", CubeListBuilder.create(), PartPose.offsetAndRotation(3.245F, -36.7704F, -8.0F, 0.0F, 0.0044F, 0.0F)); - - PartDefinition cube_r6 = bone2.addOrReplaceChild("cube_r6", CubeListBuilder.create().texOffs(33, 60).addBox(-7.45F, 0.0F, 0.0F, 8.0F, 3.0F, 3.0F, new CubeDeformation(0.0F)), PartPose.offsetAndRotation(3.755F, -0.2296F, -1.5F, 0.0F, 0.0F, 0.3491F)); - - PartDefinition pillars = partdefinition.addOrReplaceChild("pillars", CubeListBuilder.create(), PartPose.offset(0.0F, 24.0F, 12.5F)); - - PartDefinition bone3 = pillars.addOrReplaceChild("bone3", CubeListBuilder.create().texOffs(0, 0).addBox(6.5F, -10.0F, -10.5F, 4.0F, 8.0F, 4.0F, new CubeDeformation(0.0F)) - .texOffs(0, 95).addBox(7.0F, -41.0F, -9.5F, 3.0F, 31.0F, 3.0F, new CubeDeformation(0.0F)), PartPose.offset(0.0F, 0.0F, 0.0F)); - - PartDefinition bone4 = pillars.addOrReplaceChild("bone4", CubeListBuilder.create().texOffs(0, 0).mirror().addBox(-10.5F, -10.0F, -10.5F, 4.0F, 8.0F, 4.0F, new CubeDeformation(0.0F)).mirror(false) - .texOffs(0, 95).mirror().addBox(-10.0F, -41.0F, -9.5F, 3.0F, 31.0F, 3.0F, new CubeDeformation(0.0F)).mirror(false), PartPose.offset(0.0F, 0.0F, 0.0F)); - - PartDefinition bone18 = partdefinition.addOrReplaceChild("bone18", CubeListBuilder.create().texOffs(98, 50).addBox(-7.5F, -34.0F, -9.25F, 15.0F, 3.0F, 3.0F, new CubeDeformation(0.0F)), PartPose.offset(0.0F, 22.0F, 12.5F)); - - PartDefinition bb_main = partdefinition.addOrReplaceChild("bb_main", CubeListBuilder.create().texOffs(17, 42).addBox(-10.5F, -2.0F, 2.0F, 21.0F, 2.0F, 4.0F, new CubeDeformation(0.0F)) - .texOffs(17, 17).addBox(-10.5F, -39.0F, 2.0F, 21.0F, 3.0F, 4.0F, new CubeDeformation(0.0F)) - .texOffs(69, 60).addBox(-6.5F, -45.0F, 6.0F, 13.0F, 6.0F, 2.0F, new CubeDeformation(0.0F)) - .texOffs(85, 0).addBox(-7.0F, -33.0F, 5.5F, 14.0F, 31.0F, 1.0F, new CubeDeformation(0.0F)) - .texOffs(15, 105).addBox(-10.5F, -39.0F, 6.0F, 21.0F, 39.0F, 2.0F, new CubeDeformation(0.0F)), PartPose.offset(0.0F, 24.0F, 0.0F)); - - return LayerDefinition.create(meshdefinition, 256, 256); - } - - - @Override - public void renderFrame(GlobalDoorBlockEntity doorBlockEntity, boolean open, boolean isBaseModel, PoseStack poseStack, VertexConsumer vertexConsumer, int packedLight, int packedOverlay, float red, float green, float blue, float alpha) { - door_closed.render(poseStack, vertexConsumer, packedLight, packedOverlay, red, green, blue, alpha); - door_open.render(poseStack, vertexConsumer, packedLight, packedOverlay, red, green, blue, alpha); - bone6.render(poseStack, vertexConsumer, packedLight, packedOverlay, red, green, blue, alpha); - pillars.render(poseStack, vertexConsumer, packedLight, packedOverlay, red, green, blue, alpha); - bone18.render(poseStack, vertexConsumer, packedLight, packedOverlay, red, green, blue, alpha); - bb_main.render(poseStack, vertexConsumer, packedLight, packedOverlay, red, green, blue, alpha); - - door_closed.visible = !open; - door_open.visible = open; - } - - @Override - public void renderPortalMask(GlobalDoorBlockEntity doorBlockEntity, boolean open, boolean isBaseModel, PoseStack poseStack, VertexConsumer vertexConsumer, int packedLight, int packedOverlay, float red, float green, float blue, float alpha) { - - } - - @Override - public void setDoorPosition(boolean open) { - - } - - @Override - public ModelPart root() { - return root; - } -} diff --git a/common/src/main/java/whocraft/tardis_refined/client/model/blockentity/door/interior/LiftShellDoorModel.java b/common/src/main/java/whocraft/tardis_refined/client/model/blockentity/door/interior/LiftShellDoorModel.java deleted file mode 100644 index 648345a20..000000000 --- a/common/src/main/java/whocraft/tardis_refined/client/model/blockentity/door/interior/LiftShellDoorModel.java +++ /dev/null @@ -1,103 +0,0 @@ -package whocraft.tardis_refined.client.model.blockentity.door.interior; - -import com.mojang.blaze3d.vertex.PoseStack; -import com.mojang.blaze3d.vertex.VertexConsumer; -import net.minecraft.client.model.geom.ModelPart; -import net.minecraft.client.model.geom.PartPose; -import net.minecraft.client.model.geom.builders.*; -import whocraft.tardis_refined.common.blockentity.door.GlobalDoorBlockEntity; - -public class LiftShellDoorModel extends ShellDoorModel { - - private final ModelPart bone28; - private final ModelPart doorOpen, doorClosed; - public boolean isDoorOpen = false; - - public LiftShellDoorModel(ModelPart modelPart) { - this.bone28 = modelPart.getChild("bone28"); - this.doorOpen = bone28.getChild("door_open"); - this.doorClosed = bone28.getChild("door_closed"); - } - - public static LayerDefinition createBodyLayer() { - MeshDefinition meshdefinition = new MeshDefinition(); - PartDefinition partdefinition = meshdefinition.getRoot(); - - PartDefinition bone28 = partdefinition.addOrReplaceChild("bone28", CubeListBuilder.create().texOffs(0, 0).addBox(-10.0F, -39.0F, 0.25F, 20.0F, 39.0F, 1.0F, new CubeDeformation(0.0F)) - .texOffs(0, 73).addBox(-9.0F, -35.0F, -1.0F, 18.0F, 3.0F, 1.0F, new CubeDeformation(0.025F)) - .texOffs(66, 72).addBox(-9.5F, -36.0F, -1.5F, 19.0F, 1.0F, 2.0F, new CubeDeformation(0.0F)) - .texOffs(42, 33).addBox(-5.5F, -40.5F, -0.775F, 11.0F, 5.0F, 1.0F, new CubeDeformation(0.0F)), PartPose.offset(0.0F, 24.0F, 7.0F)); - - PartDefinition door_open = bone28.addOrReplaceChild("door_open", CubeListBuilder.create().texOffs(38, 73).addBox(5.0F, -32.0F, -1.0F, 3.0F, 32.0F, 1.0F, new CubeDeformation(0.0F)), PartPose.offset(-13.0F, 0.0F, 0.0F)); - - PartDefinition door_closed = bone28.addOrReplaceChild("door_closed", CubeListBuilder.create().texOffs(42, 0).addBox(-8.0F, -32.0F, -1.0F, 16.0F, 32.0F, 1.0F, new CubeDeformation(0.0F)) - .texOffs(34, 40).addBox(-8.0F, -32.0F, -0.25F, 16.0F, 32.0F, 1.0F, new CubeDeformation(0.0F)), PartPose.offset(0.0F, 0.0F, 0.0F)); - - PartDefinition bone7 = door_closed.addOrReplaceChild("bone7", CubeListBuilder.create(), PartPose.offset(0.0F, 0.0F, 0.0F)); - - PartDefinition bone6 = bone7.addOrReplaceChild("bone6", CubeListBuilder.create(), PartPose.offset(4.0F, -11.0F, -0.5F)); - - PartDefinition cube_r1 = bone6.addOrReplaceChild("cube_r1", CubeListBuilder.create().texOffs(70, 75).mirror().addBox(0.0F, -5.0F, -0.475F, 1.0F, 5.0F, 1.0F, new CubeDeformation(0.0F)).mirror(false), PartPose.offsetAndRotation(1.0F, -5.5F, 0.0F, 0.0F, 0.0F, 0.4189F)); - - PartDefinition cube_r2 = bone6.addOrReplaceChild("cube_r2", CubeListBuilder.create().texOffs(66, 75).mirror().addBox(0.0F, 0.0F, -0.475F, 1.0F, 5.0F, 1.0F, new CubeDeformation(0.0F)).mirror(false), PartPose.offsetAndRotation(1.0F, -5.5F, 0.0F, 0.0F, 0.0F, -0.4189F)); - - PartDefinition bone5 = bone7.addOrReplaceChild("bone5", CubeListBuilder.create(), PartPose.offset(-4.0F, -11.0F, -0.5F)); - - PartDefinition cube_r3 = bone5.addOrReplaceChild("cube_r3", CubeListBuilder.create().texOffs(70, 75).addBox(-1.0F, -5.0F, -0.475F, 1.0F, 5.0F, 1.0F, new CubeDeformation(0.0F)), PartPose.offsetAndRotation(-1.0F, -5.5F, 0.0F, 0.0F, 0.0F, -0.4189F)); - - PartDefinition cube_r4 = bone5.addOrReplaceChild("cube_r4", CubeListBuilder.create().texOffs(66, 75).addBox(-1.0F, 0.0F, -0.475F, 1.0F, 5.0F, 1.0F, new CubeDeformation(0.0F)), PartPose.offsetAndRotation(-1.0F, -5.5F, 0.0F, 0.0F, 0.0F, 0.4189F)); - - PartDefinition bone4 = bone7.addOrReplaceChild("bone4", CubeListBuilder.create(), PartPose.offset(-4.0F, -11.0F, -0.5F)); - - PartDefinition cube_r5 = bone4.addOrReplaceChild("cube_r5", CubeListBuilder.create().texOffs(66, 75).mirror().addBox(0.0F, 0.0F, -0.475F, 1.0F, 5.0F, 1.0F, new CubeDeformation(0.0F)).mirror(false), PartPose.offsetAndRotation(0.0F, 0.0F, 0.0F, 0.0F, 0.0F, -0.4189F)); - - PartDefinition cube_r6 = bone4.addOrReplaceChild("cube_r6", CubeListBuilder.create().texOffs(66, 75).addBox(-1.0F, 0.0F, -0.475F, 1.0F, 5.0F, 1.0F, new CubeDeformation(0.0F)), PartPose.offsetAndRotation(-1.0F, 0.0F, 0.0F, 0.0F, 0.0F, 0.4189F)); - - PartDefinition bone3 = bone7.addOrReplaceChild("bone3", CubeListBuilder.create(), PartPose.offset(5.0F, -11.0F, -0.5F)); - - PartDefinition cube_r7 = bone3.addOrReplaceChild("cube_r7", CubeListBuilder.create().texOffs(66, 75).mirror().addBox(0.0F, 0.0F, -0.475F, 1.0F, 5.0F, 1.0F, new CubeDeformation(0.0F)).mirror(false), PartPose.offsetAndRotation(0.0F, 0.0F, 0.0F, 0.0F, 0.0F, -0.4189F)); - - PartDefinition cube_r8 = bone3.addOrReplaceChild("cube_r8", CubeListBuilder.create().texOffs(66, 75).addBox(-1.0F, 0.0F, -0.475F, 1.0F, 5.0F, 1.0F, new CubeDeformation(0.0F)), PartPose.offsetAndRotation(-1.0F, 0.0F, 0.0F, 0.0F, 0.0F, 0.4189F)); - - PartDefinition bone2 = bone7.addOrReplaceChild("bone2", CubeListBuilder.create(), PartPose.offset(5.0F, -22.0F, -0.5F)); - - PartDefinition cube_r9 = bone2.addOrReplaceChild("cube_r9", CubeListBuilder.create().texOffs(66, 75).mirror().addBox(0.0F, -5.0F, -0.475F, 1.0F, 5.0F, 1.0F, new CubeDeformation(0.0F)).mirror(false), PartPose.offsetAndRotation(0.0F, 0.0F, 0.0F, 0.0F, 0.0F, 0.4189F)); - - PartDefinition cube_r10 = bone2.addOrReplaceChild("cube_r10", CubeListBuilder.create().texOffs(66, 75).addBox(-1.0F, -5.0F, -0.475F, 1.0F, 5.0F, 1.0F, new CubeDeformation(0.0F)), PartPose.offsetAndRotation(-1.0F, 0.0F, 0.0F, 0.0F, 0.0F, -0.4189F)); - - PartDefinition bone = bone7.addOrReplaceChild("bone", CubeListBuilder.create(), PartPose.offset(-4.0F, -22.0F, -0.5F)); - - PartDefinition cube_r11 = bone.addOrReplaceChild("cube_r11", CubeListBuilder.create().texOffs(66, 75).mirror().addBox(0.0F, -5.0F, -0.475F, 1.0F, 5.0F, 1.0F, new CubeDeformation(0.0F)).mirror(false), PartPose.offsetAndRotation(0.0F, 0.0F, 0.0F, 0.0F, 0.0F, 0.4189F)); - - PartDefinition cube_r12 = bone.addOrReplaceChild("cube_r12", CubeListBuilder.create().texOffs(66, 75).addBox(-1.0F, -5.0F, -0.475F, 1.0F, 5.0F, 1.0F, new CubeDeformation(0.0F)), PartPose.offsetAndRotation(-1.0F, 0.0F, 0.0F, 0.0F, 0.0F, -0.4189F)); - - PartDefinition bone10 = bone28.addOrReplaceChild("bone10", CubeListBuilder.create().texOffs(68, 33).addBox(8.0F, -37.0F, -1.75F, 2.0F, 37.0F, 2.0F, new CubeDeformation(0.0F)) - .texOffs(46, 73).addBox(-8.5F, -33.25F, -3.5F, 3.0F, 1.0F, 3.0F, new CubeDeformation(0.0F)) - .texOffs(74, 31).addBox(-7.5F, -33.225F, -2.5F, 16.0F, 1.0F, 2.0F, new CubeDeformation(0.0F)) - .texOffs(68, 33).mirror().addBox(-10.0F, -37.0F, -1.75F, 2.0F, 37.0F, 2.0F, new CubeDeformation(0.0F)).mirror(false) - .texOffs(58, 73).addBox(7.5F, -22.0F, -2.25F, 3.0F, 6.0F, 1.0F, new CubeDeformation(0.0F)), PartPose.offset(0.0F, 0.0F, 0.0F)); - - PartDefinition blackface = bone28.addOrReplaceChild("blackface", CubeListBuilder.create().texOffs(0, 40).addBox(-8.0F, -32.0F, -0.75F, 16.0F, 32.0F, 1.0F, new CubeDeformation(0.0F)), PartPose.offset(0.0F, 0.0F, 1.0F)); - - PartDefinition clock_hand = bone28.addOrReplaceChild("clock_hand", CubeListBuilder.create().texOffs(74, 75).addBox(-0.5F, -2.5F, 0.25F, 1.0F, 3.0F, 1.0F, new CubeDeformation(0.0F)), PartPose.offset(0.0F, -37.0F, -1.275F)); - - return LayerDefinition.create(meshdefinition, 128, 128); - } - - @Override - public void renderFrame(GlobalDoorBlockEntity doorBlockEntity, boolean open, boolean isBaseModel, PoseStack poseStack, VertexConsumer vertexConsumer, int packedLight, int packedOverlay, float red, float green, float blue, float alpha) { - bone28.render(poseStack, vertexConsumer, packedLight, packedOverlay, red, green, blue, alpha); - doorOpen.visible = isDoorOpen; - doorClosed.visible = !isDoorOpen; - } - - @Override - public void renderPortalMask(GlobalDoorBlockEntity doorBlockEntity, boolean open, boolean isBaseModel, PoseStack poseStack, VertexConsumer vertexConsumer, int packedLight, int packedOverlay, float red, float green, float blue, float alpha) { - - } - - @Override - public void setDoorPosition(boolean open) { - isDoorOpen = open; - } -} diff --git a/common/src/main/java/whocraft/tardis_refined/client/model/blockentity/door/interior/MysticDoorModel.java b/common/src/main/java/whocraft/tardis_refined/client/model/blockentity/door/interior/MysticDoorModel.java deleted file mode 100644 index 93796c11d..000000000 --- a/common/src/main/java/whocraft/tardis_refined/client/model/blockentity/door/interior/MysticDoorModel.java +++ /dev/null @@ -1,103 +0,0 @@ -package whocraft.tardis_refined.client.model.blockentity.door.interior; - -import com.mojang.blaze3d.vertex.PoseStack; -import com.mojang.blaze3d.vertex.VertexConsumer; -import net.minecraft.client.model.geom.ModelPart; -import net.minecraft.client.model.geom.PartPose; -import net.minecraft.client.model.geom.builders.*; -import net.minecraft.world.entity.Entity; -import whocraft.tardis_refined.common.blockentity.door.GlobalDoorBlockEntity; - -public class MysticDoorModel extends ShellDoorModel { - - private final ModelPart right_door; - private final ModelPart left_door; - private final ModelPart root_door; - private final ModelPart root; - - public MysticDoorModel(ModelPart root) { - this.root = root; - this.right_door = root.getChild("right_door"); - this.left_door = root.getChild("left_door"); - this.root_door = root.getChild("root_door"); - } - - public static LayerDefinition createBodyLayer() { - MeshDefinition meshdefinition = new MeshDefinition(); - PartDefinition partdefinition = meshdefinition.getRoot(); - - PartDefinition right_door = partdefinition.addOrReplaceChild("right_door", CubeListBuilder.create().texOffs(0, 38).addBox(-7.0F, -16.0F, 0.0F, 7.0F, 32.0F, 1.0F, new CubeDeformation(0.0F)) - .texOffs(39, 27).addBox(-6.975F, -3.0F, -1.0F, 3.0F, 6.0F, 2.0F, new CubeDeformation(0.0F)), PartPose.offset(7.0F, 7.0F, 6.0F)); - - PartDefinition left_door = partdefinition.addOrReplaceChild("left_door", CubeListBuilder.create().texOffs(0, 38).mirror().addBox(0.0F, -16.0F, 0.0F, 7.0F, 32.0F, 1.0F, new CubeDeformation(0.0F)).mirror(false) - .texOffs(39, 27).mirror().addBox(3.975F, -3.0F, -1.0F, 3.0F, 6.0F, 2.0F, new CubeDeformation(0.0F)).mirror(false), PartPose.offset(-7.0F, 7.0F, 6.0F)); - - PartDefinition root_door = partdefinition.addOrReplaceChild("root_door", CubeListBuilder.create(), PartPose.offset(0.0F, 24.0F, 15.0F)); - - PartDefinition bone = root_door.addOrReplaceChild("bone", CubeListBuilder.create().texOffs(39, 19).addBox(6.0F, -23.0F, -10.0F, 4.0F, 4.0F, 3.0F, new CubeDeformation(0.0F)) - .texOffs(37, 36).addBox(7.0F, -33.0F, -9.0F, 2.0F, 28.0F, 2.0F, new CubeDeformation(0.0F)) - .texOffs(37, 36).mirror().addBox(-9.0F, -33.0F, -9.0F, 2.0F, 28.0F, 2.0F, new CubeDeformation(0.0F)).mirror(false) - .texOffs(39, 19).mirror().addBox(-10.0F, -23.0F, -10.0F, 4.0F, 4.0F, 3.0F, new CubeDeformation(0.0F)).mirror(false), PartPose.offset(0.0F, 0.0F, 0.0F)); - - PartDefinition bone11 = bone.addOrReplaceChild("bone11", CubeListBuilder.create(), PartPose.offset(-15.0F, -14.0F, 0.0F)); - - PartDefinition bone10 = bone.addOrReplaceChild("bone10", CubeListBuilder.create().texOffs(39, 10).addBox(20.0F, -24.0F, -10.0F, 5.0F, 5.0F, 3.0F, new CubeDeformation(0.0F)) - .texOffs(17, 38).addBox(20.0F, 9.0F, -10.0F, 5.0F, 5.0F, 3.0F, new CubeDeformation(0.0F)) - .texOffs(17, 38).mirror().addBox(5.0F, 9.0F, -10.0F, 5.0F, 5.0F, 3.0F, new CubeDeformation(0.0F)).mirror(false) - .texOffs(39, 10).mirror().addBox(5.0F, -24.0F, -10.0F, 5.0F, 5.0F, 3.0F, new CubeDeformation(0.0F)).mirror(false), PartPose.offset(-15.0F, -14.0F, 0.0F)); - - PartDefinition bone6 = bone.addOrReplaceChild("bone6", CubeListBuilder.create().texOffs(39, 6).addBox(-5.0F, -1.0F, -9.0F, 10.0F, 1.0F, 2.0F, new CubeDeformation(0.0F)) - .texOffs(0, 0).addBox(-9.0F, -36.0F, -7.9F, 18.0F, 36.0F, 1.0F, new CubeDeformation(0.0F)) - .texOffs(39, 0).addBox(-5.0F, -36.0F, -9.0F, 10.0F, 3.0F, 2.0F, new CubeDeformation(0.0F)), PartPose.offset(0.0F, 0.0F, 0.0F)); - - PartDefinition bone3 = bone.addOrReplaceChild("bone3", CubeListBuilder.create(), PartPose.offsetAndRotation(0.0F, 0.0F, 0.0F, 0.0F, -1.5708F, 0.0F)); - - PartDefinition bone4 = bone3.addOrReplaceChild("bone4", CubeListBuilder.create(), PartPose.offsetAndRotation(0.0F, 0.0F, 0.0F, 0.0F, -1.5708F, 0.0F)); - - PartDefinition bone5 = bone4.addOrReplaceChild("bone5", CubeListBuilder.create(), PartPose.offsetAndRotation(0.0F, 0.0F, 0.0F, 0.0F, -1.5708F, 0.0F)); - - return LayerDefinition.create(meshdefinition, 128, 128); - } - - @Override - public void renderToBuffer(PoseStack poseStack, VertexConsumer vertexConsumer, int packedLight, int packedOverlay, float red, float green, float blue, float alpha) { - right_door.render(poseStack, vertexConsumer, packedLight, packedOverlay, red, green, blue, alpha); - left_door.render(poseStack, vertexConsumer, packedLight, packedOverlay, red, green, blue, alpha); - root_door.render(poseStack, vertexConsumer, packedLight, packedOverlay, red, green, blue, alpha); - } - - @Override - public void renderFrame(GlobalDoorBlockEntity doorBlockEntity, boolean open, boolean isBaseModel, PoseStack poseStack, VertexConsumer vertexConsumer, int packedLight, int packedOverlay, float red, float green, float blue, float alpha) { - right_door.render(poseStack, vertexConsumer, packedLight, packedOverlay, red, green, blue, alpha); - left_door.render(poseStack, vertexConsumer, packedLight, packedOverlay, red, green, blue, alpha); - root_door.render(poseStack, vertexConsumer, packedLight, packedOverlay, red, green, blue, alpha); - } - - @Override - public void renderPortalMask(GlobalDoorBlockEntity doorBlockEntity, boolean open, boolean isBaseModel, PoseStack poseStack, VertexConsumer vertexConsumer, int packedLight, int packedOverlay, float red, float green, float blue, float alpha) { - - } - - @Override - public ModelPart root() { - return root; - } - - @Override - public void setupAnim(Entity entity, float limbSwing, float limbSwingAmount, float ageInTicks, float netHeadYaw, float headPitch) { - - } - - @Override - public void setDoorPosition(boolean open) { - if (open) { - this.left_door.yRot = -250f; - this.right_door.yRot = 250f; - } else { - this.left_door.yRot = 0; - this.right_door.yRot = 0; - } - } - - -} \ No newline at end of file diff --git a/common/src/main/java/whocraft/tardis_refined/client/model/blockentity/door/interior/NukaDoorModel.java b/common/src/main/java/whocraft/tardis_refined/client/model/blockentity/door/interior/NukaDoorModel.java deleted file mode 100644 index cc5219def..000000000 --- a/common/src/main/java/whocraft/tardis_refined/client/model/blockentity/door/interior/NukaDoorModel.java +++ /dev/null @@ -1,83 +0,0 @@ -package whocraft.tardis_refined.client.model.blockentity.door.interior; - - -import com.mojang.blaze3d.vertex.PoseStack; -import com.mojang.blaze3d.vertex.VertexConsumer; -import net.minecraft.client.model.geom.ModelPart; -import net.minecraft.client.model.geom.PartPose; -import net.minecraft.client.model.geom.builders.*; -import net.minecraft.world.entity.Entity; -import whocraft.tardis_refined.client.model.blockentity.shell.ShellModel; -import whocraft.tardis_refined.common.blockentity.door.GlobalDoorBlockEntity; - -public class NukaDoorModel extends ShellDoorModel { - private final ModelPart root; - private final ModelPart left_door; - private final ModelPart right_door; - private final ModelPart bb_main; - - public NukaDoorModel(ModelPart root) { - this.root = root; - this.left_door = root.getChild("left_door"); - this.right_door = root.getChild("right_door"); - this.bb_main = root.getChild("bb_main"); - } - - public static LayerDefinition createBodyLayer() { - MeshDefinition meshdefinition = new MeshDefinition(); - PartDefinition partdefinition = meshdefinition.getRoot(); - - PartDefinition left_door = partdefinition.addOrReplaceChild("left_door", CubeListBuilder.create().texOffs(19, 47).addBox(0.0F, -16.0F, -1.0F, 8.0F, 32.0F, 1.0F, new CubeDeformation(0.0F)), PartPose.offset(-8.0F, 8.0F, 7.0F)); - - PartDefinition right_door = partdefinition.addOrReplaceChild("right_door", CubeListBuilder.create().texOffs(0, 47).addBox(-8.0F, -16.0F, -1.0F, 8.0F, 32.0F, 1.0F, new CubeDeformation(0.0F)), PartPose.offset(8.0F, 8.0F, 7.0F)); - - PartDefinition bb_main = partdefinition.addOrReplaceChild("bb_main", CubeListBuilder.create().texOffs(0, 39).addBox(-11.5F, -35.0625F, 4.5F, 23.0F, 3.0F, 4.0F, new CubeDeformation(0.125F)) - .texOffs(0, 0).addBox(-11.5F, -35.0F, 6.5F, 23.0F, 35.0F, 3.0F, new CubeDeformation(0.0F)), PartPose.offset(0.0F, 24.0F, 0.0F)); - - PartDefinition cube_r1 = bb_main.addOrReplaceChild("cube_r1", CubeListBuilder.create().texOffs(38, 47).addBox(-1.5F, -36.5F, -1.5F, 3.0F, 35.0F, 3.0F, new CubeDeformation(0.0F)), PartPose.offsetAndRotation(-9.5F, 1.5F, 6.5F, 0.0F, 0.7854F, 0.0F)); - - PartDefinition cube_r2 = bb_main.addOrReplaceChild("cube_r2", CubeListBuilder.create().texOffs(51, 47).addBox(-1.5F, -36.5F, -1.5F, 3.0F, 35.0F, 3.0F, new CubeDeformation(0.0F)), PartPose.offsetAndRotation(9.5F, 1.5F, 6.5F, 0.0F, -0.7854F, 0.0F)); - - ShellModel.addMaterializationPart(partdefinition); - - return LayerDefinition.create(meshdefinition, 128, 128); - } - - - @Override - public void renderToBuffer(PoseStack poseStack, VertexConsumer vertexConsumer, int packedLight, int packedOverlay, float red, float green, float blue, float alpha) { - root.render(poseStack, vertexConsumer, packedLight, packedOverlay, red, green, blue, alpha); - } - - @Override - public void renderFrame(GlobalDoorBlockEntity doorBlockEntity, boolean open, boolean isBaseModel, PoseStack poseStack, VertexConsumer vertexConsumer, int packedLight, int packedOverlay, float red, float green, float blue, float alpha) { - root.render(poseStack, vertexConsumer, packedLight, packedOverlay, red, green, blue, alpha); - } - - @Override - public void renderPortalMask(GlobalDoorBlockEntity doorBlockEntity, boolean open, boolean isBaseModel, PoseStack poseStack, VertexConsumer vertexConsumer, int packedLight, int packedOverlay, float red, float green, float blue, float alpha) { - - } - - @Override - public ModelPart root() { - return root; - } - - @Override - public void setupAnim(Entity entity, float f, float g, float h, float i, float j) { - - } - - @Override - public void setDoorPosition(boolean open) { - if (open) { - this.left_door.yRot = -250f; - this.right_door.yRot = 250f; - } else { - this.left_door.yRot = 0; - this.right_door.yRot = 0; - } - } - -} \ No newline at end of file diff --git a/common/src/main/java/whocraft/tardis_refined/client/model/blockentity/door/interior/PagodaDoorModel.java b/common/src/main/java/whocraft/tardis_refined/client/model/blockentity/door/interior/PagodaDoorModel.java index 2fdd3660f..7f5e2f1ab 100644 --- a/common/src/main/java/whocraft/tardis_refined/client/model/blockentity/door/interior/PagodaDoorModel.java +++ b/common/src/main/java/whocraft/tardis_refined/client/model/blockentity/door/interior/PagodaDoorModel.java @@ -82,6 +82,7 @@ public static LayerDefinition createBodyLayer() { @Override public void renderFrame(GlobalDoorBlockEntity doorBlockEntity, boolean open, boolean isBaseModel, PoseStack poseStack, VertexConsumer vertexConsumer, int packedLight, int packedOverlay, float red, float green, float blue, float alpha) { + setDoorPosition(open); door.render(poseStack, vertexConsumer, packedLight, packedOverlay, red, green, blue, alpha); bone10.render(poseStack, vertexConsumer, packedLight, packedOverlay, red, green, blue, alpha); bone9.render(poseStack, vertexConsumer, packedLight, packedOverlay, red, green, blue, alpha); diff --git a/common/src/main/java/whocraft/tardis_refined/client/model/blockentity/door/interior/PhoneBoothDoorModel.java b/common/src/main/java/whocraft/tardis_refined/client/model/blockentity/door/interior/PhoneBoothDoorModel.java deleted file mode 100644 index f0dce4f9a..000000000 --- a/common/src/main/java/whocraft/tardis_refined/client/model/blockentity/door/interior/PhoneBoothDoorModel.java +++ /dev/null @@ -1,84 +0,0 @@ -package whocraft.tardis_refined.client.model.blockentity.door.interior; - - -import com.mojang.blaze3d.vertex.PoseStack; -import com.mojang.blaze3d.vertex.VertexConsumer; -import net.minecraft.client.model.geom.ModelPart; -import net.minecraft.client.model.geom.PartPose; -import net.minecraft.client.model.geom.builders.*; -import net.minecraft.world.entity.Entity; -import whocraft.tardis_refined.client.model.blockentity.shell.ShellModel; -import whocraft.tardis_refined.common.blockentity.door.GlobalDoorBlockEntity; -import whocraft.tardis_refined.compat.ModCompatChecker; - -public class PhoneBoothDoorModel extends ShellDoorModel { - - private final ModelPart Door2; - private final ModelPart bone5; - private final ModelPart bone10; - private final ModelPart bb_main; - private final ModelPart root; - - public PhoneBoothDoorModel(ModelPart root) { - this.root = root; - this.Door2 = root.getChild("Door2"); - this.bone5 = root.getChild("bone5"); - this.bone10 = root.getChild("bone10"); - this.bb_main = root.getChild("bb_main"); - } - - public static LayerDefinition createBodyLayer() { - MeshDefinition meshdefinition = new MeshDefinition(); - PartDefinition partdefinition = meshdefinition.getRoot(); - - PartDefinition Door2 = partdefinition.addOrReplaceChild("Door2", CubeListBuilder.create().texOffs(0, 0).addBox(-14.0F, -15.25F, -0.5F, 14.0F, 34.0F, 1.0F, new CubeDeformation(0.0F)) - .texOffs(40, 33).addBox(-14.0F, -17.25F, -1.5F, 14.0F, 2.0F, 1.0F, new CubeDeformation(0.0F)) - .texOffs(40, 37).addBox(-13.0F, -3.75F, -1.3F, 3.0F, 5.0F, 2.0F, new CubeDeformation(0.0F)) - .texOffs(18, 47).addBox(-13.1F, -3.25F, -3.0F, 1.0F, 4.0F, 3.0F, new CubeDeformation(0.0F)) - .texOffs(31, 0).addBox(-13.5F, -14.25F, -1.0F, 13.0F, 25.0F, 1.0F, new CubeDeformation(0.0F)), PartPose.offset(7.0F, 5.25F, 7.5F)); - - PartDefinition bone5 = partdefinition.addOrReplaceChild("bone5", CubeListBuilder.create().texOffs(0, 36).addBox(34.5F, -18.0F, 14.0F, 2.0F, 36.0F, 2.0F, new CubeDeformation(0.0F)) - .texOffs(18, 36).addBox(34.5F, 9.75F, 13.95F, 2.0F, 8.0F, 2.0F, new CubeDeformation(0.25F)) - .texOffs(9, 47).addBox(34.5F, -18.75F, 13.95F, 2.0F, 5.0F, 2.0F, new CubeDeformation(0.25F)), PartPose.offset(-27.5F, 6.0F, -8.0F)); - - PartDefinition bone10 = partdefinition.addOrReplaceChild("bone10", CubeListBuilder.create().texOffs(31, 27).addBox(-36.5F, -18.0F, 14.0F, 2.0F, 36.0F, 2.0F, new CubeDeformation(0.0F)) - .texOffs(9, 36).addBox(-36.5F, 9.75F, 13.95F, 2.0F, 8.0F, 2.0F, new CubeDeformation(0.25F)) - .texOffs(40, 45).addBox(-36.5F, -18.75F, 13.95F, 2.0F, 5.0F, 2.0F, new CubeDeformation(0.25F)), PartPose.offset(27.5F, 6.0F, -8.0F)); - - PartDefinition bb_main = partdefinition.addOrReplaceChild("bb_main", CubeListBuilder.create().texOffs(40, 27).addBox(-8.5F, -40.0F, 7.225F, 17.0F, 4.0F, 1.0F, new CubeDeformation(0.0F)) - .texOffs(0, 79).addBox(-9.0F, -37.0F, 7.25F, 18.0F, 37.0F, 1.0F, new CubeDeformation(0.0F)), PartPose.offset(0.0F, 24.0F, 0.0F)); - - ShellModel.addMaterializationPart(partdefinition); - - - return LayerDefinition.create(meshdefinition, 128, 128); - } - - @Override - public void renderFrame(GlobalDoorBlockEntity doorBlockEntity, boolean open, boolean isBaseModel, PoseStack poseStack, VertexConsumer vertexConsumer, int packedLight, int packedOverlay, float red, float green, float blue, float alpha) { - Door2.render(poseStack, vertexConsumer, packedLight, packedOverlay, red, green, blue, alpha); - bone5.render(poseStack, vertexConsumer, packedLight, packedOverlay, red, green, blue, alpha); - bone10.render(poseStack, vertexConsumer, packedLight, packedOverlay, red, green, blue, alpha); - bb_main.render(poseStack, vertexConsumer, packedLight, packedOverlay, red, green, blue, alpha); - } - - @Override - public void renderPortalMask(GlobalDoorBlockEntity doorBlockEntity, boolean open, boolean isBaseModel, PoseStack poseStack, VertexConsumer vertexConsumer, int packedLight, int packedOverlay, float red, float green, float blue, float alpha) { - - } - - @Override - public ModelPart root() { - return root; - } - - @Override - public void setupAnim(Entity entity, float f, float g, float h, float i, float j) { - - } - - @Override - public void setDoorPosition(boolean open) { - this.Door2.yRot = (open) ? (ModCompatChecker.immersivePortals() ? 1.75f : -1.75f) : 0; - } -} \ No newline at end of file diff --git a/common/src/main/java/whocraft/tardis_refined/client/model/blockentity/door/interior/PortalooDoorModel.java b/common/src/main/java/whocraft/tardis_refined/client/model/blockentity/door/interior/PortalooDoorModel.java deleted file mode 100644 index 1579ac5e2..000000000 --- a/common/src/main/java/whocraft/tardis_refined/client/model/blockentity/door/interior/PortalooDoorModel.java +++ /dev/null @@ -1,71 +0,0 @@ -package whocraft.tardis_refined.client.model.blockentity.door.interior; - - -import com.mojang.blaze3d.vertex.PoseStack; -import com.mojang.blaze3d.vertex.VertexConsumer; -import net.minecraft.client.model.geom.ModelPart; -import net.minecraft.client.model.geom.PartPose; -import net.minecraft.client.model.geom.builders.*; -import whocraft.tardis_refined.client.model.blockentity.shell.ShellModel; -import whocraft.tardis_refined.common.blockentity.door.GlobalDoorBlockEntity; -import whocraft.tardis_refined.compat.ModCompatChecker; - -public class PortalooDoorModel extends ShellDoorModel { - - private final ModelPart bone; - private final ModelPart Door; - private final ModelPart root; - - public PortalooDoorModel(ModelPart root) { - this.root = root; - this.bone = root.getChild("bone"); - this.Door = root.getChild("Door"); - } - - public static LayerDefinition createBodyLayer() { - MeshDefinition meshdefinition = new MeshDefinition(); - PartDefinition partdefinition = meshdefinition.getRoot(); - - PartDefinition bone = partdefinition.addOrReplaceChild("bone", CubeListBuilder.create(), PartPose.offset(0.0F, 26.0F, 5.75F)); - - PartDefinition bone4 = bone.addOrReplaceChild("bone4", CubeListBuilder.create().texOffs(31, 42).addBox(8.0F, -35.0F, 0.0F, 3.0F, 33.0F, 2.0F, new CubeDeformation(0.0F)) - .texOffs(31, 42).mirror().addBox(-11.0F, -35.0F, 0.0F, 3.0F, 33.0F, 2.0F, new CubeDeformation(0.0F)).mirror(false) - .texOffs(0, 0).addBox(-11.0F, -37.0F, 1.25F, 22.0F, 35.0F, 1.0F, new CubeDeformation(0.0F)) - .texOffs(31, 37).addBox(-11.0F, -37.0F, 0.0F, 22.0F, 2.0F, 2.0F, new CubeDeformation(0.0F)), PartPose.offset(0.0F, 0.0F, 0.0F)); - - PartDefinition bone2 = bone.addOrReplaceChild("bone2", CubeListBuilder.create().texOffs(47, 0).addBox(-7.0F, -35.0F, 0.0F, 14.0F, 2.0F, 1.0F, new CubeDeformation(0.0F)) - .texOffs(42, 42).addBox(7.0F, -35.0F, 0.0F, 1.0F, 33.0F, 1.0F, new CubeDeformation(0.0F)) - .texOffs(42, 42).mirror().addBox(-8.0F, -35.0F, 0.0F, 1.0F, 33.0F, 1.0F, new CubeDeformation(0.0F)).mirror(false), PartPose.offset(0.0F, 0.0F, 0.5F)); - - PartDefinition Door = partdefinition.addOrReplaceChild("Door", CubeListBuilder.create().texOffs(0, 37).addBox(-14.0F, -9.5F, -1.0F, 14.0F, 31.0F, 1.0F, new CubeDeformation(0.0F)) - .texOffs(47, 4).addBox(-13.0F, -10.5F, -1.0F, 12.0F, 1.0F, 1.0F, new CubeDeformation(0.0F)) - .texOffs(47, 7).addBox(-13.0F, 2.0F, -2.75F, 2.0F, 4.0F, 2.0F, new CubeDeformation(0.0F)), PartPose.offset(7.0F, 2.5F, 6.75F)); - - ShellModel.addMaterializationPart(partdefinition); - - return LayerDefinition.create(meshdefinition, 128, 128); - } - - - @Override - public void renderFrame(GlobalDoorBlockEntity doorBlockEntity, boolean open, boolean isBaseModel, PoseStack poseStack, VertexConsumer vertexConsumer, int packedLight, int packedOverlay, float red, float green, float blue, float alpha) { - bone.render(poseStack, vertexConsumer, packedLight, packedOverlay, red, green, blue, alpha); - Door.render(poseStack, vertexConsumer, packedLight, packedOverlay, red, green, blue, alpha); - } - - @Override - public void renderPortalMask(GlobalDoorBlockEntity doorBlockEntity, boolean open, boolean isBaseModel, PoseStack poseStack, VertexConsumer vertexConsumer, int packedLight, int packedOverlay, float red, float green, float blue, float alpha) { - - } - - @Override - public ModelPart root() { - return root; - } - - @Override - public void setDoorPosition(boolean open) { - this.Door.yRot = (open) ? (ModCompatChecker.immersivePortals() ? 1.75f : -1.75f) : 0; - } - -} \ No newline at end of file diff --git a/common/src/main/java/whocraft/tardis_refined/client/model/blockentity/door/interior/PresentDoorModel.java b/common/src/main/java/whocraft/tardis_refined/client/model/blockentity/door/interior/PresentDoorModel.java index abc5521fe..76faac716 100644 --- a/common/src/main/java/whocraft/tardis_refined/client/model/blockentity/door/interior/PresentDoorModel.java +++ b/common/src/main/java/whocraft/tardis_refined/client/model/blockentity/door/interior/PresentDoorModel.java @@ -8,51 +8,47 @@ import net.minecraft.world.entity.Entity; import whocraft.tardis_refined.common.blockentity.door.GlobalDoorBlockEntity; import whocraft.tardis_refined.compat.ModCompatChecker; +import whocraft.tardis_refined.compat.portals.ImmersivePortalsClient; public class PresentDoorModel extends ShellDoorModel { private final ModelPart root; - private final ModelPart bone2; + private final ModelPart portal; private final ModelPart door; - private final ModelPart bb_main; + private final ModelPart frame; public PresentDoorModel(ModelPart root) { this.root = root; - this.bone2 = root.getChild("bone2"); + this.portal = root.getChild("portal"); this.door = root.getChild("door"); - this.bb_main = root.getChild("bb_main"); + this.frame = root.getChild("frame"); } - public static LayerDefinition createBodyLayer() { - MeshDefinition meshdefinition = new MeshDefinition(); - PartDefinition partdefinition = meshdefinition.getRoot(); - - PartDefinition bone2 = partdefinition.addOrReplaceChild("bone2", CubeListBuilder.create(), PartPose.offset(0.0F, -17.0F, 12.0F)); - - PartDefinition cube_r1 = bone2.addOrReplaceChild("cube_r1", CubeListBuilder.create().texOffs(39, 0).mirror().addBox(-8.0F, 0.0F, -4.025F, 10.0F, 6.0F, 1.0F, new CubeDeformation(0.0F)).mirror(false), PartPose.offsetAndRotation(-1.0F, 0.0F, 0.0F, 0.0F, 0.0F, 0.5672F)); - - PartDefinition cube_r2 = bone2.addOrReplaceChild("cube_r2", CubeListBuilder.create().texOffs(39, 0).addBox(-2.0F, 0.0F, -4.025F, 10.0F, 6.0F, 1.0F, new CubeDeformation(0.0F)), PartPose.offsetAndRotation(1.0F, 0.0F, 0.0F, 0.0F, 0.0F, -0.5672F)); - - PartDefinition door = partdefinition.addOrReplaceChild("door", CubeListBuilder.create().texOffs(0, 37).addBox(-8.0F, -35.0F, 0.0F, 16.0F, 35.0F, 1.0F, new CubeDeformation(0.0F)), PartPose.offset(0.0F, 24.0F, 8.0F)); - - PartDefinition bb_main = partdefinition.addOrReplaceChild("bb_main", CubeListBuilder.create().texOffs(35, 45).addBox(-9.0F, -35.0F, 7.0F, 1.0F, 35.0F, 2.0F, new CubeDeformation(0.0F)) - .texOffs(36, 35).addBox(-10.0F, -39.0F, 6.0F, 20.0F, 6.0F, 3.0F, new CubeDeformation(0.0F)) - .texOffs(0, 0).addBox(-9.0F, -35.0F, 8.025F, 18.0F, 35.0F, 1.0F, new CubeDeformation(0.0F)) - .texOffs(35, 45).mirror().addBox(8.0F, -35.0F, 7.0F, 1.0F, 35.0F, 2.0F, new CubeDeformation(0.0F)).mirror(false) - .texOffs(42, 45).addBox(-9.0F, -36.0F, 7.0F, 18.0F, 1.0F, 2.0F, new CubeDeformation(0.0F)), PartPose.offset(0.0F, 24.0F, 0.0F)); - return LayerDefinition.create(meshdefinition, 128, 128); - } @Override public void renderFrame(GlobalDoorBlockEntity doorBlockEntity, boolean open, boolean isBaseModel, PoseStack poseStack, VertexConsumer vertexConsumer, int packedLight, int packedOverlay, float red, float green, float blue, float alpha) { - bone2.render(poseStack, vertexConsumer, packedLight, packedOverlay, red, green, blue, alpha); - door.render(poseStack, vertexConsumer, packedLight, packedOverlay, red, green, blue, alpha); - bb_main.render(poseStack, vertexConsumer, packedLight, packedOverlay, red, green, blue, alpha); + this.root().getAllParts().forEach(ModelPart::resetPose); + setDoorPosition(open); + this.root().getAllParts().forEach(modelPart -> { + modelPart.visible = true; + }); + this.portal.visible = false; + this.root().render(poseStack, vertexConsumer, packedLight, packedOverlay, red, green, blue, alpha); } @Override public void renderPortalMask(GlobalDoorBlockEntity doorBlockEntity, boolean open, boolean isBaseModel, PoseStack poseStack, VertexConsumer vertexConsumer, int packedLight, int packedOverlay, float red, float green, float blue, float alpha) { - + if (ModCompatChecker.immersivePortals()) { + if (ImmersivePortalsClient.shouldStopRenderingInPortal()) { + return; + } + } + + this.root().getAllParts().forEach(ModelPart::resetPose); + setDoorPosition(open); + this.root().getAllParts().forEach(modelPart -> modelPart.visible = false); + this.portal.visible = true; + portal.render(poseStack, vertexConsumer, packedLight, packedOverlay, red, green, blue, alpha); } @Override diff --git a/common/src/main/java/whocraft/tardis_refined/client/model/blockentity/door/interior/PoliceBoxDoorModel.java b/common/src/main/java/whocraft/tardis_refined/client/model/blockentity/door/interior/SingleTexInteriorDoorModel.java similarity index 74% rename from common/src/main/java/whocraft/tardis_refined/client/model/blockentity/door/interior/PoliceBoxDoorModel.java rename to common/src/main/java/whocraft/tardis_refined/client/model/blockentity/door/interior/SingleTexInteriorDoorModel.java index fe079938a..b21d94531 100644 --- a/common/src/main/java/whocraft/tardis_refined/client/model/blockentity/door/interior/PoliceBoxDoorModel.java +++ b/common/src/main/java/whocraft/tardis_refined/client/model/blockentity/door/interior/SingleTexInteriorDoorModel.java @@ -10,18 +10,28 @@ import whocraft.tardis_refined.compat.ModCompatChecker; import whocraft.tardis_refined.compat.portals.ImmersivePortalsClient; -public class PoliceBoxDoorModel extends ShellDoorModel { +public class SingleTexInteriorDoorModel extends ShellDoorModel { - private final ModelPart left_door; private final ModelPart root; + public final ModelPart door; private final ModelPart portal; + private final ModelPart frame; - public PoliceBoxDoorModel(ModelPart root) { + public SingleTexInteriorDoorModel(ModelPart root) { this.root = root; - this.left_door = JsonToAnimationDefinition.findPart(this, "left_door"); + this.door = JsonToAnimationDefinition.findPart(this, "door"); + this.frame = JsonToAnimationDefinition.findPart(this, "frame"); this.portal = JsonToAnimationDefinition.findPart(this, "portal"); } + + @Override + public void renderToBuffer(PoseStack poseStack, VertexConsumer vertexConsumer, int packedLight, int packedOverlay, float red, float green, float blue, float alpha) { + this.root().getAllParts().forEach(ModelPart::resetPose); + this.portal.visible = false; + this.root().render(poseStack, vertexConsumer, packedLight, packedOverlay, red, green, blue, alpha); + } + @Override public void renderFrame(GlobalDoorBlockEntity doorBlockEntity, boolean open, boolean isBaseModel, PoseStack poseStack, VertexConsumer vertexConsumer, int packedLight, int packedOverlay, float red, float green, float blue, float alpha) { this.root().getAllParts().forEach(ModelPart::resetPose); @@ -30,11 +40,13 @@ public void renderFrame(GlobalDoorBlockEntity doorBlockEntity, boolean open, boo modelPart.visible = true; }); this.portal.visible = false; + door.visible = !open; this.root().render(poseStack, vertexConsumer, packedLight, packedOverlay, red, green, blue, alpha); } @Override public void renderPortalMask(GlobalDoorBlockEntity doorBlockEntity, boolean open, boolean isBaseModel, PoseStack poseStack, VertexConsumer vertexConsumer, int packedLight, int packedOverlay, float red, float green, float blue, float alpha) { + if (ModCompatChecker.immersivePortals()) { if (ImmersivePortalsClient.shouldStopRenderingInPortal()) { return; @@ -50,7 +62,7 @@ public void renderPortalMask(GlobalDoorBlockEntity doorBlockEntity, boolean open @Override public ModelPart root() { - return this.root; + return root; } @Override @@ -60,7 +72,7 @@ public void setupAnim(Entity entity, float f, float g, float h, float i, float j @Override public void setDoorPosition(boolean open) { - this.left_door.yRot = (open) ? -300f : 0; + // No OP } } \ No newline at end of file diff --git a/common/src/main/java/whocraft/tardis_refined/client/model/blockentity/door/interior/VendingMachineDoorModel.java b/common/src/main/java/whocraft/tardis_refined/client/model/blockentity/door/interior/VendingMachineDoorModel.java deleted file mode 100644 index f24ab5f8f..000000000 --- a/common/src/main/java/whocraft/tardis_refined/client/model/blockentity/door/interior/VendingMachineDoorModel.java +++ /dev/null @@ -1,64 +0,0 @@ -package whocraft.tardis_refined.client.model.blockentity.door.interior; - -import com.mojang.blaze3d.vertex.PoseStack; -import com.mojang.blaze3d.vertex.VertexConsumer; -import net.minecraft.client.model.geom.ModelPart; -import net.minecraft.client.model.geom.PartPose; -import net.minecraft.client.model.geom.builders.*; -import net.minecraft.world.entity.Entity; -import whocraft.tardis_refined.client.model.blockentity.shell.ShellModel; -import whocraft.tardis_refined.common.blockentity.door.GlobalDoorBlockEntity; -import whocraft.tardis_refined.compat.ModCompatChecker; - -public class VendingMachineDoorModel extends ShellDoorModel { - - private final ModelPart root; - private final ModelPart door; - private final ModelPart bone11; - - public VendingMachineDoorModel(ModelPart root) { - this.root = root; - this.door = root.getChild("door"); - this.bone11 = root.getChild("bone11"); - } - - public static LayerDefinition createBodyLayer() { - MeshDefinition meshdefinition = new MeshDefinition(); - PartDefinition partdefinition = meshdefinition.getRoot(); - - PartDefinition door = partdefinition.addOrReplaceChild("door", CubeListBuilder.create().texOffs(47, 0).mirror().addBox(6.975F, -31.0F, -2.0F, 3.0F, 33.0F, 2.0F, new CubeDeformation(0.0F)).mirror(false).texOffs(47, 0).addBox(-9.975F, -31.0F, -2.0F, 3.0F, 33.0F, 2.0F, new CubeDeformation(0.0F)).texOffs(35, 40).addBox(-7.0F, -31.0F, -1.0F, 14.0F, 30.0F, 1.0F, new CubeDeformation(0.0F)).texOffs(0, 40).addBox(-8.0F, -32.0F, 0.0F, 16.0F, 33.0F, 1.0F, new CubeDeformation(0.0F)), PartPose.offset(0.0F, 22.0F, 8.0F)); - - PartDefinition bone11 = partdefinition.addOrReplaceChild("bone11", CubeListBuilder.create().texOffs(58, 0).addBox(-7.0F, -35.0F, 0.0F, 14.0F, 6.0F, 3.0F, new CubeDeformation(0.0F)).texOffs(0, 0).addBox(-10.0F, -32.0F, 2.0F, 20.0F, 36.0F, 3.0F, new CubeDeformation(0.0F)), PartPose.offset(0.0F, 20.0F, 6.0F)); - - ShellModel.addMaterializationPart(partdefinition); - - return LayerDefinition.create(meshdefinition, 128, 128); - } - - @Override - public void renderFrame(GlobalDoorBlockEntity doorBlockEntity, boolean open, boolean isBaseModel, PoseStack poseStack, VertexConsumer vertexConsumer, int packedLight, int packedOverlay, float red, float green, float blue, float alpha) { - door.render(poseStack, vertexConsumer, packedLight, packedOverlay, red, green, blue, alpha); - bone11.render(poseStack, vertexConsumer, packedLight, packedOverlay, red, green, blue, alpha); - } - - @Override - public void renderPortalMask(GlobalDoorBlockEntity doorBlockEntity, boolean open, boolean isBaseModel, PoseStack poseStack, VertexConsumer vertexConsumer, int packedLight, int packedOverlay, float red, float green, float blue, float alpha) { - - } - - @Override - public ModelPart root() { - return root; - } - - @Override - public void setDoorPosition(boolean open) { - this.door.xRot = (open) ? (ModCompatChecker.immersivePortals() ? -1.6f : 1.6F) : 0; - } - - - @Override - public void setupAnim(Entity entity, float limbSwing, float limbSwingAmount, float ageInTicks, float netHeadYaw, float headPitch) { - - } -} \ No newline at end of file diff --git a/common/src/main/java/whocraft/tardis_refined/client/model/blockentity/shell/ShellModelCollection.java b/common/src/main/java/whocraft/tardis_refined/client/model/blockentity/shell/ShellModelCollection.java index 3a4cf7720..da1c8d800 100644 --- a/common/src/main/java/whocraft/tardis_refined/client/model/blockentity/shell/ShellModelCollection.java +++ b/common/src/main/java/whocraft/tardis_refined/client/model/blockentity/shell/ShellModelCollection.java @@ -2,7 +2,6 @@ import net.minecraft.client.Minecraft; import net.minecraft.client.model.geom.EntityModelSet; -import net.minecraft.resources.ResourceKey; import net.minecraft.resources.ResourceLocation; import whocraft.tardis_refined.TardisRefined; import whocraft.tardis_refined.api.event.TardisClientEvents; @@ -10,6 +9,7 @@ import whocraft.tardis_refined.client.model.blockentity.door.interior.*; import whocraft.tardis_refined.client.model.blockentity.shell.shells.*; import whocraft.tardis_refined.common.tardis.themes.ShellTheme; +import whocraft.tardis_refined.compat.ModCompatChecker; import java.util.HashMap; import java.util.Map; @@ -69,26 +69,37 @@ public void registerModels(EntityModelSet context) { halfBakedShellModel = new HalfBakedShellModel(context.bakeLayer((ModelRegistry.HALF_BAKED_SHELL))); // Doors - factoryDoorModel = new LeftRightInteriorDoorModel(context.bakeLayer((ModelRegistry.FACTORY_DOOR)), 250f); - policeBoxDoorModel = new PoliceBoxDoorModel(context.bakeLayer((ModelRegistry.POLICE_BOX_DOOR))); - phoneBoothDoorModel = new PhoneBoothDoorModel(context.bakeLayer((ModelRegistry.PHONE_BOOTH_DOOR))); - mysticDoorModel = new MysticDoorModel(context.bakeLayer((ModelRegistry.MYSTIC_DOOR))); - drifterDoorModel = new DrifterDoorModel(context.bakeLayer((ModelRegistry.DRIFTER_DOOR))); + factoryDoorModel = new DualInteriorDoorModel(context.bakeLayer((ModelRegistry.FACTORY_DOOR)), 250f); + mysticDoorModel = new DualInteriorDoorModel(context.bakeLayer((ModelRegistry.MYSTIC_DOOR)), 250f); + nukaDoorModel = new DualInteriorDoorModel(context.bakeLayer((ModelRegistry.NUKA_DOOR)), 250f); + castleDoorModel = new DualInteriorDoorModel(context.bakeLayer((ModelRegistry.CASTLE_DOOR)), -90); + pathfinderDoorModel = new DualInteriorDoorModel(context.bakeLayer((ModelRegistry.PATHFINDER_DOOR)), 275f); + policeBoxDoorModel = new DualInteriorDoorModel(context.bakeLayer((ModelRegistry.POLICE_BOX_DOOR)), 300, true, false); + + bigBenDoorModel = new SingleInteriorDoorModel(context.bakeLayer((ModelRegistry.BIG_BEN_DOOR)), 275f); + phoneBoothDoorModel = new SingleInteriorDoorModel(context.bakeLayer((ModelRegistry.PHONE_BOOTH_DOOR)), (ModCompatChecker.immersivePortals() ? 1.75f : -1.75f)); + portalooDoorModel = new SingleInteriorDoorModel(context.bakeLayer((ModelRegistry.PORTALOO_DOOR)), (ModCompatChecker.immersivePortals() ? 1.75f : -1.75f)); + groeningDoorModel = new SingleInteriorDoorModel(context.bakeLayer((ModelRegistry.GROENING_DOOR)), -275f); + + drifterDoorModel = new SingleTexInteriorDoorModel(context.bakeLayer((ModelRegistry.DRIFTER_DOOR))); + vendingDoorModel = new SingleTexInteriorDoorModel(context.bakeLayer((ModelRegistry.VENDING_DOOR))); + presentDoorModel = new PresentDoorModel(context.bakeLayer((ModelRegistry.PRESENT_DOOR))); - vendingDoorModel = new VendingMachineDoorModel(context.bakeLayer((ModelRegistry.VENDING_DOOR))); + + briefcaseDoorModel = new BriefcaseDoorModel(context.bakeLayer((ModelRegistry.BRIEFCASE_DOOR))); - groeningDoorModel = new GroeningDoorModel(context.bakeLayer((ModelRegistry.GROENING_DOOR))); - bigBenDoorModel = new SingleInteriorDoorModel(context.bakeLayer((ModelRegistry.BIG_BEN_DOOR)), 275f); - nukaDoorModel = new NukaDoorModel(context.bakeLayer((ModelRegistry.NUKA_DOOR))); + growthDoorModel = new GrowthDoorModel(context.bakeLayer((ModelRegistry.GROWTH_DOOR))); - portalooDoorModel = new PortalooDoorModel(context.bakeLayer((ModelRegistry.PORTALOO_DOOR))); + pagodaDoorModel = new PagodaDoorModel(context.bakeLayer((ModelRegistry.PAGODA_DOOR))); - liftDoorModel = new LiftShellDoorModel(context.bakeLayer((ModelRegistry.LIFT_DOOR))); - hieroglyphDoorModel = new HieroglyphShellDoor(context.bakeLayer((ModelRegistry.HIEROGLYPH_DOOR))); - castleDoorModel = new CastleShellDoorModel(context.bakeLayer((ModelRegistry.CASTLE_DOOR))); - pathfinderDoorModel = new LeftRightInteriorDoorModel(context.bakeLayer((ModelRegistry.PATHFINDER_DOOR)), 275f); + + liftDoorModel = new DualTexInteriorDoorModel(context.bakeLayer((ModelRegistry.LIFT_DOOR))); + + hieroglyphDoorModel = new DualTexInteriorDoorModel(context.bakeLayer((ModelRegistry.HIEROGLYPH_DOOR))); + halfBakedDoorModel = new HalfBakedDoorModel(context.bakeLayer((ModelRegistry.HALF_BAKED_DOOR))); + TardisClientEvents.SHELLENTRY_MODELS_SETUP.invoker().setUpShellAndInteriorModels(context); registerShellEntry(ShellTheme.FACTORY.get(), factoryShellModel, factoryDoorModel); diff --git a/common/src/main/java/whocraft/tardis_refined/client/renderer/blockentity/door/BulkHeadDoorRenderer.java b/common/src/main/java/whocraft/tardis_refined/client/renderer/blockentity/door/BulkHeadDoorRenderer.java index 099fc5e7d..826688a62 100644 --- a/common/src/main/java/whocraft/tardis_refined/client/renderer/blockentity/door/BulkHeadDoorRenderer.java +++ b/common/src/main/java/whocraft/tardis_refined/client/renderer/blockentity/door/BulkHeadDoorRenderer.java @@ -12,13 +12,13 @@ import whocraft.tardis_refined.TardisRefined; import whocraft.tardis_refined.client.ModelRegistry; import whocraft.tardis_refined.client.model.blockentity.door.interior.BulkHeadDoorModel; +import whocraft.tardis_refined.common.block.door.BulkHeadDoorBlock; import whocraft.tardis_refined.common.block.door.GlobalDoorBlock; import whocraft.tardis_refined.common.blockentity.door.BulkHeadDoorBlockEntity; public class BulkHeadDoorRenderer implements BlockEntityRenderer, BlockEntityRendererProvider { private final BulkHeadDoorModel bulkHeadDoorModel; - private final ResourceLocation bulkHeadDoorTexture = new ResourceLocation(TardisRefined.MODID, "textures/blockentity/door/bulk_head_door.png"); public BulkHeadDoorRenderer(BlockEntityRendererProvider.Context context) { bulkHeadDoorModel = new BulkHeadDoorModel(context.bakeLayer((ModelRegistry.BULK_HEAD_DOOR))); @@ -33,10 +33,14 @@ public void render(BulkHeadDoorBlockEntity blockEntity, float f, PoseStack poseS float rotation = blockstate.getValue(GlobalDoorBlock.FACING).toYRot(); poseStack.mulPose(Axis.YP.rotationDegrees(rotation)); bulkHeadDoorModel.setDoorPosition(blockstate); - bulkHeadDoorModel.renderToBuffer(poseStack, multiBufferSource.getBuffer(RenderType.entityTranslucent(bulkHeadDoorTexture)), i, OverlayTexture.NO_OVERLAY, 1f, 1f, 1f, 1f); + bulkHeadDoorModel.renderToBuffer(poseStack, multiBufferSource.getBuffer(RenderType.entityTranslucent(getTextureForState(blockstate))), i, OverlayTexture.NO_OVERLAY, 1f, 1f, 1f, 1f); poseStack.popPose(); } + private ResourceLocation getTextureForState(BlockState blockstate) { + return new ResourceLocation(TardisRefined.MODID, "textures/blockentity/door/bulk_head_door_"+ blockstate.getValue(BulkHeadDoorBlock.TYPE).getSerializedName() +".png"); + } + @Override public boolean shouldRenderOffScreen(BulkHeadDoorBlockEntity blockEntity) { return true; diff --git a/common/src/main/java/whocraft/tardis_refined/client/renderer/vortex/RenderTargetHelper.java b/common/src/main/java/whocraft/tardis_refined/client/renderer/vortex/RenderTargetHelper.java index de0069ee5..920e746bb 100644 --- a/common/src/main/java/whocraft/tardis_refined/client/renderer/vortex/RenderTargetHelper.java +++ b/common/src/main/java/whocraft/tardis_refined/client/renderer/vortex/RenderTargetHelper.java @@ -84,7 +84,7 @@ private static void renderDoorOpen(GlobalDoorBlockEntity blockEntity, PoseStack // Render Door Frame MultiBufferSource.BufferSource imBuffer = stencilBufferStorage.getVertexConsumer(); currentModel.setDoorPosition(isOpen); - currentModel.renderFrame(blockEntity, isOpen, true, stack, imBuffer.getBuffer(RenderType.entityCutout(currentModel.getInteriorDoorTexture(blockEntity))), packedLight, OverlayTexture.NO_OVERLAY, 1f, 1f, 1f, 1f); + currentModel.renderFrame(blockEntity, isOpen, true, stack, imBuffer.getBuffer(RenderType.entityTranslucent(currentModel.getInteriorDoorTexture(blockEntity))), packedLight, OverlayTexture.NO_OVERLAY, 1f, 1f, 1f, 1f); imBuffer.endBatch(); // Enable and configure stencil buffer @@ -97,7 +97,7 @@ private static void renderDoorOpen(GlobalDoorBlockEntity blockEntity, PoseStack // Render portal mask with depth writing enabled RenderSystem.depthMask(true); stack.pushPose(); - currentModel.renderPortalMask(blockEntity, isOpen, true, stack, imBuffer.getBuffer(RenderType.entityTranslucentCull(currentModel.getInteriorDoorTexture(blockEntity))), packedLight, OverlayTexture.NO_OVERLAY, 0f, 0f, 0f, 1f); + currentModel.renderPortalMask(blockEntity, isOpen, true, stack, imBuffer.getBuffer(RenderType.entityTranslucent(currentModel.getInteriorDoorTexture(blockEntity))), packedLight, OverlayTexture.NO_OVERLAY, 0f, 0f, 0f, 1f); imBuffer.endBatch(); stack.popPose(); RenderSystem.depthMask(false); // Disable depth writing for subsequent rendering @@ -136,8 +136,8 @@ private static void renderNoVortex(GlobalDoorBlockEntity blockEntity, PoseStack stack.translate(0, 0, -0.01); } - currentModel.renderFrame(blockEntity, isOpen, true, stack, bufferSource.getBuffer(RenderType.entityCutout(currentModel.getInteriorDoorTexture(blockEntity))), packedLight, OverlayTexture.NO_OVERLAY, 1f, 1f, 1f, 1f); - currentModel.renderPortalMask(blockEntity, isOpen, true, stack, bufferSource.getBuffer(RenderType.entityTranslucentCull(currentModel.getInteriorDoorTexture(blockEntity))), packedLight, OverlayTexture.NO_OVERLAY, 1f, 1f, 1f, 1f); + currentModel.renderFrame(blockEntity, isOpen, true, stack, bufferSource.getBuffer(RenderType.entityTranslucent(currentModel.getInteriorDoorTexture(blockEntity))), packedLight, OverlayTexture.NO_OVERLAY, 1f, 1f, 1f, 1f); + currentModel.renderPortalMask(blockEntity, isOpen, true, stack, bufferSource.getBuffer(RenderType.entityTranslucent(currentModel.getInteriorDoorTexture(blockEntity))), packedLight, OverlayTexture.NO_OVERLAY, 1f, 1f, 1f, 1f); stack.popPose(); } diff --git a/common/src/main/java/whocraft/tardis_refined/common/block/console/GlobalConsoleBlock.java b/common/src/main/java/whocraft/tardis_refined/common/block/console/GlobalConsoleBlock.java index 77fdf2273..bace11020 100644 --- a/common/src/main/java/whocraft/tardis_refined/common/block/console/GlobalConsoleBlock.java +++ b/common/src/main/java/whocraft/tardis_refined/common/block/console/GlobalConsoleBlock.java @@ -12,6 +12,7 @@ import net.minecraft.world.InteractionResult; import net.minecraft.world.entity.player.Player; import net.minecraft.world.item.Items; +import net.minecraft.world.item.LeadItem; import net.minecraft.world.item.context.BlockPlaceContext; import net.minecraft.world.level.BlockGetter; import net.minecraft.world.level.Level; @@ -204,6 +205,11 @@ public InteractionResult use(BlockState blockState, Level level, BlockPos blockP } } + + if(player.getItemInHand(interactionHand).getItem() == Items.LEAD && !level.isClientSide){ + LeadItem.bindPlayerMobs(player, level, blockPos); + return InteractionResult.sidedSuccess(false); //Use InteractionResult.sidedSuccess(false) for non-client side. Stops hand swinging twice. We don't want to use InteractionResult.SUCCESS because the client calls SUCCESS, so the server side calling it too sends the hand swinging packet twice. + } } } diff --git a/common/src/main/java/whocraft/tardis_refined/common/block/door/BulkHeadDoorBlock.java b/common/src/main/java/whocraft/tardis_refined/common/block/door/BulkHeadDoorBlock.java index a6b6bbc0d..dfa472c2e 100644 --- a/common/src/main/java/whocraft/tardis_refined/common/block/door/BulkHeadDoorBlock.java +++ b/common/src/main/java/whocraft/tardis_refined/common/block/door/BulkHeadDoorBlock.java @@ -2,6 +2,11 @@ import net.minecraft.core.BlockPos; import net.minecraft.core.Direction; +import net.minecraft.sounds.SoundEvents; +import net.minecraft.sounds.SoundSource; +import net.minecraft.util.StringRepresentable; +import net.minecraft.world.InteractionHand; +import net.minecraft.world.InteractionResult; import net.minecraft.world.entity.LivingEntity; import net.minecraft.world.entity.player.Player; import net.minecraft.world.item.ItemStack; @@ -18,28 +23,50 @@ import net.minecraft.world.level.block.state.StateDefinition; import net.minecraft.world.level.block.state.properties.BooleanProperty; import net.minecraft.world.level.block.state.properties.DirectionProperty; +import net.minecraft.world.level.block.state.properties.EnumProperty; +import net.minecraft.world.phys.BlockHitResult; import net.minecraft.world.phys.shapes.CollisionContext; import net.minecraft.world.phys.shapes.VoxelShape; import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; import whocraft.tardis_refined.common.blockentity.door.BulkHeadDoorBlockEntity; +import whocraft.tardis_refined.registry.TRItemRegistry; +import whocraft.tardis_refined.registry.TRSoundRegistry; + +import java.util.Arrays; public class BulkHeadDoorBlock extends BaseEntityBlock { + public enum BulkHeadType implements StringRepresentable { + ROUGH("rough"), MODERN("modern"); + + private final String name; + + BulkHeadType(String name) { + this.name = name; + } + + @Override + public String getSerializedName() { + return name; + } + } + public static final DirectionProperty FACING = HorizontalDirectionalBlock.FACING; public static final BooleanProperty OPEN = BooleanProperty.create("open"); public static final BooleanProperty LOCKED = BooleanProperty.create("locked"); + public static final EnumProperty TYPE = EnumProperty.create("bulkhead", BulkHeadType.class); public BulkHeadDoorBlock(Properties properties) { super(properties.sound(SoundType.ANVIL)); - this.registerDefaultState(this.stateDefinition.any().setValue(FACING, Direction.NORTH).setValue(OPEN, false).setValue(LOCKED, true)); + this.registerDefaultState(this.stateDefinition.any().setValue(TYPE, BulkHeadType.MODERN).setValue(FACING, Direction.NORTH).setValue(OPEN, false).setValue(LOCKED, true)); } @Override protected void createBlockStateDefinition(StateDefinition.Builder builder) { super.createBlockStateDefinition(builder); - builder.add(FACING, OPEN, LOCKED); + builder.add(FACING, OPEN, LOCKED, TYPE); } @Override @@ -47,7 +74,7 @@ public BlockState getStateForPlacement(@NotNull BlockPlaceContext blockPlaceCont BlockState state = super.getStateForPlacement(blockPlaceContext); if (canSurvive(state, blockPlaceContext.getLevel(), blockPlaceContext.getClickedPos())) { - return state.setValue(FACING, blockPlaceContext.getHorizontalDirection()).setValue(OPEN, false).setValue(LOCKED, false); + return state.setValue(FACING, blockPlaceContext.getHorizontalDirection()).setValue(OPEN, false).setValue(LOCKED, false).setValue(TYPE, BulkHeadType.MODERN); } return null; } @@ -75,6 +102,21 @@ public void onPlace(BlockState blockState, Level level, BlockPos blockPos, Block } + @Override + public InteractionResult use(BlockState blockState, Level level, BlockPos blockPos, Player player, InteractionHand interactionHand, BlockHitResult blockHitResult) { + if (player.getItemInHand(interactionHand).getItem() == TRItemRegistry.PATTERN_MANIPULATOR.get()) { + if (blockState.hasProperty(TYPE)) { + BlockState nextType = blockState.cycle(TYPE); + level.setBlock(blockPos, nextType, 3); + level.playSound(player, blockPos, TRSoundRegistry.PATTERN_MANIPULATOR.get(), SoundSource.BLOCKS, 1.0F, 1.0F); + return InteractionResult.SUCCESS; + } + } + + return super.use(blockState, level, blockPos, player, interactionHand, blockHitResult); + } + + @Override public void playerDestroy(Level level, Player player, BlockPos blockPos, BlockState blockState, @Nullable BlockEntity blockEntity, ItemStack itemStack) { super.playerDestroy(level, player, blockPos, blockState, blockEntity, itemStack); @@ -89,28 +131,28 @@ public void destroy(LevelAccessor levelAccessor, BlockPos blockPos, BlockState b } private void changeBlockStates(Level level, BlockPos blockPos, BlockState blockState, BlockState blockToSet) { - level.setBlock(blockPos.above(), blockToSet, 2); - level.setBlock(blockPos.above(2), blockToSet, 2); + level.setBlock(blockPos.above(), blockToSet, Block.UPDATE_CLIENTS); + level.setBlock(blockPos.above(2), blockToSet, Block.UPDATE_CLIENTS); if (blockState.getValue(FACING) == Direction.NORTH || blockState.getValue(FACING) == Direction.SOUTH) { - level.setBlock(blockPos.east(), blockToSet, 2); - level.setBlock(blockPos.above().east(), blockToSet, 2); - level.setBlock(blockPos.above(2).east(), blockToSet, 2); + level.setBlock(blockPos.east(), blockToSet, Block.UPDATE_CLIENTS); + level.setBlock(blockPos.above().east(), blockToSet, Block.UPDATE_CLIENTS); + level.setBlock(blockPos.above(2).east(), blockToSet, Block.UPDATE_CLIENTS); - level.setBlock(blockPos.west(), blockToSet, 2); - level.setBlock(blockPos.above().west(), blockToSet, 2); - level.setBlock(blockPos.above(2).west(), blockToSet, 2); + level.setBlock(blockPos.west(), blockToSet, Block.UPDATE_CLIENTS); + level.setBlock(blockPos.above().west(), blockToSet, Block.UPDATE_CLIENTS); + level.setBlock(blockPos.above(2).west(), blockToSet, Block.UPDATE_CLIENTS); } if (blockState.getValue(FACING) == Direction.EAST || blockState.getValue(FACING) == Direction.WEST) { - level.setBlock(blockPos.north(), blockToSet, 2); - level.setBlock(blockPos.above().north(), blockToSet, 2); - level.setBlock(blockPos.above(2).north(), blockToSet, 2); + level.setBlock(blockPos.north(), blockToSet, Block.UPDATE_CLIENTS); + level.setBlock(blockPos.above().north(), blockToSet, Block.UPDATE_CLIENTS); + level.setBlock(blockPos.above(2).north(), blockToSet, Block.UPDATE_CLIENTS); - level.setBlock(blockPos.south(), blockToSet, 2); - level.setBlock(blockPos.above().south(), blockToSet, 2); - level.setBlock(blockPos.above(2).south(), blockToSet, 2); + level.setBlock(blockPos.south(), blockToSet, Block.UPDATE_CLIENTS); + level.setBlock(blockPos.above().south(), blockToSet, Block.UPDATE_CLIENTS); + level.setBlock(blockPos.above(2).south(), blockToSet, Block.UPDATE_CLIENTS); } } diff --git a/common/src/main/java/whocraft/tardis_refined/common/block/door/GlobalDoorBlock.java b/common/src/main/java/whocraft/tardis_refined/common/block/door/GlobalDoorBlock.java index c019cdf23..66906ceb7 100644 --- a/common/src/main/java/whocraft/tardis_refined/common/block/door/GlobalDoorBlock.java +++ b/common/src/main/java/whocraft/tardis_refined/common/block/door/GlobalDoorBlock.java @@ -11,6 +11,8 @@ import net.minecraft.world.level.Level; import net.minecraft.world.level.block.Block; import net.minecraft.world.level.block.entity.BlockEntity; +import net.minecraft.world.level.block.entity.BlockEntityTicker; +import net.minecraft.world.level.block.entity.BlockEntityType; import net.minecraft.world.level.block.state.BlockState; import net.minecraft.world.level.block.state.StateDefinition; import net.minecraft.world.phys.BlockHitResult; @@ -19,6 +21,7 @@ import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; import whocraft.tardis_refined.common.blockentity.door.GlobalDoorBlockEntity; +import whocraft.tardis_refined.common.blockentity.life.EyeBlockEntity; import whocraft.tardis_refined.common.capability.tardis.TardisLevelOperator; import whocraft.tardis_refined.common.tardis.manager.AestheticHandler; @@ -105,4 +108,12 @@ public VoxelShape getCollisionShape(BlockState blockState, BlockGetter blockGett return this.getShape(blockState, blockGetter, blockPos, collisionContext); } + @Override + public @Nullable BlockEntityTicker getTicker(Level level, BlockState blockState, BlockEntityType blockEntityType) { + return (level1, blockPos, stage, t) -> { + if (t instanceof GlobalDoorBlockEntity globalDoorBlockEntity) { + globalDoorBlockEntity.tick(level1, blockPos, stage, globalDoorBlockEntity); + } + }; + } } diff --git a/common/src/main/java/whocraft/tardis_refined/common/blockentity/door/GlobalDoorBlockEntity.java b/common/src/main/java/whocraft/tardis_refined/common/blockentity/door/GlobalDoorBlockEntity.java index 22083c9ef..b014cdc6f 100644 --- a/common/src/main/java/whocraft/tardis_refined/common/blockentity/door/GlobalDoorBlockEntity.java +++ b/common/src/main/java/whocraft/tardis_refined/common/blockentity/door/GlobalDoorBlockEntity.java @@ -9,10 +9,15 @@ import net.minecraft.server.level.ServerLevel; import net.minecraft.server.level.ServerPlayer; import net.minecraft.sounds.SoundSource; +import net.minecraft.world.entity.LivingEntity; +import net.minecraft.world.entity.animal.Wolf; +import net.minecraft.world.entity.npc.Villager; import net.minecraft.world.entity.player.Player; import net.minecraft.world.level.Level; import net.minecraft.world.level.block.Block; +import net.minecraft.world.level.block.entity.BlockEntityTicker; import net.minecraft.world.level.block.state.BlockState; +import net.minecraft.world.phys.AABB; import org.jetbrains.annotations.Nullable; import whocraft.tardis_refined.common.capability.tardis.TardisLevelOperator; import whocraft.tardis_refined.common.tardis.themes.ShellTheme; @@ -22,7 +27,9 @@ import whocraft.tardis_refined.patterns.sound.ConfiguredSound; import whocraft.tardis_refined.registry.TRBlockEntityRegistry; -public class GlobalDoorBlockEntity extends InternalDoorBlockEntity { +import java.util.List; + +public class GlobalDoorBlockEntity extends InternalDoorBlockEntity implements BlockEntityTicker { private ResourceLocation shellTheme = ShellTheme.HALF_BAKED.getId(); private ShellPattern basePattern; @@ -168,4 +175,41 @@ public void playDoorLockedSound(boolean lockDoor) { }); } } + + @Override + public void tick(Level level, BlockPos blockPos, BlockState blockState, InternalDoorBlockEntity blockEntity) { + if (level instanceof ServerLevel serverLevel) { + TardisLevelOperator.get(serverLevel).ifPresent(tardisLevelOperator -> { + if (blockEntity.isOpen() && tardisLevelOperator.getPilotingManager().isInFlight()) { + int throttleStage = tardisLevelOperator.getPilotingManager().getThrottleStage(); + if (throttleStage > 3) { + double pullRadius = 10.0 * throttleStage; + List wolves = serverLevel.getEntitiesOfClass( + LivingEntity.class, + new AABB(blockPos).inflate(pullRadius) + ); + + for (LivingEntity wolf : wolves) { + double dx = blockPos.getX() + 0.5 - wolf.getX(); + double dy = blockPos.getY() + 0.5 - wolf.getY(); + double dz = blockPos.getZ() + 0.5 - wolf.getZ(); + + double distance = Math.sqrt(dx * dx + dy * dy + dz * dz); + if (distance > 0) { + double pullStrength = throttleStage; + wolf.setDeltaMovement( + wolf.getDeltaMovement().add( + dx / distance * pullStrength, + dy / distance * pullStrength, + dz / distance * pullStrength + ) + ); + } + } + } + } + }); + } + } + } diff --git a/common/src/main/java/whocraft/tardis_refined/compat/portals/IPStencil.java b/common/src/main/java/whocraft/tardis_refined/compat/portals/IPStencil.java index d89bffbed..0a7b3e741 100644 --- a/common/src/main/java/whocraft/tardis_refined/compat/portals/IPStencil.java +++ b/common/src/main/java/whocraft/tardis_refined/compat/portals/IPStencil.java @@ -3,7 +3,6 @@ import net.fabricmc.api.EnvType; import net.fabricmc.api.Environment; import net.minecraft.client.Minecraft; -import net.minecraft.core.BlockPos; import net.minecraft.server.level.ServerPlayer; import net.minecraft.world.level.ChunkPos; import net.minecraft.world.phys.Vec3; @@ -14,7 +13,6 @@ import qouteall.imm_ptl.core.chunk_loading.ChunkLoader; import qouteall.imm_ptl.core.chunk_loading.DimensionalChunkPos; import qouteall.imm_ptl.core.render.GuiPortalRendering; -import qouteall.imm_ptl.core.render.MyRenderHelper; import qouteall.imm_ptl.core.render.context_management.WorldRenderInfo; import qouteall.q_misc_util.my_util.DQuaternion; import whocraft.tardis_refined.client.renderer.vortex.RenderTargetHelper; diff --git a/common/src/main/resources/assets/tardis_refined/animations/console/copper/flight.json b/common/src/main/resources/assets/tardis_refined/animations/console/copper/flight.json deleted file mode 100644 index 4e515b193..000000000 --- a/common/src/main/resources/assets/tardis_refined/animations/console/copper/flight.json +++ /dev/null @@ -1,3091 +0,0 @@ -{ - "length": 6, - "looping" : true, - "animations": [ - { - "bone": "bone312", - "target": "position", - "keyframes": [ - { - "timestamp": 1.72, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.96, - "target": [ - 0, - -0.095, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.44, - "target": [ - 0, - 0.035, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.76, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone312", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.04, - "target": [ - 0.4, - 0, - -0.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.84, - "target": [ - -0.1, - 0, - 0.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.72, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "pulley_control5", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.56, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.52, - "target": [ - 1, - 1.0842, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.76, - "target": [ - 1, - 1.1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.8, - "target": [ - 1, - 1.1081, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.04, - "target": [ - 1, - 0.9325, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.24, - "target": [ - 1, - 1.0883, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.4, - "target": [ - 1, - 1.02, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.84, - "target": [ - 1, - 1.0842, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.08, - "target": [ - 1, - 1.06, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.36, - "target": [ - 1, - 0.9325, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.56, - "target": [ - 1, - 1.0483, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.72, - "target": [ - 1, - 1.02, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.92, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "ball_rotate_control", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.36, - "target": [ - 0, - -52.11, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.72, - "target": [ - 0, - 18.04, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.88, - "target": [ - 0, - 150.8, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.12, - "target": [ - 0, - 73.75, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.2, - "target": [ - 0, - 776.26, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.32, - "target": [ - 0, - 808.66, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.4, - "target": [ - 0, - 600, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.64, - "target": [ - 0, - 277.08, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.52, - "target": [ - 0, - 112.9, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.68, - "target": [ - 0, - 168.81, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.92, - "target": [ - 0, - 139.76, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.24, - "target": [ - 0, - 70.85, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.68, - "target": [ - 0, - 81.23, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.08, - "target": [ - 0, - 110.98, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.96, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone193", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.12, - "target": [ - 0, - 42.5, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.28, - "target": [ - 0, - -21.93, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.4, - "target": [ - 0, - 94.26, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.56, - "target": [ - 0, - -5.92, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.52, - "target": [ - 0, - 26.44, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.96, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone194", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1, - "target": [ - 0, - 104.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.08, - "target": [ - 0, - 77.23, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.28, - "target": [ - 0, - 221.34, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.04, - "target": [ - 0, - 56.22, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.52, - "target": [ - 0, - 58.75, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.56, - "target": [ - 0, - -5.92, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.24, - "target": [ - 0, - 43.99, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.96, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "valve_control", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.12, - "target": [ - 0, - 128.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.96, - "target": [ - 0, - -1440, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "valve_control5", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.64, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.72, - "target": [ - 0, - 0.15, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.8, - "target": [ - 0, - -0.08, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.64, - "target": [ - 0, - 0.11, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.8, - "target": [ - 0, - -0.03, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.28, - "target": [ - 0, - 0.23, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "valve_control5", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.84, - "target": [ - 0, - 11.21, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.32, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.8, - "target": [ - 0, - -5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.04, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.16, - "target": [ - 0, - 30, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.96, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone237", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.48, - "target": [ - 227.72, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.96, - "target": [ - 158.07, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.52, - "target": [ - -109.42, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.88, - "target": [ - 81.21, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.16, - "target": [ - 192.14, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.84, - "target": [ - -15.76, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.24, - "target": [ - 43.99, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.6, - "target": [ - 457.7, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.96, - "target": [ - 360, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone251", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.44, - "target": [ - 12.31, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.24, - "target": [ - -82.5, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.28, - "target": [ - -104.93, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.88, - "target": [ - 26.21, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.92, - "target": [ - 118.03, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.6, - "target": [ - 91.08, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.96, - "target": [ - 360, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone252", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.32, - "target": [ - 45, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.08, - "target": [ - -12.5, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.92, - "target": [ - 75, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 360, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "twist_control5", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.64, - "target": [ - 0, - -3.55, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.12, - "target": [ - 0, - 89.61, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.28, - "target": [ - 0, - 78, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.12, - "target": [ - 0, - -0.68, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.96, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone304", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.64, - "target": [ - 0, - 145.28, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.24, - "target": [ - 0, - 172.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.08, - "target": [ - 0, - 148.07, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.52, - "target": [ - 0, - 242.4, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.92, - "target": [ - 0, - 149.21, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.76, - "target": [ - 0, - -17.88, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.56, - "target": [ - 0, - 12.08, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.08, - "target": [ - 0, - 114.94, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.24, - "target": [ - 0, - 43.99, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.48, - "target": [ - 0, - -28.13, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.96, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone158", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.2, - "target": [ - 0, - 0, - -9.46 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.76, - "target": [ - 0, - 0, - -16.5 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.88, - "target": [ - 0, - 0, - -6.76 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.68, - "target": [ - 0, - 0, - 22.05 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.16, - "target": [ - 0, - 0, - -6.93 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.56, - "target": [ - 0, - 0, - -5.29 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.04, - "target": [ - 0, - 0, - -0.37 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.08, - "target": [ - 0, - 0, - -26.14 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.72, - "target": [ - 0, - 0, - -1.12 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone160", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.76, - "target": [ - 1, - 1.015, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.88, - "target": [ - 1, - 1.02, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.36, - "target": [ - 1, - 0.995, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.68, - "target": [ - 1, - 1.01, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.52, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.8, - "target": [ - 1, - 1.02, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.28, - "target": [ - 1, - 0.995, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.6, - "target": [ - 1, - 1.01, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone162", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "bezier" - }, - { - "timestamp": 6, - "target": [ - 360, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone168", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.48, - "target": [ - -23.38, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.56, - "target": [ - -38.67, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.68, - "target": [ - -36.05, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.48, - "target": [ - -30, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.56, - "target": [ - -32.18, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.64, - "target": [ - 7.13, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.72, - "target": [ - -23.38, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.8, - "target": [ - -38.67, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.92, - "target": [ - -36.05, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.96, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone214", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.28, - "target": [ - 1, - 1.03, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.08, - "target": [ - 1, - 0.8902, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.16, - "target": [ - 1, - 1.11, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.4, - "target": [ - 1, - 0.86, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone199", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.92, - "target": [ - 2.5, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.28, - "target": [ - -0.42, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone199", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.04, - "target": [ - 1, - 1.0336, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.24, - "target": [ - 1, - 1.11, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.36, - "target": [ - 1, - 0.9475, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.64, - "target": [ - 1, - 1.03, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.4, - "target": [ - 1, - 0.95, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone201", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.96, - "target": [ - -0.49762, - -0.10901, - -2.49762 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.52, - "target": [ - -0.18629, - -0.03599, - -1.54004 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.12, - "target": [ - 0.48863, - -0.07771, - -6.39983 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.36, - "target": [ - 2.49762, - -0.10901, - 1.49762 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone210", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0.08, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.92, - "target": [ - 2.5, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.28, - "target": [ - -0.42, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone210", - "target": "scale", - "keyframes": [ - { - "timestamp": 0.48, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.56, - "target": [ - 1, - 1.03, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.4, - "target": [ - 1, - 0.95, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "rotor", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.04, - "target": [ - 0, - 2.48, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.16, - "target": [ - 0, - 2.5, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.44, - "target": [ - 0, - 0.11, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.12, - "target": [ - 0, - -2.88, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3, - "target": [ - 0, - -3, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.92, - "target": [ - 0, - 1.48, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.32, - "target": [ - 0, - 2.5, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.68, - "target": [ - 0, - 0.11, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.2, - "target": [ - 0, - -1.85, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "rotor", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.6, - "target": [ - 0, - -5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.08, - "target": [ - 0, - -1.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.24, - "target": [ - 0, - 4.2, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.44, - "target": [ - 0, - 5.2, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.8, - "target": [ - 0, - 4, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.44, - "target": [ - 0, - -5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.88, - "target": [ - 0, - -1.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.12, - "target": [ - 0, - 4.2, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.64, - "target": [ - 0, - 5.2, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.04, - "target": [ - 0, - 4, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "rotor", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.08, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.44, - "target": [ - 1, - 1.02, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.92, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.12, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.6, - "target": [ - 1, - 1.02, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.12, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "valve_control2", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 0, - -98.31, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.6, - "target": [ - 0, - -90, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.96, - "target": [ - 0, - -180, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "valve_control3", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0.2, - "target": [ - 0, - 1, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.2, - "target": [ - 0, - 72.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.84, - "target": [ - 0, - 129.29, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.16, - "target": [ - 0, - 114.07, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.92, - "target": [ - 0, - 44.19, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.28, - "target": [ - 0, - 53.21, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.68, - "target": [ - 0, - 60.83, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.52, - "target": [ - 0, - -4.92, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.24, - "target": [ - 0, - 55.99, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.96, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone208", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.4, - "target": [ - 0, - -0.31, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.12, - "target": [ - 0, - 1.89, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.56, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.44, - "target": [ - 0, - -2, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.88, - "target": [ - 0, - 4.01, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.12, - "target": [ - 0, - 5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.44, - "target": [ - 0, - 4.66, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.64, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.96, - "target": [ - 0, - -4.26, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.48, - "target": [ - 0, - -3, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.76, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone209", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.56, - "target": [ - 0, - -1.31, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.28, - "target": [ - 0, - 0.89, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.72, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.84, - "target": [ - 0, - -2, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.28, - "target": [ - 0, - 4.01, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.52, - "target": [ - 0, - 5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.84, - "target": [ - 0, - 4.66, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.04, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.36, - "target": [ - 0, - -4.26, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.88, - "target": [ - 0, - -3, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.76, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone253", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0.04, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.48, - "target": [ - -7, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.16, - "target": [ - 1.98, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.68, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.48, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.8, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "twist_control3", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.68, - "target": [ - 1.3, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.32, - "target": [ - -0.94, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.56, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.16, - "target": [ - -0.4, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.2, - "target": [ - 11.15, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.28, - "target": [ - 11.15, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.44, - "target": [ - -3.22, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.6, - "target": [ - -3, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.84, - "target": [ - 1.23, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.28, - "target": [ - 0.98, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.72, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.24, - "target": [ - -0.99, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.04, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.44, - "target": [ - 0.47, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "spinthing_control", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3, - "target": [ - 0, - 90, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "spinthingP2_control", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - -1, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.96, - "target": [ - -45, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.16, - "target": [ - 1.25, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.32, - "target": [ - 3.4, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.8, - "target": [ - -11.74, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3, - "target": [ - -15.78, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4, - "target": [ - 10, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "valve_control4", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "bezier" - }, - { - "timestamp": 1.56, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "bezier" - }, - { - "timestamp": 2.44, - "target": [ - 0, - -2, - 0 - ], - "interpolation": "bezier" - }, - { - "timestamp": 3.12, - "target": [ - 0, - 2, - 0 - ], - "interpolation": "bezier" - }, - { - "timestamp": 3.64, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "bezier" - }, - { - "timestamp": 4.48, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "bezier" - }, - { - "timestamp": 5.76, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "bezier" - } - ] - }, - { - "bone": "valve_control7", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.64, - "target": [ - 0, - -135.23, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.6, - "target": [ - 0, - -90, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.96, - "target": [ - 0, - -720, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "valve_control6", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0.4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.2, - "target": [ - 0, - 360, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - -1440, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "twist_control4", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.52, - "target": [ - 0, - -86.04, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.6, - "target": [ - 0, - -64.6, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.96, - "target": [ - 0, - -360, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "pulley_control", - "target": "position", - "keyframes": [ - { - "timestamp": 2.2, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.32, - "target": [ - -1.46, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.44, - "target": [ - -1.5, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.96, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "pulley_control", - "target": "rotation", - "keyframes": [ - { - "timestamp": 2.28, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "valve_control8", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0.08, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.88, - "target": [ - -7.5, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.04, - "target": [ - -18.8, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.12, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.08, - "target": [ - 220, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.68, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone219", - "target": "rotation", - "keyframes": [ - { - "timestamp": 1.8, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.08, - "target": [ - 0, - 0, - 0.65 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.44, - "target": [ - 0, - 0, - -20 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.76, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - } - ], - "loop": true -} \ No newline at end of file diff --git a/common/src/main/resources/assets/tardis_refined/animations/console/copper/idle.json b/common/src/main/resources/assets/tardis_refined/animations/console/copper/idle.json deleted file mode 100644 index 6d237a8a5..000000000 --- a/common/src/main/resources/assets/tardis_refined/animations/console/copper/idle.json +++ /dev/null @@ -1,2275 +0,0 @@ -{ - "length": 6, - "looping" : true, - "animations": [ - { - "bone": "pulley_control5", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.56, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.68, - "target": [ - 1, - 1.02, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.52, - "target": [ - 1, - 0.98, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.76, - "target": [ - 1, - 0.9286, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "ball_rotate_control", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.36, - "target": [ - 0, - -52.11, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.88, - "target": [ - 0, - 150.8, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.6, - "target": [ - 0, - 139.76, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.2, - "target": [ - 0, - 197, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.6, - "target": [ - 0, - 216.16, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.52, - "target": [ - 0, - 137.4, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.64, - "target": [ - 0, - 169.1, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.92, - "target": [ - 0, - 139.76, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.2, - "target": [ - 0, - 80.31, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.72, - "target": [ - 0, - 103.83, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.96, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone193", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1, - "target": [ - 0, - 34.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.32, - "target": [ - 0, - 40.29, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.56, - "target": [ - 0, - 0.69, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.28, - "target": [ - 0, - -21.93, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.56, - "target": [ - 0, - -5.92, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.92, - "target": [ - 0, - -0.29, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.24, - "target": [ - 0, - 17.99, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.48, - "target": [ - 0, - 26.48, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.96, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone194", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1, - "target": [ - 0, - 104.5, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.72, - "target": [ - 0, - 173.76, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.96, - "target": [ - 0, - 158.07, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.28, - "target": [ - 0, - 53.21, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.56, - "target": [ - 0, - 58.04, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.56, - "target": [ - 0, - -5.92, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.96, - "target": [ - 0, - 43.15, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.24, - "target": [ - 0, - 30.69, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.96, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "valve_control", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.96, - "target": [ - 0, - 360, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "valve_control5", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.64, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.72, - "target": [ - 0, - 0.15, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.8, - "target": [ - 0, - -0.08, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.64, - "target": [ - 0, - 0.11, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.8, - "target": [ - 0, - -0.03, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.28, - "target": [ - 0, - 0.23, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "valve_control5", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.84, - "target": [ - 0, - 11.21, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.32, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.8, - "target": [ - 0, - -5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.04, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.16, - "target": [ - 0, - 30, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.96, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone237", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.88, - "target": [ - 204.15, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.24, - "target": [ - 172.5, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.56, - "target": [ - 96.62, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.96, - "target": [ - 158.07, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.24, - "target": [ - 164.64, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.48, - "target": [ - 52.1, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.88, - "target": [ - 81.21, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.48, - "target": [ - 132.45, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.56, - "target": [ - 12.08, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.84, - "target": [ - 58.5, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.24, - "target": [ - 43.99, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.96, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone251", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.24, - "target": [ - -82.5, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.28, - "target": [ - -104.93, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.88, - "target": [ - 26.21, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.6, - "target": [ - 91.08, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.24, - "target": [ - 43.99, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.96, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone252", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.32, - "target": [ - 45, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.08, - "target": [ - -12.5, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.92, - "target": [ - 75, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "twist_control5", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.64, - "target": [ - 0, - -3.55, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.12, - "target": [ - 0, - 89.61, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.28, - "target": [ - 0, - 78, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.12, - "target": [ - 0, - -0.68, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.96, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone304", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.64, - "target": [ - 0, - 145.28, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.24, - "target": [ - 0, - 172.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.08, - "target": [ - 0, - 148.07, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.52, - "target": [ - 0, - 242.4, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.92, - "target": [ - 0, - 149.21, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.76, - "target": [ - 0, - -17.88, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.56, - "target": [ - 0, - 12.08, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.08, - "target": [ - 0, - 114.94, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.24, - "target": [ - 0, - 43.99, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.48, - "target": [ - 0, - -28.13, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.96, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone158", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.6, - "target": [ - 0, - 0, - -16.5 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.88, - "target": [ - 0, - 0, - -6.76 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.68, - "target": [ - 0, - 0, - 22.05 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.24, - "target": [ - 0, - 0, - -6.93 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.56, - "target": [ - 0, - 0, - -5.29 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 0, - 0, - -0.21 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.08, - "target": [ - 0, - 0, - -26.14 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone162", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "bezier" - }, - { - "timestamp": 6, - "target": [ - 360, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone168", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.92, - "target": [ - -30, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.72, - "target": [ - 5, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.96, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone214", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.96, - "target": [ - 1, - 1.0537, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.28, - "target": [ - 1, - 1.03, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.4, - "target": [ - 1, - 0.86, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone199", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.92, - "target": [ - 2.5, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.28, - "target": [ - -0.42, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone199", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.84, - "target": [ - 1, - 1.0524, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.56, - "target": [ - 1, - 1.03, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.4, - "target": [ - 1, - 0.95, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone201", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.96, - "target": [ - -0.49762, - -0.10901, - -2.49762 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.36, - "target": [ - 2.49762, - -0.10901, - 1.49762 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone210", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0.08, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.92, - "target": [ - 2.5, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.28, - "target": [ - -0.42, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone210", - "target": "scale", - "keyframes": [ - { - "timestamp": 0.48, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.84, - "target": [ - 1, - 1.0503, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.56, - "target": [ - 1, - 1.03, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.4, - "target": [ - 1, - 0.95, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "valve_control2", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 0, - -98.31, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.6, - "target": [ - 0, - -90, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.96, - "target": [ - 0, - -180, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "valve_control3", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 1, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1, - "target": [ - 0, - 72.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.64, - "target": [ - 0, - 129.29, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.96, - "target": [ - 0, - 114.07, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.72, - "target": [ - 0, - 44.19, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.08, - "target": [ - 0, - 53.21, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.48, - "target": [ - 0, - 60.83, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.32, - "target": [ - 0, - -4.92, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.04, - "target": [ - 0, - 55.99, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.76, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone208", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.56, - "target": [ - 0, - -1.31, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.28, - "target": [ - 0, - 0.89, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.72, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.84, - "target": [ - 0, - -2, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.28, - "target": [ - 0, - 4.01, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.52, - "target": [ - 0, - 5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.84, - "target": [ - 0, - 4.66, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.04, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.36, - "target": [ - 0, - -4.26, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.88, - "target": [ - 0, - -3, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.76, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone209", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.56, - "target": [ - 0, - -1.31, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.28, - "target": [ - 0, - 0.89, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.72, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.84, - "target": [ - 0, - -2, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.28, - "target": [ - 0, - 4.01, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.52, - "target": [ - 0, - 5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.84, - "target": [ - 0, - 4.66, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.04, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.36, - "target": [ - 0, - -4.26, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.88, - "target": [ - 0, - -3, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.76, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone253", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.56, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.44, - "target": [ - -7, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.12, - "target": [ - 1.98, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.64, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.44, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.76, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "twist_control3", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.52, - "target": [ - 1.36, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.56, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.64, - "target": [ - 0.29, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.44, - "target": [ - -3, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.12, - "target": [ - 0.98, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.64, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.12, - "target": [ - 0.65, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.44, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.88, - "target": [ - -0.96, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.76, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "spinthing_control", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3, - "target": [ - 0, - 90, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "spinthingP2_control", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - -1, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.96, - "target": [ - -45, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 10, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "valve_control4", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.32, - "target": [ - 0, - -0.44, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1, - "target": [ - 0, - 0.77, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.56, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.44, - "target": [ - 0, - -2, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.76, - "target": [ - 0, - 0.69, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.12, - "target": [ - 0, - 2, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.44, - "target": [ - 0, - -0.35, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.64, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.8, - "target": [ - 0, - 0.31, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.04, - "target": [ - 0, - -1.8, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.48, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.88, - "target": [ - 0, - 0.33, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.76, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "valve_control7", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.72, - "target": [ - 0, - -91.36, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.6, - "target": [ - 0, - -90, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.4, - "target": [ - 0, - -79.8, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.96, - "target": [ - 0, - -180, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "valve_control6", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0.4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.68, - "target": [ - 0, - 77.36, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.2, - "target": [ - 0, - -200, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6, - "target": [ - 0, - -360, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "twist_control4", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.52, - "target": [ - 0, - -86.04, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.6, - "target": [ - 0, - -64.6, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.96, - "target": [ - 0, - -360, - 0 - ], - "interpolation": "catmullrom" - } - ] - } - ], - "loop": true -} \ No newline at end of file diff --git a/common/src/main/resources/assets/tardis_refined/animations/console/coral/flight.json b/common/src/main/resources/assets/tardis_refined/animations/console/coral/flight.json deleted file mode 100644 index 450fb21d2..000000000 --- a/common/src/main/resources/assets/tardis_refined/animations/console/coral/flight.json +++ /dev/null @@ -1,7489 +0,0 @@ -{ - "length": 10, - "looping" : true, - "animations": [ - { - "bone": "bone19", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -1.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.84, - "target": [ - 0.2, - 0.83, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3, - "target": [ - -0.2, - 7.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 2, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5, - "target": [ - 2, - -1.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.28, - "target": [ - 1.6, - 2.07, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - 2.6, - 7.5, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone19", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 2, - 2, - 2 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.96, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5, - "target": [ - 2, - 2, - 2 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone34", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -1.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.68, - "target": [ - -0.2, - 5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.32, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.8, - "target": [ - -3, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.44, - "target": [ - -3, - 8, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone34", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 2, - 2, - 2 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.16, - "target": [ - 1.6522, - 1.6522, - 1.6522 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.24, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.84, - "target": [ - 1.5, - 1.5, - 1.5 - ], - "interpolation": "linear" - }, - { - "timestamp": 7.92, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone118", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -1.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.84, - "target": [ - 0.2, - 0.83, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3, - "target": [ - -0.2, - 8.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.64, - "target": [ - -1, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.44, - "target": [ - -1, - -1.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.4, - "target": [ - 0.6, - 2.07, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - -1.5, - 7.5, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone118", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 2.5, - 2.5, - 2.5 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.44, - "target": [ - 2, - 2, - 2 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone119", - "target": "position", - "keyframes": [ - { - "timestamp": 0.6, - "target": [ - 0, - -1.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.04, - "target": [ - -1.35, - 4.39, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.6, - "target": [ - 0.81, - 6.62, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.68, - "target": [ - -0.2, - 5, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone119", - "target": "scale", - "keyframes": [ - { - "timestamp": 0.84, - "target": [ - 1.5, - 1.5, - 1.5 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.64, - "target": [ - 1.6522, - 1.6522, - 1.6522 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.68, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone127", - "target": "position", - "keyframes": [ - { - "timestamp": 0.84, - "target": [ - 0, - -1.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.6, - "target": [ - 0.2, - 0.83, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.28, - "target": [ - 0.8, - 7.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.64, - "target": [ - -2, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.68, - "target": [ - -2, - -1.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.4, - "target": [ - 0.6, - 2.07, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - -1.5, - 7.5, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone127", - "target": "scale", - "keyframes": [ - { - "timestamp": 1.08, - "target": [ - 2.5, - 2.5, - 2.5 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.28, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.64, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.68, - "target": [ - 2, - 2, - 2 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone128", - "target": "position", - "keyframes": [ - { - "timestamp": 0.32, - "target": [ - 0, - -1.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.32, - "target": [ - -1.35, - 4.39, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.24, - "target": [ - 0.81, - 9.62, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.84, - "target": [ - -0.2, - 5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.2, - "target": [ - 2.86, - 2.2, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.72, - "target": [ - 4, - -1.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.2, - "target": [ - 3.81, - 6.62, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.72, - "target": [ - 2.8, - -1, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone128", - "target": "scale", - "keyframes": [ - { - "timestamp": 0.44, - "target": [ - 1.5, - 1.5, - 1.5 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.52, - "target": [ - 1.6522, - 1.6522, - 1.6522 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.84, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.84, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.72, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone130", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -1.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.84, - "target": [ - 0.2, - 0.83, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3, - "target": [ - -0.2, - 7.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 2, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5, - "target": [ - 2, - -1.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.28, - "target": [ - 1.6, - 2.07, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - 2.6, - 7.5, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone130", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 2, - 2, - 2 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.96, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5, - "target": [ - 2, - 2, - 2 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone131", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -1.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.68, - "target": [ - -0.2, - 5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.32, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.8, - "target": [ - -3, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.44, - "target": [ - -3, - 8, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone131", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 2, - 2, - 2 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.16, - "target": [ - 1.6522, - 1.6522, - 1.6522 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.24, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.84, - "target": [ - 1.5, - 1.5, - 1.5 - ], - "interpolation": "linear" - }, - { - "timestamp": 7.92, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone133", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -1.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.84, - "target": [ - 0.2, - 0.83, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3, - "target": [ - -0.2, - 8.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.64, - "target": [ - -1, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.44, - "target": [ - -1, - -1.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.4, - "target": [ - 0.6, - 2.07, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - -1.5, - 7.5, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone133", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 2.5, - 2.5, - 2.5 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.44, - "target": [ - 2, - 2, - 2 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone134", - "target": "position", - "keyframes": [ - { - "timestamp": 0.6, - "target": [ - 0, - -1.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.04, - "target": [ - -1.35, - 4.39, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.6, - "target": [ - 0.81, - 6.62, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.68, - "target": [ - -0.2, - 5, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone134", - "target": "scale", - "keyframes": [ - { - "timestamp": 0.84, - "target": [ - 1.5, - 1.5, - 1.5 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.64, - "target": [ - 1.6522, - 1.6522, - 1.6522 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.68, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone136", - "target": "position", - "keyframes": [ - { - "timestamp": 0.84, - "target": [ - 0, - -1.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.6, - "target": [ - 0.2, - 0.83, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.28, - "target": [ - 0.8, - 7.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.64, - "target": [ - -2, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.68, - "target": [ - -2, - -1.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.4, - "target": [ - 0.6, - 2.07, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - -1.5, - 7.5, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone136", - "target": "scale", - "keyframes": [ - { - "timestamp": 1.08, - "target": [ - 2.5, - 2.5, - 2.5 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.28, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.64, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.68, - "target": [ - 2, - 2, - 2 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone137", - "target": "position", - "keyframes": [ - { - "timestamp": 0.32, - "target": [ - 0, - -1.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.32, - "target": [ - -1.35, - 4.39, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.24, - "target": [ - 0.81, - 9.62, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.84, - "target": [ - -0.2, - 5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.2, - "target": [ - 2.86, - 2.2, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.72, - "target": [ - 4, - -1.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.2, - "target": [ - 3.81, - 6.62, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.72, - "target": [ - 2.8, - -1, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone137", - "target": "scale", - "keyframes": [ - { - "timestamp": 0.44, - "target": [ - 1.5, - 1.5, - 1.5 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.52, - "target": [ - 1.6522, - 1.6522, - 1.6522 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.84, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.84, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.72, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone233", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 5.99989, - 0.02617, - -2.49931 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - -6.5, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.92, - "target": [ - 6.69497, - -0.00606, - 2.49996 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.52, - "target": [ - -5.95, - 0, - -1.5 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9.4, - "target": [ - -0.32, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 9.92, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone233", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.64, - "target": [ - 1, - 1.1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.12, - "target": [ - 1, - 0.95, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.6, - "target": [ - 1, - 1.07, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.44, - "target": [ - 1, - 0.97, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone234", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - -0.91, - -0.01, - 0.5 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.28, - "target": [ - -2, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.84, - "target": [ - 3.84997, - 0.01308, - 1.52534 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.24, - "target": [ - -7.5, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.48, - "target": [ - 4.69497, - -0.00606, - 0.99996 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - -0.91, - -0.01, - 0.5 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone234", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.32, - "target": [ - 1, - 1.1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.8, - "target": [ - 1, - 0.9, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone236", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 5.99989, - 0.02617, - -2.49931 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - -6.5, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.92, - "target": [ - 6.69497, - -0.00606, - 2.49996 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.52, - "target": [ - -5.95, - 0, - -1.5 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9.4, - "target": [ - -0.32, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 9.92, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone236", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.64, - "target": [ - 1, - 1.1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.12, - "target": [ - 1, - 0.95, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.6, - "target": [ - 1, - 1.07, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.44, - "target": [ - 1, - 0.97, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone237", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - -0.91, - -0.01, - 0.5 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.28, - "target": [ - -2, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.84, - "target": [ - 3.84997, - 0.01308, - 1.52534 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.24, - "target": [ - -7.5, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.48, - "target": [ - 4.69497, - -0.00606, - 0.99996 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - -0.91, - -0.01, - 0.5 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone237", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.32, - "target": [ - 1, - 1.1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.8, - "target": [ - 1, - 0.9, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone238", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 5.99989, - 0.02617, - -2.49931 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - -6.5, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.92, - "target": [ - 6.69497, - -0.00606, - 2.49996 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.52, - "target": [ - -5.95, - 0, - -1.5 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9.4, - "target": [ - -0.32, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 9.92, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone238", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.64, - "target": [ - 1, - 1.1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.12, - "target": [ - 1, - 0.95, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.6, - "target": [ - 1, - 1.07, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.44, - "target": [ - 1, - 0.97, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone239", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - -0.91, - -0.01, - 0.5 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.28, - "target": [ - -2, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.84, - "target": [ - 3.84997, - 0.01308, - 1.52534 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.24, - "target": [ - -7.5, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.48, - "target": [ - 4.69497, - -0.00606, - 0.99996 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - -0.91, - -0.01, - 0.5 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone239", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.32, - "target": [ - 1, - 1.1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.8, - "target": [ - 1, - 0.9, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone284", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.04, - "target": [ - 1.03, - 1.03, - 1.03 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 1.08, - 1.08, - 1.08 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 0.98, - 0.98, - 0.98 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.2, - "target": [ - 1.08, - 1.08, - 1.08 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone285", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.04, - "target": [ - 1.03, - 1.03, - 1.03 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 1.08, - 1.08, - 1.08 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 0.99, - 0.99, - 0.99 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 1.08, - 1.08, - 1.08 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone288", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.04, - "target": [ - 1.03, - 1.03, - 1.03 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 1.08, - 1.08, - 1.08 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 0.98, - 0.98, - 0.98 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.2, - "target": [ - 1.08, - 1.08, - 1.08 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone290", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.04, - "target": [ - 1.03, - 1.03, - 1.03 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 1.08, - 1.08, - 1.08 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 0.99, - 0.99, - 0.99 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 1.08, - 1.08, - 1.08 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone293", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.04, - "target": [ - 1.03, - 1.03, - 1.03 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 1.08, - 1.08, - 1.08 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 0.98, - 0.98, - 0.98 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.2, - "target": [ - 1.08, - 1.08, - 1.08 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone295", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.04, - "target": [ - 1.03, - 1.03, - 1.03 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 1.08, - 1.08, - 1.08 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 0.99, - 0.99, - 0.99 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 1.08, - 1.08, - 1.08 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone298", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.04, - "target": [ - 1.03, - 1.03, - 1.03 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 1.08, - 1.08, - 1.08 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 0.98, - 0.98, - 0.98 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.2, - "target": [ - 1.08, - 1.08, - 1.08 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone300", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.04, - "target": [ - 1.03, - 1.03, - 1.03 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 1.08, - 1.08, - 1.08 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 0.99, - 0.99, - 0.99 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 1.08, - 1.08, - 1.08 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone303", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.04, - "target": [ - 1.03, - 1.03, - 1.03 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 1.08, - 1.08, - 1.08 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 0.98, - 0.98, - 0.98 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.2, - "target": [ - 1.08, - 1.08, - 1.08 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone305", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.04, - "target": [ - 1.03, - 1.03, - 1.03 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 1.08, - 1.08, - 1.08 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 0.99, - 0.99, - 0.99 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 1.08, - 1.08, - 1.08 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone308", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.04, - "target": [ - 1.03, - 1.03, - 1.03 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 1.08, - 1.08, - 1.08 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 0.98, - 0.98, - 0.98 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.2, - "target": [ - 1.08, - 1.08, - 1.08 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone310", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.04, - "target": [ - 1.03, - 1.03, - 1.03 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 1.08, - 1.08, - 1.08 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 0.99, - 0.99, - 0.99 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 1.08, - 1.08, - 1.08 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone59", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.44, - "target": [ - 0, - 281.535, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - 1440, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone62", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.8, - "target": [ - 0, - 211.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.52, - "target": [ - 0, - 66.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.44, - "target": [ - 0, - 158, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.88, - "target": [ - 0, - 72.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.04, - "target": [ - 0, - -10.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.64, - "target": [ - 0, - 10.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "increment", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.56, - "target": [ - 0, - 294.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.48, - "target": [ - 0, - 174, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.8, - "target": [ - 0, - 219, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.88, - "target": [ - 0, - -85, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9.96, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone68", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1, - "target": [ - 0, - 2, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5, - "target": [ - 0, - 2, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9, - "target": [ - 0, - 2, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone83", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.28, - "target": [ - -4.534, - -1.04656, - -2.46736 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - -1.94, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.96, - "target": [ - -2.34, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.96, - "target": [ - 1.53083, - 0.76068, - 2.57111 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5, - "target": [ - 1, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 1, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.12, - "target": [ - -2.01784, - -0.94619, - -2.51383 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.8, - "target": [ - 1.25, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9.72, - "target": [ - 0.2, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9.96, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone311", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 4.875, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.28, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.52, - "target": [ - 4.875, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.76, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5, - "target": [ - 4.875, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.28, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.52, - "target": [ - 4.875, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.76, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 4.875, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone311", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1.15, - 1.15, - 1.15 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone312", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 1, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.04, - "target": [ - 1.035, - 1.035, - 1.035 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.48, - "target": [ - 1.035, - 1.035, - 1.035 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.52, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.12, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.16, - "target": [ - 1.035, - 1.035, - 1.035 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.6, - "target": [ - 1.035, - 1.035, - 1.035 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.64, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.56, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.6, - "target": [ - 1.035, - 1.035, - 1.035 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.04, - "target": [ - 1.035, - 1.035, - 1.035 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.08, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.16, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.2, - "target": [ - 1.035, - 1.035, - 1.035 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.64, - "target": [ - 1.035, - 1.035, - 1.035 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.68, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 9, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 9.04, - "target": [ - 1.035, - 1.035, - 1.035 - ], - "interpolation": "linear" - }, - { - "timestamp": 9.96, - "target": [ - 1.035, - 1.035, - 1.035 - ], - "interpolation": "linear" - }, - { - "timestamp": 10, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone313", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.04, - "target": [ - 0, - -0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.48, - "target": [ - 0, - -0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.04, - "target": [ - 0, - -0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.48, - "target": [ - 0, - -0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.04, - "target": [ - 0, - -0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.48, - "target": [ - 0, - -0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.04, - "target": [ - 0, - -0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.48, - "target": [ - 0, - -0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.04, - "target": [ - 0, - -0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.48, - "target": [ - 0, - -0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.04, - "target": [ - 0, - -0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.48, - "target": [ - 0, - -0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6.04, - "target": [ - 0, - -0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6.48, - "target": [ - 0, - -0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 7, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 7.04, - "target": [ - 0, - -0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 7.48, - "target": [ - 0, - -0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 7.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8.04, - "target": [ - 0, - -0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8.48, - "target": [ - 0, - -0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 9, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 9.04, - "target": [ - 0, - -0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 9.48, - "target": [ - 0, - -0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 9.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone314", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.04, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.4, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.44, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.8, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.84, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.76, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.8, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.04, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.96, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.76, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.8, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.72, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.76, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.04, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.8, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.84, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8.24, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8.28, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 9.2, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 9.24, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone315", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -40, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.96, - "target": [ - 0, - -112.57, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.68, - "target": [ - 0, - -65.07, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.56, - "target": [ - 0, - -99.57, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.76, - "target": [ - 0, - -2.57, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.16, - "target": [ - 0, - -86.42, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.68, - "target": [ - 0, - -72.67, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.12, - "target": [ - 0, - -114.07, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.92, - "target": [ - 0, - -79.07, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.32, - "target": [ - 0, - -106.57, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.08, - "target": [ - 0, - -59.07, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.92, - "target": [ - 0, - -86.57, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.48, - "target": [ - 0, - -31.57, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9.12, - "target": [ - 0, - -59.07, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - -40, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone45", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.04, - "target": [ - 0, - 0, - -0.075 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.28, - "target": [ - 0, - 0, - -0.075 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.32, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.04, - "target": [ - 0, - 0, - -0.075 - ], - "interpolation": "linear" - }, - { - "timestamp": 5, - "target": [ - 0, - 0, - -0.075 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.04, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6.04, - "target": [ - 0, - 0, - -0.075 - ], - "interpolation": "linear" - }, - { - "timestamp": 7, - "target": [ - 0, - 0, - -0.075 - ], - "interpolation": "linear" - }, - { - "timestamp": 7.04, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone316", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.8, - "target": [ - 0, - -410.34, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.44, - "target": [ - 0, - -119.29, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.08, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.84, - "target": [ - 0, - 51.375, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.64, - "target": [ - 0, - 232, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.08, - "target": [ - 0, - 180, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.08, - "target": [ - 0, - 1440, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.8, - "target": [ - 0, - 1557, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.6, - "target": [ - 0, - 1293, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - 1440, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone317", - "target": "position", - "keyframes": [ - { - "timestamp": 0.24, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.28, - "target": [ - 0, - 0.03, - -0.03 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.64, - "target": [ - 0, - 0.03, - -0.03 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.68, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.32, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.36, - "target": [ - 0, - 0.03, - -0.03 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.6, - "target": [ - 0, - 0.03, - -0.03 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.64, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.04, - "target": [ - 0, - 0.03, - -0.03 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.4, - "target": [ - 0, - 0.03, - -0.03 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.44, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.96, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4, - "target": [ - 0, - 0.03, - -0.03 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.36, - "target": [ - 0, - 0.03, - -0.03 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.88, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.92, - "target": [ - 0, - 0.03, - -0.03 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.28, - "target": [ - 0, - 0.03, - -0.03 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.32, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.88, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.92, - "target": [ - 0, - 0.03, - -0.03 - ], - "interpolation": "linear" - }, - { - "timestamp": 6.28, - "target": [ - 0, - 0.03, - -0.03 - ], - "interpolation": "linear" - }, - { - "timestamp": 6.32, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6.68, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6.72, - "target": [ - 0, - 0.03, - -0.03 - ], - "interpolation": "linear" - }, - { - "timestamp": 7.08, - "target": [ - 0, - 0.03, - -0.03 - ], - "interpolation": "linear" - }, - { - "timestamp": 7.12, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8.24, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8.28, - "target": [ - 0, - 0.03, - -0.03 - ], - "interpolation": "linear" - }, - { - "timestamp": 8.64, - "target": [ - 0, - 0.03, - -0.03 - ], - "interpolation": "linear" - }, - { - "timestamp": 8.68, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 9.44, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 9.48, - "target": [ - 0, - 0.03, - -0.03 - ], - "interpolation": "linear" - }, - { - "timestamp": 9.84, - "target": [ - 0, - 0.03, - -0.03 - ], - "interpolation": "linear" - }, - { - "timestamp": 9.88, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone318", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.04, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.48, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.04, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.48, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.56, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.6, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.04, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.08, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.04, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.48, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.04, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.48, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6.04, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6.48, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8.04, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8.48, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 9, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 9.04, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 9.48, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 9.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone319", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.04, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.6, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.64, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.04, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.6, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.64, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.04, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.6, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.64, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.04, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.6, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.64, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.04, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.6, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.64, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.04, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.6, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.64, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6.04, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6.6, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6.64, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 7, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 7.04, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 7.6, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 7.64, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8.04, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8.6, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8.64, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 9, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 9.04, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 9.6, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 9.64, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone320", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5, - "target": [ - 0, - 180, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone321", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.04, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.96, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.64, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.04, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.96, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6.92, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6.96, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8.16, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8.2, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 9.12, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 9.16, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "rotor_bottom_T_add20", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -0.57, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.44, - "target": [ - 0, - -5.4, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.44, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.84, - "target": [ - 0, - 1.755, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.12, - "target": [ - 0, - 3.325, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.2, - "target": [ - 0, - 3.015, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.6, - "target": [ - 0, - 1.76, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.84, - "target": [ - 0, - 0.24, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.6, - "target": [ - 0, - -2.07, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.44, - "target": [ - 0, - -6.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.44, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.84, - "target": [ - 0, - 1.755, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 9.12, - "target": [ - 0, - 3.325, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 9.2, - "target": [ - 0, - 3.015, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 9.6, - "target": [ - 0, - 1.76, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9.84, - "target": [ - 0, - 0.24, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - -0.57, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "rotor_bottom_T_add20", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.44, - "target": [ - 1.07, - 1.07, - 1.07 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.84, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.44, - "target": [ - 1.07, - 1.07, - 1.07 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.84, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "rotor_top_t_minus20", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0.57, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.4, - "target": [ - 0, - 4.4, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.44, - "target": [ - 0, - 9, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.84, - "target": [ - 0, - -1.755, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.12, - "target": [ - 0, - -3.325, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.2, - "target": [ - 0, - -3.015, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.56, - "target": [ - 0, - -2.16, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5, - "target": [ - 0, - 0.57, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.48, - "target": [ - 0, - 4.4, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.52, - "target": [ - 0, - 8, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.84, - "target": [ - 0, - -1.755, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 9.12, - "target": [ - 0, - -3.325, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 9.2, - "target": [ - 0, - -3.015, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 9.56, - "target": [ - 0, - -2.16, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - 0.57, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "rotor_top_t_minus20", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.44, - "target": [ - 1.07, - 1.07, - 1.07 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.84, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.44, - "target": [ - 1.07, - 1.07, - 1.07 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.84, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone323", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 1, - 1.05, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.88, - "target": [ - 1, - 1.0287, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 1, - 0.95, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.52, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.2, - "target": [ - 1, - 1.0281, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.68, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - 1, - 0.9275, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone324", - "target": "scale", - "keyframes": [ - { - "timestamp": 0.48, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.6, - "target": [ - 1, - 1.2, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.48, - "target": [ - 1, - 1.0287, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.52, - "target": [ - 1, - 0.85, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.92, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.92, - "target": [ - 1, - 1.075, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.68, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.6, - "target": [ - 1, - 0.85, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9.6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone326", - "target": "scale", - "keyframes": [ - { - "timestamp": 0.52, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.64, - "target": [ - 1, - 1.05, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.52, - "target": [ - 1, - 1.0287, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.64, - "target": [ - 1, - 0.95, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.28, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.96, - "target": [ - 1, - 1.0281, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.68, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - 1, - 0.9275, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone327", - "target": "scale", - "keyframes": [ - { - "timestamp": 0.16, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.28, - "target": [ - 1, - 1.2, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.16, - "target": [ - 1, - 1.0287, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.44, - "target": [ - 1, - 0.85, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.16, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.16, - "target": [ - 1, - 1.075, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.92, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.84, - "target": [ - 1, - 0.85, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9.6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone329", - "target": "scale", - "keyframes": [ - { - "timestamp": 0.2, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.2, - "target": [ - 1, - 1.05, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.08, - "target": [ - 1, - 1.0287, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.2, - "target": [ - 1, - 0.95, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.72, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.4, - "target": [ - 1, - 1.0281, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.88, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.2, - "target": [ - 1, - 0.9275, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone330", - "target": "scale", - "keyframes": [ - { - "timestamp": 0.48, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.6, - "target": [ - 1, - 1.2, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.48, - "target": [ - 1, - 1.0287, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.52, - "target": [ - 1, - 0.85, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.92, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.92, - "target": [ - 1, - 1.075, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.68, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.6, - "target": [ - 1, - 0.85, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9.6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone332", - "target": "scale", - "keyframes": [ - { - "timestamp": 0.52, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.64, - "target": [ - 1, - 1.05, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.52, - "target": [ - 1, - 1.0287, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.64, - "target": [ - 1, - 0.95, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.28, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.96, - "target": [ - 1, - 1.0281, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.68, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - 1, - 0.9275, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone333", - "target": "scale", - "keyframes": [ - { - "timestamp": 0.16, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.28, - "target": [ - 1, - 1.2, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.16, - "target": [ - 1, - 1.0287, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.44, - "target": [ - 1, - 0.85, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.16, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.16, - "target": [ - 1, - 1.075, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.92, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.84, - "target": [ - 1, - 0.85, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9.6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone335", - "target": "scale", - "keyframes": [ - { - "timestamp": 0.2, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.2, - "target": [ - 1, - 1.05, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.08, - "target": [ - 1, - 1.0287, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.2, - "target": [ - 1, - 0.95, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.72, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.4, - "target": [ - 1, - 1.0281, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.88, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.2, - "target": [ - 1, - 0.9275, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone336", - "target": "scale", - "keyframes": [ - { - "timestamp": 0.48, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.6, - "target": [ - 1, - 1.2, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.48, - "target": [ - 1, - 1.0287, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.52, - "target": [ - 1, - 0.85, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.92, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.92, - "target": [ - 1, - 1.075, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.68, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.6, - "target": [ - 1, - 0.85, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9.6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone338", - "target": "scale", - "keyframes": [ - { - "timestamp": 0.52, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.64, - "target": [ - 1, - 1.05, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.52, - "target": [ - 1, - 1.0287, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.64, - "target": [ - 1, - 0.95, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.28, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.96, - "target": [ - 1, - 1.0281, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.68, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - 1, - 0.9275, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone339", - "target": "scale", - "keyframes": [ - { - "timestamp": 0.16, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.28, - "target": [ - 1, - 1.2, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.16, - "target": [ - 1, - 1.0287, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.44, - "target": [ - 1, - 0.85, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.16, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.16, - "target": [ - 1, - 1.075, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.92, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.84, - "target": [ - 1, - 0.85, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9.6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "monitor_pitch", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.76, - "target": [ - 1.2, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.04, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.28, - "target": [ - 1, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.76, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.52, - "target": [ - 1.2, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.8, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.04, - "target": [ - 1, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.36, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.56, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.28, - "target": [ - 1.2, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.56, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.8, - "target": [ - 1, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.16, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6.24, - "target": [ - 1.2, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6.76, - "target": [ - 1, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 7.12, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8.28, - "target": [ - 1.2, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8.56, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8.8, - "target": [ - 1, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 9.16, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 9.44, - "target": [ - 1.2, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 9.72, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone112", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.68, - "target": [ - -1.8, - 0, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.04, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.24, - "target": [ - -2, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.6, - "target": [ - 0, - 0, - 0.6 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.76, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.8, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3, - "target": [ - -2, - 0, - 0.4 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.36, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.64, - "target": [ - 0, - 0, - -0.3 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.24, - "target": [ - -1.8, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.56, - "target": [ - 0, - 0, - 0.4 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.16, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.52, - "target": [ - 0, - 0, - -0.2 - ], - "interpolation": "linear" - }, - { - "timestamp": 6.2, - "target": [ - -1.8, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6.56, - "target": [ - 0, - 0, - 0.3 - ], - "interpolation": "linear" - }, - { - "timestamp": 7.32, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8.44, - "target": [ - -2, - 0, - 0.2 - ], - "interpolation": "linear" - }, - { - "timestamp": 8.84, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 9.36, - "target": [ - -1.8, - 0, - -0.2 - ], - "interpolation": "linear" - }, - { - "timestamp": 9.72, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone340", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0.75 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 0, - 0, - 0.75 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - -0.75 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - 0, - 0, - 0.75 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - 0, - -0.75 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone342", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 10, - "target": [ - 1080, - 0, - 0 - ], - "interpolation": "linear" - } - ] - } - ], - "loop": true -} \ No newline at end of file diff --git a/common/src/main/resources/assets/tardis_refined/animations/console/coral/idle.json b/common/src/main/resources/assets/tardis_refined/animations/console/coral/idle.json deleted file mode 100644 index 26a8c9cd1..000000000 --- a/common/src/main/resources/assets/tardis_refined/animations/console/coral/idle.json +++ /dev/null @@ -1,4183 +0,0 @@ -{ - "length": 10, - "looping" : true, - "animations": [ - { - "bone": "bone233", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.96, - "target": [ - 2.99989, - 0.02617, - -0.49931 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - -2.5, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.76, - "target": [ - 0.69497, - -0.00606, - 0.49996 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.28, - "target": [ - -0.95, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.72, - "target": [ - -0.32, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone234", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - -0.91, - -0.01, - 0.5 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3, - "target": [ - 1.84997, - 0.01308, - 0.52534 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5, - "target": [ - -2.5, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.76, - "target": [ - 0.69497, - -0.00606, - 0.49996 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - -0.91, - -0.01, - 0.5 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone236", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.96, - "target": [ - 2.99989, - 0.02617, - -0.49931 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - -2.5, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.76, - "target": [ - 0.69497, - -0.00606, - 0.49996 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.28, - "target": [ - -0.95, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.72, - "target": [ - -0.32, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone237", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - -0.91, - -0.01, - 0.5 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.96, - "target": [ - 1.24997, - 0.01308, - -0.24966 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5, - "target": [ - -2.5, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.76, - "target": [ - 0.69497, - -0.00606, - 0.49996 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - -0.91, - -0.01, - 0.5 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone238", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.96, - "target": [ - 2.99989, - 0.02617, - -0.49931 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - -2.5, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.76, - "target": [ - 0.69497, - -0.00606, - 0.49996 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.28, - "target": [ - -0.95, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.72, - "target": [ - -0.32, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone239", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - -0.91, - -0.01, - 0.5 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.96, - "target": [ - 1.69997, - 0.01308, - -0.62466 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5, - "target": [ - -2.5, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.76, - "target": [ - 0.69497, - -0.00606, - 0.72496 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - -0.91, - -0.01, - 0.5 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone284", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.04, - "target": [ - 1.03, - 1.03, - 1.03 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 1.08, - 1.08, - 1.08 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 0.98, - 0.98, - 0.98 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.2, - "target": [ - 1.08, - 1.08, - 1.08 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone285", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.04, - "target": [ - 1.03, - 1.03, - 1.03 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 1.08, - 1.08, - 1.08 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 0.99, - 0.99, - 0.99 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 1.08, - 1.08, - 1.08 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone288", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.04, - "target": [ - 1.03, - 1.03, - 1.03 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 1.08, - 1.08, - 1.08 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 0.98, - 0.98, - 0.98 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.2, - "target": [ - 1.08, - 1.08, - 1.08 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone290", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.04, - "target": [ - 1.03, - 1.03, - 1.03 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 1.08, - 1.08, - 1.08 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 0.99, - 0.99, - 0.99 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 1.08, - 1.08, - 1.08 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone293", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.04, - "target": [ - 1.03, - 1.03, - 1.03 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 1.08, - 1.08, - 1.08 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 0.98, - 0.98, - 0.98 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.2, - "target": [ - 1.08, - 1.08, - 1.08 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone295", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.04, - "target": [ - 1.03, - 1.03, - 1.03 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 1.08, - 1.08, - 1.08 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 0.99, - 0.99, - 0.99 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 1.08, - 1.08, - 1.08 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone298", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.04, - "target": [ - 1.03, - 1.03, - 1.03 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 1.08, - 1.08, - 1.08 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 0.98, - 0.98, - 0.98 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.2, - "target": [ - 1.08, - 1.08, - 1.08 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone300", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.04, - "target": [ - 1.03, - 1.03, - 1.03 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 1.08, - 1.08, - 1.08 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 0.99, - 0.99, - 0.99 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 1.08, - 1.08, - 1.08 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone303", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.04, - "target": [ - 1.03, - 1.03, - 1.03 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 1.08, - 1.08, - 1.08 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 0.98, - 0.98, - 0.98 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.2, - "target": [ - 1.08, - 1.08, - 1.08 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone305", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.04, - "target": [ - 1.03, - 1.03, - 1.03 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 1.08, - 1.08, - 1.08 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 0.99, - 0.99, - 0.99 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 1.08, - 1.08, - 1.08 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone308", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.04, - "target": [ - 1.03, - 1.03, - 1.03 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 1.08, - 1.08, - 1.08 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 0.98, - 0.98, - 0.98 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.2, - "target": [ - 1.08, - 1.08, - 1.08 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone310", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.04, - "target": [ - 1.03, - 1.03, - 1.03 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 1.08, - 1.08, - 1.08 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 0.99, - 0.99, - 0.99 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 1.08, - 1.08, - 1.08 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone59", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.44, - "target": [ - 0, - 281.535, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - 1440, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone62", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.8, - "target": [ - 0, - 211.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.52, - "target": [ - 0, - 66.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.44, - "target": [ - 0, - 158, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.88, - "target": [ - 0, - 72.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.04, - "target": [ - 0, - -10.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.64, - "target": [ - 0, - 10.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "increment", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.56, - "target": [ - 0, - 294.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.48, - "target": [ - 0, - 174, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.8, - "target": [ - 0, - 219, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.88, - "target": [ - 0, - -85, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9.96, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone68", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1, - "target": [ - 0, - 2, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5, - "target": [ - 0, - 2, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9, - "target": [ - 0, - 2, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone83", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - -2.5, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 0.5, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.16, - "target": [ - -2, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.84, - "target": [ - 0.25, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9.72, - "target": [ - 0.2, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9.96, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone311", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 4.875, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.04, - "target": [ - 4.08, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.08, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5, - "target": [ - 4.875, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.04, - "target": [ - 4.08, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.08, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 7.92, - "target": [ - 4.875, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.96, - "target": [ - 4.08, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone311", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1.15, - 1.15, - 1.15 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 1.15, - 1.15, - 1.15 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.04, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3, - "target": [ - 1.15, - 1.15, - 1.15 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5, - "target": [ - 1.15, - 1.15, - 1.15 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.04, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 1.15, - 1.15, - 1.15 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.92, - "target": [ - 1.15, - 1.15, - 1.15 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.96, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone312", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 1, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.04, - "target": [ - 1.035, - 1.035, - 1.035 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.96, - "target": [ - 1.035, - 1.035, - 1.035 - ], - "interpolation": "linear" - }, - { - "timestamp": 2, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 3, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.04, - "target": [ - 1.035, - 1.035, - 1.035 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.96, - "target": [ - 1.035, - 1.035, - 1.035 - ], - "interpolation": "linear" - }, - { - "timestamp": 4, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 5, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.04, - "target": [ - 1.035, - 1.035, - 1.035 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.96, - "target": [ - 1.035, - 1.035, - 1.035 - ], - "interpolation": "linear" - }, - { - "timestamp": 6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 7, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 7.04, - "target": [ - 1.035, - 1.035, - 1.035 - ], - "interpolation": "linear" - }, - { - "timestamp": 7.96, - "target": [ - 1.035, - 1.035, - 1.035 - ], - "interpolation": "linear" - }, - { - "timestamp": 8, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone313", - "target": "position", - "keyframes": [ - { - "timestamp": 0.8, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.84, - "target": [ - 0, - -0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.6, - "target": [ - 0, - -0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.64, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.04, - "target": [ - 0, - -0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.8, - "target": [ - 0, - -0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.84, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6.56, - "target": [ - 0, - -0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 7.32, - "target": [ - 0, - -0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 7.36, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 9.28, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 9.32, - "target": [ - 0, - -0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 9.96, - "target": [ - 0, - -0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 10, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone314", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.04, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.4, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.44, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.04, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.96, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.04, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 7.2, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 7.24, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8.24, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8.28, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 9.2, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 9.24, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone315", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - 0, - 720, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone45", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.04, - "target": [ - 0, - 0, - -0.075 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.28, - "target": [ - 0, - 0, - -0.075 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.32, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.04, - "target": [ - 0, - 0, - -0.075 - ], - "interpolation": "linear" - }, - { - "timestamp": 5, - "target": [ - 0, - 0, - -0.075 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.04, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6.04, - "target": [ - 0, - 0, - -0.075 - ], - "interpolation": "linear" - }, - { - "timestamp": 7, - "target": [ - 0, - 0, - -0.075 - ], - "interpolation": "linear" - }, - { - "timestamp": 7.04, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone316", - "target": "rotation", - "keyframes": [ - { - "timestamp": 2.08, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.84, - "target": [ - 0, - 51.375, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.64, - "target": [ - 0, - 232, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.08, - "target": [ - 0, - 180, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.08, - "target": [ - 0, - 360, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone317", - "target": "position", - "keyframes": [ - { - "timestamp": 1.32, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.36, - "target": [ - 0, - 0.03, - -0.03 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.6, - "target": [ - 0, - 0.03, - -0.03 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.64, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.96, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4, - "target": [ - 0, - 0.03, - -0.03 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.36, - "target": [ - 0, - 0.03, - -0.03 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.88, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.92, - "target": [ - 0, - 0.03, - -0.03 - ], - "interpolation": "linear" - }, - { - "timestamp": 6.28, - "target": [ - 0, - 0.03, - -0.03 - ], - "interpolation": "linear" - }, - { - "timestamp": 6.32, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6.68, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6.72, - "target": [ - 0, - 0.03, - -0.03 - ], - "interpolation": "linear" - }, - { - "timestamp": 7.08, - "target": [ - 0, - 0.03, - -0.03 - ], - "interpolation": "linear" - }, - { - "timestamp": 7.12, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone318", - "target": "position", - "keyframes": [ - { - "timestamp": 1.8, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.84, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.6, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.64, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.2, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.24, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.04, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.72, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.76, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6.52, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6.56, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8.48, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8.52, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 9.72, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 9.96, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone319", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.04, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.6, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.64, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.04, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.6, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.64, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.04, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.6, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.64, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.04, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.6, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.64, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.04, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.6, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.64, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.04, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.6, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.64, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6.04, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6.6, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6.64, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 7, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 7.04, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 7.6, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 7.64, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8.04, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8.6, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8.64, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 9, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 9.04, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 9.6, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 9.64, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone320", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5, - "target": [ - 0, - 180, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone321", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.04, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.96, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.64, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.04, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.96, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6.92, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6.96, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8.16, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8.2, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 9.12, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 9.16, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone323", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 1, - 1.05, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.88, - "target": [ - 1, - 1.0287, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 1, - 0.95, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.52, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.2, - "target": [ - 1, - 1.0281, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.68, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - 1, - 0.9275, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone324", - "target": "scale", - "keyframes": [ - { - "timestamp": 0.48, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.6, - "target": [ - 1, - 1.2, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.48, - "target": [ - 1, - 1.0287, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.52, - "target": [ - 1, - 0.85, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.92, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.92, - "target": [ - 1, - 1.075, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.68, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.6, - "target": [ - 1, - 0.85, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9.6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone326", - "target": "scale", - "keyframes": [ - { - "timestamp": 0.52, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.64, - "target": [ - 1, - 1.05, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.52, - "target": [ - 1, - 1.0287, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.64, - "target": [ - 1, - 0.95, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.28, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.96, - "target": [ - 1, - 1.0281, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.68, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - 1, - 0.9275, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone327", - "target": "scale", - "keyframes": [ - { - "timestamp": 0.12, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.24, - "target": [ - 1, - 1.2, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.12, - "target": [ - 1, - 1.0287, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.4, - "target": [ - 1, - 0.85, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.12, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.12, - "target": [ - 1, - 1.075, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.88, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.8, - "target": [ - 1, - 0.85, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9.56, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone329", - "target": "scale", - "keyframes": [ - { - "timestamp": 0.16, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.16, - "target": [ - 1, - 1.05, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.04, - "target": [ - 1, - 1.0287, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.16, - "target": [ - 1, - 0.95, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.68, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.36, - "target": [ - 1, - 1.0281, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.84, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.16, - "target": [ - 1, - 0.9275, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9.96, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone330", - "target": "scale", - "keyframes": [ - { - "timestamp": 0.44, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.56, - "target": [ - 1, - 1.2, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.44, - "target": [ - 1, - 1.0287, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.48, - "target": [ - 1, - 0.85, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.88, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.88, - "target": [ - 1, - 1.075, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.64, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.56, - "target": [ - 1, - 0.85, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9.56, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone332", - "target": "scale", - "keyframes": [ - { - "timestamp": 0.48, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.6, - "target": [ - 1, - 1.05, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.48, - "target": [ - 1, - 1.0287, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.6, - "target": [ - 1, - 0.95, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.24, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.92, - "target": [ - 1, - 1.0281, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.64, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.96, - "target": [ - 1, - 0.9275, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9.96, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone333", - "target": "scale", - "keyframes": [ - { - "timestamp": 0.12, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.24, - "target": [ - 1, - 1.2, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.12, - "target": [ - 1, - 1.0287, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.4, - "target": [ - 1, - 0.85, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.12, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.12, - "target": [ - 1, - 1.075, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.88, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.8, - "target": [ - 1, - 0.85, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9.56, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone335", - "target": "scale", - "keyframes": [ - { - "timestamp": 0.16, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.16, - "target": [ - 1, - 1.05, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.04, - "target": [ - 1, - 1.0287, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.16, - "target": [ - 1, - 0.95, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.68, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.36, - "target": [ - 1, - 1.0281, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.84, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.16, - "target": [ - 1, - 0.9275, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9.96, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone336", - "target": "scale", - "keyframes": [ - { - "timestamp": 0.48, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.6, - "target": [ - 1, - 1.2, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.48, - "target": [ - 1, - 1.0287, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.52, - "target": [ - 1, - 0.85, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.92, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.92, - "target": [ - 1, - 1.075, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.68, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.6, - "target": [ - 1, - 0.85, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9.6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone338", - "target": "scale", - "keyframes": [ - { - "timestamp": 0.48, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.6, - "target": [ - 1, - 1.05, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.48, - "target": [ - 1, - 1.0287, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.6, - "target": [ - 1, - 0.95, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.24, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.92, - "target": [ - 1, - 1.0281, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.64, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.96, - "target": [ - 1, - 0.9275, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9.96, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone339", - "target": "scale", - "keyframes": [ - { - "timestamp": 0.16, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.28, - "target": [ - 1, - 1.2, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.16, - "target": [ - 1, - 1.0287, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.44, - "target": [ - 1, - 0.85, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.16, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.16, - "target": [ - 1, - 1.075, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.92, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.84, - "target": [ - 1, - 0.85, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9.6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - } - ], - "loop": true -} \ No newline at end of file diff --git a/common/src/main/resources/assets/tardis_refined/animations/console/crystal/flight.json b/common/src/main/resources/assets/tardis_refined/animations/console/crystal/flight.json deleted file mode 100644 index ababc8961..000000000 --- a/common/src/main/resources/assets/tardis_refined/animations/console/crystal/flight.json +++ /dev/null @@ -1,4066 +0,0 @@ -{ - "length": 6.04, - "looping" : true, - "animations": [ - { - "bone": "rotor", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.44, - "target": [ - 0, - -4.94, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.12, - "target": [ - 0, - -8.06, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 0, - -8, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.56, - "target": [ - 0, - -0.15, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.64, - "target": [ - 0, - 0.185, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.72, - "target": [ - 0, - 0.06, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.84, - "target": [ - 0, - -0.07, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.36, - "target": [ - 0, - -3.01, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.84, - "target": [ - 0, - -3.04, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.92, - "target": [ - 0, - 0.32, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "rotor", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.24, - "target": [ - 0, - -2.99, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.52, - "target": [ - 0, - -2.97, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.96, - "target": [ - 0, - -7.8, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.52, - "target": [ - 0, - -9.11, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.32, - "target": [ - 0, - -5.82, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.32, - "target": [ - 0, - 7, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.08, - "target": [ - 0, - 7, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.36, - "target": [ - 0, - 1.77, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.76, - "target": [ - 0, - -0.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5, - "target": [ - 0, - -0.14, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.2, - "target": [ - 0, - 2.6, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.96, - "target": [ - 0, - 0.6, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6.04, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8.12, - "target": [ - 0, - 0.34, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone143", - "target": "scale", - "keyframes": [ - { - "timestamp": 0.2, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.6, - "target": [ - 1.2, - 1.2, - 1.2 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.2, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.2, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.6, - "target": [ - 1.2, - 1.2, - 1.2 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.2, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.2, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.6, - "target": [ - 1.2, - 1.2, - 1.2 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.2, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone145", - "target": "scale", - "keyframes": [ - { - "timestamp": 0.4, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.8, - "target": [ - 1.2, - 1.2, - 1.2 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.92, - "target": [ - 1.1368, - 1.1368, - 1.1368 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1, - "target": [ - 1.145, - 1.145, - 1.145 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.4, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.4, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.8, - "target": [ - 1.2, - 1.2, - 1.2 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.92, - "target": [ - 1.1368, - 1.1368, - 1.1368 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3, - "target": [ - 1.145, - 1.145, - 1.145 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.4, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.2, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.6, - "target": [ - 1.2, - 1.2, - 1.2 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.72, - "target": [ - 1.1368, - 1.1368, - 1.1368 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.8, - "target": [ - 1.145, - 1.145, - 1.145 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.2, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone149", - "target": "scale", - "keyframes": [ - { - "timestamp": 0.6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1, - "target": [ - 1.2, - 1.2, - 1.2 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3, - "target": [ - 1.2, - 1.2, - 1.2 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5, - "target": [ - 1.2, - 1.2, - 1.2 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone165", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.6, - "target": [ - 1.0346, - 1.0346, - 1.0346 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.8, - "target": [ - 1.15, - 1.15, - 1.15 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.6, - "target": [ - 1.0346, - 1.0346, - 1.0346 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.8, - "target": [ - 1.15, - 1.15, - 1.15 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.6, - "target": [ - 1.0346, - 1.0346, - 1.0346 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.8, - "target": [ - 1.15, - 1.15, - 1.15 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone160", - "target": "scale", - "keyframes": [ - { - "timestamp": 0.84, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.44, - "target": [ - 1.0346, - 1.0346, - 1.0346 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.56, - "target": [ - 1.15, - 1.15, - 1.15 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.84, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.44, - "target": [ - 1.0346, - 1.0346, - 1.0346 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.56, - "target": [ - 1.15, - 1.15, - 1.15 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.84, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.44, - "target": [ - 1.0346, - 1.0346, - 1.0346 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.56, - "target": [ - 1.15, - 1.15, - 1.15 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone161", - "target": "scale", - "keyframes": [ - { - "timestamp": 0.32, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.92, - "target": [ - 1.0346, - 1.0346, - 1.0346 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.04, - "target": [ - 1.15, - 1.15, - 1.15 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.48, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.32, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.92, - "target": [ - 1.0346, - 1.0346, - 1.0346 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.04, - "target": [ - 1.15, - 1.15, - 1.15 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.48, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.32, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.92, - "target": [ - 1.0346, - 1.0346, - 1.0346 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.04, - "target": [ - 1.15, - 1.15, - 1.15 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.48, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone169", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1.3, - 1.3, - 1.3 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.2, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.04, - "target": [ - 1.3, - 1.3, - 1.3 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone171", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.44, - "target": [ - 0, - 0, - 50 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.64, - "target": [ - 0, - 0, - 40 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.84, - "target": [ - 0, - 0, - 50 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.28, - "target": [ - 0, - 0, - 100 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.48, - "target": [ - 0, - 0, - 90 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.72, - "target": [ - 0, - 0, - 100 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.16, - "target": [ - 0, - 0, - 150 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.36, - "target": [ - 0, - 0, - 140 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.56, - "target": [ - 0, - 0, - 150 - ], - "interpolation": "linear" - }, - { - "timestamp": 3, - "target": [ - 0, - 0, - 200 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.2, - "target": [ - 0, - 0, - 190 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.44, - "target": [ - 0, - 0, - 200 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.84, - "target": [ - 0, - 0, - 250 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.04, - "target": [ - 0, - 0, - 240 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.28, - "target": [ - 0, - 0, - 250 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.72, - "target": [ - 0, - 0, - 300 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.92, - "target": [ - 0, - 0, - 290 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.12, - "target": [ - 0, - 0, - 300 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.56, - "target": [ - 0, - 0, - 360 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.76, - "target": [ - 0, - 0, - 350 - ], - "interpolation": "linear" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 360 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone177", - "target": "scale", - "keyframes": [ - { - "timestamp": 1.64, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.72, - "target": [ - 1.1, - 1.1, - 1.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.8, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.12, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.2, - "target": [ - 1.1, - 1.1, - 1.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.28, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.68, - "target": [ - 1.1, - 1.1, - 1.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.76, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.08, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.16, - "target": [ - 1.1, - 1.1, - 1.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.24, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.56, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.64, - "target": [ - 1.1, - 1.1, - 1.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.72, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.04, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.12, - "target": [ - 1.1, - 1.1, - 1.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.2, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.52, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.6, - "target": [ - 1.1, - 1.1, - 1.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.68, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.08, - "target": [ - 1.1, - 1.1, - 1.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.16, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.52, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.6, - "target": [ - 1.1, - 1.1, - 1.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.68, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone181", - "target": "scale", - "keyframes": [ - { - "timestamp": 1.72, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.8, - "target": [ - 1.1, - 1.1, - 1.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.88, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.2, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.28, - "target": [ - 1.1, - 1.1, - 1.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.36, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.68, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.76, - "target": [ - 1.1, - 1.1, - 1.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.84, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.16, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.24, - "target": [ - 1.1, - 1.1, - 1.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.32, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.64, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.72, - "target": [ - 1.1, - 1.1, - 1.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.8, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.12, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.2, - "target": [ - 1.1, - 1.1, - 1.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.28, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.68, - "target": [ - 1.1, - 1.1, - 1.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.76, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.08, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.16, - "target": [ - 1.1, - 1.1, - 1.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.24, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.68, - "target": [ - 1.1, - 1.1, - 1.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.76, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone186", - "target": "scale", - "keyframes": [ - { - "timestamp": 1.8, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.88, - "target": [ - 1.1, - 1.1, - 1.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.96, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.28, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.36, - "target": [ - 1.1, - 1.1, - 1.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.44, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.76, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.84, - "target": [ - 1.1, - 1.1, - 1.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.92, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.24, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.32, - "target": [ - 1.1, - 1.1, - 1.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.4, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.72, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.8, - "target": [ - 1.1, - 1.1, - 1.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.88, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.2, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.28, - "target": [ - 1.1, - 1.1, - 1.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.36, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.68, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.76, - "target": [ - 1.1, - 1.1, - 1.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.84, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.16, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.24, - "target": [ - 1.1, - 1.1, - 1.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.32, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.68, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.76, - "target": [ - 1.1, - 1.1, - 1.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.84, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "large_valve_control", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.24, - "target": [ - 0, - 0, - 50 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.44, - "target": [ - 0, - 0, - 40 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.64, - "target": [ - 0, - 0, - 50 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.04, - "target": [ - 0, - 0, - 150 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.24, - "target": [ - 0, - 0, - 140 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.44, - "target": [ - 0, - 0, - 150 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.76, - "target": [ - 0, - 0, - 250 - ], - "interpolation": "linear" - }, - { - "timestamp": 4, - "target": [ - 0, - 0, - 240 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.24, - "target": [ - 0, - 0, - 250 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.56, - "target": [ - 0, - 0, - 360 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.76, - "target": [ - 0, - 0, - 350 - ], - "interpolation": "linear" - }, - { - "timestamp": 6.04, - "target": [ - 0, - 0, - 360 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "small_valve_control", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.12, - "target": [ - 0, - 180, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "small_valve2_control", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.28, - "target": [ - 0, - 149.72, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.96, - "target": [ - 0, - 324.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.04, - "target": [ - 0, - 526.01, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 720, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "small_valve3_control", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 360, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "small_valve4_control", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.08, - "target": [ - 0, - 10.2, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - -180, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "switch3_control2", - "target": "rotation", - "keyframes": [ - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "large_valve2_control_rotate", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.04, - "target": [ - 0, - -5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.16, - "target": [ - 0, - 10, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.92, - "target": [ - 0, - -15, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.12, - "target": [ - 0, - -2.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.24, - "target": [ - 0, - -30, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "switch4_control_increment2", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.04, - "target": [ - 0, - 0, - 3 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 0, - 0, - -1.5 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "small_valve5_control_x", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.04, - "target": [ - 0, - -5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.16, - "target": [ - 0, - 10, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.92, - "target": [ - 0, - -15, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.12, - "target": [ - 0, - -2.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.24, - "target": [ - 0, - -30, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "small_valve6_control_z", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.2, - "target": [ - 0, - 188.72, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.76, - "target": [ - 0, - 431.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 720, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "small_valve7_control_y", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.56, - "target": [ - 0, - 2, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.84, - "target": [ - 0, - -5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.36, - "target": [ - 0, - 15, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.16, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.96, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "spinnything_control", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.88, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.84, - "target": [ - 1.43, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.28, - "target": [ - 8, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.92, - "target": [ - -0.32, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.04, - "target": [ - 0.74, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone198", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.6, - "target": [ - 1, - 1.065, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.44, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.16, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.76, - "target": [ - 1, - 1.065, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.32, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.92, - "target": [ - 1, - 1.065, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.76, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone220", - "target": "scale", - "keyframes": [ - { - "timestamp": 2.84, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.4, - "target": [ - 1.15, - 1.15, - 1.15 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.84, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone225", - "target": "rotation", - "keyframes": [ - { - "timestamp": 3.16, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.36, - "target": [ - 0, - 0, - 77.5 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.64, - "target": [ - 0, - 0, - 17.5 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.68, - "target": [ - 0, - 0, - 52.5 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5, - "target": [ - 0, - 0, - -10 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.96, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone226", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.04, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - -360 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone230", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.48, - "target": [ - 1.05, - 1.05, - 1.05 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.48, - "target": [ - 1.05, - 1.05, - 1.05 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.48, - "target": [ - 1.05, - 1.05, - 1.05 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.48, - "target": [ - 1.05, - 1.05, - 1.05 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.48, - "target": [ - 1.05, - 1.05, - 1.05 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.48, - "target": [ - 1.05, - 1.05, - 1.05 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone231", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1, - "target": [ - 1.065, - 1.065, - 1.065 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3, - "target": [ - 1.065, - 1.065, - 1.065 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5, - "target": [ - 1.065, - 1.065, - 1.065 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone232", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1.1, - 1.1, - 1.1 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.08, - "target": [ - 1.1, - 1.1, - 1.1 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.12, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.2, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.24, - "target": [ - 1.1, - 1.1, - 1.1 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.56, - "target": [ - 1.1, - 1.1, - 1.1 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.44, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.48, - "target": [ - 1.1, - 1.1, - 1.1 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone233", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1, - "target": [ - 0, - -35, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 0, - 42.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.48, - "target": [ - 0, - 45, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.64, - "target": [ - 0, - -13, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3, - "target": [ - 0, - 3, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.64, - "target": [ - 0, - -11, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.32, - "target": [ - 0, - 27, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5, - "target": [ - 0, - -28, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone234", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1, - "target": [ - 0, - 25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.96, - "target": [ - 0, - -19.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.4, - "target": [ - 0, - -25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.64, - "target": [ - 0, - -13, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.16, - "target": [ - 0, - -19, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.64, - "target": [ - 0, - 11, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.32, - "target": [ - 0, - -8, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.96, - "target": [ - 0, - 8, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone235", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.16, - "target": [ - 0, - 74, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.6, - "target": [ - 0, - 45.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.08, - "target": [ - 0, - 52, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.4, - "target": [ - 0, - 21, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.96, - "target": [ - 0, - 45, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.52, - "target": [ - 0, - 13, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.36, - "target": [ - 0, - 41, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.68, - "target": [ - 0, - -2.68, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.44, - "target": [ - 0, - 26, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone236", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -15, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.56, - "target": [ - 0, - -44, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.76, - "target": [ - 0, - -60.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.36, - "target": [ - 0, - 69, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.6, - "target": [ - 0, - -57, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.96, - "target": [ - 0, - -49, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.68, - "target": [ - 0, - 35, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.24, - "target": [ - 0, - -58, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.96, - "target": [ - 0, - 54, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.96, - "target": [ - 0, - -15, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "spinninglight", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.04, - "target": [ - 0, - 540, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone201", - "target": "scale", - "keyframes": [ - { - "timestamp": 0.32, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.92, - "target": [ - 1, - 1.065, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.76, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.48, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.08, - "target": [ - 1, - 1.065, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.92, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.64, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.24, - "target": [ - 1, - 1.065, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone204", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1.0239, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.24, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.56, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.16, - "target": [ - 1, - 1.065, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.72, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.32, - "target": [ - 1, - 1.065, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.16, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.88, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.48, - "target": [ - 1, - 1.065, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone207", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1.0357, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.44, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.84, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.44, - "target": [ - 1, - 1.065, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.28, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.6, - "target": [ - 1, - 1.065, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.44, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.04, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.64, - "target": [ - 1, - 1.065, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.04, - "target": [ - 1, - 1.0357, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone210", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1.0587, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.76, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.12, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.72, - "target": [ - 1, - 1.065, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.56, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.28, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.88, - "target": [ - 1, - 1.065, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.72, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.32, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.92, - "target": [ - 1, - 1.065, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 1, - 1.0587, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone213", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1.0467, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.2, - "target": [ - 1, - 1.065, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.04, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.4, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 1, - 1.065, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.84, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.56, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.16, - "target": [ - 1, - 1.065, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 1, - 1.0467, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "rotor_purple", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 0, - 1, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "rotor_purple", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3, - "target": [ - 0, - -5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone239", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 720, - 720, - 720 - ], - "interpolation": "catmullrom" - } - ] - } - ], - "loop": true -} \ No newline at end of file diff --git a/common/src/main/resources/assets/tardis_refined/animations/console/crystal/idle.json b/common/src/main/resources/assets/tardis_refined/animations/console/crystal/idle.json deleted file mode 100644 index 7c4103008..000000000 --- a/common/src/main/resources/assets/tardis_refined/animations/console/crystal/idle.json +++ /dev/null @@ -1,4615 +0,0 @@ -{ - "length": 6, - "looping" : true, - "animations": [ - { - "bone": "bone132", - "target": "scale", - "keyframes": [ - { - "timestamp": 1.32, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.84, - "target": [ - 1.05, - 1.05, - 1.05 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.88, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone146", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 0, - 0, - -0.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 0, - 0, - 0.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone146", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1, - "target": [ - 0, - -0.2, - 0.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3, - "target": [ - 0, - 0.5, - 0.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5, - "target": [ - 0, - -0.2, - 0.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone147", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 0, - 0, - -0.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 0, - 0, - 0.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone147", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1, - "target": [ - 0, - 0.2, - -0.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3, - "target": [ - 0, - -0.5, - -0.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5, - "target": [ - 0, - 0.2, - -0.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone150", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 0, - 0, - -0.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 0, - 0, - 0.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone150", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1, - "target": [ - 0, - -0.2, - 0.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3, - "target": [ - 0, - 0.5, - 0.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5, - "target": [ - 0, - -0.2, - 0.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone151", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 0, - 0, - -0.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 0, - 0, - 0.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone151", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1, - "target": [ - 0, - 0.2, - -0.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3, - "target": [ - 0, - -0.5, - -0.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5, - "target": [ - 0, - 0.2, - -0.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone162", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 0, - 0, - -0.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 0, - 0, - 0.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone162", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1, - "target": [ - 0, - -0.2, - 0.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3, - "target": [ - 0, - 0.5, - 0.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5, - "target": [ - 0, - -0.2, - 0.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone163", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 0, - 0, - -0.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 0, - 0, - 0.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone163", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1, - "target": [ - 0, - 0.2, - -0.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3, - "target": [ - 0, - -0.5, - -0.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5, - "target": [ - 0, - 0.2, - -0.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone170", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 0, - 0, - -0.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 0, - 0, - 0.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone170", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1, - "target": [ - 0, - -0.2, - 0.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3, - "target": [ - 0, - 0.5, - 0.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5, - "target": [ - 0, - -0.2, - 0.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone172", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 0, - 0, - -0.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 0, - 0, - 0.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone172", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1, - "target": [ - 0, - 0.2, - -0.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3, - "target": [ - 0, - -0.5, - -0.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5, - "target": [ - 0, - 0.2, - -0.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone193", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 0, - 0, - -0.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 0, - 0, - 0.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone193", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1, - "target": [ - 0, - -0.2, - 0.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3, - "target": [ - 0, - 0.5, - 0.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5, - "target": [ - 0, - -0.2, - 0.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone194", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 0, - 0, - -0.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 0, - 0, - 0.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone194", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1, - "target": [ - 0, - 0.2, - -0.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3, - "target": [ - 0, - -0.5, - -0.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5, - "target": [ - 0, - 0.2, - -0.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone182", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 0, - 0, - -0.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 0, - 0, - 0.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone182", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1, - "target": [ - 0, - -0.2, - 0.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3, - "target": [ - 0, - 0.5, - 0.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5, - "target": [ - 0, - -0.2, - 0.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone183", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 0, - 0, - -0.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 0, - 0, - 0.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone183", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1, - "target": [ - 0, - 0.2, - -0.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3, - "target": [ - 0, - -0.5, - -0.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5, - "target": [ - 0, - 0.2, - -0.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone155", - "target": "scale", - "keyframes": [ - { - "timestamp": 1, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.4, - "target": [ - 1.2, - 1.2, - 1.2 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.44, - "target": [ - 1.1484, - 1.1484, - 1.1484 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.52, - "target": [ - 1.17, - 1.17, - 1.17 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.88, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.28, - "target": [ - 1.2, - 1.2, - 1.2 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.32, - "target": [ - 1.1484, - 1.1484, - 1.1484 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.4, - "target": [ - 1.17, - 1.17, - 1.17 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.88, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone143", - "target": "scale", - "keyframes": [ - { - "timestamp": 0.2, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.6, - "target": [ - 1.2, - 1.2, - 1.2 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.2, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.16, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.56, - "target": [ - 1.2, - 1.2, - 1.2 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.16, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone145", - "target": "scale", - "keyframes": [ - { - "timestamp": 0.4, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.8, - "target": [ - 1.2, - 1.2, - 1.2 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.92, - "target": [ - 1.1368, - 1.1368, - 1.1368 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1, - "target": [ - 1.145, - 1.145, - 1.145 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.4, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.32, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.72, - "target": [ - 1.2, - 1.2, - 1.2 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.84, - "target": [ - 1.1368, - 1.1368, - 1.1368 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.92, - "target": [ - 1.145, - 1.145, - 1.145 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.32, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone149", - "target": "scale", - "keyframes": [ - { - "timestamp": 0.6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1, - "target": [ - 1.2, - 1.2, - 1.2 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.48, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.88, - "target": [ - 1.2, - 1.2, - 1.2 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.48, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone153", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.4, - "target": [ - 1.2, - 1.2, - 1.2 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.4, - "target": [ - 1.2, - 1.2, - 1.2 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone165", - "target": "scale", - "keyframes": [ - { - "timestamp": 0.36, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.92, - "target": [ - 1.0346, - 1.0346, - 1.0346 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.12, - "target": [ - 1.15, - 1.15, - 1.15 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.32, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.68, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.24, - "target": [ - 1.0346, - 1.0346, - 1.0346 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.44, - "target": [ - 1.15, - 1.15, - 1.15 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.64, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone160", - "target": "scale", - "keyframes": [ - { - "timestamp": 1.16, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.72, - "target": [ - 1.0346, - 1.0346, - 1.0346 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.84, - "target": [ - 1.15, - 1.15, - 1.15 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.24, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.44, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 1.0346, - 1.0346, - 1.0346 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.12, - "target": [ - 1.15, - 1.15, - 1.15 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.52, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone161", - "target": "scale", - "keyframes": [ - { - "timestamp": 0.68, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.32, - "target": [ - 1.15, - 1.15, - 1.15 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.8, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.04, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.68, - "target": [ - 1.15, - 1.15, - 1.15 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.16, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone169", - "target": "scale", - "keyframes": [ - { - "timestamp": 1.64, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.16, - "target": [ - 1.1, - 1.1, - 1.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.12, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.24, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.76, - "target": [ - 1.1, - 1.1, - 1.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.72, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone171", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0.96, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.28, - "target": [ - 0, - 0, - 9.4 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.4, - "target": [ - 0, - 0, - 45 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.8, - "target": [ - 0, - 0, - 30 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.04, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone177", - "target": "scale", - "keyframes": [ - { - "timestamp": 3.52, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.48, - "target": [ - 1.15, - 1.15, - 1.15 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.48, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone181", - "target": "scale", - "keyframes": [ - { - "timestamp": 4.16, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.12, - "target": [ - 1.15, - 1.15, - 1.15 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.12, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone186", - "target": "scale", - "keyframes": [ - { - "timestamp": 4.48, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.48, - "target": [ - 1.15, - 1.15, - 1.15 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.44, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone174", - "target": "scale", - "keyframes": [ - { - "timestamp": 1.72, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.28, - "target": [ - 1.05, - 1.05, - 1.05 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.56, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "small_valve_control", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.12, - "target": [ - 0, - 180, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "small_valve2_control", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.28, - "target": [ - 0, - 149.72, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.96, - "target": [ - 0, - 324.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.04, - "target": [ - 0, - 526.01, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 720, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "small_valve3_control", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 360, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "small_valve4_control", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.08, - "target": [ - 0, - 10.2, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - -90, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "switch3_control2", - "target": "rotation", - "keyframes": [ - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "large_valve2_control_rotate", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.04, - "target": [ - 0, - -5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.16, - "target": [ - 0, - 10, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.92, - "target": [ - 0, - -15, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.12, - "target": [ - 0, - -2.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.24, - "target": [ - 0, - -30, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "switch4_control_increment2", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.04, - "target": [ - 0, - 0, - 3 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 0, - 0, - -1.5 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "small_valve5_control_x", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.12, - "target": [ - 0, - 0.045, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.32, - "target": [ - 0, - -0.07, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.56, - "target": [ - 0, - 0.04, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.72, - "target": [ - 0, - -0.04, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1, - "target": [ - 0, - 0.07, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.16, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.28, - "target": [ - 0, - 0.045, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.48, - "target": [ - 0, - -0.07, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.72, - "target": [ - 0, - 0.04, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.88, - "target": [ - 0, - -0.04, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.16, - "target": [ - 0, - 0.07, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.32, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.44, - "target": [ - 0, - 0.045, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.64, - "target": [ - 0, - -0.07, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.88, - "target": [ - 0, - 0.04, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.04, - "target": [ - 0, - -0.04, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.32, - "target": [ - 0, - 0.07, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.48, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.6, - "target": [ - 0, - 0.045, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.8, - "target": [ - 0, - -0.07, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.04, - "target": [ - 0, - 0.04, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.2, - "target": [ - 0, - -0.04, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.48, - "target": [ - 0, - 0.07, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.76, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.88, - "target": [ - 0, - 0.045, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.08, - "target": [ - 0, - -0.07, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.32, - "target": [ - 0, - 0.04, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.48, - "target": [ - 0, - -0.04, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.76, - "target": [ - 0, - 0.07, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.92, - "target": [ - 0, - -0.035, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "small_valve5_control_x", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.04, - "target": [ - 0, - -5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.16, - "target": [ - 0, - 10, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.92, - "target": [ - 0, - -15, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.12, - "target": [ - 0, - -2.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.24, - "target": [ - 0, - -30, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "small_valve6_control_z", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.16, - "target": [ - 0, - -0.045, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.36, - "target": [ - 0, - 0.07, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.64, - "target": [ - 0, - -0.04, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.84, - "target": [ - 0, - -0.04, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.16, - "target": [ - 0, - 0.045, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.72, - "target": [ - 0, - -0.045, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.04, - "target": [ - 0, - -0.04, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.56, - "target": [ - 0, - -0.07, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.84, - "target": [ - 0, - -0.025, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.12, - "target": [ - 0, - 0.03, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.6, - "target": [ - 0, - -0.04, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.92, - "target": [ - 0, - -0.045, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.12, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.48, - "target": [ - 0, - -0.045, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.76, - "target": [ - 0, - 0.04, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.96, - "target": [ - 0, - -0.04, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.28, - "target": [ - 0, - 0.045, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6, - "target": [ - 0, - 0.03, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "small_valve6_control_z", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.2, - "target": [ - 0, - 188.72, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.76, - "target": [ - 0, - 431.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.04, - "target": [ - 0, - 526.01, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 720, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "small_valve7_control_y", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.12, - "target": [ - 0, - 0.045, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.32, - "target": [ - 0, - -0.07, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.56, - "target": [ - 0, - 0.04, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.72, - "target": [ - 0, - -0.04, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1, - "target": [ - 0, - 0.045, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.48, - "target": [ - 0, - -0.045, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.72, - "target": [ - 0, - 0.04, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.16, - "target": [ - 0, - 0.07, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.32, - "target": [ - 0, - -0.025, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.44, - "target": [ - 0, - 0.045, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.64, - "target": [ - 0, - 0.03, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.04, - "target": [ - 0, - -0.04, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.32, - "target": [ - 0, - 0.045, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.48, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.8, - "target": [ - 0, - -0.045, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.04, - "target": [ - 0, - 0.04, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.2, - "target": [ - 0, - -0.04, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.48, - "target": [ - 0, - 0.045, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.76, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.08, - "target": [ - 0, - 0.03, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.48, - "target": [ - 0, - -0.04, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.76, - "target": [ - 0, - 0.02, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.92, - "target": [ - 0, - -0.035, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "small_valve7_control_y", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.56, - "target": [ - 0, - 2, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1, - "target": [ - 0, - -2, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.84, - "target": [ - 0, - -5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.36, - "target": [ - 0, - 15, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.56, - "target": [ - 0, - 3.9, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.16, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.96, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "spinnything_control", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.88, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.84, - "target": [ - 1.43, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.28, - "target": [ - 8, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.92, - "target": [ - -0.32, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.04, - "target": [ - 0.74, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone138", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.08, - "target": [ - 7.5, - 1.81, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.04, - "target": [ - 0, - 12.7, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.88, - "target": [ - 0, - 11.2, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.16, - "target": [ - -2.5, - -7.3, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.44, - "target": [ - 0, - -0.27, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone216", - "target": "scale", - "keyframes": [ - { - "timestamp": 1.16, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.48, - "target": [ - 1.2, - 1.2, - 1.2 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.52, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone217", - "target": "scale", - "keyframes": [ - { - "timestamp": 1.56, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.92, - "target": [ - 1.2, - 1.2, - 1.2 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.56, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone218", - "target": "scale", - "keyframes": [ - { - "timestamp": 1.96, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.32, - "target": [ - 1.2, - 1.2, - 1.2 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone219", - "target": "scale", - "keyframes": [ - { - "timestamp": 2.4, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.76, - "target": [ - 1.25, - 1.25, - 1.25 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.4, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone220", - "target": "scale", - "keyframes": [ - { - "timestamp": 2.84, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.4, - "target": [ - 1.15, - 1.15, - 1.15 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.84, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone221", - "target": "scale", - "keyframes": [ - { - "timestamp": 3.24, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.44, - "target": [ - 1.2, - 1.2, - 1.2 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.88, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.44, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.64, - "target": [ - 1.2, - 1.2, - 1.2 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.08, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone222", - "target": "scale", - "keyframes": [ - { - "timestamp": 3.76, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.96, - "target": [ - 1.2, - 1.2, - 1.2 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.4, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.96, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.16, - "target": [ - 1.2, - 1.2, - 1.2 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone223", - "target": "scale", - "keyframes": [ - { - "timestamp": 3.52, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.72, - "target": [ - 1.2, - 1.2, - 1.2 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.12, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.72, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.92, - "target": [ - 1.2, - 1.2, - 1.2 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.48, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone224", - "target": "scale", - "keyframes": [ - { - "timestamp": 3.84, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.04, - "target": [ - 1.2, - 1.2, - 1.2 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.48, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.08, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.28, - "target": [ - 1.2, - 1.2, - 1.2 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.72, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone225", - "target": "rotation", - "keyframes": [ - { - "timestamp": 3.16, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.36, - "target": [ - 0, - 0, - 77.5 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.64, - "target": [ - 0, - 0, - 17.5 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.68, - "target": [ - 0, - 0, - 52.5 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5, - "target": [ - 0, - 0, - -10 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.96, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone226", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - -360 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone230", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1, - "target": [ - 1.05, - 1.05, - 1.05 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3, - "target": [ - 1.05, - 1.05, - 1.05 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5, - "target": [ - 1.05, - 1.05, - 1.05 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone231", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1, - "target": [ - 1.065, - 1.065, - 1.065 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3, - "target": [ - 1.065, - 1.065, - 1.065 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5, - "target": [ - 1.065, - 1.065, - 1.065 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone232", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.52, - "target": [ - 1.065, - 1.065, - 1.065 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.52, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.52, - "target": [ - 1.065, - 1.065, - 1.065 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.52, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.52, - "target": [ - 1.065, - 1.065, - 1.065 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone233", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1, - "target": [ - 0, - -35, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 0, - 42.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.48, - "target": [ - 0, - 45, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.64, - "target": [ - 0, - -13, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3, - "target": [ - 0, - 3, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.64, - "target": [ - 0, - -11, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.32, - "target": [ - 0, - 27, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5, - "target": [ - 0, - -28, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone234", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1, - "target": [ - 0, - 25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.96, - "target": [ - 0, - -19.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.4, - "target": [ - 0, - -25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.64, - "target": [ - 0, - -13, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.16, - "target": [ - 0, - -19, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.64, - "target": [ - 0, - 11, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.32, - "target": [ - 0, - -8, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.96, - "target": [ - 0, - 8, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone235", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.04, - "target": [ - 0, - -13, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.76, - "target": [ - 0, - 12.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.12, - "target": [ - 0, - 16, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.48, - "target": [ - 0, - -12, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3, - "target": [ - 0, - 3, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.64, - "target": [ - 0, - -11, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.36, - "target": [ - 0, - 12, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.68, - "target": [ - 0, - -2.68, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.44, - "target": [ - 0, - -12, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone236", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -15, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.56, - "target": [ - 0, - -44, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.76, - "target": [ - 0, - -60.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.32, - "target": [ - 0, - -35, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.6, - "target": [ - 0, - -57, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.96, - "target": [ - 0, - -49, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.68, - "target": [ - 0, - -60, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.24, - "target": [ - 0, - -48, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.92, - "target": [ - 0, - -53, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.96, - "target": [ - 0, - -15, - 0 - ], - "interpolation": "catmullrom" - } - ] - } - ], - "loop": true -} \ No newline at end of file diff --git a/common/src/main/resources/assets/tardis_refined/animations/console/factory/crash.json b/common/src/main/resources/assets/tardis_refined/animations/console/factory/crash.json deleted file mode 100644 index 214b06f42..000000000 --- a/common/src/main/resources/assets/tardis_refined/animations/console/factory/crash.json +++ /dev/null @@ -1,4723 +0,0 @@ -{ - "length": 3, - "looping" : true, - "animations": [ - { - "bone": "rotorhead", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.3333333333333333, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.5, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1, - "target": [ - 0, - -2.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.1666666666666667, - "target": [ - 0, - -2.5, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.75, - "target": [ - 0, - -4, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.9166666666666667, - "target": [ - 0, - -4, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone227", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.3333333333333333, - "target": [ - 0, - -60, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.5, - "target": [ - 0, - -70, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1, - "target": [ - 0, - -132.5, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.1666666666666667, - "target": [ - 0, - -140, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.75, - "target": [ - 0, - -217.5, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.9166666666666667, - "target": [ - 0, - -230, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3, - "target": [ - 0, - -360, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone217", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.4166666666666667, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.75, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.3333333333333335, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.625, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone218", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.4166666666666667, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.75, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.3333333333333335, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone219", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.4166666666666667, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.75, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.625, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone226", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.20833333333333334, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.375, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.7083333333333334, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.875, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.2083333333333333, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.375, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.7083333333333333, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.875, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.2083333333333335, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.375, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.7083333333333335, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.875, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone170", - "target": "position", - "keyframes": [ - { - "timestamp": 0.08333333333333333, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.16666666666666666, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.375, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.6666666666666666, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.8333333333333334, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.9583333333333334, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.0833333333333333, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.25, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.4166666666666667, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.5833333333333333, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.9166666666666667, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.0833333333333335, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.25, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.4583333333333335, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.6666666666666665, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.8333333333333335, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.9166666666666665, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone172", - "target": "position", - "keyframes": [ - { - "timestamp": 0.041666666666666664, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.125, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.375, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.5833333333333334, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.8333333333333334, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.0416666666666667, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.1666666666666667, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.25, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.4583333333333333, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.6666666666666667, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.875, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.0833333333333335, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.25, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.625, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.8333333333333335, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.9583333333333335, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone173", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.20833333333333334, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.375, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.7083333333333334, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.875, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.2083333333333333, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.375, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.7083333333333333, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.875, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.2083333333333335, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.375, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.7083333333333335, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.875, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone193", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.16666666666666666, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.3333333333333333, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.6666666666666666, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.8333333333333334, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.1666666666666667, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.3333333333333333, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.6666666666666667, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.8333333333333333, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.1666666666666665, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.3333333333333335, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.6666666666666665, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.8333333333333335, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone194", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.16666666666666666, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.3333333333333333, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.5, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.6666666666666666, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.8333333333333334, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.1666666666666667, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.3333333333333333, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.5, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.6666666666666667, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.8333333333333333, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.1666666666666665, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.3333333333333335, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.5, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.6666666666666665, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.8333333333333335, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone204", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.16666666666666666, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.3333333333333333, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.5, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.6666666666666666, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.8333333333333334, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.1666666666666667, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.3333333333333333, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.5, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.6666666666666667, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.8333333333333333, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.1666666666666665, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.3333333333333335, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.5, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.6666666666666665, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.8333333333333335, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone205", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.16666666666666666, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.3333333333333333, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.6666666666666666, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.8333333333333334, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.1666666666666667, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.3333333333333333, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.6666666666666667, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.8333333333333333, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.1666666666666665, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.3333333333333335, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.6666666666666665, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.8333333333333335, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone210", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.16666666666666666, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.3333333333333333, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.5, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.6666666666666666, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.8333333333333334, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.1666666666666667, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.3333333333333333, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.5, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.6666666666666667, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.8333333333333333, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.1666666666666665, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.3333333333333335, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.5, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.6666666666666665, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.8333333333333335, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone211", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.16666666666666666, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.3333333333333333, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.5, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.6666666666666666, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.8333333333333334, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.1666666666666667, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.3333333333333333, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.5, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.6666666666666667, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.8333333333333333, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.1666666666666665, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.3333333333333335, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.5, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.6666666666666665, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.8333333333333335, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone220", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.20833333333333334, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.375, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.5, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.7083333333333334, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.875, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.2083333333333333, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.375, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.5, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.7083333333333333, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.875, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.2083333333333335, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.375, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.5, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.7083333333333335, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.875, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone221", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.08333333333333333, - "target": [ - 0, - 0.2, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.20833333333333334, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.4166666666666667, - "target": [ - 0, - 0.2, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.7083333333333334, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.8333333333333334, - "target": [ - 0, - 0.2, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.1666666666666667, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.2916666666666667, - "target": [ - 0, - 0.2, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.75, - "target": [ - 0, - 0.2, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.25, - "target": [ - 0, - 0.2, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.375, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.5416666666666665, - "target": [ - 0, - 0.2, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.7083333333333335, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.875, - "target": [ - 0, - 0.2, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone192", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.08333333333333333, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.3333333333333333, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.6666666666666666, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.9166666666666666, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.0416666666666667, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.1666666666666667, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.2916666666666667, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.7083333333333333, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.875, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.0833333333333335, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.2916666666666665, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.625, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.7916666666666665, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.9583333333333335, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone168", - "target": "position", - "keyframes": [ - { - "timestamp": 0.08333333333333333, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.16666666666666666, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.375, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.7083333333333334, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.875, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.0416666666666667, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.2083333333333333, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.375, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.5833333333333333, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.75, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.0416666666666665, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.2083333333333335, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.3333333333333335, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.5, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.7083333333333335, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.8333333333333335, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.9166666666666665, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone222", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.20833333333333334, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.375, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.7083333333333334, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.875, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.2083333333333333, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.375, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.7083333333333333, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.875, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.2083333333333335, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.375, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.7083333333333335, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.875, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone188", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.20833333333333334, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.625, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.9166666666666666, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.0833333333333333, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.3333333333333333, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.5833333333333333, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.9166666666666667, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.0833333333333335, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.25, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.5416666666666665, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.625, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.75, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.875, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone186", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.08333333333333333, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.20833333333333334, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.3333333333333333, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.4583333333333333, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.5416666666666666, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.6666666666666666, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.7916666666666666, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.0833333333333333, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.2083333333333333, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.3333333333333333, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.4583333333333333, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.5416666666666667, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.6666666666666667, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.7916666666666667, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.9166666666666667, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.125, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.25, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.3333333333333335, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.4166666666666665, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.5416666666666665, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.6666666666666665, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone223", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.20833333333333334, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.375, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.7083333333333334, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.875, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.2083333333333333, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.375, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.7083333333333333, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.875, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.2083333333333335, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.375, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.7083333333333335, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.875, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone228", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.125, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.2916666666666667, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.4166666666666667, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.7083333333333334, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.9166666666666666, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.1666666666666667, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.2916666666666667, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.4166666666666667, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.5416666666666667, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.75, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.8333333333333333, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.9583333333333333, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.1666666666666665, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.4166666666666665, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.5833333333333335, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.75, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.875, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone181", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.125, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.2916666666666667, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.4166666666666667, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.7083333333333334, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.9166666666666666, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.1666666666666667, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.2916666666666667, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.4166666666666667, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.5416666666666667, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.75, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.8333333333333333, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.9583333333333333, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.1666666666666665, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.4166666666666665, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.5833333333333335, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.75, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.875, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone182", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.16666666666666666, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.3333333333333333, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.5, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.6666666666666666, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.8333333333333334, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.1666666666666667, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.3333333333333333, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.5, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.6666666666666667, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.8333333333333333, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.1666666666666665, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.3333333333333335, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.5, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.6666666666666665, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.8333333333333335, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone224", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.20833333333333334, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.375, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.5, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.7083333333333334, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.875, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.2083333333333333, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.375, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.5, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.7083333333333333, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.875, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.2083333333333335, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.375, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.5, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.7083333333333335, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.875, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone178", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.20833333333333334, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.625, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.9166666666666666, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.0833333333333333, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.3333333333333333, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.5833333333333333, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.9166666666666667, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.0833333333333335, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.25, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.5416666666666665, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.625, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.75, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.875, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "dialspin", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -57.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.5, - "target": [ - 0, - 40, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1, - "target": [ - 0, - -35, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.5, - "target": [ - 0, - 55, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.7083333333333333, - "target": [ - 0, - -57.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.1666666666666665, - "target": [ - 0, - 65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.625, - "target": [ - 0, - -2.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3, - "target": [ - 0, - -57.5, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "dialspin2", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -57.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.5, - "target": [ - 0, - 40, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1, - "target": [ - 0, - -35, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.5, - "target": [ - 0, - 55, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.7083333333333333, - "target": [ - 0, - -57.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.1666666666666665, - "target": [ - 0, - 65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.625, - "target": [ - 0, - -2.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3, - "target": [ - 0, - -57.5, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone225", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.20833333333333334, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.375, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.7083333333333334, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.875, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.2083333333333333, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.375, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.7083333333333333, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.875, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.2083333333333335, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.375, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.7083333333333335, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.875, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "dialspin3", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -62.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.4583333333333333, - "target": [ - 0, - 62.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.75, - "target": [ - 0, - -62.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.125, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.3333333333333333, - "target": [ - 0, - -62.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.6666666666666667, - "target": [ - 0, - 35, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 0, - -62.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.2083333333333335, - "target": [ - 0, - 60, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.5416666666666665, - "target": [ - 0, - -62.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.75, - "target": [ - 0, - 20, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.9166666666666665, - "target": [ - 0, - -62.5, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "dialspin4", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -62.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.2916666666666667, - "target": [ - 0, - 62.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.5416666666666666, - "target": [ - 0, - -62.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.7916666666666666, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.2083333333333333, - "target": [ - 0, - -62.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.4583333333333333, - "target": [ - 0, - 35, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.75, - "target": [ - 0, - -62.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.125, - "target": [ - 0, - 60, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.375, - "target": [ - 0, - -62.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.625, - "target": [ - 0, - 20, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.9166666666666665, - "target": [ - 0, - -62.5, - 0 - ], - "interpolation": "catmullrom" - } - ] - } - ], - "loop": true -} \ No newline at end of file diff --git a/common/src/main/resources/assets/tardis_refined/animations/console/factory/flight.json b/common/src/main/resources/assets/tardis_refined/animations/console/factory/flight.json deleted file mode 100644 index cf9de9d04..000000000 --- a/common/src/main/resources/assets/tardis_refined/animations/console/factory/flight.json +++ /dev/null @@ -1,7702 +0,0 @@ -{ - "length": 16, - "looping" : true, - "animations": [ - { - "bone": "rotorhead", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0.30000000000000004, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 0, - -4.790000000000001, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - -4.790000000000001, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - -4.790000000000001, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 12, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 14, - "target": [ - 0, - -4.790000000000001, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 16, - "target": [ - 0, - 0.30000000000000004, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone227", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 16, - "target": [ - 0, - -720, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone217", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.75, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.5416666666666667, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.3333333333333335, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3.0833333333333335, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3.8333333333333335, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 4.625, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 5.416666666666667, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 6.166666666666667, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 6.916666666666667, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 7.708333333333333, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 8.5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 9.25, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 10, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 10.791666666666666, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 11.541666666666666, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 12.333333333333334, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 13.083333333333334, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 13.875, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 14.625, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 15.375, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone218", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.75, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.5416666666666667, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.3333333333333335, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3.0833333333333335, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3.8333333333333335, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 4.625, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 5.416666666666667, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 6.166666666666667, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 6.916666666666667, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 7.708333333333333, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 8.5, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 9.25, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 10, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 10.791666666666666, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 11.541666666666666, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 12.333333333333334, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 13.083333333333334, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 13.875, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 14.625, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 15.375, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone219", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.75, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.5416666666666667, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.3333333333333335, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3.0833333333333335, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3.8333333333333335, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 4.625, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 5.416666666666667, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 6.166666666666667, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 6.916666666666667, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 7.708333333333333, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 8.5, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 9.25, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 10, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 10.791666666666666, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 11.541666666666666, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 12.333333333333334, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 13.083333333333334, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 13.875, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 14.625, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 15.375, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone226", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.3333333333333333, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.6666666666666666, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.3333333333333333, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.6666666666666667, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.2916666666666665, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.9166666666666665, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3.125, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3.4166666666666665, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3.7916666666666665, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 4.291666666666667, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 4.791666666666667, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 5.333333333333333, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 5.75, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 6.083333333333333, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 6.791666666666667, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 7.25, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 7.416666666666667, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 7.833333333333333, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 8.208333333333334, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 8.833333333333334, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 9.75, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 10.25, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 10.416666666666666, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 10.708333333333334, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 11.041666666666666, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 11.333333333333334, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 11.75, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 12.125, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 12.708333333333334, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 13.333333333333334, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 13.666666666666666, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 14.166666666666666, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 14.333333333333334, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 14.625, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 15.416666666666666, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 15.75, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone172", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.3333333333333333, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.9166666666666666, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.5, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.1666666666666665, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.7916666666666665, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3.5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3.7083333333333335, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 4.333333333333333, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 4.875, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 5.5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 6.041666666666667, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 6.875, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 7.625, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 8.5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 9.083333333333334, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 9.875, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 10.708333333333334, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 11.125, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 11.625, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 12.416666666666666, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 13.041666666666666, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 13.333333333333334, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 13.75, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 14.583333333333334, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 15.208333333333334, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 15.833333333333334, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone173", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.5416666666666666, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.125, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.5833333333333335, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3.375, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 4.208333333333333, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 4.666666666666667, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 5.416666666666667, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 6.083333333333333, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 6.791666666666667, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 7.583333333333333, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 8.291666666666666, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 9.291666666666666, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 10.208333333333334, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 11.125, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 11.333333333333334, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 11.875, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 13.125, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 13.833333333333334, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 14.625, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 15.458333333333334, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone193", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.4583333333333333, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.875, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.3333333333333333, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.7916666666666667, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.25, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.6666666666666665, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3.125, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3.5833333333333335, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 4, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 4.458333333333333, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 4.916666666666667, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 5.375, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 5.791666666666667, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 6.25, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 6.708333333333333, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 7.166666666666667, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 7.583333333333333, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 8.041666666666666, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 8.5, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 8.916666666666666, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 9.375, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 9.833333333333334, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 10.291666666666666, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 10.708333333333334, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 11.166666666666666, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 11.625, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 12.041666666666666, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 12.5, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 12.958333333333334, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 13.416666666666666, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 13.833333333333334, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 14.291666666666666, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 14.75, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 15.166666666666666, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 15.625, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 16, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone194", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.4583333333333333, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.875, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.3333333333333333, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.7916666666666667, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.25, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.6666666666666665, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3.125, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3.5833333333333335, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 4, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 4.458333333333333, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 4.916666666666667, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 5.375, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 5.791666666666667, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 6.25, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 6.708333333333333, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 7.166666666666667, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 7.583333333333333, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 8.041666666666666, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 8.5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 8.916666666666666, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 9.375, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 9.833333333333334, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 10.291666666666666, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 10.708333333333334, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 11.166666666666666, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 11.625, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 12.041666666666666, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 12.5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 12.958333333333334, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 13.416666666666666, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 13.833333333333334, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 14.291666666666666, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 14.75, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 15.166666666666666, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 15.625, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 16, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone204", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.4583333333333333, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.875, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.3333333333333333, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.7916666666666667, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.25, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.6666666666666665, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3.125, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3.5833333333333335, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 4.458333333333333, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 4.916666666666667, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 5.375, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 5.791666666666667, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 6.25, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 6.708333333333333, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 7.166666666666667, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 7.583333333333333, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 8.041666666666666, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 8.5, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 8.916666666666666, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 9.375, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 9.833333333333334, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 10.291666666666666, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 10.708333333333334, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 11.166666666666666, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 11.625, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 12.041666666666666, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 12.5, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 12.958333333333334, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 13.416666666666666, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 13.833333333333334, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 14.291666666666666, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 14.75, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 15.166666666666666, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 15.625, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 16, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone205", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.4583333333333333, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.875, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.3333333333333333, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.7916666666666667, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.25, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.6666666666666665, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3.125, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3.5833333333333335, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 4.458333333333333, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 4.916666666666667, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 5.375, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 5.791666666666667, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 6.25, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 6.708333333333333, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 7.166666666666667, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 7.583333333333333, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 8.041666666666666, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 8.5, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 8.916666666666666, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 9.375, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 9.833333333333334, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 10.291666666666666, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 10.708333333333334, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 11.166666666666666, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 11.625, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 12.041666666666666, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 12.5, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 12.958333333333334, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 13.416666666666666, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 13.833333333333334, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 14.291666666666666, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 14.75, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 15.166666666666666, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 15.625, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 16, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone210", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.4583333333333333, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.875, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.3333333333333333, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.7916666666666667, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.25, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.6666666666666665, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3.125, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3.5833333333333335, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 4, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 4.458333333333333, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 4.916666666666667, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 5.375, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 5.791666666666667, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 6.25, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 6.708333333333333, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 7.166666666666667, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 7.583333333333333, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 8.041666666666666, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 8.5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 8.916666666666666, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 9.375, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 9.833333333333334, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 10.291666666666666, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 10.708333333333334, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 11.166666666666666, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 11.625, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 12.041666666666666, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 12.5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 12.958333333333334, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 13.416666666666666, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 13.833333333333334, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 14.291666666666666, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 14.75, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 15.166666666666666, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 15.625, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 16, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone211", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.4583333333333333, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.875, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.3333333333333333, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.7916666666666667, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.25, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.6666666666666665, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3.125, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3.5833333333333335, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 4, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 4.458333333333333, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 4.916666666666667, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 5.375, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 5.791666666666667, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 6.25, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 6.708333333333333, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 7.166666666666667, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 7.583333333333333, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 8.041666666666666, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 8.5, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 8.916666666666666, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 9.375, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 9.833333333333334, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 10.291666666666666, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 10.708333333333334, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 11.166666666666666, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 11.625, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 12.041666666666666, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 12.5, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 12.958333333333334, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 13.416666666666666, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 13.833333333333334, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 14.291666666666666, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 14.75, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 15.166666666666666, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 15.625, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 16, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone220", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.16666666666666666, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.7916666666666666, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.5833333333333333, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.2083333333333335, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.6666666666666665, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3.2916666666666665, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 4.708333333333333, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 5.416666666666667, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 5.666666666666667, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 6.291666666666667, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 6.958333333333333, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 7.583333333333333, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 8.208333333333334, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 8.541666666666666, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 9.041666666666666, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 9.708333333333334, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 10.291666666666666, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 11.041666666666666, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 11.208333333333334, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 11.708333333333334, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 12.291666666666666, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 12.958333333333334, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 13.625, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 13.75, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 14.291666666666666, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 14.875, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 15.416666666666666, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 15.791666666666666, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 15.916666666666666, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone221", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.16666666666666666, - "target": [ - 0, - 0.2, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.7916666666666666, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.5833333333333333, - "target": [ - 0, - 0.2, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.2083333333333335, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.6666666666666665, - "target": [ - 0, - 0.2, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3.2916666666666665, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 4, - "target": [ - 0, - 0.2, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 4.708333333333333, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 5.416666666666667, - "target": [ - 0, - 0.2, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 5.666666666666667, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 6.291666666666667, - "target": [ - 0, - 0.2, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 6.958333333333333, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 7.583333333333333, - "target": [ - 0, - 0.2, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 8.208333333333334, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 8.541666666666666, - "target": [ - 0, - 0.2, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 9.041666666666666, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 9.708333333333334, - "target": [ - 0, - 0.2, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 10.291666666666666, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 11.041666666666666, - "target": [ - 0, - 0.2, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 11.208333333333334, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 11.708333333333334, - "target": [ - 0, - 0.2, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 12.291666666666666, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 12.958333333333334, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 13.625, - "target": [ - 0, - 0.2, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 13.75, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 14.291666666666666, - "target": [ - 0, - 0.2, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 14.875, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 15.416666666666666, - "target": [ - 0, - 0.2, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 15.791666666666666, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 15.916666666666666, - "target": [ - 0, - 0.2, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone192", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.375, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.875, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.5, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.2083333333333335, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.7916666666666665, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3.0833333333333335, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3.5833333333333335, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 4.166666666666667, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 4.75, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 5.375, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 6.166666666666667, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 7, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 7.666666666666667, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 7.958333333333333, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 8.458333333333334, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 9.125, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 9.75, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 10.541666666666666, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 11.166666666666666, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 11.791666666666666, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 12.5, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 12.708333333333334, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 13.291666666666666, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 14, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 14.5, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 15.041666666666666, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 15.666666666666666, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone168", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.20833333333333334, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.9166666666666666, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.9166666666666667, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.9166666666666665, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3.8333333333333335, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 4.75, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 5.791666666666667, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 6.541666666666667, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 6.875, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 7.875, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 8.875, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 9.833333333333334, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 10.583333333333334, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 11.583333333333334, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 12.375, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 12.75, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 13.25, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 13.916666666666666, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 14.541666666666666, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 15.375, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 15.833333333333334, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone222", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.3333333333333333, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.2083333333333333, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.5416666666666667, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.9583333333333333, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.5416666666666665, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3.3333333333333335, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 4.083333333333333, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 4.916666666666667, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 5.583333333333333, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 6.083333333333333, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 6.791666666666667, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 7.25, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 7.416666666666667, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 7.833333333333333, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 8.208333333333334, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 8.833333333333334, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 9.75, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 10.25, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 10.541666666666666, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 11.041666666666666, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 11.625, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 12.125, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 12.833333333333334, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 13.5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 14.166666666666666, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 14.333333333333334, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 14.625, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 15.416666666666666, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 15.75, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone188", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.4583333333333333, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.9166666666666666, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.125, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.7916666666666665, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3.5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3.875, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 4.5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 5.041666666666667, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 5.625, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 6.291666666666667, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 6.875, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 7.708333333333333, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 8.458333333333334, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 9.25, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 9.416666666666666, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 9.875, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 10.875, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 11.5, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 12.125, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 12.833333333333334, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 12.875, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 13.333333333333334, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 13.791666666666666, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 15, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone186", - "target": "position", - "keyframes": [ - { - "timestamp": 0.08333333333333333, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.625, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.2083333333333333, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.6666666666666665, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3.4583333333333335, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 4.291666666666667, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 4.75, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 5.5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 6.166666666666667, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 6.875, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 7.666666666666667, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 8.375, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 9.375, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 10.291666666666666, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 11.208333333333334, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 11.416666666666666, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 11.958333333333334, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 13.208333333333334, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 13.916666666666666, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 14.708333333333334, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 15.541666666666666, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone223", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.4166666666666667, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.8333333333333334, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.7083333333333333, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.125, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.9166666666666665, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3.75, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 4, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 4.375, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 4.833333333333333, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 5.5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 6.125, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 6.791666666666667, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 7.25, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 7.416666666666667, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 7.833333333333333, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 8.208333333333334, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 8.833333333333334, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 9.75, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 10.25, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 10.458333333333334, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 10.833333333333334, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 11.25, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 11.625, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 12.166666666666666, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 12.625, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 13.375, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 14.166666666666666, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 14.583333333333334, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 15.208333333333334, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 15.416666666666666, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 15.791666666666666, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone182", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.3333333333333333, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.9166666666666666, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.5, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.1666666666666665, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.7916666666666665, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3.5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3.7083333333333335, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 4.333333333333333, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 4.875, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 5.5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 6.041666666666667, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 6.875, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 7.625, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 8.5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 9.083333333333334, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 9.875, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 10.708333333333334, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 11.125, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 11.625, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 12.416666666666666, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 13.041666666666666, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 13.333333333333334, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 13.75, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 14.583333333333334, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 15.208333333333334, - "target": [ - 0, - 0.10000000000000003, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 15.833333333333334, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone224", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.5833333333333334, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.0833333333333333, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.5833333333333333, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.7083333333333335, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3.4583333333333335, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3.7083333333333335, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 4.083333333333333, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 4.5, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 5.125, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 5.708333333333333, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 6.333333333333333, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 6.833333333333333, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 7.25, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 8.083333333333334, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 8.625, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 8.833333333333334, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 9.333333333333334, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 9.75, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 10.5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 11.583333333333334, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 12.208333333333334, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 12.416666666666666, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 12.75, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 13.125, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 13.5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 14, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 14.416666666666666, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 15.125, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 15.875, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone178", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.20833333333333334, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.9166666666666666, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.9166666666666667, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.9166666666666665, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3.8333333333333335, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 4.75, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 5.791666666666667, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 6.541666666666667, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 6.875, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 7.875, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 8.875, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 9.833333333333334, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 10.583333333333334, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 11.583333333333334, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 12.375, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 12.75, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 13.25, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 13.916666666666666, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 14.541666666666666, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 15.375, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 15.833333333333334, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "dialspin", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.5416666666666666, - "target": [ - 0, - -50, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.2083333333333333, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.7916666666666667, - "target": [ - 0, - -45, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.6666666666666665, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.5, - "target": [ - 0, - -45, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.8333333333333335, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.208333333333333, - "target": [ - 0, - -60, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.416666666666667, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.75, - "target": [ - 0, - -50, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.208333333333333, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.666666666666667, - "target": [ - 0, - -45, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.125, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.625, - "target": [ - 0, - -40, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.041666666666667, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.625, - "target": [ - 0, - -50, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.25, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.875, - "target": [ - 0, - -60, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9.333333333333334, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10.166666666666666, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10.625, - "target": [ - 0, - -40, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 11.333333333333334, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 11.833333333333334, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 12.5, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 13, - "target": [ - 0, - -25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 13.625, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 14.083333333333334, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 14.791666666666666, - "target": [ - 0, - -25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 15.291666666666666, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 15.833333333333334, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "dialspin2", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.5416666666666666, - "target": [ - 0, - -50, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.2083333333333333, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.7916666666666667, - "target": [ - 0, - -45, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.6666666666666665, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.5, - "target": [ - 0, - -45, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.8333333333333335, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.208333333333333, - "target": [ - 0, - -60, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.416666666666667, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.75, - "target": [ - 0, - -50, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.208333333333333, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.666666666666667, - "target": [ - 0, - -45, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.125, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.625, - "target": [ - 0, - -40, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.041666666666667, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.625, - "target": [ - 0, - -50, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.25, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.875, - "target": [ - 0, - -60, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9.333333333333334, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10.166666666666666, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10.625, - "target": [ - 0, - -40, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 11.333333333333334, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 11.833333333333334, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 12.5, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 13, - "target": [ - 0, - -25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 13.625, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 14.083333333333334, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 14.791666666666666, - "target": [ - 0, - -25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 15.291666666666666, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 15.833333333333334, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone225", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.20833333333333334, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.9166666666666666, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.9166666666666667, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.9166666666666665, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3.8333333333333335, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 4.75, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 5.791666666666667, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 6.541666666666667, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 6.875, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 7.875, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 8.875, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 9.833333333333334, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 10.583333333333334, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 11.583333333333334, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 12.375, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 12.75, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 13.25, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 13.916666666666666, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 14.541666666666666, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 15.375, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 15.833333333333334, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "dialspin3", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.2916666666666667, - "target": [ - 0, - -50, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.6666666666666666, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1, - "target": [ - 0, - -45, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.5, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.0416666666666665, - "target": [ - 0, - -40, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.25, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.7916666666666665, - "target": [ - 0, - -50, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.0833333333333335, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.5, - "target": [ - 0, - -45, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.8333333333333335, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.166666666666667, - "target": [ - 0, - -60, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.333333333333333, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.625, - "target": [ - 0, - -50, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.416666666666667, - "target": [ - 0, - -45, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.791666666666667, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.208333333333333, - "target": [ - 0, - -40, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.583333333333333, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.083333333333333, - "target": [ - 0, - -50, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.625, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.125, - "target": [ - 0, - -60, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.541666666666666, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9.25, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9.625, - "target": [ - 0, - -40, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10.25, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10.666666666666666, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 11.25, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 11.666666666666666, - "target": [ - 0, - -25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 12.208333333333334, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 12.583333333333334, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 13.208333333333334, - "target": [ - 0, - -25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 13.625, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 14.083333333333334, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 14.375, - "target": [ - 0, - -25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 14.75, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 15.208333333333334, - "target": [ - 0, - -25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 15.666666666666666, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "dialspin4", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.3333333333333333, - "target": [ - 0, - -50, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.75, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.125, - "target": [ - 0, - -45, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.7083333333333333, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.2916666666666665, - "target": [ - 0, - -40, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.5416666666666665, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.1666666666666665, - "target": [ - 0, - -50, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.5, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.9583333333333335, - "target": [ - 0, - -45, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.333333333333333, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.708333333333333, - "target": [ - 0, - -60, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.916666666666667, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.208333333333333, - "target": [ - 0, - -50, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.666666666666667, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.125, - "target": [ - 0, - -45, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.541666666666667, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7, - "target": [ - 0, - -40, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.458333333333333, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - 0, - -50, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.625, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9.166666666666666, - "target": [ - 0, - -60, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9.666666666666666, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10.458333333333334, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10.875, - "target": [ - 0, - -40, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 11.583333333333334, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 12.041666666666666, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 12.708333333333334, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 13.166666666666666, - "target": [ - 0, - -25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 13.791666666666666, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 14.208333333333334, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 14.916666666666666, - "target": [ - 0, - -25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 15.416666666666666, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 15.916666666666666, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - } - ] - } - ], - "loop": true -} \ No newline at end of file diff --git a/common/src/main/resources/assets/tardis_refined/animations/console/factory/idle.json b/common/src/main/resources/assets/tardis_refined/animations/console/factory/idle.json deleted file mode 100644 index c25569763..000000000 --- a/common/src/main/resources/assets/tardis_refined/animations/console/factory/idle.json +++ /dev/null @@ -1,5584 +0,0 @@ -{ - "length": 32, - "looping" : true, - "animations": [ - { - "bone": "bone227", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 32, - "target": [ - 0, - -360, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone217", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.3333333333333333, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.7083333333333335, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 4.041666666666667, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 5.375, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 6.75, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 8.083333333333334, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 9.458333333333334, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 10.791666666666666, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 12.083333333333334, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 13.541666666666666, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 14.791666666666666, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 16, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 17.333333333333332, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 18.708333333333332, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 20.041666666666668, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 21.375, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 22.75, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 24.083333333333332, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 25.458333333333332, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 26.791666666666668, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 28.083333333333332, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 29.541666666666668, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 30.791666666666668, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone218", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.3333333333333333, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.7083333333333335, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 4.041666666666667, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 5.375, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 6.75, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 8.083333333333334, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 9.458333333333334, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 10.791666666666666, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 12.083333333333334, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 13.541666666666666, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 14.791666666666666, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 16, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 17.333333333333332, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 18.708333333333332, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 20.041666666666668, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 21.375, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 22.75, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 24.083333333333332, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 25.458333333333332, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 26.791666666666668, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 28.083333333333332, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 29.541666666666668, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 30.791666666666668, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone219", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.3333333333333333, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.7083333333333335, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 4.041666666666667, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 5.375, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 6.75, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 8.083333333333334, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 9.458333333333334, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 10.791666666666666, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 12.083333333333334, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 13.541666666666666, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 14.791666666666666, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 16, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 17.333333333333332, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 18.708333333333332, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 20.041666666666668, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 21.375, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 22.75, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 24.083333333333332, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 25.458333333333332, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 26.791666666666668, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 28.083333333333332, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 29.541666666666668, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 30.791666666666668, - "target": [ - 0, - -10, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone193", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.25, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 8, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 9.25, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 16, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 17.25, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 24, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 25.25, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 32, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone194", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.25, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.5, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 8, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 9.25, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 10.5, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 16, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 17.25, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 18.5, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 24, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 25.25, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 26.5, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone204", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3.75, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 8, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 10.5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 11.75, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 16, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 18.5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 19.75, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 24, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 26.5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 27.75, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone205", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3.75, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 5, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 8, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 11.75, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 13, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 16, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 19.75, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 21, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 24, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 27.75, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 29, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone210", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 6.25, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 8, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 13, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 14.25, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 16, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 21, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 22.25, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 24, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 29, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 30.25, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone211", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 6.25, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 7.5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 8, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 14.25, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 15.5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 16, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 22.25, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 23.5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 24, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 30.25, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 31.5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone220", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3.2083333333333335, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 6.166666666666667, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 9.208333333333334, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 12.791666666666666, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 15.291666666666666, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 16, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 19.208333333333332, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 22.166666666666668, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 25.208333333333332, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 28.791666666666668, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 31.291666666666668, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone221", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.0833333333333333, - "target": [ - 0, - 0.2, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.7083333333333335, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3.7083333333333335, - "target": [ - 0, - 0.2, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 5.875, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 8.583333333333334, - "target": [ - 0, - 0.2, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 11.208333333333334, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 13.041666666666666, - "target": [ - 0, - 0.2, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 14.958333333333334, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 16, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 17.083333333333332, - "target": [ - 0, - 0.2, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 18.708333333333332, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 19.708333333333332, - "target": [ - 0, - 0.2, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 21.875, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 24.583333333333332, - "target": [ - 0, - 0.2, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 27.208333333333332, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 29.041666666666668, - "target": [ - 0, - 0.2, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 30.958333333333332, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone192", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.125, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3.2916666666666665, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 4.208333333333333, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 5.958333333333333, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 6.875, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 9.166666666666666, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 10.958333333333334, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 13.75, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 15.583333333333334, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 16, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 17.125, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 19.291666666666668, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 20.208333333333332, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 21.958333333333332, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 22.875, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 25.166666666666668, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 26.958333333333332, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 29.75, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 31.583333333333332, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone168", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 8, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 16, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 24, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone222", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.5833333333333333, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 4.666666666666667, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 5.958333333333333, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 8.458333333333334, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 9.75, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 13, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 15.541666666666666, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 16, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 17.583333333333332, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 20.666666666666668, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 21.958333333333332, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 24.458333333333332, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 25.75, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 29, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 31.541666666666668, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone188", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3.9583333333333335, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 7.875, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 9.541666666666666, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 13.541666666666666, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 15.625, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 16, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 19.958333333333332, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 23.875, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 25.541666666666668, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 29.541666666666668, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 31.625, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone186", - "target": "position", - "keyframes": [ - { - "timestamp": 0.20833333333333334, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3.0833333333333335, - "target": [ - 0, - -2.7755575615628914e-17, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 5.625, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 8.125, - "target": [ - 0, - -2.7755575615628914e-17, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 11.041666666666666, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 13.583333333333334, - "target": [ - 0, - -2.7755575615628914e-17, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 16.208333333333332, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 19.083333333333332, - "target": [ - 0, - -2.7755575615628914e-17, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 21.625, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 24.125, - "target": [ - 0, - -2.7755575615628914e-17, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 27.041666666666668, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 29.583333333333332, - "target": [ - 0, - -2.7755575615628914e-17, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone182", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.125, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3.2916666666666665, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 4.208333333333333, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 5.958333333333333, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 6.875, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 9.166666666666666, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 10.958333333333334, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 13.75, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 15.583333333333334, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 16, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 17.125, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 19.291666666666668, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 20.208333333333332, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 21.958333333333332, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 22.875, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 25.166666666666668, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 26.958333333333332, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 29.75, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 31.583333333333332, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone224", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.4583333333333335, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 7.166666666666667, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 9.166666666666666, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 13.041666666666666, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 15, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 16, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 18.458333333333332, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 23.166666666666668, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 25.166666666666668, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 29.041666666666668, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 31, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone178", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 4.708333333333333, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 7.125, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 9.583333333333334, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 11.291666666666666, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 12.875, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 15.291666666666666, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 16, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 18.5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 20.708333333333332, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 23.125, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 25.583333333333332, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 27.291666666666668, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 28.875, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 31.291666666666668, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "dialspin", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.5416666666666666, - "target": [ - 0, - -50, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.2083333333333333, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.7916666666666667, - "target": [ - 0, - -45, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.6666666666666665, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.5, - "target": [ - 0, - -45, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.8333333333333335, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.208333333333333, - "target": [ - 0, - -60, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.416666666666667, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.75, - "target": [ - 0, - -50, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.208333333333333, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.666666666666667, - "target": [ - 0, - -45, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.125, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.625, - "target": [ - 0, - -40, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.041666666666667, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.625, - "target": [ - 0, - -50, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.25, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.875, - "target": [ - 0, - -60, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9.333333333333334, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10.166666666666666, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10.625, - "target": [ - 0, - -40, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 11.333333333333334, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 11.833333333333334, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 12.5, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 13, - "target": [ - 0, - -25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 13.625, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 14.083333333333334, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 14.791666666666666, - "target": [ - 0, - -25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 15.291666666666666, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 15.833333333333334, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 16, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 16.541666666666668, - "target": [ - 0, - -50, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 17.208333333333332, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 17.791666666666668, - "target": [ - 0, - -45, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 18.666666666666668, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 19.5, - "target": [ - 0, - -45, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 19.833333333333332, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 20.208333333333332, - "target": [ - 0, - -60, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 20.416666666666668, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 20.75, - "target": [ - 0, - -50, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 21.208333333333332, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 21.666666666666668, - "target": [ - 0, - -45, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 22.125, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 22.625, - "target": [ - 0, - -40, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 23.041666666666668, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 23.625, - "target": [ - 0, - -50, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 24.25, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 24.875, - "target": [ - 0, - -60, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 25.333333333333332, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 26.166666666666668, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 26.625, - "target": [ - 0, - -40, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 27.333333333333332, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 27.833333333333332, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 28.5, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 29, - "target": [ - 0, - -25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 29.625, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 30.083333333333332, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 30.791666666666668, - "target": [ - 0, - -25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 31.291666666666668, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 31.833333333333332, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "dialspin2", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.5416666666666666, - "target": [ - 0, - -50, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.2083333333333333, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.7916666666666667, - "target": [ - 0, - -45, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.6666666666666665, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.5, - "target": [ - 0, - -45, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.8333333333333335, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.208333333333333, - "target": [ - 0, - -60, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.416666666666667, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.75, - "target": [ - 0, - -50, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.208333333333333, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.666666666666667, - "target": [ - 0, - -45, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.125, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.625, - "target": [ - 0, - -40, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.041666666666667, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.625, - "target": [ - 0, - -50, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.25, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.875, - "target": [ - 0, - -60, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9.333333333333334, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10.166666666666666, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10.625, - "target": [ - 0, - -40, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 11.333333333333334, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 11.833333333333334, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 12.5, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 13, - "target": [ - 0, - -25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 13.625, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 14.083333333333334, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 14.791666666666666, - "target": [ - 0, - -25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 15.291666666666666, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 15.833333333333334, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 16, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 16.541666666666668, - "target": [ - 0, - -50, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 17.208333333333332, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 17.791666666666668, - "target": [ - 0, - -45, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 18.666666666666668, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 19.5, - "target": [ - 0, - -45, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 19.833333333333332, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 20.208333333333332, - "target": [ - 0, - -60, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 20.416666666666668, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 20.75, - "target": [ - 0, - -50, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 21.208333333333332, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 21.666666666666668, - "target": [ - 0, - -45, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 22.125, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 22.625, - "target": [ - 0, - -40, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 23.041666666666668, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 23.625, - "target": [ - 0, - -50, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 24.25, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 24.875, - "target": [ - 0, - -60, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 25.333333333333332, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 26.166666666666668, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 26.625, - "target": [ - 0, - -40, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 27.333333333333332, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 27.833333333333332, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 28.5, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 29, - "target": [ - 0, - -25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 29.625, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 30.083333333333332, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 30.791666666666668, - "target": [ - 0, - -25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 31.291666666666668, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 31.833333333333332, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone225", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.9166666666666667, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 4.416666666666667, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 7.416666666666667, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 10.083333333333334, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 11.625, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 13.75, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 15.583333333333334, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 16, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 17.916666666666668, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 20.416666666666668, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 23.416666666666668, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 26.083333333333332, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 27.625, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 29.75, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 31.583333333333332, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "dialspin3", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.2916666666666667, - "target": [ - 0, - -50, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.6666666666666666, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1, - "target": [ - 0, - -45, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.5, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.0416666666666665, - "target": [ - 0, - -40, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.25, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.7916666666666665, - "target": [ - 0, - -50, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.0833333333333335, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.5, - "target": [ - 0, - -45, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.8333333333333335, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.166666666666667, - "target": [ - 0, - -60, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.333333333333333, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.625, - "target": [ - 0, - -50, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.416666666666667, - "target": [ - 0, - -45, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.791666666666667, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.208333333333333, - "target": [ - 0, - -40, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.583333333333333, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.083333333333333, - "target": [ - 0, - -50, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.625, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.125, - "target": [ - 0, - -60, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.541666666666666, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9.25, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9.625, - "target": [ - 0, - -40, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10.25, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10.666666666666666, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 11.25, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 11.666666666666666, - "target": [ - 0, - -25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 12.208333333333334, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 12.583333333333334, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 13.208333333333334, - "target": [ - 0, - -25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 13.625, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 14.083333333333334, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 14.375, - "target": [ - 0, - -25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 14.75, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 15.208333333333334, - "target": [ - 0, - -25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 15.666666666666666, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 16, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 16.291666666666668, - "target": [ - 0, - -50, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 16.666666666666668, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 17, - "target": [ - 0, - -45, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 17.5, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 18.041666666666668, - "target": [ - 0, - -40, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 18.25, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 18.791666666666668, - "target": [ - 0, - -50, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 19.083333333333332, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 19.5, - "target": [ - 0, - -45, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 19.833333333333332, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 20.166666666666668, - "target": [ - 0, - -60, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 20.333333333333332, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 20.625, - "target": [ - 0, - -50, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 21, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 21.416666666666668, - "target": [ - 0, - -45, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 21.791666666666668, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 22.208333333333332, - "target": [ - 0, - -40, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 22.583333333333332, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 23.083333333333332, - "target": [ - 0, - -50, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 23.625, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 24.125, - "target": [ - 0, - -60, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 24.541666666666668, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 25.25, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 25.625, - "target": [ - 0, - -40, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 26.25, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 26.666666666666668, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 27.25, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 27.666666666666668, - "target": [ - 0, - -25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 28.208333333333332, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 28.583333333333332, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 29.208333333333332, - "target": [ - 0, - -25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 29.625, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 30.083333333333332, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 30.375, - "target": [ - 0, - -25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 30.75, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 31.208333333333332, - "target": [ - 0, - -25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 31.666666666666668, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "dialspin4", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.3333333333333333, - "target": [ - 0, - -50, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.75, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.125, - "target": [ - 0, - -45, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.7083333333333333, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.2916666666666665, - "target": [ - 0, - -40, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.5416666666666665, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.1666666666666665, - "target": [ - 0, - -50, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.5, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.9583333333333335, - "target": [ - 0, - -45, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.333333333333333, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.708333333333333, - "target": [ - 0, - -60, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.916666666666667, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.208333333333333, - "target": [ - 0, - -50, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.666666666666667, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.125, - "target": [ - 0, - -45, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.541666666666667, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7, - "target": [ - 0, - -40, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.458333333333333, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - 0, - -50, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.625, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9.166666666666666, - "target": [ - 0, - -60, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9.666666666666666, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10.458333333333334, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10.875, - "target": [ - 0, - -40, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 11.583333333333334, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 12.041666666666666, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 12.708333333333334, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 13.166666666666666, - "target": [ - 0, - -25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 13.791666666666666, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 14.208333333333334, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 14.916666666666666, - "target": [ - 0, - -25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 15.416666666666666, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 15.916666666666666, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 16, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 16.333333333333332, - "target": [ - 0, - -50, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 16.75, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 17.125, - "target": [ - 0, - -45, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 17.708333333333332, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 18.291666666666668, - "target": [ - 0, - -40, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 18.541666666666668, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 19.166666666666668, - "target": [ - 0, - -50, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 19.5, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 19.958333333333332, - "target": [ - 0, - -45, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 20.333333333333332, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 20.708333333333332, - "target": [ - 0, - -60, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 20.916666666666668, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 21.208333333333332, - "target": [ - 0, - -50, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 21.666666666666668, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 22.125, - "target": [ - 0, - -45, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 22.541666666666668, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 23, - "target": [ - 0, - -40, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 23.458333333333332, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 24, - "target": [ - 0, - -50, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 24.625, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 25.166666666666668, - "target": [ - 0, - -60, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 25.666666666666668, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 26.458333333333332, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 26.875, - "target": [ - 0, - -40, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 27.583333333333332, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 28.041666666666668, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 28.708333333333332, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 29.166666666666668, - "target": [ - 0, - -25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 29.791666666666668, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 30.208333333333332, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 30.916666666666668, - "target": [ - 0, - -25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 31.416666666666668, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 31.916666666666668, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone226", - "target": "position", - "keyframes": [ - { - "timestamp": 0.4166666666666667, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.8333333333333335, - "target": [ - 0, - -2.7755575615628914e-17, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 6.5, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 10.5, - "target": [ - 0, - -2.7755575615628914e-17, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 12.666666666666666, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 15.541666666666666, - "target": [ - 0, - -2.7755575615628914e-17, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 16.416666666666668, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 18.833333333333332, - "target": [ - 0, - -2.7755575615628914e-17, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 22.5, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 26.5, - "target": [ - 0, - -2.7755575615628914e-17, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 28.666666666666668, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 31.541666666666668, - "target": [ - 0, - -2.7755575615628914e-17, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone172", - "target": "position", - "keyframes": [ - { - "timestamp": 0.4166666666666667, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3.75, - "target": [ - 0, - -2.7755575615628914e-17, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 5.583333333333333, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 9.416666666666666, - "target": [ - 0, - -2.7755575615628914e-17, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 13.916666666666666, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 15.916666666666666, - "target": [ - 0, - -2.7755575615628914e-17, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 16.416666666666668, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 19.75, - "target": [ - 0, - -2.7755575615628914e-17, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 21.583333333333332, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 25.416666666666668, - "target": [ - 0, - -2.7755575615628914e-17, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 29.916666666666668, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 31.916666666666668, - "target": [ - 0, - -2.7755575615628914e-17, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone173", - "target": "position", - "keyframes": [ - { - "timestamp": 0.4166666666666667, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.9166666666666665, - "target": [ - 0, - -2.7755575615628914e-17, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 8.041666666666666, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 12.083333333333334, - "target": [ - 0, - -2.7755575615628914e-17, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 13.916666666666666, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 15.916666666666666, - "target": [ - 0, - -2.7755575615628914e-17, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 16.416666666666668, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 18.916666666666668, - "target": [ - 0, - -2.7755575615628914e-17, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 24.041666666666668, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 28.083333333333332, - "target": [ - 0, - -2.7755575615628914e-17, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 29.916666666666668, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 31.916666666666668, - "target": [ - 0, - -2.7755575615628914e-17, - 0 - ], - "interpolation": "step" - } - ] - } - ], - "loop": true -} \ No newline at end of file diff --git a/common/src/main/resources/assets/tardis_refined/animations/console/factory/power_off.json b/common/src/main/resources/assets/tardis_refined/animations/console/factory/power_off.json deleted file mode 100644 index 38e9dd05e..000000000 --- a/common/src/main/resources/assets/tardis_refined/animations/console/factory/power_off.json +++ /dev/null @@ -1,426 +0,0 @@ -{ - "length": 2, - "looping" : false, - "animations": [ - { - "bone": "rotorhead", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2, - "target": [ - 0, - -4, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone217", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.5, - "target": [ - 0, - -9, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone218", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1, - "target": [ - 0, - -9, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone219", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.5, - "target": [ - 0, - -8, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone193", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.5, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone194", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone204", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.5, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone205", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.5, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone210", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone211", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.5, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone228", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone181", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "dialspin", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.5, - "target": [ - 0, - 30, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "dialspin2", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.5, - "target": [ - 0, - 30, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "dialspin3", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.5, - "target": [ - 0, - 20, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "dialspin4", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.875, - "target": [ - 0, - 20, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - } - ] - } - ] -} \ No newline at end of file diff --git a/common/src/main/resources/assets/tardis_refined/animations/console/factory/power_on.json b/common/src/main/resources/assets/tardis_refined/animations/console/factory/power_on.json deleted file mode 100644 index cbef399f2..000000000 --- a/common/src/main/resources/assets/tardis_refined/animations/console/factory/power_on.json +++ /dev/null @@ -1,426 +0,0 @@ -{ - "length": 2, - "looping" : false, - "animations": [ - { - "bone": "rotorhead", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -4, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone217", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -8, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone218", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -8, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone219", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -8, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone193", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone194", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone204", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone205", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone210", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone211", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone228", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone181", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "dialspin", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.75, - "target": [ - 0, - 52.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "dialspin2", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.75, - "target": [ - 0, - 52.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "dialspin3", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.6666666666666666, - "target": [ - 0, - 52.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "dialspin4", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1, - "target": [ - 0, - 52.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - } - ] - } - ] -} \ No newline at end of file diff --git a/common/src/main/resources/assets/tardis_refined/animations/console/initiative/flight.json b/common/src/main/resources/assets/tardis_refined/animations/console/initiative/flight.json deleted file mode 100644 index a17098203..000000000 --- a/common/src/main/resources/assets/tardis_refined/animations/console/initiative/flight.json +++ /dev/null @@ -1,6193 +0,0 @@ -{ - "length": 10, - "looping" : true, - "animations": [ - { - "bone": "rotor_on", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 10, - "target": [ - 0, - 180, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone183", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.36, - "target": [ - 0, - -0.175, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.56, - "target": [ - 0, - 0.125, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.64, - "target": [ - 0, - -0.225, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.08, - "target": [ - 0, - 0.25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9.16, - "target": [ - 0, - -0.125, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone183", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.96, - "target": [ - 0, - -1.2, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.4, - "target": [ - 0, - 1.575, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.6, - "target": [ - 0, - -2.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone192", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 3.5, - 0, - 3.5 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.04, - "target": [ - 0.5, - 0, - -1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 5.5, - 0, - -3 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.08, - "target": [ - -2.5, - 0, - 2 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone192", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 1, - 1.1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 1, - 0.9, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 1, - 1.1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - 1, - 0.9, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone193", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 3.5, - 0, - 3.5 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.04, - "target": [ - 0.5, - 0, - -1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 5.5, - 0, - -3 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.08, - "target": [ - -2.5, - 0, - 2 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone193", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 1, - 1.1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 1, - 0.9, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 1, - 1.1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - 1, - 0.9, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone194", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 3.5, - 0, - 3.5 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.8, - "target": [ - 0.5, - 0, - -1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.64, - "target": [ - 5.5, - 0, - -3 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.28, - "target": [ - -2.5, - 0, - 2 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone194", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 1, - 1.1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.76, - "target": [ - 1, - 0.9, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.64, - "target": [ - 1, - 1.1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.2, - "target": [ - 1, - 0.9, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone195", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 1, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - -2, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 1, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - -2, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone195", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.96, - "target": [ - 1, - 1.1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 1, - 0.98, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.52, - "target": [ - 1, - 1.1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone197", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 1, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - -2, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 1, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - -2, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone197", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.96, - "target": [ - 1, - 1.1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 1, - 0.98, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.52, - "target": [ - 1, - 1.1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone196", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 1, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - -2, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 1, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - -2, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone196", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.96, - "target": [ - 1, - 1.1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 1, - 0.98, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.52, - "target": [ - 1, - 1.1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone200", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 6, - 0, - 2 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - -3, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 6, - 0, - -2 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - -3, - 0, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone199", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.2, - "target": [ - 6, - 0, - 2 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.12, - "target": [ - -3, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.88, - "target": [ - 6, - 0, - -2 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.64, - "target": [ - -3, - 0, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone201", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.36, - "target": [ - 0, - 0.175, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.56, - "target": [ - 0, - -0.125, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.64, - "target": [ - 0, - 0.225, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.08, - "target": [ - 0, - -0.25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9.16, - "target": [ - 0, - 0.125, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone201", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.96, - "target": [ - 0, - 1.2, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.4, - "target": [ - 0, - -1.575, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.6, - "target": [ - 0, - 2.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone203", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.44, - "target": [ - -0.13, - 0.25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.64, - "target": [ - 0.25, - -0.25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.2, - "target": [ - -0.175, - 0.25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.76, - "target": [ - 0, - 0.25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.48, - "target": [ - 0.25, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.4, - "target": [ - -0.01, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.12, - "target": [ - 0.25, - 0.3, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.72, - "target": [ - 0.1, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.64, - "target": [ - -0.5, - -0.25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9.6, - "target": [ - 0.125, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone203", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.92, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.48, - "target": [ - 1.1, - 1.1, - 1.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.96, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.16, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7, - "target": [ - 0.9, - 0.9, - 0.9 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9.44, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone202", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.4, - "target": [ - -0.15, - -0.175, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.92, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.64, - "target": [ - 0, - 1, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.2, - "target": [ - 0.25, - 0.25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.76, - "target": [ - 0, - 0.925, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.48, - "target": [ - -0.125, - 0.525, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.72, - "target": [ - 0.125, - 0.15, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 0, - 0.425, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.84, - "target": [ - -0.01, - 0.325, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.32, - "target": [ - -0.275, - 0.65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.24, - "target": [ - -0.025, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.96, - "target": [ - 0.275, - -0.55, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.48, - "target": [ - -0.225, - -0.15, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9.6, - "target": [ - 0, - 0.15, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone204", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.04, - "target": [ - 1, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.8, - "target": [ - -63.1, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.64, - "target": [ - -41, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.64, - "target": [ - -35.975, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.36, - "target": [ - -40.5, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.8, - "target": [ - -16.61, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.68, - "target": [ - -8, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9.4, - "target": [ - -3, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone207", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.04, - "target": [ - 0, - 0, - -0.05 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.96, - "target": [ - 0, - 0, - -0.05 - ], - "interpolation": "linear" - }, - { - "timestamp": 1, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.04, - "target": [ - 0, - 0, - -0.05 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.96, - "target": [ - 0, - 0, - -0.05 - ], - "interpolation": "linear" - }, - { - "timestamp": 3, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.04, - "target": [ - 0, - 0, - -0.05 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.96, - "target": [ - 0, - 0, - -0.05 - ], - "interpolation": "linear" - }, - { - "timestamp": 5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6.04, - "target": [ - 0, - 0, - -0.05 - ], - "interpolation": "linear" - }, - { - "timestamp": 6.96, - "target": [ - 0, - 0, - -0.05 - ], - "interpolation": "linear" - }, - { - "timestamp": 7, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8.04, - "target": [ - 0, - 0, - -0.05 - ], - "interpolation": "linear" - }, - { - "timestamp": 8.96, - "target": [ - 0, - 0, - -0.05 - ], - "interpolation": "linear" - }, - { - "timestamp": 9, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone208", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.52, - "target": [ - 0, - -8, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.52, - "target": [ - 0, - 8, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone198", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - -21.5, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone213", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.48, - "target": [ - 1, - 1.01, - 1.01 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.96, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.44, - "target": [ - 1, - 1.01, - 1.01 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone214", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -0.1, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone215", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -0.1, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone216", - "target": "position", - "keyframes": [ - { - "timestamp": 1, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.04, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.96, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6.04, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6.96, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 7, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8.56, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 9.48, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 9.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone217", - "target": "rotation", - "keyframes": [ - { - "timestamp": 1, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.04, - "target": [ - 60, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.96, - "target": [ - 60, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6.04, - "target": [ - 60, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6.96, - "target": [ - 60, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 7, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8.56, - "target": [ - 60, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 9.48, - "target": [ - 60, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 9.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone219", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.52, - "target": [ - 0.5, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.6, - "target": [ - -0.25, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.64, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.68, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.2, - "target": [ - 1.5, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.28, - "target": [ - 0.75, - 2, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 7.48, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 7.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.84, - "target": [ - -1, - 0.75, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - -0.25, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone219", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1.5, - 1.5, - 1.5 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.36, - "target": [ - 0.9429, - 0.9429, - 0.9429 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.64, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.68, - "target": [ - 1.6, - 1.6, - 1.6 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.48, - "target": [ - 0.9429, - 0.9429, - 0.9429 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.36, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 7.48, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 7.52, - "target": [ - 1.5, - 1.5, - 1.5 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.68, - "target": [ - 0.9429, - 0.9429, - 0.9429 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone220", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.52, - "target": [ - -0.5, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.6, - "target": [ - 0.25, - 0.25, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.96, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.52, - "target": [ - -0.5, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.72, - "target": [ - 0.25, - 0.25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.2, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 7.24, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.4, - "target": [ - -0.5, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9.84, - "target": [ - 0.25, - 0.25, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone220", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1.5, - 1.5, - 1.5 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.36, - "target": [ - 0.9429, - 0.9429, - 0.9429 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.8, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.96, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4, - "target": [ - 1.5, - 1.5, - 1.5 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.36, - "target": [ - 0.9429, - 0.9429, - 0.9429 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.8, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.2, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 7.24, - "target": [ - 1.65, - 1.65, - 1.65 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.24, - "target": [ - 0.9429, - 0.9429, - 0.9429 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone221", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.4, - "target": [ - -0.75, - 0.75, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.08, - "target": [ - 0.25, - 0.5, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.44, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.84, - "target": [ - 0.5, - 0.25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9.52, - "target": [ - -1.75, - 1, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone221", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1.5, - 1.5, - 1.5 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.12, - "target": [ - 0.9429, - 0.9429, - 0.9429 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.56, - "target": [ - 1.5, - 1.5, - 1.5 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.56, - "target": [ - 0.9429, - 0.9429, - 0.9429 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone222", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.32, - "target": [ - -0.1, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.2, - "target": [ - 0.1, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.84, - "target": [ - -0.1, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.72, - "target": [ - 0.1, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone222", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1, - "target": [ - 1, - 1.05, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3, - "target": [ - 1, - 0.95, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5, - "target": [ - 1, - 1.05, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7, - "target": [ - 1, - 0.98, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.4, - "target": [ - 1, - 1.0175, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone223", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1, - "target": [ - 1, - 1.1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3, - "target": [ - 1, - 0.95, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5, - "target": [ - 1, - 1.1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7, - "target": [ - 1, - 0.98, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.4, - "target": [ - 1, - 1.025, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone224", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - -0.5, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.76, - "target": [ - -0.75, - 1.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.08, - "target": [ - 0.25, - 0.5, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.44, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.84, - "target": [ - 0.5, - 0.25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9.52, - "target": [ - -1.75, - 0.5, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone224", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1.5, - 1.5, - 1.5 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.68, - "target": [ - 0.9429, - 0.9429, - 0.9429 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.92, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.56, - "target": [ - 1.5, - 1.5, - 1.5 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.36, - "target": [ - 0.9429, - 0.9429, - 0.9429 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone225", - "target": "position", - "keyframes": [ - { - "timestamp": 0.28, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.52, - "target": [ - 0.5, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.6, - "target": [ - -0.25, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.64, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.68, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.2, - "target": [ - 1.5, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.28, - "target": [ - 0.75, - 2, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 7.48, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 7.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.84, - "target": [ - -1, - 0.75, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - -0.25, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone225", - "target": "scale", - "keyframes": [ - { - "timestamp": 0.28, - "target": [ - 1.5, - 1.5, - 1.5 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.36, - "target": [ - 0.9429, - 0.9429, - 0.9429 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.64, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.68, - "target": [ - 1.6, - 1.6, - 1.6 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.48, - "target": [ - 0.9429, - 0.9429, - 0.9429 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.36, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 7.48, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 7.52, - "target": [ - 1.5, - 1.5, - 1.5 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.68, - "target": [ - 0.9429, - 0.9429, - 0.9429 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone227", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0.1 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone228", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.28, - "target": [ - 0, - 0.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.52, - "target": [ - 0, - -0.2, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.76, - "target": [ - 0, - 0.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.28, - "target": [ - 0, - 0.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.52, - "target": [ - 0, - -0.2, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.76, - "target": [ - 0, - 0.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone229", - "target": "position", - "keyframes": [ - { - "timestamp": 0.72, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.76, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.96, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.36, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.4, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.6, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.64, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.44, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6.64, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6.68, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 7.08, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 7.12, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8.32, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8.36, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8.68, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8.72, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 9.92, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 9.96, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone230", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.04, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.24, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.28, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.44, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6.64, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6.68, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone231", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.04, - "target": [ - 0, - 0, - -0.05 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.24, - "target": [ - 0, - 0, - -0.05 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.28, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.76, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.8, - "target": [ - 0, - 0, - -0.05 - ], - "interpolation": "linear" - }, - { - "timestamp": 4, - "target": [ - 0, - 0, - -0.05 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.04, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.44, - "target": [ - 0, - 0, - -0.05 - ], - "interpolation": "linear" - }, - { - "timestamp": 6.64, - "target": [ - 0, - 0, - -0.05 - ], - "interpolation": "linear" - }, - { - "timestamp": 6.68, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8.28, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8.32, - "target": [ - 0, - 0, - -0.05 - ], - "interpolation": "linear" - }, - { - "timestamp": 9.52, - "target": [ - 0, - 0, - -0.05 - ], - "interpolation": "linear" - }, - { - "timestamp": 9.56, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone232", - "target": "scale", - "keyframes": [ - { - "timestamp": 1.44, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.56, - "target": [ - 2.5, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.56, - "target": [ - 0, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9.84, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone233", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -0.1, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone235", - "target": "position", - "keyframes": [ - { - "timestamp": 0.24, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.28, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.52, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.56, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.04, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.28, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.32, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.56, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.6, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.84, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.88, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 7.44, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 7.48, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8.72, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8.76, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone234", - "target": "position", - "keyframes": [ - { - "timestamp": 1, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.04, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.96, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.04, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6.96, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 7, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8.04, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 9.96, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 10, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone236", - "target": "position", - "keyframes": [ - { - "timestamp": 0.36, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.4, - "target": [ - 0, - 0, - -0.05 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.6, - "target": [ - 0, - 0, - -0.05 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.64, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.12, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.16, - "target": [ - 0, - 0, - -0.05 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.36, - "target": [ - 0, - 0, - -0.05 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.76, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.8, - "target": [ - 0, - 0, - -0.05 - ], - "interpolation": "linear" - }, - { - "timestamp": 7, - "target": [ - 0, - 0, - -0.05 - ], - "interpolation": "linear" - }, - { - "timestamp": 7.04, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8.64, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8.68, - "target": [ - 0, - 0, - -0.05 - ], - "interpolation": "linear" - }, - { - "timestamp": 9.88, - "target": [ - 0, - 0, - -0.05 - ], - "interpolation": "linear" - }, - { - "timestamp": 9.92, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone226", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -2, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "GRUM_core", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.04, - "target": [ - 0, - -2.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.28, - "target": [ - 0, - -1.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.6, - "target": [ - 0, - 0.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.64, - "target": [ - 0, - -0.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone237", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 0, - 2, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - -2, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone237", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.12, - "target": [ - 1.1, - 1.4, - 1.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.32, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.44, - "target": [ - 1.1, - 1.4, - 1.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.68, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.76, - "target": [ - 1.1, - 1.4, - 1.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone238", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.12, - "target": [ - 1.1, - 1.4, - 1.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.32, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.44, - "target": [ - 1.1, - 1.4, - 1.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.68, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.76, - "target": [ - 1.1, - 1.4, - 1.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone239", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1, - "target": [ - 13, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3, - "target": [ - 13, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5, - "target": [ - 13, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7, - "target": [ - 13, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9, - "target": [ - 13, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone240", - "target": "position", - "keyframes": [ - { - "timestamp": 1, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 13, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 13, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 13, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - 13, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 13, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone241", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1, - "target": [ - 13, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3, - "target": [ - 13, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5, - "target": [ - 13, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7, - "target": [ - 13, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9, - "target": [ - 13, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone242", - "target": "position", - "keyframes": [ - { - "timestamp": 1, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 13, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 13, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 13, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - 13, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 13, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone243", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1, - "target": [ - 13, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3, - "target": [ - 13, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5, - "target": [ - 13, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7, - "target": [ - 13, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9, - "target": [ - 13, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone245", - "target": "position", - "keyframes": [ - { - "timestamp": 1, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 13, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 13, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 13, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - 13, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 13, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone246", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0.2 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone247", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.6, - "target": [ - 2, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.8, - "target": [ - 2, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.92, - "target": [ - -4, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.48, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.8, - "target": [ - 2, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 7.08, - "target": [ - 2, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8.6, - "target": [ - -4, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone248", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.6, - "target": [ - -2, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.8, - "target": [ - -2, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.92, - "target": [ - 3.5, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.48, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.8, - "target": [ - -2, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 7.08, - "target": [ - -2, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8.6, - "target": [ - 3.5, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone249", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.04, - "target": [ - -1.5, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.04, - "target": [ - 0.25, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.08, - "target": [ - -1.5, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.08, - "target": [ - 0.25, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.12, - "target": [ - -1.5, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.12, - "target": [ - 0.25, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.16, - "target": [ - -1.5, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.16, - "target": [ - 0.25, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9.2, - "target": [ - -1.5, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9.96, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone176", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - -1 - ], - "interpolation": "linear" - }, - { - "timestamp": 3, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - -0.675 - ], - "interpolation": "linear" - }, - { - "timestamp": 9, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 10, - "target": [ - 0, - 0, - -1 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone250", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1, - "target": [ - 0, - 0, - -1 - ], - "interpolation": "linear" - }, - { - "timestamp": 4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 7, - "target": [ - 0, - 0, - -0.675 - ], - "interpolation": "linear" - }, - { - "timestamp": 10, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone251", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - -1 - ], - "interpolation": "linear" - }, - { - "timestamp": 3, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - -0.675 - ], - "interpolation": "linear" - }, - { - "timestamp": 9, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 10, - "target": [ - 0, - 0, - -1 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone252", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - -1 - ], - "interpolation": "linear" - }, - { - "timestamp": 3, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - -0.675 - ], - "interpolation": "linear" - }, - { - "timestamp": 9, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 10, - "target": [ - 0, - 0, - -1 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone253", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1, - "target": [ - 0, - 0, - -1 - ], - "interpolation": "linear" - }, - { - "timestamp": 4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 7, - "target": [ - 0, - 0, - -0.675 - ], - "interpolation": "linear" - }, - { - "timestamp": 10, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone254", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - -1 - ], - "interpolation": "linear" - }, - { - "timestamp": 3, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - -0.675 - ], - "interpolation": "linear" - }, - { - "timestamp": 9, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 10, - "target": [ - 0, - 0, - -1 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone255", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1, - "target": [ - 0, - 0, - -0.05 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7, - "target": [ - 0, - 0, - -0.05 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone256", - "target": "position", - "keyframes": [ - { - "timestamp": 1, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 0, - 0, - -0.05 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - 0, - 0, - -0.05 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone257", - "target": "position", - "keyframes": [ - { - "timestamp": 2, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3, - "target": [ - 0, - 0, - -0.05 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9, - "target": [ - 0, - 0, - -0.05 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone258", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - -0.05 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 0, - 0, - -0.05 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - 0, - -0.05 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone259", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1, - "target": [ - 0, - 0, - -0.05 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5, - "target": [ - 0, - 0, - -0.05 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone260", - "target": "position", - "keyframes": [ - { - "timestamp": 1, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 0, - 0, - -0.05 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - -0.05 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone261", - "target": "position", - "keyframes": [ - { - "timestamp": 2, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3, - "target": [ - 0, - 0, - -1 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.96, - "target": [ - 0, - 0, - -1 - ], - "interpolation": "linear" - }, - { - "timestamp": 4, - "target": [ - 0, - 0, - -0.25 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.24, - "target": [ - 0, - 0, - -0.75 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.48, - "target": [ - 0, - 0, - -0.5 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.12, - "target": [ - 0, - 0, - -0.25 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.84, - "target": [ - 0, - 0, - -0.5 - ], - "interpolation": "linear" - }, - { - "timestamp": 6.2, - "target": [ - 0, - 0, - -1 - ], - "interpolation": "linear" - }, - { - "timestamp": 7.56, - "target": [ - 0, - 0, - -1 - ], - "interpolation": "linear" - }, - { - "timestamp": 7.72, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone261", - "target": "rotation", - "keyframes": [ - { - "timestamp": 2.76, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.6, - "target": [ - 0, - 0, - 180 - ], - "interpolation": "linear" - }, - { - "timestamp": 6.28, - "target": [ - 0, - 0, - 180 - ], - "interpolation": "linear" - }, - { - "timestamp": 7.48, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - } - ], - "loop": true -} \ No newline at end of file diff --git a/common/src/main/resources/assets/tardis_refined/animations/console/initiative/idle.json b/common/src/main/resources/assets/tardis_refined/animations/console/initiative/idle.json deleted file mode 100644 index 14100621c..000000000 --- a/common/src/main/resources/assets/tardis_refined/animations/console/initiative/idle.json +++ /dev/null @@ -1,4309 +0,0 @@ -{ - "length": 10, - "looping" : true, - "animations": [ - { - "bone": "rotor_on", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone183", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.36, - "target": [ - 0, - -0.175, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.56, - "target": [ - 0, - 0.125, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.64, - "target": [ - 0, - -0.225, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.08, - "target": [ - 0, - 0.25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9.16, - "target": [ - 0, - -0.125, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone183", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.96, - "target": [ - 0, - -1.2, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.4, - "target": [ - 0, - 1.575, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.6, - "target": [ - 0, - -2.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone192", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 2.5, - 0, - 2.5 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 1.5, - 0, - -1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 3.5, - 0, - -2 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - -1.5, - 0, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone193", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.76, - "target": [ - 2.5, - 0, - 2.5 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.28, - "target": [ - 1.5, - 0, - -1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.04, - "target": [ - 3.5, - 0, - -2 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - -1.5, - 0, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9.96, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone194", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 1.5, - 0, - 2.5 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.08, - "target": [ - 1.5, - 0, - -1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.84, - "target": [ - 3.5, - 0, - -3 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.56, - "target": [ - -2, - 0, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone195", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 1, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - -2, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 1, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - -2, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone195", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 1, - 1.02, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 1, - 0.98, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - 1, - 1.02, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone197", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 1, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - -2, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 1, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - -2, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone197", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 1, - 1.02, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 1, - 0.98, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - 1, - 1.02, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone196", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.68, - "target": [ - 1, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.56, - "target": [ - -2, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.76, - "target": [ - 1, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.2, - "target": [ - -2, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9.6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone196", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.2, - "target": [ - 1, - 1.02, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.84, - "target": [ - 1, - 0.98, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.12, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.8, - "target": [ - 1, - 1.02, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone200", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 6, - 0, - 2 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - -3, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 6, - 0, - -2 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - -3, - 0, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone199", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.2, - "target": [ - 6, - 0, - 2 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.12, - "target": [ - -3, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.88, - "target": [ - 6, - 0, - -2 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.64, - "target": [ - -3, - 0, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone201", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.36, - "target": [ - 0, - 0.175, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.56, - "target": [ - 0, - -0.125, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.64, - "target": [ - 0, - 0.225, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.08, - "target": [ - 0, - -0.25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9.16, - "target": [ - 0, - 0.125, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone201", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.96, - "target": [ - 0, - 1.2, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.4, - "target": [ - 0, - -1.575, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.6, - "target": [ - 0, - 2.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone203", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.12, - "target": [ - -0.25, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.44, - "target": [ - -0.13, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.88, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.2, - "target": [ - 0.25, - 0.25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.76, - "target": [ - 0, - 0.25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.48, - "target": [ - 0.25, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.68, - "target": [ - 0.5, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.84, - "target": [ - -0.01, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.08, - "target": [ - 0.25, - -0.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.36, - "target": [ - -0.25, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.96, - "target": [ - 0.5, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.64, - "target": [ - -0.5, - -0.25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9.6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone202", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.28, - "target": [ - -0.15, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.88, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.2, - "target": [ - 0.25, - -0.125, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.76, - "target": [ - 0, - 0.25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.48, - "target": [ - -0.125, - 0.2, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.72, - "target": [ - 0.125, - -0.175, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.84, - "target": [ - -0.01, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.32, - "target": [ - -0.275, - 0.325, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.24, - "target": [ - -0.025, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.96, - "target": [ - 0.275, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.56, - "target": [ - -0.225, - 0.1, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9.6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone204", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.4, - "target": [ - 0.2, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.36, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.76, - "target": [ - 5, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.12, - "target": [ - 2.8, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.24, - "target": [ - -1, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.76, - "target": [ - 1.025, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.32, - "target": [ - -0.5, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.72, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.04, - "target": [ - -7.6, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.28, - "target": [ - 1.975, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.96, - "target": [ - -0.545, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.48, - "target": [ - 0.39, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone207", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.04, - "target": [ - 0, - 0, - -0.05 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.96, - "target": [ - 0, - 0, - -0.05 - ], - "interpolation": "linear" - }, - { - "timestamp": 1, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.04, - "target": [ - 0, - 0, - -0.05 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.96, - "target": [ - 0, - 0, - -0.05 - ], - "interpolation": "linear" - }, - { - "timestamp": 3, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.04, - "target": [ - 0, - 0, - -0.05 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.96, - "target": [ - 0, - 0, - -0.05 - ], - "interpolation": "linear" - }, - { - "timestamp": 5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6.04, - "target": [ - 0, - 0, - -0.05 - ], - "interpolation": "linear" - }, - { - "timestamp": 6.96, - "target": [ - 0, - 0, - -0.05 - ], - "interpolation": "linear" - }, - { - "timestamp": 7, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8.04, - "target": [ - 0, - 0, - -0.05 - ], - "interpolation": "linear" - }, - { - "timestamp": 8.96, - "target": [ - 0, - 0, - -0.05 - ], - "interpolation": "linear" - }, - { - "timestamp": 9, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone208", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.52, - "target": [ - 0, - -8, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.52, - "target": [ - 0, - 8, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone213", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.48, - "target": [ - 1, - 1.01, - 1.01 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.96, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.44, - "target": [ - 1, - 1.01, - 1.01 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone214", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.6, - "target": [ - 2, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.8, - "target": [ - 2, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.92, - "target": [ - -4, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.48, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.8, - "target": [ - 2, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 7.08, - "target": [ - 2, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8.6, - "target": [ - -4, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone215", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.6, - "target": [ - -2, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.8, - "target": [ - -2, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.92, - "target": [ - 3.5, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.48, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.8, - "target": [ - -2, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 7.08, - "target": [ - -2, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8.6, - "target": [ - 3.5, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone216", - "target": "position", - "keyframes": [ - { - "timestamp": 1, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.04, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.96, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6.04, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6.96, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 7, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8.56, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 9.48, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 9.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone217", - "target": "rotation", - "keyframes": [ - { - "timestamp": 1, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.04, - "target": [ - 60, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.96, - "target": [ - 60, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6.04, - "target": [ - 60, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6.96, - "target": [ - 60, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 7, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8.56, - "target": [ - 60, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 9.48, - "target": [ - 60, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 9.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone219", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.52, - "target": [ - 0.5, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.6, - "target": [ - -0.25, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.64, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.68, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.2, - "target": [ - 1.5, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.28, - "target": [ - 0.75, - 2, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 7.48, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 7.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.84, - "target": [ - -1, - 0.75, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - -0.25, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone219", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1.5, - 1.5, - 1.5 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.36, - "target": [ - 0.9429, - 0.9429, - 0.9429 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.64, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.68, - "target": [ - 1.6, - 1.6, - 1.6 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.48, - "target": [ - 0.9429, - 0.9429, - 0.9429 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.36, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 7.48, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 7.52, - "target": [ - 1.5, - 1.5, - 1.5 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.68, - "target": [ - 0.9429, - 0.9429, - 0.9429 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone220", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.52, - "target": [ - -0.5, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.6, - "target": [ - 0.25, - 0.25, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.96, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.52, - "target": [ - -0.5, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.72, - "target": [ - 0.25, - 0.25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.2, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 7.24, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.4, - "target": [ - -0.5, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9.84, - "target": [ - 0.25, - 0.25, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone220", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1.5, - 1.5, - 1.5 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.36, - "target": [ - 0.9429, - 0.9429, - 0.9429 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.8, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.96, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4, - "target": [ - 1.5, - 1.5, - 1.5 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.36, - "target": [ - 0.9429, - 0.9429, - 0.9429 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.8, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.2, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 7.24, - "target": [ - 1.65, - 1.65, - 1.65 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.24, - "target": [ - 0.9429, - 0.9429, - 0.9429 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone221", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.4, - "target": [ - -0.75, - -0.25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.08, - "target": [ - 0.25, - 0.5, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.44, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.84, - "target": [ - 0.5, - 0.25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9.52, - "target": [ - -1.75, - 0.5, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone221", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1.5, - 1.5, - 1.5 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.12, - "target": [ - 0.9429, - 0.9429, - 0.9429 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.56, - "target": [ - 1.5, - 1.5, - 1.5 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.36, - "target": [ - 0.9429, - 0.9429, - 0.9429 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone222", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.32, - "target": [ - -0.1, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.2, - "target": [ - 0.1, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.84, - "target": [ - -0.1, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.72, - "target": [ - 0.1, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone222", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1, - "target": [ - 1, - 1.05, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3, - "target": [ - 1, - 0.95, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5, - "target": [ - 1, - 1.05, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7, - "target": [ - 1, - 0.98, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.4, - "target": [ - 1, - 1.0175, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone223", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1, - "target": [ - 1, - 1.1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3, - "target": [ - 1, - 0.95, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5, - "target": [ - 1, - 1.1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7, - "target": [ - 1, - 0.98, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.4, - "target": [ - 1, - 1.025, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone224", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - -0.5, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.76, - "target": [ - -0.75, - 1.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.08, - "target": [ - 0.25, - 0.5, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.44, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.84, - "target": [ - 0.5, - 0.25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9.52, - "target": [ - -1.75, - 0.5, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone224", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1.5, - 1.5, - 1.5 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.68, - "target": [ - 0.9429, - 0.9429, - 0.9429 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.92, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.56, - "target": [ - 1.5, - 1.5, - 1.5 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.36, - "target": [ - 0.9429, - 0.9429, - 0.9429 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone225", - "target": "position", - "keyframes": [ - { - "timestamp": 0.28, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.52, - "target": [ - 0.5, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.6, - "target": [ - -0.25, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.64, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.68, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.2, - "target": [ - 1.5, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.28, - "target": [ - 0.75, - 2, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 7.48, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 7.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.84, - "target": [ - -1, - 0.75, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - -0.25, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone225", - "target": "scale", - "keyframes": [ - { - "timestamp": 0.28, - "target": [ - 1.5, - 1.5, - 1.5 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.36, - "target": [ - 0.9429, - 0.9429, - 0.9429 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.64, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.68, - "target": [ - 1.6, - 1.6, - 1.6 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.48, - "target": [ - 0.9429, - 0.9429, - 0.9429 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.36, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 7.48, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 7.52, - "target": [ - 1.5, - 1.5, - 1.5 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.68, - "target": [ - 0.9429, - 0.9429, - 0.9429 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone227", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.04, - "target": [ - 0, - 0, - -0.05 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.96, - "target": [ - 0, - 0, - -0.05 - ], - "interpolation": "linear" - }, - { - "timestamp": 1, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.04, - "target": [ - 0, - 0, - -0.05 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.84, - "target": [ - 0, - 0, - -0.05 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.88, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 7, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 7.04, - "target": [ - 0, - 0, - -0.05 - ], - "interpolation": "linear" - }, - { - "timestamp": 8.44, - "target": [ - 0, - 0, - -0.05 - ], - "interpolation": "linear" - }, - { - "timestamp": 8.48, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone228", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.52, - "target": [ - 0, - 0.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5, - "target": [ - 0, - -0.2, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.52, - "target": [ - 0, - 0.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone229", - "target": "position", - "keyframes": [ - { - "timestamp": 0.72, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.76, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.96, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.04, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 7.2, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 7.24, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8.32, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8.36, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 9.56, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 9.6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone230", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.04, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.24, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.28, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.44, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6.64, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6.68, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone231", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.04, - "target": [ - 0, - 0, - -0.05 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.24, - "target": [ - 0, - 0, - -0.05 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.28, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.76, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.8, - "target": [ - 0, - 0, - -0.05 - ], - "interpolation": "linear" - }, - { - "timestamp": 4, - "target": [ - 0, - 0, - -0.05 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.04, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.44, - "target": [ - 0, - 0, - -0.05 - ], - "interpolation": "linear" - }, - { - "timestamp": 6.64, - "target": [ - 0, - 0, - -0.05 - ], - "interpolation": "linear" - }, - { - "timestamp": 6.68, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8.28, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8.32, - "target": [ - 0, - 0, - -0.05 - ], - "interpolation": "linear" - }, - { - "timestamp": 9.52, - "target": [ - 0, - 0, - -0.05 - ], - "interpolation": "linear" - }, - { - "timestamp": 9.56, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone232", - "target": "scale", - "keyframes": [ - { - "timestamp": 1.44, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.56, - "target": [ - 2.5, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.56, - "target": [ - 0, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9.84, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone233", - "target": "scale", - "keyframes": [ - { - "timestamp": 0.32, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.44, - "target": [ - 2.5, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.44, - "target": [ - 0, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.72, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone235", - "target": "position", - "keyframes": [ - { - "timestamp": 2, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.04, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.28, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.32, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 7.44, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 7.48, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8.72, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8.76, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone234", - "target": "position", - "keyframes": [ - { - "timestamp": 1, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.04, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.96, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.04, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6.96, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 7, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8.04, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 9.96, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 10, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone236", - "target": "position", - "keyframes": [ - { - "timestamp": 0.36, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.4, - "target": [ - 0, - 0, - -0.05 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.6, - "target": [ - 0, - 0, - -0.05 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.64, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.12, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.16, - "target": [ - 0, - 0, - -0.05 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.36, - "target": [ - 0, - 0, - -0.05 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.76, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.8, - "target": [ - 0, - 0, - -0.05 - ], - "interpolation": "linear" - }, - { - "timestamp": 7, - "target": [ - 0, - 0, - -0.05 - ], - "interpolation": "linear" - }, - { - "timestamp": 7.04, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8.64, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8.68, - "target": [ - 0, - 0, - -0.05 - ], - "interpolation": "linear" - }, - { - "timestamp": 9.88, - "target": [ - 0, - 0, - -0.05 - ], - "interpolation": "linear" - }, - { - "timestamp": 9.92, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone226", - "target": "position", - "keyframes": [ - { - "timestamp": 1.36, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.04, - "target": [ - 0, - -0.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.64, - "target": [ - 0, - -0.52, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.24, - "target": [ - 0, - -0.25, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.24, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6.48, - "target": [ - 0, - -0.5, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 7.4, - "target": [ - 0, - -0.5, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 7.48, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone247", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -0.1, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone248", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -0.1, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone249", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -0.1, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone252", - "target": "position", - "keyframes": [ - { - "timestamp": 2.72, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.72, - "target": [ - 0, - 0, - -1 - ], - "interpolation": "linear" - }, - { - "timestamp": 6.72, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - } - ], - "loop": true -} \ No newline at end of file diff --git a/common/src/main/resources/assets/tardis_refined/animations/console/nuka/flight.json b/common/src/main/resources/assets/tardis_refined/animations/console/nuka/flight.json deleted file mode 100644 index c491527a4..000000000 --- a/common/src/main/resources/assets/tardis_refined/animations/console/nuka/flight.json +++ /dev/null @@ -1,163 +0,0 @@ -{ - "length": 8, - "looping" : true, - "animations": [ - { - "bone": "rotor_zminus3_yplus5_rotateY", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 6, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4, - "target": [ - 0, - 5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - 0, - 6, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "rotor_zminus3_yplus5_rotateY", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8, - "target": [ - 0, - 240, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone110", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - -3 - ], - "interpolation": "linear" - }, - { - "timestamp": 4, - "target": [ - 0, - 0, - -1.5 - ], - "interpolation": "linear" - }, - { - "timestamp": 8, - "target": [ - 0, - 0, - -3 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone113", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - -3 - ], - "interpolation": "linear" - }, - { - "timestamp": 4, - "target": [ - 0, - 0, - -1.5 - ], - "interpolation": "linear" - }, - { - "timestamp": 8, - "target": [ - 0, - 0, - -3 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone118", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - -3 - ], - "interpolation": "linear" - }, - { - "timestamp": 4, - "target": [ - 0, - 0, - -1.5 - ], - "interpolation": "linear" - }, - { - "timestamp": 8, - "target": [ - 0, - 0, - -3 - ], - "interpolation": "linear" - } - ] - } - ], - "loop": true -} \ No newline at end of file diff --git a/common/src/main/resources/assets/tardis_refined/animations/console/refurbished/flight.json b/common/src/main/resources/assets/tardis_refined/animations/console/refurbished/flight.json deleted file mode 100644 index 7fa511f0d..000000000 --- a/common/src/main/resources/assets/tardis_refined/animations/console/refurbished/flight.json +++ /dev/null @@ -1,2368 +0,0 @@ -{ - "length": 6, - "looping" : true, - "animations": [ - { - "bone": "bone345", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 17.5, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "Rotor", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.04, - "target": [ - 0, - 0.29783, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.08, - "target": [ - 0, - 0.64353, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.16, - "target": [ - 0, - 1.35608, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.2, - "target": [ - 0, - 1.69139, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.24, - "target": [ - 0, - 2.00503, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.28, - "target": [ - 0, - 2.29615, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.32, - "target": [ - 0, - 2.56544, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.36, - "target": [ - 0, - 2.81422, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.4, - "target": [ - 0, - 3.04401, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.44, - "target": [ - 0, - 3.25635, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.48, - "target": [ - 0, - 3.45273, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.52, - "target": [ - 0, - 3.63437, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.56, - "target": [ - 0, - 3.80256, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.6, - "target": [ - 0, - 3.95834, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.64, - "target": [ - 0, - 4.10268, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.8, - "target": [ - 0, - 4.58088, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1, - "target": [ - 0, - 5, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.04, - "target": [ - 0, - 5.0548, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.08, - "target": [ - 0, - 5.08159, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.12, - "target": [ - 0, - 5.07585, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.16, - "target": [ - 0, - 5.03068, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.2, - "target": [ - 0, - 4.93744, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.24, - "target": [ - 0, - 4.78483, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.28, - "target": [ - 0, - 4.55626, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.32, - "target": [ - 0, - 4.22797, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.36, - "target": [ - 0, - 3.76415, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.4, - "target": [ - 0, - 3.11252, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.44, - "target": [ - 0, - 2.20489, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.48, - "target": [ - 0, - 1.0098, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.52, - "target": [ - 0, - -0.3243, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.56, - "target": [ - 0, - -1.51272, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.6, - "target": [ - 0, - -2.43651, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.64, - "target": [ - 0, - -3.12961, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.68, - "target": [ - 0, - -3.65086, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.72, - "target": [ - 0, - -4.04537, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.76, - "target": [ - 0, - -4.345, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.8, - "target": [ - 0, - -4.57064, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.84, - "target": [ - 0, - -4.73746, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.88, - "target": [ - 0, - -4.8567, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.92, - "target": [ - 0, - -4.93628, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.96, - "target": [ - 0, - -4.98251, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2, - "target": [ - 0, - -5, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.04, - "target": [ - 0, - -4.99922, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.08, - "target": [ - 0, - -4.98766, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.12, - "target": [ - 0, - -4.96477, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.16, - "target": [ - 0, - -4.92993, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.2, - "target": [ - 0, - -4.88265, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.24, - "target": [ - 0, - -4.82219, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.28, - "target": [ - 0, - -4.74791, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.32, - "target": [ - 0, - -4.65884, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.36, - "target": [ - 0, - -4.55427, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.4, - "target": [ - 0, - -4.43308, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.44, - "target": [ - 0, - -4.29438, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.48, - "target": [ - 0, - -4.13686, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.52, - "target": [ - 0, - -3.95931, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.56, - "target": [ - 0, - -3.76023, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.6, - "target": [ - 0, - -3.53806, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.64, - "target": [ - 0, - -3.29097, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.68, - "target": [ - 0, - -3.01718, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.72, - "target": [ - 0, - -2.71463, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.76, - "target": [ - 0, - -2.38146, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.8, - "target": [ - 0, - -2.01609, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.84, - "target": [ - 0, - -1.61818, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.88, - "target": [ - 0, - -1.19062, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.92, - "target": [ - 0, - -0.74451, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.96, - "target": [ - 0, - -0.31374, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.04, - "target": [ - 0, - 0.26738, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.08, - "target": [ - 0, - 0.61041, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.12, - "target": [ - 0, - 0.96473, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.16, - "target": [ - 0, - 1.30877, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.2, - "target": [ - 0, - 1.63514, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.24, - "target": [ - 0, - 1.94167, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.28, - "target": [ - 0, - 2.22828, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.32, - "target": [ - 0, - 2.49573, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.36, - "target": [ - 0, - 2.74498, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.4, - "target": [ - 0, - 2.97721, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.44, - "target": [ - 0, - 3.19354, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.48, - "target": [ - 0, - 3.39493, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.52, - "target": [ - 0, - 3.58244, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.56, - "target": [ - 0, - 3.75688, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.6, - "target": [ - 0, - 3.9191, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.64, - "target": [ - 0, - 4.06977, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.68, - "target": [ - 0, - 4.2096, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.84, - "target": [ - 0, - 4.67163, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4, - "target": [ - 0, - 5, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.04, - "target": [ - 0, - 5.0548, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.08, - "target": [ - 0, - 5.08159, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.12, - "target": [ - 0, - 5.07585, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.16, - "target": [ - 0, - 5.03068, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.2, - "target": [ - 0, - 4.93744, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.24, - "target": [ - 0, - 4.78483, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.28, - "target": [ - 0, - 4.55626, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.32, - "target": [ - 0, - 4.22797, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.36, - "target": [ - 0, - 3.76415, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.4, - "target": [ - 0, - 3.11252, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.44, - "target": [ - 0, - 2.20489, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.48, - "target": [ - 0, - 1.0098, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.52, - "target": [ - 0, - -0.3243, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.56, - "target": [ - 0, - -1.51272, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.6, - "target": [ - 0, - -2.43651, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.64, - "target": [ - 0, - -3.12961, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.68, - "target": [ - 0, - -3.65086, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.72, - "target": [ - 0, - -4.04537, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.76, - "target": [ - 0, - -4.345, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.8, - "target": [ - 0, - -4.57064, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.84, - "target": [ - 0, - -4.73746, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.88, - "target": [ - 0, - -4.8567, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.92, - "target": [ - 0, - -4.93628, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.96, - "target": [ - 0, - -4.98251, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5, - "target": [ - 0, - -5, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.08, - "target": [ - 0, - -4.98938, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.12, - "target": [ - 0, - -4.9687, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.16, - "target": [ - 0, - -4.93701, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.2, - "target": [ - 0, - -4.89386, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.24, - "target": [ - 0, - -4.83858, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.28, - "target": [ - 0, - -4.7705, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.32, - "target": [ - 0, - -4.68877, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.36, - "target": [ - 0, - -4.59267, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.4, - "target": [ - 0, - -4.48121, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.44, - "target": [ - 0, - -4.35335, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.48, - "target": [ - 0, - -4.20798, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.52, - "target": [ - 0, - -4.04378, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.56, - "target": [ - 0, - -3.8593, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.6, - "target": [ - 0, - -3.65278, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.64, - "target": [ - 0, - -3.42244, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.68, - "target": [ - 0, - -3.16599, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.72, - "target": [ - 0, - -2.88111, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.76, - "target": [ - 0, - -2.56494, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.8, - "target": [ - 0, - -2.21447, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.84, - "target": [ - 0, - -1.82675, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.88, - "target": [ - 0, - -1.39971, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.92, - "target": [ - 0, - -0.93472, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.96, - "target": [ - 0, - -0.44612, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone125", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 17.5, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone132", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 17.5, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone140", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 17.5, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone142", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 17.5, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone144", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 17.5, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone135", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 17.5, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone137", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 17.5, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone139", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 17.5, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone146", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 17.5, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone148", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 17.5, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone150", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 17.5, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone352", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -2.25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.76, - "target": [ - 0, - 11, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.48, - "target": [ - 0, - -1.25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.96, - "target": [ - 0, - -1.25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.72, - "target": [ - 0, - 11, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.44, - "target": [ - 0, - -1.25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.92, - "target": [ - 0, - -1.25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.76, - "target": [ - 0, - 11, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.56, - "target": [ - 0, - -2.25, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.76, - "target": [ - 0, - -2.75, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6, - "target": [ - 0, - -2.25, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone352", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 0.5, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.76, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.48, - "target": [ - 1, - 0.5, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.96, - "target": [ - 1, - 0.5, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.72, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.44, - "target": [ - 1, - 0.5, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 4, - "target": [ - 1, - 0.5, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.76, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.48, - "target": [ - 1, - 0.5, - 1 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone358", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1, - "target": [ - 4, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2, - "target": [ - 4, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.24, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.24, - "target": [ - 4, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone359", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 2, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1, - "target": [ - 0.5, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2, - "target": [ - 0.5, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.76, - "target": [ - 4, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.76, - "target": [ - 4, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.56, - "target": [ - 2, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 2, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone287", - "target": "position", - "keyframes": [ - { - "timestamp": 2.88, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone360", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0.1 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.28, - "target": [ - 0, - 0, - 0.1 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.32, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.08, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.12, - "target": [ - 0, - 0, - 0.1 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.12, - "target": [ - 0, - 0, - 0.1 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.16, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.92, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.96, - "target": [ - 0, - 0, - 0.1 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.2, - "target": [ - 0, - 0, - 0.1 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.24, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.04, - "target": [ - 0, - 0, - 0.1 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone361", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0.1 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.44, - "target": [ - 0, - 0, - 0.1 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.48, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.24, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.28, - "target": [ - 0, - 0, - 0.1 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.28, - "target": [ - 0, - 0, - 0.1 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.32, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.08, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.12, - "target": [ - 0, - 0, - 0.1 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.36, - "target": [ - 0, - 0, - 0.1 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.16, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.2, - "target": [ - 0, - 0, - 0.1 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone362", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -0.1, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.56, - "target": [ - 0, - -0.1, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.44, - "target": [ - 0, - -0.1, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.4, - "target": [ - 0, - -0.1, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.44, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.24, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.28, - "target": [ - 0, - -0.1, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.48, - "target": [ - 0, - -0.1, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.32, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.36, - "target": [ - 0, - -0.1, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone363", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -0.1, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.72, - "target": [ - 0, - -0.1, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.76, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.56, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.6, - "target": [ - 0, - -0.1, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.56, - "target": [ - 0, - -0.1, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.44, - "target": [ - 0, - -0.1, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.64, - "target": [ - 0, - -0.1, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.68, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.48, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.52, - "target": [ - 0, - -0.1, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone364", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -0.1, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.88, - "target": [ - 0, - -0.1, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.92, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.68, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.72, - "target": [ - 0, - -0.1, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.72, - "target": [ - 0, - -0.1, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.76, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.56, - "target": [ - 0, - -0.1, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.8, - "target": [ - 0, - -0.1, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.84, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.64, - "target": [ - 0, - -0.1, - 0 - ], - "interpolation": "linear" - } - ] - } - ], - "loop": true -} \ No newline at end of file diff --git a/common/src/main/resources/assets/tardis_refined/animations/console/refurbished/idle.json b/common/src/main/resources/assets/tardis_refined/animations/console/refurbished/idle.json deleted file mode 100644 index 6317acba7..000000000 --- a/common/src/main/resources/assets/tardis_refined/animations/console/refurbished/idle.json +++ /dev/null @@ -1,2131 +0,0 @@ -{ - "length": 6, - "looping" : true, - "animations": [ - { - "bone": "bone151", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.32, - "target": [ - 0, - -7.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.76, - "target": [ - 0, - 12.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.64, - "target": [ - 0, - 7.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone346", - "target": "position", - "keyframes": [ - { - "timestamp": 0.76, - "target": [ - 0, - 0.5, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.28, - "target": [ - 0, - 0.21274, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.8, - "target": [ - 0, - -0.26671, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.12, - "target": [ - 0, - -0.46791, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.28, - "target": [ - 0, - -0.5, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.44, - "target": [ - 0, - -0.45768, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.48, - "target": [ - 0, - -0.42583, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.52, - "target": [ - 0, - -0.37623, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.56, - "target": [ - 0, - -0.29676, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.64, - "target": [ - 0, - -0.06054, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.68, - "target": [ - 0, - 0.00702, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.72, - "target": [ - 0, - 0.04242, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.76, - "target": [ - 0, - 0.05979, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.04, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone346", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0.76, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.8, - "target": [ - 0, - 1.19245, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.84, - "target": [ - 0, - 3.13686, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.88, - "target": [ - 0, - 5.30608, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.16, - "target": [ - 0, - 21.48523, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.36, - "target": [ - 0, - 32.27212, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.52, - "target": [ - 0, - 39.87978, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.68, - "target": [ - 0, - 46.22124, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.72, - "target": [ - 0, - 47.55957, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.76, - "target": [ - 0, - 48.78229, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.8, - "target": [ - 0, - 49.87907, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.84, - "target": [ - 0, - 50.83815, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.88, - "target": [ - 0, - 51.64599, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.92, - "target": [ - 0, - 52.28691, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.96, - "target": [ - 0, - 52.74251, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2, - "target": [ - 0, - 52.98815, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.04, - "target": [ - 0, - 53, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.2, - "target": [ - 0, - 53.05036, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.24, - "target": [ - 0, - 53.27895, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.28, - "target": [ - 0, - 53.6213, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.32, - "target": [ - 0, - 54.08351, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.52, - "target": [ - 0, - 57.29674, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.72, - "target": [ - 0, - 59.43292, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.24, - "target": [ - 0, - 60.27778, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.36, - "target": [ - 0, - 60, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.52, - "target": [ - 0, - 59.0022, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.68, - "target": [ - 0, - 56.77, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.8, - "target": [ - 0, - 54.1548, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.84, - "target": [ - 0, - 53.0834, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.88, - "target": [ - 0, - 51.906, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.92, - "target": [ - 0, - 50.61684, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.96, - "target": [ - 0, - 49.21364, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4, - "target": [ - 0, - 47.69263, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.04, - "target": [ - 0, - 46.05009, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.08, - "target": [ - 0, - 44.28294, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.12, - "target": [ - 0, - 42.39117, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.16, - "target": [ - 0, - 40.37194, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.2, - "target": [ - 0, - 38.22787, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.24, - "target": [ - 0, - 35.96209, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.28, - "target": [ - 0, - 33.58082, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.52, - "target": [ - 0, - 17.73541, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.6, - "target": [ - 0, - 12.54285, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.64, - "target": [ - 0, - 10.14048, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.68, - "target": [ - 0, - 7.92259, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.72, - "target": [ - 0, - 5.92744, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.76, - "target": [ - 0, - 4.18467, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.8, - "target": [ - 0, - 2.71647, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.84, - "target": [ - 0, - 1.5379, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.88, - "target": [ - 0, - 0.65544, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.92, - "target": [ - 0, - 0.06902, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.96, - "target": [ - 0, - -0.2285, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5, - "target": [ - 0, - -0.24715, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.04, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone348", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.24, - "target": [ - 0, - -0.07263, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.4, - "target": [ - 0, - -0.02962, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.44, - "target": [ - 0, - 0.00686, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.48, - "target": [ - 0, - 0.06062, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.52, - "target": [ - 0, - 0.13426, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.6, - "target": [ - 0, - 0.30625, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.64, - "target": [ - 0, - 0.37435, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.68, - "target": [ - 0, - 0.42451, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.72, - "target": [ - 0, - 0.45999, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.8, - "target": [ - 0, - 0.5, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.32, - "target": [ - 0, - 0.34113, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.84, - "target": [ - 0, - 0.05171, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.36, - "target": [ - 0, - -0.24309, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.88, - "target": [ - 0, - -0.47438, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.04, - "target": [ - 0, - -0.5, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.2, - "target": [ - 0, - -0.45768, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.24, - "target": [ - 0, - -0.42583, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.28, - "target": [ - 0, - -0.37623, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.32, - "target": [ - 0, - -0.29676, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.4, - "target": [ - 0, - -0.06054, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.44, - "target": [ - 0, - 0.00702, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.48, - "target": [ - 0, - 0.04242, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.52, - "target": [ - 0, - 0.05979, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.8, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone348", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0.8, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.84, - "target": [ - 0, - 0.76911, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.36, - "target": [ - 0, - 17.4003, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.88, - "target": [ - 0, - 33.75421, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.24, - "target": [ - 0, - 43.76884, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.48, - "target": [ - 0, - 49.2736, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.64, - "target": [ - 0, - 51.96465, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.68, - "target": [ - 0, - 52.43506, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.72, - "target": [ - 0, - 52.78859, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.76, - "target": [ - 0, - 52.99317, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.8, - "target": [ - 0, - 53, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.96, - "target": [ - 0, - 53.05036, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3, - "target": [ - 0, - 53.27895, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.04, - "target": [ - 0, - 53.6213, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.08, - "target": [ - 0, - 54.08351, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.28, - "target": [ - 0, - 57.29674, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.48, - "target": [ - 0, - 59.43292, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4, - "target": [ - 0, - 60.27778, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.12, - "target": [ - 0, - 60, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.28, - "target": [ - 0, - 59.0022, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.44, - "target": [ - 0, - 56.77, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.56, - "target": [ - 0, - 54.1548, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.6, - "target": [ - 0, - 53.0834, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.64, - "target": [ - 0, - 51.906, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.68, - "target": [ - 0, - 50.61684, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.72, - "target": [ - 0, - 49.21364, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.76, - "target": [ - 0, - 47.69263, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.8, - "target": [ - 0, - 46.05009, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.84, - "target": [ - 0, - 44.28294, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.88, - "target": [ - 0, - 42.39117, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.92, - "target": [ - 0, - 40.37194, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.96, - "target": [ - 0, - 38.22787, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5, - "target": [ - 0, - 35.96209, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.04, - "target": [ - 0, - 33.58082, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.28, - "target": [ - 0, - 17.73541, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.36, - "target": [ - 0, - 12.54285, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.4, - "target": [ - 0, - 10.14048, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.44, - "target": [ - 0, - 7.92259, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.48, - "target": [ - 0, - 5.92744, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.52, - "target": [ - 0, - 4.18467, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.56, - "target": [ - 0, - 2.71647, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.6, - "target": [ - 0, - 1.5379, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.64, - "target": [ - 0, - 0.65544, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.68, - "target": [ - 0, - 0.06902, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.72, - "target": [ - 0, - -0.2285, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.76, - "target": [ - 0, - -0.24715, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.8, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone349", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.52, - "target": [ - 0, - 0.20589, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.04, - "target": [ - 0, - 0.42912, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.24, - "target": [ - 0, - 0.5, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.76, - "target": [ - 0, - 0.26378, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.28, - "target": [ - 0, - -0.15022, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.72, - "target": [ - 0, - -0.43733, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.96, - "target": [ - 0, - -0.5, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.16, - "target": [ - 0, - -0.44489, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.48, - "target": [ - 0, - -0.10341, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.68, - "target": [ - 0, - 0.04796, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.04, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.56, - "target": [ - 0, - -0.14211, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.08, - "target": [ - 0, - -0.1491, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.6, - "target": [ - 0, - -0.07205, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.88, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone349", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.16, - "target": [ - 0, - -0.17565, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.36, - "target": [ - 0, - -2.09882, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.72, - "target": [ - 0, - -8.54629, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.24, - "target": [ - 0, - -21.33744, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.76, - "target": [ - 0, - -35.30617, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.24, - "target": [ - 0, - -47.2309, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.56, - "target": [ - 0, - -53.75096, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.84, - "target": [ - 0, - -57.91465, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.04, - "target": [ - 0, - -59.66115, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.12, - "target": [ - 0, - -60, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.28, - "target": [ - 0, - -59.70096, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.32, - "target": [ - 0, - -59.38552, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.36, - "target": [ - 0, - -58.97002, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.4, - "target": [ - 0, - -58.45345, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.44, - "target": [ - 0, - -57.83464, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.48, - "target": [ - 0, - -57.1126, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.52, - "target": [ - 0, - -56.28599, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.56, - "target": [ - 0, - -55.35602, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.6, - "target": [ - 0, - -54.32362, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.64, - "target": [ - 0, - -53.19034, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.8, - "target": [ - 0, - -47.68581, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.28, - "target": [ - 0, - -25.16878, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.48, - "target": [ - 0, - -15.78238, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.64, - "target": [ - 0, - -9.33839, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.8, - "target": [ - 0, - -4.15671, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.96, - "target": [ - 0, - -0.34759, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.12, - "target": [ - 0, - 2.09493, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.28, - "target": [ - 0, - 3.24362, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.44, - "target": [ - 0, - 3.2038, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.64, - "target": [ - 0, - 1.65115, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.76, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone351", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0.5, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.52, - "target": [ - 0, - 0.47292, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.04, - "target": [ - 0, - 0.38289, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.56, - "target": [ - 0, - 0.27999, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.08, - "target": [ - 0, - 0.17411, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.6, - "target": [ - 0, - 0.0732, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.12, - "target": [ - 0, - 0.00066, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.16, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.36, - "target": [ - 0, - 0.02779, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.52, - "target": [ - 0, - 0.12779, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.56, - "target": [ - 0, - 0.13292, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.92, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.44, - "target": [ - 0, - -0.06052, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.96, - "target": [ - 0, - 0.09039, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.48, - "target": [ - 0, - 0.33541, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.84, - "target": [ - 0, - 0.5, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone351", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0.72, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.76, - "target": [ - 0, - -0.37132, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.28, - "target": [ - 0, - -8.12442, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.8, - "target": [ - 0, - -15.58479, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.32, - "target": [ - 0, - -22.11753, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.84, - "target": [ - 0, - -27.25669, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.28, - "target": [ - 0, - -29.87663, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.32, - "target": [ - 0, - -30, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.6, - "target": [ - 0, - -29.95496, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.8, - "target": [ - 0, - -28.70572, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4, - "target": [ - 0, - -26.12838, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.16, - "target": [ - 0, - -22.89731, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.36, - "target": [ - 0, - -17.27046, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.6, - "target": [ - 0, - -9.07765, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.76, - "target": [ - 0, - -4.23765, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.8, - "target": [ - 0, - -3.25414, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.84, - "target": [ - 0, - -2.37947, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.88, - "target": [ - 0, - -1.61726, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.92, - "target": [ - 0, - -0.96781, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.96, - "target": [ - 0, - -0.42974, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - } - ], - "loop": true -} \ No newline at end of file diff --git a/common/src/main/resources/assets/tardis_refined/animations/console/toyota/flight.json b/common/src/main/resources/assets/tardis_refined/animations/console/toyota/flight.json deleted file mode 100644 index 4b94502ad..000000000 --- a/common/src/main/resources/assets/tardis_refined/animations/console/toyota/flight.json +++ /dev/null @@ -1,2476 +0,0 @@ -{ - "length": 6, - "looping" : true, - "animations": [ - { - "bone": "bone", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3, - "target": [ - 0, - 180, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 360, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone185", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0.92, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.28, - "target": [ - 0, - 9.26, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.68, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.76, - "target": [ - 0, - 29.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.12, - "target": [ - 0, - -34, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.48, - "target": [ - 0, - 3.18, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.56, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.68, - "target": [ - 0, - -7.99, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.88, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone195", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.92, - "target": [ - 1, - 1.225, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.24, - "target": [ - 1, - 1.1379, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.92, - "target": [ - 1, - 0.92, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.68, - "target": [ - 1, - 1.1356, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.44, - "target": [ - 1, - 0.935, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.28, - "target": [ - 1, - 1.305, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.16, - "target": [ - 1, - 0.91, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "rotor_bottom_translate_2", - "target": "position", - "keyframes": [ - { - "timestamp": 0.08, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.32, - "target": [ - 0, - -4.65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.64, - "target": [ - 0, - 0.22, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.68, - "target": [ - 0, - 0.57, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.76, - "target": [ - 0, - 0.17, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.28, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.64, - "target": [ - 0, - -0.13, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.16, - "target": [ - 0, - -2.05, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.28, - "target": [ - 0, - 0.17, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.96, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "rotor_bottom_translate_2", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0.04, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.08, - "target": [ - 0, - -0.5, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.68, - "target": [ - 0, - 11, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.24, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.44, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.64, - "target": [ - 0, - 0.86, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.76, - "target": [ - 0, - -6.54, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.88, - "target": [ - 0, - 0.46, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.28, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.68, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.84, - "target": [ - 0, - 2.02, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.96, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "rotor_top_translate_2", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.16, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.36, - "target": [ - 0, - 4.45, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.68, - "target": [ - 0, - -0.17, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.72, - "target": [ - 0, - 0.08, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.76, - "target": [ - 0, - -0.2, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.88, - "target": [ - 0, - -0.44, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.28, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.52, - "target": [ - 0, - 0.48, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.76, - "target": [ - 0, - 1.65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.08, - "target": [ - 0, - 2.25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.44, - "target": [ - 0, - 1.57, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.28, - "target": [ - 0, - 0.17, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.6, - "target": [ - 0, - -0.25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "rotor_top_translate_2", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.44, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.76, - "target": [ - 0, - -20, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.64, - "target": [ - 0, - -3.67, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.88, - "target": [ - 0, - -7.69, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.72, - "target": [ - 0, - 1.54, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.16, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.96, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone205", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.04, - "target": [ - -2.5, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.28, - "target": [ - 1.13, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone226", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.84, - "target": [ - 0, - 0, - -0.95 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.72, - "target": [ - 0, - 0, - 0.4 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone227", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.96, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.56, - "target": [ - 0, - 0, - 0.55 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.64, - "target": [ - 0, - 0, - 0.4 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone228", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.12, - "target": [ - 0, - 0, - -0.95 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.36, - "target": [ - 0, - 0, - -0.35 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone230", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.04, - "target": [ - 0, - -0.2, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.12, - "target": [ - 0, - -0.2, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.16, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.68, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.72, - "target": [ - 0, - -0.2, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.76, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.84, - "target": [ - 0, - -0.2, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.4, - "target": [ - 0, - -0.2, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.48, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.96, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2, - "target": [ - 0, - -0.2, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.08, - "target": [ - 0, - -0.2, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.12, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.28, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.36, - "target": [ - 0, - -0.2, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.8, - "target": [ - 0, - -0.2, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.92, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.2, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.24, - "target": [ - 0, - -0.2, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.36, - "target": [ - 0, - -0.2, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone229", - "target": "rotation", - "keyframes": [ - { - "timestamp": 2.6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.64, - "target": [ - 6, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.04, - "target": [ - 6, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.08, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone231", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.04, - "target": [ - 0, - -0.2, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.48, - "target": [ - 0, - -0.2, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.68, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.72, - "target": [ - 0, - -0.2, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.32, - "target": [ - 0, - -0.2, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.36, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.04, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.08, - "target": [ - 0, - -0.2, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.24, - "target": [ - 0, - -0.2, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.28, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.88, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.96, - "target": [ - 0, - -0.2, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.08, - "target": [ - 0, - -0.2, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.12, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.76, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.84, - "target": [ - 0, - -0.2, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.36, - "target": [ - 0, - -0.2, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.16, - "target": [ - 0, - -0.2, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.68, - "target": [ - 0, - -0.2, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.72, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone232", - "target": "position", - "keyframes": [ - { - "timestamp": 0.48, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.52, - "target": [ - 0, - -0.1, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.96, - "target": [ - 0, - -0.1, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.64, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.68, - "target": [ - 0, - -0.1, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.72, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.36, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.4, - "target": [ - 0, - -0.1, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.76, - "target": [ - 0, - -0.1, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.8, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.04, - "target": [ - 0, - -0.1, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.4, - "target": [ - 0, - -0.1, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.44, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.44, - "target": [ - 0, - -0.1, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.72, - "target": [ - 0, - -0.1, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.76, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone239", - "target": "scale", - "keyframes": [ - { - "timestamp": 0.72, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.76, - "target": [ - 1, - 1.12, - 1.12 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.08, - "target": [ - 1, - 1.12, - 1.12 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.12, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.44, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.48, - "target": [ - 1, - 1.12, - 1.12 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.8, - "target": [ - 1, - 1.12, - 1.12 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.84, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 2, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.04, - "target": [ - 1, - 1.12, - 1.12 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.36, - "target": [ - 1, - 1.12, - 1.12 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.4, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.64, - "target": [ - 1, - 1.12, - 1.12 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.24, - "target": [ - 1, - 1.12, - 1.12 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.28, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.64, - "target": [ - 1, - 1.12, - 1.12 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.96, - "target": [ - 1, - 1.12, - 1.12 - ], - "interpolation": "linear" - }, - { - "timestamp": 4, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.16, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.2, - "target": [ - 1, - 1.12, - 1.12 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.6, - "target": [ - 1, - 1.12, - 1.12 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.64, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.2, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.24, - "target": [ - 1, - 1.12, - 1.12 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.64, - "target": [ - 1, - 1.12, - 1.12 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.68, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone240", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.28, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.32, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.48, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.04, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.48, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.04, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.2, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.24, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.48, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.52, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.68, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.72, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.88, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.92, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.08, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.12, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.32, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.36, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.52, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.56, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.76, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.8, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.92, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.96, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.04, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.24, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.28, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.64, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.68, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.84, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.88, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.08, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.12, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.28, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.32, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.56, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.72, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.76, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone241", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.04, - "target": [ - 1.005, - 1.005, - 1.005 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.28, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.32, - "target": [ - 1.005, - 1.005, - 1.005 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.52, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.56, - "target": [ - 1.005, - 1.005, - 1.005 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.8, - "target": [ - 1.005, - 1.005, - 1.005 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.84, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.56, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.6, - "target": [ - 1.005, - 1.005, - 1.005 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.76, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.8, - "target": [ - 1.005, - 1.005, - 1.005 - ], - "interpolation": "linear" - }, - { - "timestamp": 2, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.04, - "target": [ - 1.005, - 1.005, - 1.005 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.2, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.24, - "target": [ - 1.005, - 1.005, - 1.005 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.4, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.44, - "target": [ - 1.005, - 1.005, - 1.005 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.04, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.08, - "target": [ - 1.005, - 1.005, - 1.005 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.56, - "target": [ - 1.005, - 1.005, - 1.005 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.92, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.96, - "target": [ - 1.005, - 1.005, - 1.005 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.44, - "target": [ - 1.005, - 1.005, - 1.005 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.48, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "Monitor_1", - "target": "rotation", - "keyframes": [ - { - "timestamp": 5.24, - "target": [ - 0.21, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.72, - "target": [ - -0.2, - 0, - -0.1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "monitor_2", - "target": "rotation", - "keyframes": [ - { - "timestamp": 5.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.72, - "target": [ - -0.5, - 0, - -0.2 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - } - ], - "loop": true -} \ No newline at end of file diff --git a/common/src/main/resources/assets/tardis_refined/animations/console/toyota/idle.json b/common/src/main/resources/assets/tardis_refined/animations/console/toyota/idle.json deleted file mode 100644 index d17391942..000000000 --- a/common/src/main/resources/assets/tardis_refined/animations/console/toyota/idle.json +++ /dev/null @@ -1,1087 +0,0 @@ -{ - "length": 6, - "looping" : true, - "animations": [ - { - "bone": "bone", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - 360, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone195", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.92, - "target": [ - 1, - 1.2, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.24, - "target": [ - 1, - 1.1129, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.92, - "target": [ - 1, - 0.92, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.68, - "target": [ - 1, - 1.0906, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.44, - "target": [ - 1, - 0.935, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.28, - "target": [ - 1, - 1.25, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.16, - "target": [ - 1, - 0.91, - 1 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone230", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.04, - "target": [ - 0, - -0.2, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.08, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.76, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.84, - "target": [ - 0, - -0.2, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.48, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.28, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.36, - "target": [ - 0, - -0.2, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.92, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.6, - "target": [ - 0, - -0.2, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.72, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone229", - "target": "rotation", - "keyframes": [ - { - "timestamp": 2.6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.64, - "target": [ - 6, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.04, - "target": [ - 6, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.08, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone231", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.56, - "target": [ - 0, - -0.2, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.36, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.6, - "target": [ - 0, - -0.2, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.76, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.36, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.44, - "target": [ - 0, - -0.2, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.76, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.84, - "target": [ - 0, - -0.2, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.16, - "target": [ - 0, - -0.2, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.72, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone232", - "target": "position", - "keyframes": [ - { - "timestamp": 0.48, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.52, - "target": [ - 0, - -0.1, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.96, - "target": [ - 0, - -0.1, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.72, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.76, - "target": [ - 0, - -0.1, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.12, - "target": [ - 0, - -0.1, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.16, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.04, - "target": [ - 0, - -0.1, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.4, - "target": [ - 0, - -0.1, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.44, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.44, - "target": [ - 0, - -0.1, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.72, - "target": [ - 0, - -0.1, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.76, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone239", - "target": "scale", - "keyframes": [ - { - "timestamp": 0.72, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.84, - "target": [ - 1, - 1.12, - 1.12 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.04, - "target": [ - 1, - 1.12, - 1.12 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.12, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.36, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.48, - "target": [ - 1, - 1.12, - 1.12 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.72, - "target": [ - 1, - 1.12, - 1.12 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.84, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.72, - "target": [ - 1, - 1.12, - 1.12 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.96, - "target": [ - 1, - 1.12, - 1.12 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.08, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.44, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.56, - "target": [ - 1, - 1.12, - 1.12 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.68, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.16, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.28, - "target": [ - 1, - 1.12, - 1.12 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.52, - "target": [ - 1, - 1.12, - 1.12 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.64, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.2, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.32, - "target": [ - 1, - 1.12, - 1.12 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.64, - "target": [ - 1, - 1.12, - 1.12 - ], - "interpolation": "linear" - }, - { - "timestamp": 5.68, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone240", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.04, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.48, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.04, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.2, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.24, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.76, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.8, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.92, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.96, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.04, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.24, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.28, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone241", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.04, - "target": [ - 1.005, - 1.005, - 1.005 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.8, - "target": [ - 1.005, - 1.005, - 1.005 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.84, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.04, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.08, - "target": [ - 1.005, - 1.005, - 1.005 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.56, - "target": [ - 1.005, - 1.005, - 1.005 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.92, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.96, - "target": [ - 1.005, - 1.005, - 1.005 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.44, - "target": [ - 1.005, - 1.005, - 1.005 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.48, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - } - ] - } - ], - "loop": true -} \ No newline at end of file diff --git a/common/src/main/resources/assets/tardis_refined/animations/console/victorian/flight.json b/common/src/main/resources/assets/tardis_refined/animations/console/victorian/flight.json deleted file mode 100644 index 4778d7e9e..000000000 --- a/common/src/main/resources/assets/tardis_refined/animations/console/victorian/flight.json +++ /dev/null @@ -1,5458 +0,0 @@ -{ - "length": 16, - "looping" : true, - "animations": [ - { - "bone": "bone180", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.52, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 2, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3.52, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 5, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 6.52, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 8, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 9.52, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 11, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 12.52, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 14, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 15.52, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone186", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 2.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 4, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 5.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 7, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 8.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 9.2, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 9.72, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 10.2, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 10.72, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 10.8, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 11.2, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 11.72, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 12.2, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 13.2, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 13.72, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 14.2, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 14.72, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 15.2, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 16, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone195", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 1, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.52, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 5.52, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 7, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 8.52, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 9.2, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 9.72, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 10.2, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 10.72, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 11.2, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 11.72, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 12.2, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 12.72, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 13.2, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 13.72, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 14.2, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 14.72, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 15.2, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 16, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone188", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 1.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 4.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 7.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 9, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 10.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 12, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 13.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 15, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone56", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "rotor_bottom", - "target": "position", - "keyframes": [ - { - "timestamp": 0.04, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.4, - "target": [ - 0, - -4, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.28, - "target": [ - 0, - -3.5, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.6, - "target": [ - 0, - -3, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6.48, - "target": [ - 0, - -2.5, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8, - "target": [ - 0, - 1, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9.6, - "target": [ - 0, - -4, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 10.48, - "target": [ - 0, - -3.5, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 12, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 13.6, - "target": [ - 0, - -4, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 14.48, - "target": [ - 0, - -3.5, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 15.8, - "target": [ - 0, - -0.1, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 15.96, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "rotor_bottom", - "target": "rotation", - "keyframes": [ - { - "timestamp": 4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6, - "target": [ - 0, - 5, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8.08, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 11.84, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 13.84, - "target": [ - 0, - 5, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 15.92, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "rotor_top", - "target": "position", - "keyframes": [ - { - "timestamp": 0.04, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.6, - "target": [ - 0, - 4, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.48, - "target": [ - 0, - 3.5, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.6, - "target": [ - 0, - 4, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 6.48, - "target": [ - 0, - 3.5, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9.6, - "target": [ - 0, - 3, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 10.48, - "target": [ - 0, - 2.5, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 12, - "target": [ - 0, - -1, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 13.6, - "target": [ - 0, - 3.5, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 14.48, - "target": [ - 0, - 3, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 15.84, - "target": [ - 0, - 0.1, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 16, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "rotor_top", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2, - "target": [ - 0, - 5, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.08, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 8, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 10, - "target": [ - 0, - 5, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 12.08, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone130", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.52, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 3, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 4.52, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 7.52, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 9, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 10.52, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 12, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 13.52, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 15, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone129", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 0.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 3.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 5, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 6.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 8, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 9.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 11, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 12.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 14, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 15.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone131", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.52, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 2, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 4.48, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 5.48, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 6.96, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 7.96, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 9.44, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 10.44, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 11.92, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 12.92, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone132", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 0.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 3, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 4.48, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 5.48, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 6.96, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 7.96, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 9.44, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 10.44, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 11.92, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 12.92, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone133", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 2.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3.52, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 5.04, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 6.04, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 7.56, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 8.56, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 10.08, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 11.08, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 12.6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 13.6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone134", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 1, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.52, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 3.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 5.04, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 6.04, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 7.56, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 8.56, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 10.08, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 11.08, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 12.6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 13.6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone176", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone127", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 1.64, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.04, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 3, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3.4, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 3.8, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 4.2, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 4.6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 6.2, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 6.6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 8.48, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 8.88, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 9.44, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 9.84, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 10.88, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 11.28, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 13.88, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 14.28, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 14.6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 15, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone128", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.64, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 2.04, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 3.4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3.8, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 4.2, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 4.6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 6.2, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 6.6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 8.48, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 8.88, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 9.44, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 9.84, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 10.88, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 11.28, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 13.88, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 14.28, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 14.6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 15, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone232", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.32, - "target": [ - 0, - -50, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.76, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.12, - "target": [ - 0, - -45, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.72, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.28, - "target": [ - 0, - -40, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.56, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.16, - "target": [ - 0, - -50, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.52, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.96, - "target": [ - 0, - -45, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.32, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.72, - "target": [ - 0, - -60, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.92, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.2, - "target": [ - 0, - -50, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.68, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.12, - "target": [ - 0, - -45, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.56, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7, - "target": [ - 0, - -40, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.44, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - 0, - -50, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.64, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9.16, - "target": [ - 0, - -60, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9.68, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10.44, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10.88, - "target": [ - 0, - -40, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 11.6, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 12.04, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 12.72, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 13.16, - "target": [ - 0, - -25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 13.8, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 14.2, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 14.92, - "target": [ - 0, - -25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 15.4, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 15.92, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone245", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.56, - "target": [ - 0, - -50, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.2, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.8, - "target": [ - 0, - -45, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.68, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.52, - "target": [ - 0, - -45, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.84, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.2, - "target": [ - 0, - -60, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.4, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.76, - "target": [ - 0, - -50, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.2, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.68, - "target": [ - 0, - -45, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.12, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.64, - "target": [ - 0, - -40, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.04, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.64, - "target": [ - 0, - -50, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.24, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.88, - "target": [ - 0, - -60, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9.32, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10.16, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10.64, - "target": [ - 0, - -40, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 11.32, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 11.84, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 12.52, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 13, - "target": [ - 0, - -25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 13.64, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 14.08, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 14.8, - "target": [ - 0, - -25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 15.28, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 15.84, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone244", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.56, - "target": [ - 0, - -50, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.2, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.8, - "target": [ - 0, - -45, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.68, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.52, - "target": [ - 0, - -45, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.84, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.2, - "target": [ - 0, - -60, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.4, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.76, - "target": [ - 0, - -50, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.2, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.68, - "target": [ - 0, - -45, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.12, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.64, - "target": [ - 0, - -40, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.04, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.64, - "target": [ - 0, - -50, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.24, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.88, - "target": [ - 0, - -60, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9.32, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10.16, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10.64, - "target": [ - 0, - -40, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 11.32, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 11.84, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 12.52, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 13, - "target": [ - 0, - -25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 13.64, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 14.08, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 14.8, - "target": [ - 0, - -25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 15.28, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 15.84, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone204", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.56, - "target": [ - 0, - -50, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.2, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.8, - "target": [ - 0, - -45, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.68, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.52, - "target": [ - 0, - -45, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.84, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.2, - "target": [ - 0, - -60, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.4, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.76, - "target": [ - 0, - -50, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.2, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.68, - "target": [ - 0, - -45, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.12, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.64, - "target": [ - 0, - -40, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.04, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.64, - "target": [ - 0, - -50, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.24, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.88, - "target": [ - 0, - -60, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9.32, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10.16, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10.64, - "target": [ - 0, - -40, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 11.32, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 11.84, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 12.52, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 13, - "target": [ - 0, - -25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 13.64, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 14.08, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 14.8, - "target": [ - 0, - -25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 15.28, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 15.84, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone205", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.32, - "target": [ - 0, - -50, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.76, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.12, - "target": [ - 0, - -45, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.72, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.28, - "target": [ - 0, - -40, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.56, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.16, - "target": [ - 0, - -50, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.52, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.96, - "target": [ - 0, - -45, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.32, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.72, - "target": [ - 0, - -60, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.92, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.2, - "target": [ - 0, - -50, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.68, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.12, - "target": [ - 0, - -45, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.56, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7, - "target": [ - 0, - -40, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.44, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8, - "target": [ - 0, - -50, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.64, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9.16, - "target": [ - 0, - -60, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9.68, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10.44, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10.88, - "target": [ - 0, - -40, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 11.6, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 12.04, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 12.72, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 13.16, - "target": [ - 0, - -25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 13.8, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 14.2, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 14.92, - "target": [ - 0, - -25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 15.4, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 15.92, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone206", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 0.56, - "target": [ - 0, - -50, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.2, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 1.8, - "target": [ - 0, - -45, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 2.68, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.52, - "target": [ - 0, - -45, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3.84, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.2, - "target": [ - 0, - -60, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.4, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 4.76, - "target": [ - 0, - -50, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.2, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 5.68, - "target": [ - 0, - -45, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.12, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6.64, - "target": [ - 0, - -40, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.04, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 7.64, - "target": [ - 0, - -50, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.24, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.88, - "target": [ - 0, - -60, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 9.32, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10.16, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10.64, - "target": [ - 0, - -40, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 11.32, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 11.84, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 12.52, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 13, - "target": [ - 0, - -25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 13.64, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 14.08, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 14.8, - "target": [ - 0, - -25, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 15.28, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 15.84, - "target": [ - 0, - -65, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone138", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 4.64, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 5, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 8.2, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 12.52, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 13.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 14.52, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 15.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone160", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 4.64, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 5.6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 8.8, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 12.52, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 13.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 14.52, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 15.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone137", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.2, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 4.64, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 6.2, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 9.4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 12.52, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 13.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 14.52, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 15.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone158", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 4.64, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 8, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 11.2, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 12.52, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 13.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 14.52, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 15.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone157", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.4, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 4.64, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 7.4, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 10.6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 12.52, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 13.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 14.52, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 15.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone159", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.8, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 4.64, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 6.8, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 10, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 12.52, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 13.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 14.52, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 15.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone58", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone212", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.96, - "target": [ - 1, - 0, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 4, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 4.04, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 7.96, - "target": [ - 1, - 0, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 8, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 8.04, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 11.96, - "target": [ - 1, - 0, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 12, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 12.04, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "linear" - }, - { - "timestamp": 16, - "target": [ - 1, - 0, - 1 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone162", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3.32, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 6.04, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 8, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 8.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 9, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 9.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 10, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 12, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 13, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 14, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone161", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 3.32, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 6.04, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 8, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 8.52, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 9, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 9.52, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 10, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 12, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 13, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 14, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone163", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.04, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 2.4, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 2.6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.8, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 3, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3.2, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 3.4, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 6.48, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 7.52, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 7.92, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 8.32, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 8.72, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 10.92, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 11.32, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 12.92, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 13.32, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 14.92, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone165", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.32, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 2.4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 2.8, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 3.2, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3.4, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 4, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 6.48, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 7.52, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 7.92, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 8.32, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 8.72, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 11.92, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 12.32, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 13.92, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 14.32, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 14.92, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone164", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 0.68, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 2.4, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 2.6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.8, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 3, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3.2, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 3.4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 4.6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 6.48, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 9.12, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 9.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 9.92, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 10.32, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 11.92, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 12.32, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 13.92, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 14.32, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 14.92, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone166", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 2.4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 2.8, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 3.2, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3.4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 5.2, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 6.48, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 9.12, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 9.52, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 9.92, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 10.32, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 10.92, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 11.32, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 12.92, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 13.32, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 14.92, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone135", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 2, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 8, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone136", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 8, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - } - ] - } - ], - "loop": true -} \ No newline at end of file diff --git a/common/src/main/resources/assets/tardis_refined/animations/console/victorian/idle.json b/common/src/main/resources/assets/tardis_refined/animations/console/victorian/idle.json deleted file mode 100644 index 4e804b370..000000000 --- a/common/src/main/resources/assets/tardis_refined/animations/console/victorian/idle.json +++ /dev/null @@ -1,1093 +0,0 @@ -{ - "length": 10, - "looping" : true, - "animations": [ - { - "bone": "bone193", - "target": "position", - "keyframes": [ - { - "timestamp": 1.72, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 1.76, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.12, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 3.16, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.72, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 4.76, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 7.84, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 7.88, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone194", - "target": "position", - "keyframes": [ - { - "timestamp": 0.72, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 0.76, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.12, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.16, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 7.64, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 7.68, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 9.04, - "target": [ - 0, - 0.05, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 9.08, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone204", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - 360, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone205", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - -720, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone206", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 3, - "target": [ - 0, - 172.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 6, - "target": [ - 0, - -62.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 8.72, - "target": [ - 0, - 107.5, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone210", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - 7, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone211", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 1, - 0.025 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.56, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone212", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - 7, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone213", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 1, - 0.025 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.56, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone214", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - 7, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone215", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 1, - 0.025 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.56, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone216", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - 7, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone217", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 1, - 0.025 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.56, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone218", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - 7, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone219", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 1, - 0.025 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.56, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone220", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "catmullrom" - }, - { - "timestamp": 10, - "target": [ - 0, - 7, - 0 - ], - "interpolation": "catmullrom" - } - ] - }, - { - "bone": "bone221", - "target": "position", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 1, - 0.025 - ], - "interpolation": "linear" - }, - { - "timestamp": 2.56, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone232", - "target": "rotation", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "linear" - }, - { - "timestamp": 10, - "target": [ - 0, - -720, - 0 - ], - "interpolation": "linear" - } - ] - }, - { - "bone": "bone138", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone160", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone137", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.2, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone158", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone157", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.4, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone159", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1.8, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone163", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.04, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 2, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.2, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 2.4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 2.8, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 3.2, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3.4, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone164", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.68, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 2.4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 2.8, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 3.2, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3.4, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 3.6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3.8, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone165", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 0.32, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 2.2, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.4, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 2.6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.8, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 3, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3.2, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 3.4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3.6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - } - ] - }, - { - "bone": "bone166", - "target": "scale", - "keyframes": [ - { - "timestamp": 0, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 1, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 2.6, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 2.8, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 3, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3.2, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 3.4, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 3.6, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - }, - { - "timestamp": 3.8, - "target": [ - 0, - 0, - 0 - ], - "interpolation": "step" - }, - { - "timestamp": 4, - "target": [ - 1, - 1, - 1 - ], - "interpolation": "step" - } - ] - } - ], - "loop": true -} \ No newline at end of file diff --git a/common/src/main/resources/assets/tardis_refined/tardis_refined/model_layers/shell/big_ben_door.json b/common/src/main/resources/assets/tardis_refined/tardis_refined/model_layers/door/big_ben_door.json similarity index 100% rename from common/src/main/resources/assets/tardis_refined/tardis_refined/model_layers/shell/big_ben_door.json rename to common/src/main/resources/assets/tardis_refined/tardis_refined/model_layers/door/big_ben_door.json diff --git a/common/src/main/resources/assets/tardis_refined/tardis_refined/model_layers/door/bulk_head_door.json b/common/src/main/resources/assets/tardis_refined/tardis_refined/model_layers/door/bulk_head_door.json new file mode 100644 index 000000000..def354ca6 --- /dev/null +++ b/common/src/main/resources/assets/tardis_refined/tardis_refined/model_layers/door/bulk_head_door.json @@ -0,0 +1,39 @@ +{ + "format_version": "1.12.0", + "minecraft:geometry": [ + { + "description": { + "identifier": "geometry.vaultenyt", + "texture_width": 128, + "texture_height": 128, + "visible_bounds_width": 5, + "visible_bounds_height": 5.5, + "visible_bounds_offset": [0, 2.25, 0] + }, + "bones": [ + { + "name": "root", + "pivot": [0, 24, 16] + }, + { + "name": "right_door", + "parent": "root", + "pivot": [0, 0, 16], + "cubes": [ + {"origin": [0, 0, -4], "size": [24, 48, 6], "uv": [64, 54]}, + {"origin": [0, 0, -5], "size": [24, 48, 8], "uv": [0, 56]} + ] + }, + { + "name": "left_door", + "parent": "root", + "pivot": [0, 0, 16], + "cubes": [ + {"origin": [-24, 0, -4], "size": [24, 48, 6], "uv": [64, 0]}, + {"origin": [-24, 0, -5], "size": [24, 48, 8], "uv": [0, 0]} + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/assets/tardis_refined/tardis_refined/model_layers/door/castle_door.json b/common/src/main/resources/assets/tardis_refined/tardis_refined/model_layers/door/castle_door.json new file mode 100644 index 000000000..193cfc996 --- /dev/null +++ b/common/src/main/resources/assets/tardis_refined/tardis_refined/model_layers/door/castle_door.json @@ -0,0 +1,81 @@ +{ + "format_version": "1.12.0", + "minecraft:geometry": [ + { + "description": { + "identifier": "geometry.unknown", + "texture_width": 128, + "texture_height": 128, + "visible_bounds_width": 3, + "visible_bounds_height": 3.5, + "visible_bounds_offset": [0, 1.25, 0] + }, + "bones": [ + { + "name": "right_door", + "pivot": [-7.5, 16, 4.5], + "cubes": [ + {"origin": [-7.75, 0, 4], "size": [8, 32, 1], "uv": [0, 40], "mirror": true} + ] + }, + { + "name": "left_door", + "pivot": [7.5, 16, 4.5], + "cubes": [ + {"origin": [-0.25, 0, 4], "size": [8, 32, 1], "uv": [0, 40]} + ] + }, + { + "name": "frame", + "pivot": [0, 0, -2], + "cubes": [ + {"origin": [-10.5, 0, 5], "size": [3, 36, 3], "uv": [37, 0]}, + {"origin": [7.5, 0, 5], "size": [3, 36, 3], "uv": [37, 0], "mirror": true}, + {"origin": [-2.5, 32, 3], "size": [5, 4, 2], "uv": [19, 40]}, + {"origin": [2.5, 32, 3], "size": [4, 3, 2], "uv": [45, 45]}, + {"origin": [6.5, 32, 3], "size": [4, 4, 2], "uv": [34, 40]}, + {"origin": [-10.5, 32, 3], "size": [4, 4, 2], "uv": [34, 40], "mirror": true}, + {"origin": [-6.5, 32, 3], "size": [4, 3, 2], "uv": [45, 45], "mirror": true} + ] + }, + { + "name": "bone", + "parent": "frame", + "pivot": [0, 0, -2], + "cubes": [ + {"origin": [7.5, 0, 3], "size": [4, 4, 2], "uv": [34, 40]}, + {"origin": [7.5, 4, 3], "size": [3, 4, 2], "uv": [19, 47]}, + {"origin": [7.5, 8, 3], "size": [4, 4, 2], "uv": [34, 40]}, + {"origin": [7.5, 12, 3], "size": [3, 4, 2], "uv": [19, 47]}, + {"origin": [7.5, 16, 3], "size": [2, 4, 2], "uv": [30, 47]}, + {"origin": [7.5, 20, 3], "size": [3, 4, 2], "uv": [19, 47]}, + {"origin": [7.5, 24, 3], "size": [2, 4, 2], "uv": [30, 47]}, + {"origin": [7.5, 28, 3], "size": [3, 4, 2], "uv": [19, 47]} + ] + }, + { + "name": "bone2", + "parent": "frame", + "pivot": [0, 0, -2], + "cubes": [ + {"origin": [-11.5, 0, 3], "size": [4, 4, 2], "uv": [34, 40], "mirror": true}, + {"origin": [-10.5, 4, 3], "size": [3, 4, 2], "uv": [19, 47], "mirror": true}, + {"origin": [-11.5, 8, 3], "size": [4, 4, 2], "uv": [34, 40], "mirror": true}, + {"origin": [-10.5, 12, 3], "size": [3, 4, 2], "uv": [19, 47], "mirror": true}, + {"origin": [-9.5, 16, 3], "size": [2, 4, 2], "uv": [30, 47], "mirror": true}, + {"origin": [-10.5, 20, 3], "size": [3, 4, 2], "uv": [19, 47], "mirror": true}, + {"origin": [-9.5, 24, 3], "size": [2, 4, 2], "uv": [30, 47], "mirror": true}, + {"origin": [-10.5, 28, 3], "size": [3, 4, 2], "uv": [19, 47], "mirror": true} + ] + }, + { + "name": "portal", + "pivot": [0, 0, 0], + "cubes": [ + {"origin": [-7.5, 0, 5], "size": [15, 36, 3], "uv": [0, 0]} + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/assets/tardis_refined/tardis_refined/model_layers/door/drifter_door.json b/common/src/main/resources/assets/tardis_refined/tardis_refined/model_layers/door/drifter_door.json new file mode 100644 index 000000000..6167ef6d8 --- /dev/null +++ b/common/src/main/resources/assets/tardis_refined/tardis_refined/model_layers/door/drifter_door.json @@ -0,0 +1,53 @@ +{ + "format_version": "1.12.0", + "minecraft:geometry": [ + { + "description": { + "identifier": "geometry.unknown", + "texture_width": 128, + "texture_height": 128, + "visible_bounds_width": 3, + "visible_bounds_height": 3.5, + "visible_bounds_offset": [0, 1.25, 0] + }, + "bones": [ + { + "name": "door", + "pivot": [0, 0, -0.5], + "cubes": [ + {"origin": [-7, 2, 5.75], "size": [14, 30, 1], "uv": [33, 36]}, + {"origin": [-7.5, 1.5, 6.25], "size": [15, 31, 1], "uv": [0, 36]} + ] + }, + { + "name": "portal", + "pivot": [0, 0, 0.5], + "cubes": [ + {"origin": [-9.5, 0.025, 7.025], "size": [19, 34, 1], "uv": [0, 0]} + ] + }, + { + "name": "frame", + "pivot": [0, 0, -0.5], + "cubes": [ + {"origin": [-9.5, 32, 6], "size": [19, 2, 2], "uv": [41, 0]}, + {"origin": [-9.5, 0, 6], "size": [2, 34, 2], "uv": [64, 9]}, + {"origin": [7.5, 0, 6], "size": [2, 34, 2], "uv": [64, 9], "mirror": true}, + {"origin": [-7, 0, 4.5], "size": [14, 2, 2], "uv": [64, 46]}, + {"origin": [6.4, -0.5, 4], "size": [1, 3, 3], "uv": [41, 9]}, + {"origin": [-7.4, -0.5, 4], "size": [1, 3, 3], "uv": [41, 9]} + ] + }, + { + "name": "frame_1", + "parent": "frame", + "pivot": [0, 34, 6], + "rotation": [42.5, 0, 0], + "cubes": [ + {"origin": [-9.5, 33, 4], "size": [19, 1, 2], "uv": [41, 5]} + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/assets/tardis_refined/tardis_refined/model_layers/shell/factory_door.json b/common/src/main/resources/assets/tardis_refined/tardis_refined/model_layers/door/factory_door.json similarity index 100% rename from common/src/main/resources/assets/tardis_refined/tardis_refined/model_layers/shell/factory_door.json rename to common/src/main/resources/assets/tardis_refined/tardis_refined/model_layers/door/factory_door.json diff --git a/common/src/main/resources/assets/tardis_refined/tardis_refined/model_layers/door/groening_door.json b/common/src/main/resources/assets/tardis_refined/tardis_refined/model_layers/door/groening_door.json new file mode 100644 index 000000000..e77a15955 --- /dev/null +++ b/common/src/main/resources/assets/tardis_refined/tardis_refined/model_layers/door/groening_door.json @@ -0,0 +1,62 @@ +{ + "format_version": "1.12.0", + "minecraft:geometry": [ + { + "description": { + "identifier": "geometry.unknown", + "texture_width": 128, + "texture_height": 128, + "visible_bounds_width": 3, + "visible_bounds_height": 3.5, + "visible_bounds_offset": [0, 1.25, 0] + }, + "bones": [ + { + "name": "door", + "pivot": [7.5, 17, 5.025], + "cubes": [ + {"origin": [-7.5, 0, 3.025], "size": [15, 8, 1], "uv": [47, 0]}, + {"origin": [-7.5, 8, 3.025], "size": [15, 2, 1], "pivot": [0.5, 8, 3.025], "rotation": [-30, 0, 0], "uv": [47, 25]}, + {"origin": [-7.5, 0, 4.025], "size": [15, 34, 2], "uv": [0, 42]} + ] + }, + { + "name": "frame", + "pivot": [0, 0, 0], + "cubes": [ + {"origin": [-9, 34, 3.025], "size": [18, 5, 4], "uv": [35, 42]} + ] + }, + { + "name": "bone2", + "parent": "frame", + "pivot": [-9.5, 10.98287, 5.99373], + "rotation": [0, 90, 0], + "cubes": [ + {"origin": [-10.5, 0, 5.025], "size": [2, 39, 3], "uv": [35, 52], "mirror": true}, + {"origin": [-11.475, 4, 2.275], "size": [3, 4, 6], "inflate": 0.025, "pivot": [-10.475, 8, 2.275], "rotation": [55, 0, 0], "uv": [47, 29]}, + {"origin": [-11.475, 0, 2.375], "size": [3, 8, 5], "uv": [46, 52], "mirror": true} + ] + }, + { + "name": "bone", + "parent": "frame", + "pivot": [9.5, 10.98287, 5.99373], + "rotation": [0, -90, 0], + "cubes": [ + {"origin": [8.5, 0, 5.025], "size": [2, 39, 3], "uv": [35, 52]}, + {"origin": [8.475, 4, 2.275], "size": [3, 4, 10], "inflate": 0.025, "pivot": [10.475, 8, 2.275], "rotation": [55, 0, 0], "uv": [47, 10]}, + {"origin": [8.475, 0, 2.375], "size": [3, 8, 5], "uv": [46, 52]} + ] + }, + { + "name": "portal", + "pivot": [0, 17, 8], + "cubes": [ + {"origin": [-10.5, 0, 6], "size": [21, 39, 2], "uv": [0, 0]} + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/assets/tardis_refined/tardis_refined/model_layers/door/hieroglyph_door.json b/common/src/main/resources/assets/tardis_refined/tardis_refined/model_layers/door/hieroglyph_door.json new file mode 100644 index 000000000..f452cf786 --- /dev/null +++ b/common/src/main/resources/assets/tardis_refined/tardis_refined/model_layers/door/hieroglyph_door.json @@ -0,0 +1,132 @@ +{ + "format_version": "1.12.0", + "minecraft:geometry": [ + { + "description": { + "identifier": "geometry.unknown", + "texture_width": 256, + "texture_height": 256, + "visible_bounds_width": 3, + "visible_bounds_height": 4.5, + "visible_bounds_offset": [0, 1.75, 0] + }, + "bones": [ + { + "name": "door_closed", + "pivot": [0, 0, 12.5], + "cubes": [ + {"origin": [-7.5, 2, 5], "size": [15, 31, 1], "uv": [66, 69]}, + {"origin": [-5, 27, 1.5], "size": [10, 5, 3], "pivot": [0, 27, 1.5], "rotation": [-30, 0, 0], "uv": [99, 69]}, + {"origin": [-5, 24, 1.5], "size": [10, 3, 4], "inflate": 0.025, "uv": [95, 98]}, + {"origin": [2.5, 12, 3], "size": [2, 12, 2], "uv": [0, 25]}, + {"origin": [-4.5, 12, 3], "size": [2, 12, 2], "uv": [0, 25], "mirror": true}, + {"origin": [-5, 0, 1.5], "size": [10, 12, 4], "uv": [98, 33]}, + {"origin": [-2.5, 9.5, 2.5], "size": [5, 5, 2], "pivot": [0, 12, 3.5], "rotation": [0, 0, 45], "uv": [0, 13]}, + {"origin": [-4.5, 2.5, 2], "size": [9, 9, 3], "uv": [64, 33]} + ] + }, + { + "name": "bone29", + "parent": "door_closed", + "pivot": [0, 24, 2.75], + "cubes": [ + {"origin": [-1.5, 19, 3], "size": [3, 5, 1], "inflate": 0.25, "uv": [9, 25]} + ] + }, + { + "name": "door_open", + "pivot": [1.5, 0, 8], + "rotation": [0, -5, 0], + "cubes": [ + {"origin": [7, 0, 0.5], "size": [15, 33, 1], "uv": [33, 69]}, + {"origin": [7, 0, 1.5], "size": [15, 33, 1], "uv": [0, 60]}, + {"origin": [9.5, 27, -3], "size": [10, 5, 3], "pivot": [14.5, 27, -3], "rotation": [-30, 0, 0], "uv": [99, 69]}, + {"origin": [9.5, 24, -3], "size": [10, 3, 4], "inflate": 0.025, "uv": [95, 98]}, + {"origin": [13, 19, -1.5], "size": [3, 5, 1], "inflate": 0.25, "uv": [9, 25]}, + {"origin": [17, 12, -1.5], "size": [2, 12, 2], "uv": [0, 25]}, + {"origin": [10, 12, -1.5], "size": [2, 12, 2], "uv": [0, 25], "mirror": true}, + {"origin": [9.5, 0, -3], "size": [10, 12, 4], "uv": [98, 33]}, + {"origin": [12, 9.5, -2], "size": [5, 5, 2], "pivot": [14.5, 12, -1], "rotation": [0, 0, 45], "uv": [0, 13]}, + {"origin": [10, 2.5, -2.5], "size": [9, 9, 3], "uv": [64, 33]}, + {"origin": [-7, -0.8, -6.75], "size": [26, 1, 9], "uv": [0, 49]} + ] + }, + { + "name": "frame", + "pivot": [0, 0, 0], + "cubes": [ + {"origin": [-10.5, 36, 2], "size": [21, 3, 4], "uv": [17, 17]}, + {"origin": [-6.5, 39, 6], "size": [13, 6, 2], "uv": [69, 60]}, + {"origin": [-10.5, 0, 2], "size": [21, 2, 4], "uv": [17, 42]} + ] + }, + { + "name": "bone18", + "parent": "frame", + "pivot": [0, 2, 12.5], + "cubes": [ + {"origin": [-7.5, 33, 3.25], "size": [15, 3, 3], "uv": [98, 50]} + ] + }, + { + "name": "pillars", + "parent": "frame", + "pivot": [0, 0, 12.5] + }, + { + "name": "bone3", + "parent": "pillars", + "pivot": [0, 0, 12.5], + "cubes": [ + {"origin": [6.5, 2, 2], "size": [4, 8, 4], "uv": [0, 0]}, + {"origin": [7, 10, 3], "size": [3, 31, 3], "uv": [0, 95]} + ] + }, + { + "name": "bone4", + "parent": "pillars", + "pivot": [0, 0, 12.5], + "cubes": [ + {"origin": [-10.5, 2, 2], "size": [4, 8, 4], "uv": [0, 0], "mirror": true}, + {"origin": [-10, 10, 3], "size": [3, 31, 3], "uv": [0, 95], "mirror": true} + ] + }, + { + "name": "bone6", + "parent": "frame", + "pivot": [0, 2, 12.5], + "cubes": [ + {"origin": [1.25, 39, 4], "size": [6, 3, 1], "uv": [0, 40]}, + {"origin": [-7.25, 39, 4], "size": [6, 3, 1], "uv": [0, 40], "mirror": true} + ] + }, + { + "name": "bone5", + "parent": "bone6", + "pivot": [-3.24503, 38.77043, 4.5], + "rotation": [0, -0.25, 0], + "cubes": [ + {"origin": [-7.55, 36, 3], "size": [8, 3, 3], "pivot": [-7, 39, 3], "rotation": [0, 0, -20], "uv": [33, 60], "mirror": true} + ] + }, + { + "name": "bone2", + "parent": "bone6", + "pivot": [3.24503, 38.77043, 4.5], + "rotation": [0, 0.25, 0], + "cubes": [ + {"origin": [-0.45, 36, 3], "size": [8, 3, 3], "pivot": [7, 39, 3], "rotation": [0, 0, 20], "uv": [33, 60]} + ] + }, + { + "name": "portal", + "pivot": [0, 0, 0], + "cubes": [ + {"origin": [-7, 2, 5.5], "size": [14, 31, 1], "uv": [85, 0]}, + {"origin": [-10.5, 0, 6], "size": [21, 39, 2], "uv": [15, 105]} + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/assets/tardis_refined/tardis_refined/model_layers/door/lift_door.json b/common/src/main/resources/assets/tardis_refined/tardis_refined/model_layers/door/lift_door.json new file mode 100644 index 000000000..6eb7a05fa --- /dev/null +++ b/common/src/main/resources/assets/tardis_refined/tardis_refined/model_layers/door/lift_door.json @@ -0,0 +1,121 @@ +{ + "format_version": "1.12.0", + "minecraft:geometry": [ + { + "description": { + "identifier": "geometry.unknown", + "texture_width": 128, + "texture_height": 128, + "visible_bounds_width": 3, + "visible_bounds_height": 4.5, + "visible_bounds_offset": [0, 1.75, 0] + }, + "bones": [ + { + "name": "frame", + "pivot": [0, 0, 7], + "cubes": [ + {"origin": [-9, 32, 6], "size": [18, 3, 1], "inflate": 0.025, "uv": [0, 73]}, + {"origin": [-9.5, 35, 5.5], "size": [19, 1, 2], "uv": [66, 72]}, + {"origin": [-5.5, 35.5, 6.225], "size": [11, 5, 1], "uv": [42, 33]}, + {"origin": [-10, 0, 7.25], "size": [20, 39, 1], "uv": [0, 0]}, + {"origin": [8, 0, 5.25], "size": [2, 37, 2], "uv": [68, 33]}, + {"origin": [-8.5, 32.25, 3.5], "size": [3, 1, 3], "uv": [46, 73]}, + {"origin": [-7.5, 32.225, 4.5], "size": [16, 1, 2], "uv": [74, 31]}, + {"origin": [-10, 0, 5.25], "size": [2, 37, 2], "uv": [68, 33], "mirror": true}, + {"origin": [7.5, 16, 4.75], "size": [3, 6, 1], "uv": [58, 73]} + ] + }, + { + "name": "clock_hand", + "parent": "frame", + "pivot": [0, 37, 5.725], + "cubes": [ + {"origin": [-0.5, 36.5, 5.975], "size": [1, 3, 1], "uv": [74, 75]} + ] + }, + { + "name": "door_closed", + "pivot": [0, 0, 7], + "cubes": [ + {"origin": [-8, 0, 6], "size": [16, 32, 1], "uv": [42, 0]}, + {"origin": [-8, 0, 6.75], "size": [16, 32, 1], "uv": [34, 40]} + ] + }, + { + "name": "bone7", + "parent": "door_closed", + "pivot": [0, 0, 7] + }, + { + "name": "bone6", + "parent": "bone7", + "pivot": [4, 11, 6.5], + "cubes": [ + {"origin": [5, 11.5, 6.025], "size": [1, 5, 1], "pivot": [5, 16.5, 6.5], "rotation": [0, 0, -24], "uv": [66, 75], "mirror": true}, + {"origin": [5, 16.5, 6.025], "size": [1, 5, 1], "pivot": [5, 16.5, 6.5], "rotation": [0, 0, 24], "uv": [70, 75], "mirror": true} + ] + }, + { + "name": "bone5", + "parent": "bone7", + "pivot": [-4, 11, 6.5], + "cubes": [ + {"origin": [-6, 11.5, 6.025], "size": [1, 5, 1], "pivot": [-5, 16.5, 6.5], "rotation": [0, 0, 24], "uv": [66, 75]}, + {"origin": [-6, 16.5, 6.025], "size": [1, 5, 1], "pivot": [-5, 16.5, 6.5], "rotation": [0, 0, -24], "uv": [70, 75]} + ] + }, + { + "name": "bone4", + "parent": "bone7", + "pivot": [-4, 11, 6.5], + "cubes": [ + {"origin": [-6, 6, 6.025], "size": [1, 5, 1], "pivot": [-5, 11, 6.5], "rotation": [0, 0, 24], "uv": [66, 75]}, + {"origin": [-4, 6, 6.025], "size": [1, 5, 1], "pivot": [-4, 11, 6.5], "rotation": [0, 0, -24], "uv": [66, 75], "mirror": true} + ] + }, + { + "name": "bone3", + "parent": "bone7", + "pivot": [5, 11, 6.5], + "cubes": [ + {"origin": [3, 6, 6.025], "size": [1, 5, 1], "pivot": [4, 11, 6.5], "rotation": [0, 0, 24], "uv": [66, 75]}, + {"origin": [5, 6, 6.025], "size": [1, 5, 1], "pivot": [5, 11, 6.5], "rotation": [0, 0, -24], "uv": [66, 75], "mirror": true} + ] + }, + { + "name": "bone2", + "parent": "bone7", + "pivot": [5, 22, 6.5], + "cubes": [ + {"origin": [3, 22, 6.025], "size": [1, 5, 1], "pivot": [4, 22, 6.5], "rotation": [0, 0, -24], "uv": [66, 75]}, + {"origin": [5, 22, 6.025], "size": [1, 5, 1], "pivot": [5, 22, 6.5], "rotation": [0, 0, 24], "uv": [66, 75], "mirror": true} + ] + }, + { + "name": "bone", + "parent": "bone7", + "pivot": [-4, 22, 6.5], + "cubes": [ + {"origin": [-6, 22, 6.025], "size": [1, 5, 1], "pivot": [-5, 22, 6.5], "rotation": [0, 0, -24], "uv": [66, 75]}, + {"origin": [-4, 22, 6.025], "size": [1, 5, 1], "pivot": [-4, 22, 6.5], "rotation": [0, 0, 24], "uv": [66, 75], "mirror": true} + ] + }, + { + "name": "door_open", + "pivot": [-13, 0, 7], + "cubes": [ + {"origin": [-8, 0, 6], "size": [3, 32, 1], "uv": [38, 73]} + ] + }, + { + "name": "portal", + "pivot": [0, 0, 0], + "cubes": [ + {"origin": [-8, 0, 7.25], "size": [16, 32, 1], "uv": [0, 40]} + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/assets/tardis_refined/tardis_refined/model_layers/door/mystic_door.json b/common/src/main/resources/assets/tardis_refined/tardis_refined/model_layers/door/mystic_door.json new file mode 100644 index 000000000..47e06ba3e --- /dev/null +++ b/common/src/main/resources/assets/tardis_refined/tardis_refined/model_layers/door/mystic_door.json @@ -0,0 +1,98 @@ +{ + "format_version": "1.12.0", + "minecraft:geometry": [ + { + "description": { + "identifier": "geometry.unknown", + "texture_width": 128, + "texture_height": 128, + "visible_bounds_width": 4, + "visible_bounds_height": 3.5, + "visible_bounds_offset": [0, 1.25, 0] + }, + "bones": [ + { + "name": "right_door", + "pivot": [7, 17, 6], + "cubes": [ + {"origin": [0, 1, 6], "size": [7, 32, 1], "uv": [0, 38]}, + {"origin": [0.025, 14, 5], "size": [3, 6, 2], "uv": [39, 27]} + ] + }, + { + "name": "left_door", + "pivot": [-7, 17, 6], + "cubes": [ + {"origin": [-7, 1, 6], "size": [7, 32, 1], "uv": [0, 38], "mirror": true}, + {"origin": [-3.025, 14, 5], "size": [3, 6, 2], "uv": [39, 27], "mirror": true} + ] + }, + { + "name": "frame", + "pivot": [0, 0, 15] + }, + { + "name": "bone", + "parent": "frame", + "pivot": [0, 0, 15], + "cubes": [ + {"origin": [6, 19, 5], "size": [4, 4, 3], "uv": [39, 19]}, + {"origin": [7, 5, 6], "size": [2, 28, 2], "uv": [37, 36]}, + {"origin": [-9, 5, 6], "size": [2, 28, 2], "uv": [37, 36], "mirror": true}, + {"origin": [-10, 19, 5], "size": [4, 4, 3], "uv": [39, 19], "mirror": true} + ] + }, + { + "name": "bone11", + "parent": "bone", + "pivot": [-15, 14, 15] + }, + { + "name": "bone10", + "parent": "bone", + "pivot": [-15, 14, 15], + "cubes": [ + {"origin": [5, 33, 5], "size": [5, 5, 3], "uv": [39, 10]}, + {"origin": [5, 0, 5], "size": [5, 5, 3], "uv": [17, 38]}, + {"origin": [-10, 0, 5], "size": [5, 5, 3], "uv": [17, 38], "mirror": true}, + {"origin": [-10, 33, 5], "size": [5, 5, 3], "uv": [39, 10], "mirror": true} + ] + }, + { + "name": "bone6", + "parent": "bone", + "pivot": [0, 0, 15], + "cubes": [ + {"origin": [-5, 0, 6], "size": [10, 1, 2], "uv": [39, 6]}, + {"origin": [-5, 33, 6], "size": [10, 3, 2], "uv": [39, 0]} + ] + }, + { + "name": "bone3", + "parent": "bone", + "pivot": [0, 0, 15], + "rotation": [0, -90, 0] + }, + { + "name": "bone4", + "parent": "bone3", + "pivot": [0, 0, 15], + "rotation": [0, -90, 0] + }, + { + "name": "bone5", + "parent": "bone4", + "pivot": [0, 0, 15], + "rotation": [0, -90, 0] + }, + { + "name": "portal", + "pivot": [-15, 14, 15], + "cubes": [ + {"origin": [-9, 0, 7.1], "size": [18, 36, 1], "uv": [0, 0]} + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/assets/tardis_refined/tardis_refined/model_layers/door/nuka_door.json b/common/src/main/resources/assets/tardis_refined/tardis_refined/model_layers/door/nuka_door.json new file mode 100644 index 000000000..17232fda5 --- /dev/null +++ b/common/src/main/resources/assets/tardis_refined/tardis_refined/model_layers/door/nuka_door.json @@ -0,0 +1,47 @@ +{ + "format_version": "1.12.0", + "minecraft:geometry": [ + { + "description": { + "identifier": "geometry.unknown", + "texture_width": 128, + "texture_height": 128, + "visible_bounds_width": 3, + "visible_bounds_height": 3.5, + "visible_bounds_offset": [0, 1.25, 0] + }, + "bones": [ + { + "name": "left_door", + "pivot": [-8, 16, 7], + "cubes": [ + {"origin": [-8, 0, 6], "size": [8, 32, 1], "uv": [19, 47]} + ] + }, + { + "name": "right_door", + "pivot": [8, 16, 7], + "cubes": [ + {"origin": [0, 0, 6], "size": [8, 32, 1], "uv": [0, 47]} + ] + }, + { + "name": "frame", + "pivot": [0, 0, 0], + "cubes": [ + {"origin": [-11.5, 32.0625, 4.5], "size": [23, 3, 4], "inflate": 0.125, "uv": [0, 39]}, + {"origin": [-11, 0, 5], "size": [3, 35, 3], "pivot": [-9.5, -1.5, 6.5], "rotation": [0, 45, 0], "uv": [38, 47]}, + {"origin": [8, 0, 5], "size": [3, 35, 3], "pivot": [9.5, -1.5, 6.5], "rotation": [0, -45, 0], "uv": [51, 47]} + ] + }, + { + "name": "portal", + "pivot": [9.5, -1.5, 6.5], + "cubes": [ + {"origin": [-11.5, 0, 6.5], "size": [23, 35, 3], "uv": [0, 0]} + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/assets/tardis_refined/tardis_refined/model_layers/shell/pathfinder_door.json b/common/src/main/resources/assets/tardis_refined/tardis_refined/model_layers/door/pathfinder_door.json similarity index 100% rename from common/src/main/resources/assets/tardis_refined/tardis_refined/model_layers/shell/pathfinder_door.json rename to common/src/main/resources/assets/tardis_refined/tardis_refined/model_layers/door/pathfinder_door.json diff --git a/common/src/main/resources/assets/tardis_refined/tardis_refined/model_layers/door/phone_booth_door.json b/common/src/main/resources/assets/tardis_refined/tardis_refined/model_layers/door/phone_booth_door.json new file mode 100644 index 000000000..ff0048270 --- /dev/null +++ b/common/src/main/resources/assets/tardis_refined/tardis_refined/model_layers/door/phone_booth_door.json @@ -0,0 +1,56 @@ +{ + "format_version": "1.12.0", + "minecraft:geometry": [ + { + "description": { + "identifier": "geometry.unknown", + "texture_width": 128, + "texture_height": 128, + "visible_bounds_width": 3, + "visible_bounds_height": 3.5, + "visible_bounds_offset": [0, 1.25, 0] + }, + "bones": [ + { + "name": "door", + "pivot": [7, 18.75, 7.5], + "rotation": [0, -2.5, 0], + "cubes": [ + {"origin": [-7, 0, 7], "size": [14, 34, 1], "uv": [0, 0]}, + {"origin": [-7, 34, 6], "size": [14, 2, 1], "uv": [40, 33]}, + {"origin": [-6, 17.5, 6.2], "size": [3, 5, 2], "uv": [40, 37]}, + {"origin": [-6.1, 18, 4.5], "size": [1, 4, 3], "uv": [18, 47]}, + {"origin": [-6.5, 8, 6.5], "size": [13, 25, 1], "uv": [31, 0]} + ] + }, + { + "name": "frame", + "pivot": [-27.5, 18, -8], + "cubes": [ + {"origin": [7, 0, 6], "size": [2, 36, 2], "uv": [0, 36]}, + {"origin": [7, 0.25, 5.95], "size": [2, 8, 2], "inflate": 0.25, "uv": [18, 36]}, + {"origin": [7, 31.75, 5.95], "size": [2, 5, 2], "inflate": 0.25, "uv": [9, 47]}, + {"origin": [-8.5, 36, 7.225], "size": [17, 4, 1], "uv": [40, 27]} + ] + }, + { + "name": "bone10", + "parent": "frame", + "pivot": [27.5, 18, -8], + "cubes": [ + {"origin": [-9, 0, 6], "size": [2, 36, 2], "uv": [31, 27]}, + {"origin": [-9, 0.25, 5.95], "size": [2, 8, 2], "inflate": 0.25, "uv": [9, 36]}, + {"origin": [-9, 31.75, 5.95], "size": [2, 5, 2], "inflate": 0.25, "uv": [40, 45]} + ] + }, + { + "name": "portal", + "pivot": [0, 0, 0], + "cubes": [ + {"origin": [-9, 0, 7.25], "size": [18, 37, 1], "uv": [0, 79]} + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/assets/tardis_refined/tardis_refined/model_layers/shell/police_box_door.json b/common/src/main/resources/assets/tardis_refined/tardis_refined/model_layers/door/police_box_door.json similarity index 100% rename from common/src/main/resources/assets/tardis_refined/tardis_refined/model_layers/shell/police_box_door.json rename to common/src/main/resources/assets/tardis_refined/tardis_refined/model_layers/door/police_box_door.json diff --git a/common/src/main/resources/assets/tardis_refined/tardis_refined/model_layers/door/portaloo_door.json b/common/src/main/resources/assets/tardis_refined/tardis_refined/model_layers/door/portaloo_door.json new file mode 100644 index 000000000..763387a24 --- /dev/null +++ b/common/src/main/resources/assets/tardis_refined/tardis_refined/model_layers/door/portaloo_door.json @@ -0,0 +1,52 @@ +{ + "format_version": "1.12.0", + "minecraft:geometry": [ + { + "description": { + "identifier": "geometry.unknown", + "texture_width": 128, + "texture_height": 128, + "visible_bounds_width": 3, + "visible_bounds_height": 3.5, + "visible_bounds_offset": [0, 1.25, 0] + }, + "bones": [ + { + "name": "door", + "pivot": [7, 21.5, 6.75], + "cubes": [ + {"origin": [-7, 0, 5.75], "size": [14, 31, 1], "uv": [0, 37]}, + {"origin": [-6, 31, 5.75], "size": [12, 1, 1], "uv": [47, 4]}, + {"origin": [-6, 15.5, 4], "size": [2, 4, 2], "uv": [47, 7]} + ] + }, + { + "name": "frame", + "pivot": [0, -2, 6.25], + "cubes": [ + {"origin": [-7, 31, 6.25], "size": [14, 2, 1], "uv": [47, 0]}, + {"origin": [7, 0, 6.25], "size": [1, 33, 1], "uv": [42, 42]}, + {"origin": [-8, 0, 6.25], "size": [1, 33, 1], "uv": [42, 42], "mirror": true} + ] + }, + { + "name": "bone4", + "parent": "frame", + "pivot": [0, -2, 5.75], + "cubes": [ + {"origin": [8, 0, 5.75], "size": [3, 33, 2], "uv": [31, 42]}, + {"origin": [-11, 0, 5.75], "size": [3, 33, 2], "uv": [31, 42], "mirror": true}, + {"origin": [-11, 33, 5.75], "size": [22, 2, 2], "uv": [31, 37]} + ] + }, + { + "name": "portal", + "pivot": [0, 0, 0], + "cubes": [ + {"origin": [-11, 0, 7], "size": [22, 35, 1], "uv": [0, 0]} + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/assets/tardis_refined/tardis_refined/model_layers/door/present_door.json b/common/src/main/resources/assets/tardis_refined/tardis_refined/model_layers/door/present_door.json new file mode 100644 index 000000000..d6f7d905d --- /dev/null +++ b/common/src/main/resources/assets/tardis_refined/tardis_refined/model_layers/door/present_door.json @@ -0,0 +1,43 @@ +{ + "format_version": "1.12.0", + "minecraft:geometry": [ + { + "description": { + "identifier": "geometry.unknown", + "texture_width": 128, + "texture_height": 128, + "visible_bounds_width": 3, + "visible_bounds_height": 4.5, + "visible_bounds_offset": [0, 1.75, 0] + }, + "bones": [ + { + "name": "frame", + "pivot": [0, 41, 12], + "cubes": [ + {"origin": [-1, 35, 7.975], "size": [10, 6, 1], "pivot": [1, 41, 12], "rotation": [0, 0, -32.5], "uv": [39, 0]}, + {"origin": [-9, 35, 7.975], "size": [10, 6, 1], "pivot": [-1, 41, 12], "rotation": [0, 0, 32.5], "uv": [39, 0], "mirror": true}, + {"origin": [-10, 33, 6], "size": [20, 6, 3], "uv": [36, 35]}, + {"origin": [8, 0, 7], "size": [1, 35, 2], "uv": [35, 45], "mirror": true}, + {"origin": [-9, 35, 7], "size": [18, 1, 2], "uv": [42, 45]}, + {"origin": [-9, 0, 7], "size": [1, 35, 2], "uv": [35, 45]} + ] + }, + { + "name": "door", + "pivot": [0, 0, 8], + "cubes": [ + {"origin": [-8, 0, 8], "size": [16, 35, 1], "uv": [0, 37]} + ] + }, + { + "name": "portal", + "pivot": [-46, 0, -1], + "cubes": [ + {"origin": [-9, 0, 8.025], "size": [18, 35, 1], "uv": [0, 0]} + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/assets/tardis_refined/tardis_refined/model_layers/door/vending_door.json b/common/src/main/resources/assets/tardis_refined/tardis_refined/model_layers/door/vending_door.json new file mode 100644 index 000000000..682e70370 --- /dev/null +++ b/common/src/main/resources/assets/tardis_refined/tardis_refined/model_layers/door/vending_door.json @@ -0,0 +1,41 @@ +{ + "format_version": "1.12.0", + "minecraft:geometry": [ + { + "description": { + "identifier": "geometry.unknown", + "texture_width": 128, + "texture_height": 128, + "visible_bounds_width": 5, + "visible_bounds_height": 3.5, + "visible_bounds_offset": [0, 1.25, 0] + }, + "bones": [ + { + "name": "frame", + "pivot": [0, 4, 6], + "cubes": [ + {"origin": [-7, 33, 6], "size": [14, 6, 3], "uv": [58, 0]}, + {"origin": [6.975, 0, 6], "size": [3, 33, 2], "uv": [47, 0], "mirror": true}, + {"origin": [-9.975, 0, 6], "size": [3, 33, 2], "uv": [47, 0]}, + {"origin": [-8, 1, 8], "size": [16, 33, 1], "uv": [0, 40]} + ] + }, + { + "name": "door", + "pivot": [0, 2, 8], + "cubes": [ + {"origin": [-7, 3, 7], "size": [14, 30, 1], "uv": [35, 40]} + ] + }, + { + "name": "portal", + "pivot": [37, 0, -40.5], + "cubes": [ + {"origin": [-10, 0, 8], "size": [20, 36, 3], "uv": [0, 0]} + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/assets/tardis_refined/textures/blockentity/door/bulk_head_door.png b/common/src/main/resources/assets/tardis_refined/textures/blockentity/door/bulk_head_door.png deleted file mode 100644 index d89ec90f76c199d29ab8d17cb0479328bd25948d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3713 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 bAV;j`uM569W|Cr=ttDWjZ=zSB;~f1z_$ct{ diff --git a/common/src/main/resources/assets/tardis_refined/textures/blockentity/door/bulk_head_door_modern.png b/common/src/main/resources/assets/tardis_refined/textures/blockentity/door/bulk_head_door_modern.png new file mode 100644 index 0000000000000000000000000000000000000000..e2b41e5481cd44090ceb64b5d0fb83df29731a69 GIT binary patch literal 2906 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 YA~jijos>I59hLz@JyYEZZB*pH0fyFzivR!s literal 0 HcmV?d00001 diff --git a/common/src/main/resources/assets/tardis_refined/textures/blockentity/door/bulk_head_door_rough.png b/common/src/main/resources/assets/tardis_refined/textures/blockentity/door/bulk_head_door_rough.png new file mode 100644 index 0000000000000000000000000000000000000000..a87c0801379ea752f4fb7722894ba476195d24c7 GIT binary patch literal 3706 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 HxQqV*E(;39 literal 9970 zcmeHtbyQp3vvz>uF2yB4p=f~M6nED^aR?;1Yj9|RA_a;SN^xt86)je*P@qVQw^)JV zUfkgeeSLlR`|kR!b?<*~a?Z)wvuBX% z2J+e|3GD{}h!gxFhF-c*U!a?ZtBt)A9O&ie1_#0s_BH?jVrn_V$cMSnBXX_^hX+L( zfMqF4iMoowG;eKF)-B;k-En?cpW{@;Qk|rN$9IYLt>b!A%Jq~mxGzc~rKBZpf=LRV zl6arTKk#Z`)iq}M?BX);{l~VDMtaG)UQ?3n<*Tsc)|*BDbK3bM0YCi^db_qc!?sqw zzJSYXc1==`tn}%<=szj(W7oupPju&TzfDJ?->_LK9n?&m2Qn4UHxLI@HNf2wPii6EU;B| z&VtaQMt}c;{ETGj`0R4~=-Eb^@RDct<-tHvo5ixlTL!h=yFt;dH{S!!gN_G4Hum97 zEy71tsjGKSxQlT835a__zlW9Z3%_?e-4~kxG*!Xw>~z`0fdORUL(vS@C*{F>wAHfn}S^>>zE|H z$#x6feFvqO$=N4>@TfPOu`03{y~ary#xWT+#qz)h*cn_BYM)~93XKn-iH%VL9-}o{ zgGvGt^(z^Tv<(F5iP0PyDKmI4?vP;6D-#P0q$qBSS7i$Y%<+vBK6r_|H*4a4BMh>dIF~hE(@t+=_-fcMGcigSLK0bY1 zR^&UepUmE-BURI_Kc2vt)TwfmnOI4y%Cxw_o|{{<%5@A;Js$A;{G&JC^M!)Jmr0du zKCmIzvj3>kj%+Y|jQ=EIpS<=mss7TJpF-R_B)xI&;Mi;;esm}pe7qq`=s?!ATip7z zM`XkWRF;c38B6eOJEa|SP*mfXH%rdJ%$MEFlZrAE2GQ`BDJk$M57i?8Z0rs>dC!R9 zkYZ>o6RlR^YfCf|XHJ)CxKOCZO*egJBp5z<)r0_E4~lhuGscYnv$$ZtC_G_0V^$^Z*w0te|~Ng-RJ83aauRk9cQx9 zJJsj)j0swpQ|tRF>|v;~!;k7jhh$48R86(F94qhQ99o1mCLlCb>;c&7>d#Cn)%ap` z^_WtYRGfENqvJk|1`AIfQpH80{QV`{?h?e=CftnIa~a;=EvKBEuzaAzjLJ zGMLs-(^#9g%8l6unVk17HR>p(^-TFrc<3o`)l_2ui5BV-;!Q~r0H)zC`5oQSw6(3^ zP1^4)Ku@0PN7a?jTW;9W;53%4QQw3N*rys9x>yZrc}uAkEk>jxgmRD90sT{}DCu(E zwHdxuV_*T|km6Ad>x_eoqG`MO7Zirrg*H?v$D*&kzMA&+6O%f2>0LOwYm+6!?R7uYRp17-u|q)v<4C9#mxVZNe`*FH3Ng>aZhFPFwR;L<0J0 z+#s>vqcyU;yV?ccn1(zNa{HJ>O*6`Cc0`aRHPR0nJq9B1DgjcW?b=|j3TC1Y?3yu_ zbK#7y!A1Mhb@+9Fd+xFbvX4$d2#NNgFjQ2s1JZ~T-|{YZKB6q!qn$yuc7Hj%d-9VR zPOsmL;D*l9zZcxnd=RF%=bv9rQhKk^yDy!W<5PJxR5jQ8bJJ$-F1w~Ie#dY)zMU#( zj#_YH&vYFNKWBK~V-YlFif+`Xb@iT3-+X2f6DFDcBGhprTVbC%Hos<(URZE4>YgDlh^WZ#JnOrP| z8q&x3IZydF)1}hPPbWq#=5;V3=U63aG| zE!6DM6Y?N~`@@WBMKuN6YugQzbpFJ|*t84`7-IobY0WJWlF2 z3P#_38nwRG)^Qrs)$LI1uSvX3t;h-*lDEU^dfnOMQ=P^7de*sSg<~cW6C0$6dv%_e zBgqI7Zd^WRjOElkWHsjGp-$eKRXLwXQUwr2oPEK}802ehmV6nN&}in7_iQKxo<~J? z&DvVYeH5EW6%NpOZ%IAYOMVdUG>=xn4^d$?s1#se(^NgsZT3Ueyb>`}TX25f^Qg)p z?))2>u{7saAT^kVOP+reGnC{oeP{{$GsU1ui@j4O-WEk{i6mEY{-QnQ!wznM{o0BS z(J~&UI8BUgu0-K3ZclZ5tgY+<6bw*kZ1pMa1xiyQ#EWO?#rJU-CW2FVbqkpo9>i>N z-NVH9&c&L+H*?(9G01%uR@&oumMGsL&A^|MlRO-F2t8irm|CNys4;Io#H`9XGONSB zzR^ux(CR;}uXc%@Pm3-KI|V*a7Q)|e#?Xyn6MlG%?it;*6Zwt{Yd2b5uE3m3?Q`T{ z!0|3um7EfXu4$|ebRPFw7=AX~?UK6GkS$M3Y<_P$1-;6zzGd6=To{6}bmryLwqLFHC! zlgfwhHMJ#?z-|3f~ViyBX+htbbSo21F3VLC6XBS2Wod0SE-E%I}` zp^|TG#h|691N!inYpp7ED6|5DRlnUZ$%-%Es$7ii`~}38WQy`FE#Axb$-8(En2$73qE{3pV$-T=XmGxkuI*`|(P3BpC?0!A9tz5IRs6UbIg%lPCKRPm zVCsj`*s(A|gu{j1i+VvAe5!y-G|}UE>c8MBsV1_ct>It_y!(Q;T1eZymOKBeu)zCP zYJ3g9Y8zUug97s*YW%Vt>bxat!{(+$6p=7hygGF?y7%0cqHp3VQEvv~y475KY#Gd} z37(W(MYG4$$~@~No#Wbl8fE22)}OCIdMY(A+u}IzVN5MB-VsFwX!xJgCbZd!2 zIGKifhsqDmN`uZp3yezWu;q#uR&{s62{B0GG(Go*jj-s)zHQC+_(W$_O>1ooU(T-C z-IK5~0R$zMd#S3uz*n~WGK_LZHH7OKN}q0rrye=J^c}RMq2^rOtdHCU{A85z<`{hx z`W<#6k1gNQ$wd+|n!Ag?NILn9B4dfd=3hjWlMs9H4)uc+Pu>j;8n>zV=NDpV&w9lf zr7+)2WJIF(TeZCQsuuTtAHO=&Lb5Ox7OmJKoQ9F!=?FH5%uhv?V3LO=EWHwZM)-N^hEuF%IZv?R+`P;To5@f6=ylh6$Z8Ue}{c|^jv`1>?s+S4Hj zb&5k4dg$8sf}X_Xu$C&QPLIeP`Jd0jo!Oat=rXx=u{45AwJD}R6_Gu1fubRWPVX1G zomclCwQt_P+r*;10pJVAV?_{K^hE173c4g_{~Y#43H&KLDx7Hny>XYSTKM9Hr|pqjel;QgJZYWrNwBf{lw(bXGAJ2UeLh=1S) z4E6dWVN6oaib|NNPLFb&@O%7N7o%XMb%IJ{1j40L+ZMtA5+EBnecI(hW*{Lpl;T@Zoddip^2?$xc z+;+>xnEG6GO4U#D395piTpt~~r~p-$W*9^}+C!#?eIs8#T03PkNIRV=&1(kb?kNfX zgD>LP?*1!Yn4%=-^_EmvCbN@L!b%@9C1!+^UWz8g3q0wxsDz=-%>>(b|I}(2AZ$+? zJy4|{xGSPB_3AqNqFRa{hh6+_UxI^QFMSzL?byed9|O7fNdn!!dl6t81B`ayPFCaG80c^Fs_QjY_izZ`H!U(a$kdE<25JxOVN z=|~OhagyQ7tO{5jUSuP^jAWhoW~xz+nwhJ2g&RXNyOKV!_`G5e#O5kKU`&vHUz=wm zgS@K@ln@iE+Tv%$hPzK9jdn5Bj8|#VdmyObcAueW2>Sg-!H9pE*FFQMRXX=;z{{Pw zWyv#bj&PPDgf`(%0s6;?atU8*1#kmlFm{uKRSm|2w-M=9VW|f6D@t~g2^VhG$yp0M z+WC-pHAM%u8$&F`OhfGunJ}X#R$V|<1cbJeIT*A0RfF8jsnscpU@Y@zc{1F2+i~|K zDgRor`}TxfX)px${L_}&@p7VA6OzQW>G73DGKqPCk-bir4?xdmg(Iu($GLST%9M#= z_j|HgsCEWvYbQg&$TUZW_o zv9n}hpe<tO$Ug1$EIuZVy&#m*$mhs9m=lvC_3CDI z^5@}WWqRf&2FTj|AHrOB2iUn9F9XV+bVTApY!BDICGB}89>=!#L=A;A?0omXYDcVA znmU4l=mHz-Rfe*%$6p5@SSylBAyi!@FJ&H04sv==K|AnH9!uorp9z!uUaZ#=334^( zJTr?#Gh%#V&R2MSgT^NynDG#k;$e2FKv%2N(q6x=o<{lefz^R?=TQ^3)fG)o(8Stz zy2nvGy2g#YKBo!`Tyf)V{*#>At9Hcq4k)jKa5~z>(Q?$c=g2JvwliKeD*7b)vNFw| z3cF=6li?@l_w=ZQHM{eZDP#85l8B>HqqJ(m%Hd%z0UJ=t>%-9$a*lUn6 z(Ovfx4)P9Jd(PSo%l#24yOC#w4I(%d=$Ikor39eQO=1l=kLC%ZN@J7rV^a_ox^~2i z5j__oyV;!qCn&Nl1CSbPRBge2kyM+{Ft<7AIqB-V_T) z--AL75|a3-=1HSh(_IX^Xu9}cKL6~OBhnR^z)G@urU&=$gI~d`kJ8NC}k*2GNnF zB4?^~EKFA(@f+)uS~?|NO8TUa%G`s>q0J~7{8Q>w!h~N+aGe#sKzcRSIpirI%q&-@ zW_#Cq+9eZkZ9A{(c*f~%d7OM`tcJ^g(lXut(OWI~B($H-@~27~-lxRN+VDVngj9iR zA8Js&^hw5p`V~=4hERb)hcgTjkvodGDJ?sDI~B)`SJR`JbA(SETe&LAkv)d~(mIJ+VD(f|N)DTEu;+7a#rw1V5(yGStYHn%YW?O_s34+S-N zHQeOjcJ|8t9&kN>O^CI>qqQiENlFq&93h4TaE5z9fe2?O7f&&S1k*2EG35QNn1>1Y zOU27kg2_-r8z|@M0S5|z1VFsp3J7~2Fq0$>P}~D%Bc>~__&Wr$CBbCp<>e;E!{h7g z3-aX$xq8_0@QI3w^6-Lrz+i5q2Dhi5ix(8Z?c&LN3-KF3;4WUwe}{ls|7q{$?cww*9GEo^+zIZCRP{uT%J+{Ul~gpe|FpQJ zz}DW`?Uxmj?0;x_+1va@)<1l^?fDhX-yK1k|B3q#?LT7wrHs_l&=8Y%wf4SsPeopW z>2`cEn5(rtOzgK?sFjEnzpya3D8Gm>w}3FOH8<1-Y|RZ9fr<*)fJOMgaK67msknH0 zL0zojw@^rMkUbJdK!}fDln(~whJyw8xCLzZ!Q7&JU@LC04IFCC3l)Wdq5OY?(DJZH zW+l|=?_S+P!H`gbRyJ1FFhMJB5ne$dZUH`iK5h{hOqd(S3l`$D=H-LJ1%-b>!K}p; zT|Jzk$mz6qhT6h;++1vbb=(pzCZnw)!2|~J{w2|Nf_m8?4UlWV-Ua6B>-kp~#NHXM z=LNmxlTS!k5G*Pn$SWW$%FD|y_?MCa+`|)@i?^tJydZw?ub$h95krQ9q!xOcsYrld za%41OavpG~m#YWF)zwLY>DDRWt>vHH8ps6&gL*;bpMdyF<_4_>h zFOGnO{&$f7h~Izd`j@W%h=Kn|`QPmNm#+Vaf&WPP-|YGyqYLM+hbg!V@*9vZ@=?ja zmM$Inn1x}brX&xzxqauhyh=t&u-%l6JOKb)(%TaSkdaA=6k>X*XeeN=qM}eR-zk!> zApro;hgIZdAc(2$EG?}WMapglit5RT)PCKhc8+J-g|CTHw;A-O4!goKjq4!#MaqGI z_!*t?68(=7J;8uNRecCZpK$4!-Xln&4<`x-35#^CnevB`ahpj>os-I}Pv6qvXc$|2 z2hHEC6XF(6Uif~05jV#Nu;dEpPz0O>A4lgs@7&LX=KCQ91RGNGwb|QKN16a>zfx3y z^1J%2(nZO70gF%qfhP-$5k%cm>p!=%(MV$>8%{<7QPx4Dqu-XxW8{cR7CLA4i*YsSl_#oB*esqp zc|VGxlpKSVJTBr>@Wo~7x4a(opaRjyD};HNL`*+PIzPbL%3Ww$;!)>o6rO)Q#i2wa zB6Kb2B+^nNe3nC1eZVibMV-HaG9tW76e1QviBY!ocof4?}=`^C<91@7yItQolNv*@SeEDf)o&cc0AP{2(LE;-$+ z;(!J5_I@A{;HU4W8g)WxHo$DO1FbYlLvt8f9~r$!ItJ0Slp;L#GNr^6WY~!Tn&#l!}1@UpK6gm1UevmUzoMCCpPK_>`5@! z?H&#|p-xAzI#Fa;+K|S3=7Wai0Z8f!ym_M&ZcK#%BJa$5j4_kd4}PE}hJ-zVGY$vc z`=A35A(j`xdn%+uk3oVFcIP!q#_47=i|FN@&^r5m9VI*&wVDTjP~o=sky(RG0L#7U z^2lq=n}^#TW1S$NC01vejqg%nGVl3RZA6_tu5(sEHN8YAE4Rg#R7*1`A=aQGMwS~* zy2q`4(Ohe{LhbD^Kgq!%aN{g~!DTMlTnC^;7V5Tqa({o{l!IQW$~bj&^rM4*HtFb4 zbS(SpuTnP!cmO*(b+IOlh4a}}(H9C>jNwGG|G&$#haG@WU-0gfQcK5f<6Pib!yXr@ zg5nG5`!QQrugBekmseLk=Dx@$l1aB~<6C5wE^n%|xb`iU5cTe1sXwozDE$n>A>0*D z?xv7MAXbfL9hG|}+5>Xh7T8=VGGMLq#(mGt)*1bWRX5j{P{y9~XeTR_UbtvU3y_39 zMXShmT%#Q3#p3#$3VRMpOjC*{SV`~FaYPxzYq>ugOe0@9mz=NtBu2gfBpr9Ikkhtr zN5PrkbMg^I!5=lK88AGuSxzY{K!7?&z3JwKUDE&X3o$-=E~~Y;CLKvNX#O%ay?|@x zM#d9Gev~rzWJ44pqzb<8y7R=i@;-TViBrl_V5o_}y(QGO%R>_SnP9w2h9g^-7xCjA z;go>+?o&A6X5>+mUntFDn$9HKr?M#rpKXYEe0CzGG06Rsi1Xui%zB3YAi>$DrneJ} z8HmuXk7OJ)HwcVJn1g6hknN@LJC;V|R#oXU*{nOuM#z-&y1f4l-EiXi##HCasrk{B ztoMnH(1Kx6XA2JIo(#Z2O{y17z+;AR#t}8P&VOT^v4<>lY9vBucIPH{F?eMEcyr_` zpzg5FUd;zTAG9}#_I_i6=XUu%c&X4xlx%XRWbZ*_b5)Iz_yKxaEwOZ?X(ZgpBOrZv z{5-fyJhkdV(epxno&YCe4|&(E)5Zb>q1;PWN$H0-N(`Jj1ho+{AQ}|3%M6wiq)PV2 z9is^8+tuzk)b7Fqr6fXuQv6Fl?^uZ$3br;)Fo@D)0Pqei>RX;p_xeEHue*#F_95K{ zUze?8r4$H<){YCcB~VPRu>(T0cQ}=Ts~k5=ol>F5KQjG4QW9I@21VVNOIOB-ND5i+ O0V)cb@)fd{kNyvznFK-r diff --git a/common/src/main/resources/assets/tardis_refined/textures/blockentity/shell/groening/groening_interior.png b/common/src/main/resources/assets/tardis_refined/textures/blockentity/shell/groening/groening_interior.png index 8b06c45b57bf08b570e65da7d6f806833f12e3d7..6723652ce4ccbb05946191ccb94496275a865334 100644 GIT binary patch delta 2155 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 literal 11119 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 Ns!Cdl)$&&1{|g}_@jn0n diff --git a/common/src/main/resources/assets/tardis_refined/textures/blockentity/shell/mystic/mystic_interior.png b/common/src/main/resources/assets/tardis_refined/textures/blockentity/shell/mystic/mystic_interior.png index e918b3310f770f8490a4ccc09fb9253759a79f86..72e1424539a609199c462dbfeda546106204a3f9 100644 GIT binary patch literal 2035 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