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 d89ec90f7..000000000 Binary files a/common/src/main/resources/assets/tardis_refined/textures/blockentity/door/bulk_head_door.png and /dev/null differ 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 000000000..e2b41e548 Binary files /dev/null and b/common/src/main/resources/assets/tardis_refined/textures/blockentity/door/bulk_head_door_modern.png differ 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 000000000..a87c08013 Binary files /dev/null and b/common/src/main/resources/assets/tardis_refined/textures/blockentity/door/bulk_head_door_rough.png differ diff --git a/common/src/main/resources/assets/tardis_refined/textures/blockentity/shell/drifter/drifter_interior.png b/common/src/main/resources/assets/tardis_refined/textures/blockentity/shell/drifter/drifter_interior.png index 9a88f561c..851173f36 100644 Binary files a/common/src/main/resources/assets/tardis_refined/textures/blockentity/shell/drifter/drifter_interior.png and b/common/src/main/resources/assets/tardis_refined/textures/blockentity/shell/drifter/drifter_interior.png differ 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 8b06c45b5..6723652ce 100644 Binary files a/common/src/main/resources/assets/tardis_refined/textures/blockentity/shell/groening/groening_interior.png and b/common/src/main/resources/assets/tardis_refined/textures/blockentity/shell/groening/groening_interior.png differ 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 e918b3310..72e142453 100644 Binary files a/common/src/main/resources/assets/tardis_refined/textures/blockentity/shell/mystic/mystic_interior.png and b/common/src/main/resources/assets/tardis_refined/textures/blockentity/shell/mystic/mystic_interior.png differ diff --git a/common/src/main/resources/assets/tardis_refined/textures/blockentity/shell/nuka/nuka_interior.png b/common/src/main/resources/assets/tardis_refined/textures/blockentity/shell/nuka/nuka_interior.png index 57aa0c249..c24240966 100644 Binary files a/common/src/main/resources/assets/tardis_refined/textures/blockentity/shell/nuka/nuka_interior.png and b/common/src/main/resources/assets/tardis_refined/textures/blockentity/shell/nuka/nuka_interior.png differ diff --git a/common/src/main/resources/assets/tardis_refined/textures/blockentity/shell/phone_booth/metal_interior.png b/common/src/main/resources/assets/tardis_refined/textures/blockentity/shell/phone_booth/metal_interior.png index dfa93eadd..40f702d0f 100644 Binary files a/common/src/main/resources/assets/tardis_refined/textures/blockentity/shell/phone_booth/metal_interior.png and b/common/src/main/resources/assets/tardis_refined/textures/blockentity/shell/phone_booth/metal_interior.png differ diff --git a/common/src/main/resources/assets/tardis_refined/textures/blockentity/shell/phone_booth/phone_booth_interior.png b/common/src/main/resources/assets/tardis_refined/textures/blockentity/shell/phone_booth/phone_booth_interior.png index 0c8a88aac..fa3be976a 100644 Binary files a/common/src/main/resources/assets/tardis_refined/textures/blockentity/shell/phone_booth/phone_booth_interior.png and b/common/src/main/resources/assets/tardis_refined/textures/blockentity/shell/phone_booth/phone_booth_interior.png differ