Compare commits

..

12 Commits

Author SHA1 Message Date
thanhtu2411 dabb26d2db Fix: Update Skill02 2024-05-30 09:50:36 +07:00
thanhtu2411 1d8c52abfa Update Fx 4 2024-05-23 16:18:25 +07:00
thanhtu2411 456211f10e Update Fx 3 2024-05-23 14:20:51 +07:00
thanhtu2411 42f034742a Import shader graph 2024-05-21 10:02:45 +07:00
thanhtu2411 9e4c7352f0 merge branch 2024-05-20 18:09:27 +07:00
thanhtu2411 131a12f3a7 Merge branch 'main' into origin/TA/FX 2024-05-20 14:02:10 +07:00
thanhtu2411 34c9785956 Reset transform prefab 2024-05-20 13:59:59 +07:00
thanhtu2411 abaa08552c Update Fx 2 2024-05-20 13:52:04 +07:00
thanhtu2411 903962f701 make fx 2024-05-15 15:59:02 +07:00
thanhtu2411 ce0dca6c54 Merge branch 'main' into origin/TA/FX 2024-05-15 15:53:30 +07:00
thanhtu2411 bac2537907 aaaaaa 2024-05-13 11:45:11 +07:00
thanhtu a8f3d7e726 aaa 2024-05-13 11:43:32 +07:00
760 changed files with 6688 additions and 92229 deletions

View File

@ -204,7 +204,6 @@ declare global {
trunc(): number; trunc(): number;
truncDigits(digits: number): number; truncDigits(digits: number): number;
toFixedDown(digits: number): number; toFixedDown(digits: number): number;
claim(min: number, max: number): number;
} }
interface String { interface String {
@ -297,7 +296,6 @@ Number.prototype.truncDigits = function (digits: number): number {
return digits > 0 ? Number(this).toFixedDown(digits) : (Math.trunc(Number(this) * Math.pow(10, digits)) / Math.pow(10, digits)); return digits > 0 ? Number(this).toFixedDown(digits) : (Math.trunc(Number(this) * Math.pow(10, digits)) / Math.pow(10, digits));
} }
Number.prototype.trunc = function (): number { Number.prototype.trunc = function (): number {
return Math.trunc(Number(this)); return Math.trunc(Number(this));
} }
@ -308,17 +306,6 @@ Number.prototype.toFixedDown = function (digits: number): number {
return m ? parseFloat(m[1]) : Number(this).valueOf(); return m ? parseFloat(m[1]) : Number(this).valueOf();
} }
Number.prototype.truncDigits = function (digits: number): number {
return digits > 0 ? Number(this).toFixedDown(digits) : (Math.trunc(Number(this) * Math.pow(10, digits)) / Math.pow(10, digits));
}
Number.prototype.claim = function (min: number, max: number): number {
var result = Math.max(Number(this), min);
result = Math.min(Number(this), max);
return result;
}
Vec3.prototype.toVec2 = function (): Vec2{ Vec3.prototype.toVec2 = function (): Vec2{
return new Vec2(this.x, this.y); return new Vec2(this.x, this.y);
} }

View File

@ -12,7 +12,7 @@ export class UmPopupBase extends Component {
_is_black_panel: boolean = true; _is_black_panel: boolean = true;
public popup_pos = Vec3.ZERO; public popup_pos = Vec3.ZERO;
private OPACITY_BLACK = 180; private OPACITY_BLACK = 150;
DURATION_SHOW_ZOOM = 0.35; DURATION_SHOW_ZOOM = 0.35;
DURATION_HIDE_ZOOM = 0.35; DURATION_HIDE_ZOOM = 0.35;
@ -22,8 +22,6 @@ export class UmPopupBase extends Component {
DURATION_SHOW_MOVE = 0.35; DURATION_SHOW_MOVE = 0.35;
DURATION_HIDE_MOVE = 0.35; DURATION_HIDE_MOVE = 0.35;
isDestroyOnHide = false;
public static TRANSITIONS_TYPE = { public static TRANSITIONS_TYPE = {
ZOOM_IN: "Z", ZOOM_IN: "Z",
MOVE_IN_TOP: "T", MOVE_IN_TOP: "T",
@ -40,10 +38,10 @@ export class UmPopupBase extends Component {
ORIGIN: 4 ORIGIN: 4
} }
protected onLoad() { onLoad() {
// if (this.bgBlack) { if (this.bgBlack) {
// this.bgBlack.node.on(Button.EventType.CLICK, this.onBtnCloseClicked, this); this.bgBlack.node.on(Button.EventType.CLICK, this.onBtnCloseClicked, this);
// } }
} }
public show(callback: Function = null!) { public show(callback: Function = null!) {
@ -76,30 +74,24 @@ export class UmPopupBase extends Component {
if (this.bgPopup) { if (this.bgPopup) {
let duration = this.DURATION_HIDE_ZOOM; let duration = this.DURATION_HIDE_ZOOM;
tween(this.bgPopup.node).to(duration, { scale: new Vec3(this.SCALE_END_HIDE_ZOOM, this.SCALE_END_HIDE_ZOOM, 1) }, { easing: 'backIn' }).call(() => { tween(this.bgPopup.node).to(duration, { scale: new Vec3(this.SCALE_END_HIDE_ZOOM, this.SCALE_END_HIDE_ZOOM, 1) }, { easing: 'backIn' }).call(() => {
if (this.isDestroyOnHide) {
this.node.destroyAllChildren();
this.node.destroy();
}
else this.node?.setNodeActive(false);
callback?.(); callback?.();
this.node.destroyAllChildren();
this.node.destroy();
}).start(); }).start();
tween(this.bgPopup.node).delay(0.1).call(() => this.bgPopup.node.onFadeOut(duration)).start(); tween(this.bgPopup.node).delay(0.1).call(() => this.bgPopup.node.onFadeOut(duration)).start();
} }
else { else {
this.isDestroyOnHide ? this.node?.destroy() : this.node?.setNodeActive(false);
callback?.(); callback?.();
this.node.destroy();
} }
} }
else { else {
this.isDestroyOnHide ? this.node?.destroy() : this.node?.setNodeActive(false);
callback?.(); callback?.();
this.node.destroy();
} }
} }
private _fadeInBlackPanel() { private _fadeInBlackPanel() {
if (this.bgBlack) { if (this.bgBlack) {
this.bgBlack.node.onFadeIn(this.DURATION_SHOW_MOVE, this.OPACITY_BLACK); this.bgBlack.node.onFadeIn(this.DURATION_SHOW_MOVE, this.OPACITY_BLACK);
@ -119,7 +111,6 @@ export class UmPopupBase extends Component {
this.show(); this.show();
} }
else { else {
this.bgPopup.setOpacity(255);
this.bgPopup.getComponent(Widget)?.updateAlignment(); this.bgPopup.getComponent(Widget)?.updateAlignment();
let pos = new Vec3(this.bgPopup.node.position); let pos = new Vec3(this.bgPopup.node.position);
this.popup_pos = pos; this.popup_pos = pos;
@ -217,12 +208,9 @@ export class UmPopupBase extends Component {
if (this.bgBlack) { if (this.bgBlack) {
this.bgBlack.node.active = false; this.bgBlack.node.active = false;
} }
if (this.isDestroyOnHide) {
this.node.destroyAllChildren();
this.node.destroy();
}
else this.node?.setNodeActive(false);
callback?.(); callback?.();
this.node.destroyAllChildren();
this.node.destroy();
}).start(); }).start();
} }
} }

View File

@ -747,21 +747,6 @@ export class UmUtil {
spine?.setMix(anim2, anim1, mixTime); spine?.setMix(anim2, anim1, mixTime);
} }
public static removeAllNonDigit(input): number {
return Number(input.replace(/\D/g, ''));//remove all non-digits
}
public static removeAllDigits(input): string {
return input.replace(/[0-9]/g, '');
}
public static degToRad(deg: number): number {
return deg * (Math.PI / 180.0);
}
public static radToDeg(rad: number): number {
return rad * 180.0 / Math.PI;
}
// public static subtractTwoVector3(a: Vec3, b: Vec3) { // public static subtractTwoVector3(a: Vec3, b: Vec3) {
// var result = new Vec3(); // var result = new Vec3();
// Vec3.subtract(result, a, b); // Vec3.subtract(result, a, b);

View File

@ -2,7 +2,7 @@
"ver": "1.2.0", "ver": "1.2.0",
"importer": "directory", "importer": "directory",
"imported": true, "imported": true,
"uuid": "70bf5547-aa22-4e4c-b1ea-63cd67bb2126", "uuid": "55b43483-b827-416c-ac46-508836de53a8",
"files": [], "files": [],
"subMetas": {}, "subMetas": {},
"userData": {} "userData": {}

View File

@ -87,7 +87,7 @@
"uuid": "b335be51-4921-4303-946f-a0ee8e7846fe@63bff", "uuid": "b335be51-4921-4303-946f-a0ee8e7846fe@63bff",
"displayName": "", "displayName": "",
"id": "63bff", "id": "63bff",
"name": "aura_straight.prefab", "name": "aura_straight.FBX.prefab",
"userData": { "userData": {
"gltfIndex": 0 "gltfIndex": 0
}, },

View File

@ -17,32 +17,16 @@
"srcBlendFactor": 2, "srcBlendFactor": 2,
"dstBlendFactor": 1, "dstBlendFactor": 1,
"startColor": { "startColor": {
"_val": 2740373706, "_val": 2740373706
"r": 202,
"g": 200,
"b": 86,
"a": 163
}, },
"startColorVar": { "startColorVar": {
"_val": 0, "_val": 0
"r": 0,
"g": 0,
"b": 0,
"a": 0
}, },
"endColor": { "endColor": {
"_val": 3591610797, "_val": 3591610797
"r": 173,
"g": 161,
"b": 19,
"a": 214
}, },
"endColorVar": { "endColorVar": {
"_val": 0, "_val": 0
"r": 0,
"g": 0,
"b": 0,
"a": 0
}, },
"startSize": 3.369999885559082, "startSize": 3.369999885559082,
"startSizeVar": 50, "startSizeVar": 50,

View File

@ -1,11 +1,10 @@
{ {
"ver": "1.0.1", "ver": "1.0.0",
"importer": "*", "importer": "shader-graph",
"imported": true, "imported": true,
"uuid": "37481e4c-2fee-4314-a771-ca99f73a8766", "uuid": "37481e4c-2fee-4314-a771-ca99f73a8766",
"files": [ "files": [
".json", ".json"
".shadergraph"
], ],
"subMetas": {}, "subMetas": {},
"userData": {} "userData": {}

View File

@ -22,9 +22,7 @@
], ],
"_active": true, "_active": true,
"_components": [], "_components": [],
"_prefab": { "_prefab": null,
"__id__": 48
},
"_lpos": { "_lpos": {
"__type__": "cc.Vec3", "__type__": "cc.Vec3",
"x": 0, "x": 0,
@ -54,7 +52,7 @@
}, },
"autoReleaseAssets": false, "autoReleaseAssets": false,
"_globals": { "_globals": {
"__id__": 49 "__id__": 34
}, },
"_id": "641dfdac-ab3c-4690-8fd1-b6de7d248493" "_id": "641dfdac-ab3c-4690-8fd1-b6de7d248493"
}, },
@ -81,31 +79,25 @@
}, },
{ {
"__id__": 26 "__id__": 26
},
{
"__id__": 31
},
{
"__id__": 40
} }
], ],
"_active": true, "_active": true,
"_components": [ "_components": [
{ {
"__id__": 45 "__id__": 31
}, },
{ {
"__id__": 46 "__id__": 32
}, },
{ {
"__id__": 47 "__id__": 33
} }
], ],
"_prefab": null, "_prefab": null,
"_lpos": { "_lpos": {
"__type__": "cc.Vec3", "__type__": "cc.Vec3",
"x": 540, "x": 414,
"y": 1170, "y": 896,
"z": 0 "z": 0
}, },
"_lrot": { "_lrot": {
@ -190,7 +182,7 @@
"_priority": 0, "_priority": 0,
"_fov": 45, "_fov": 45,
"_fovAxis": 0, "_fovAxis": 0,
"_orthoHeight": 1170, "_orthoHeight": 896,
"_near": 0, "_near": 0,
"_far": 1000, "_far": 1000,
"_color": { "_color": {
@ -253,7 +245,7 @@
"_lpos": { "_lpos": {
"__type__": "cc.Vec3", "__type__": "cc.Vec3",
"x": -294.802, "x": -294.802,
"y": -882.189, "y": -370.89,
"z": 0 "z": 0
}, },
"_lrot": { "_lrot": {
@ -369,8 +361,8 @@
"enabledContactListener": true, "enabledContactListener": true,
"bullet": false, "bullet": false,
"awakeOnLoad": true, "awakeOnLoad": true,
"_group": 8, "_group": 4,
"_type": 1, "_type": 2,
"_allowSleep": false, "_allowSleep": false,
"_gravityScale": 0, "_gravityScale": 0,
"_linearDamping": 2, "_linearDamping": 2,
@ -395,7 +387,7 @@
"_enabled": true, "_enabled": true,
"__prefab": null, "__prefab": null,
"tag": 0, "tag": 0,
"_group": 8, "_group": 4,
"_density": 0, "_density": 0,
"_sensor": false, "_sensor": false,
"_friction": 0, "_friction": 0,
@ -724,15 +716,6 @@
}, },
"_enabled": true, "_enabled": true,
"__prefab": null, "__prefab": null,
"colliderObject": null,
"sensor": null,
"rigibodyComponent": null,
"theme": null,
"shooting": null,
"enemyType": 0,
"attackType": 0,
"txtName": null,
"enemyAnim": null,
"_id": "d93+oYgbZLUbSjF26ZLO8p" "_id": "d93+oYgbZLUbSjF26ZLO8p"
}, },
{ {
@ -861,7 +844,7 @@
"_enabled": true, "_enabled": true,
"__prefab": null, "__prefab": null,
"tag": 0, "tag": 0,
"_group": 2, "_group": 64,
"_density": 1, "_density": 1,
"_sensor": false, "_sensor": false,
"_friction": 0, "_friction": 0,
@ -889,10 +872,10 @@
"_enabled": true, "_enabled": true,
"__prefab": null, "__prefab": null,
"enabledContactListener": true, "enabledContactListener": true,
"bullet": false, "bullet": true,
"awakeOnLoad": true, "awakeOnLoad": true,
"_group": 2, "_group": 64,
"_type": 1, "_type": 0,
"_allowSleep": false, "_allowSleep": false,
"_gravityScale": 0, "_gravityScale": 0,
"_linearDamping": 0, "_linearDamping": 0,
@ -1032,7 +1015,7 @@
"_enabled": true, "_enabled": true,
"__prefab": null, "__prefab": null,
"tag": 0, "tag": 0,
"_group": 2, "_group": 64,
"_density": 1, "_density": 1,
"_sensor": false, "_sensor": false,
"_friction": 0, "_friction": 0,
@ -1060,10 +1043,10 @@
"_enabled": true, "_enabled": true,
"__prefab": null, "__prefab": null,
"enabledContactListener": true, "enabledContactListener": true,
"bullet": false, "bullet": true,
"awakeOnLoad": true, "awakeOnLoad": true,
"_group": 2, "_group": 64,
"_type": 1, "_type": 0,
"_allowSleep": false, "_allowSleep": false,
"_gravityScale": 0, "_gravityScale": 0,
"_linearDamping": 0, "_linearDamping": 0,
@ -1077,307 +1060,6 @@
"_fixedRotation": false, "_fixedRotation": false,
"_id": "99h6/3Y6FOuLBV0bjijbxG" "_id": "99h6/3Y6FOuLBV0bjijbxG"
}, },
{
"__type__": "cc.Node",
"_objFlags": 0,
"_parent": {
"__id__": 2
},
"_prefab": {
"__id__": 32
},
"__editorExtras__": {}
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 31
},
"asset": {
"__uuid__": "ec89f087-0ef4-4b30-a3c2-a7f57c341312",
"__expectedType__": "cc.Prefab"
},
"fileId": "5c32r0OAZC/pXh3pgykwmX",
"instance": {
"__id__": 33
},
"targetOverrides": null,
"nestedPrefabInstanceRoots": null
},
{
"__type__": "cc.PrefabInstance",
"fileId": "5enryvh49B5b/HLzgHAkCo",
"prefabRootNode": null,
"mountedChildren": [],
"mountedComponents": [],
"propertyOverrides": [
{
"__id__": 34
},
{
"__id__": 36
},
{
"__id__": 37
},
{
"__id__": 38
}
],
"removedComponents": [
{
"__id__": 39
}
]
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 35
},
"propertyPath": [
"_name"
],
"value": "Gate1_Stone"
},
{
"__type__": "cc.TargetInfo",
"localID": [
"5c32r0OAZC/pXh3pgykwmX"
]
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 35
},
"propertyPath": [
"_lpos"
],
"value": {
"__type__": "cc.Vec3",
"x": 0,
"y": 481.819,
"z": 0
}
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 35
},
"propertyPath": [
"_lrot"
],
"value": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": 0,
"w": 1
}
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 35
},
"propertyPath": [
"_euler"
],
"value": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
}
},
{
"__type__": "cc.TargetInfo",
"localID": [
"ef+/kurCJEaLqh4kwztwzP"
]
},
{
"__type__": "cc.Node",
"_name": "animation",
"_objFlags": 0,
"__editorExtras__": {},
"_parent": {
"__id__": 2
},
"_children": [
{
"__id__": 41
}
],
"_active": true,
"_components": [
{
"__id__": 44
}
],
"_prefab": null,
"_lpos": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_lrot": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": 0,
"w": 1
},
"_lscale": {
"__type__": "cc.Vec3",
"x": -1,
"y": 1,
"z": 1
},
"_mobility": 0,
"_layer": 33554432,
"_euler": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_id": "b8flGq7L5Kn6beB7OOoNDj"
},
{
"__type__": "cc.Node",
"_name": "spine",
"_objFlags": 0,
"__editorExtras__": {},
"_parent": {
"__id__": 40
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 42
},
{
"__id__": 43
}
],
"_prefab": null,
"_lpos": {
"__type__": "cc.Vec3",
"x": -10.899,
"y": -99.988,
"z": 0
},
"_lrot": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": 0,
"w": 1
},
"_lscale": {
"__type__": "cc.Vec3",
"x": 1.5,
"y": 1.5,
"z": 1
},
"_mobility": 0,
"_layer": 33554432,
"_euler": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_id": "0bqOOC8ChBFrUIlqvw12KZ"
},
{
"__type__": "cc.UITransform",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 41
},
"_enabled": true,
"__prefab": null,
"_contentSize": {
"__type__": "cc.Size",
"width": 171,
"height": 242.1999969482422
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.46900583010667946,
"y": 0.10487200635249479
},
"_id": "1ct/lbj79P0JAQJ1c9pwYM"
},
{
"__type__": "sp.Skeleton",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 41
},
"_enabled": true,
"__prefab": null,
"_customMaterial": null,
"_srcBlendFactor": 2,
"_dstBlendFactor": 4,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_skeletonData": {
"__uuid__": "2febbe4a-3db8-4ba0-9c35-4c978471e89d",
"__expectedType__": "sp.SkeletonData"
},
"defaultSkin": "default",
"defaultAnimation": "attack",
"_premultipliedAlpha": true,
"_timeScale": 1,
"_preCacheMode": 0,
"_cacheMode": 0,
"_sockets": [],
"_useTint": false,
"_debugMesh": false,
"_debugBones": false,
"_debugSlots": false,
"_enableBatch": false,
"loop": true,
"_id": "f2SGcsGcJF+agxXtdcYzxG"
},
{
"__type__": "cc.UITransform",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 40
},
"_enabled": true,
"__prefab": null,
"_contentSize": {
"__type__": "cc.Size",
"width": 100,
"height": 100
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_id": "a0Q3fmab9BSYjUi8+cnUlk"
},
{ {
"__type__": "cc.UITransform", "__type__": "cc.UITransform",
"_name": "", "_name": "",
@ -1390,8 +1072,8 @@
"__prefab": null, "__prefab": null,
"_contentSize": { "_contentSize": {
"__type__": "cc.Size", "__type__": "cc.Size",
"width": 1080, "width": 828,
"height": 2340 "height": 1792
}, },
"_anchorPoint": { "_anchorPoint": {
"__type__": "cc.Vec2", "__type__": "cc.Vec2",
@ -1446,44 +1128,31 @@
"_lockFlags": 0, "_lockFlags": 0,
"_id": "c5V1EV8IpMtrIvY1OE9t2u" "_id": "c5V1EV8IpMtrIvY1OE9t2u"
}, },
{
"__type__": "cc.PrefabInfo",
"root": null,
"asset": null,
"fileId": "641dfdac-ab3c-4690-8fd1-b6de7d248493",
"instance": null,
"targetOverrides": null,
"nestedPrefabInstanceRoots": [
{
"__id__": 31
}
]
},
{ {
"__type__": "cc.SceneGlobals", "__type__": "cc.SceneGlobals",
"ambient": { "ambient": {
"__id__": 50 "__id__": 35
}, },
"shadows": { "shadows": {
"__id__": 51 "__id__": 36
}, },
"_skybox": { "_skybox": {
"__id__": 52 "__id__": 37
}, },
"fog": { "fog": {
"__id__": 53 "__id__": 38
}, },
"octree": { "octree": {
"__id__": 54 "__id__": 39
}, },
"skin": { "skin": {
"__id__": 55 "__id__": 40
}, },
"lightProbeInfo": { "lightProbeInfo": {
"__id__": 56 "__id__": 41
}, },
"postSettings": { "postSettings": {
"__id__": 57 "__id__": 42
}, },
"bakedWithStationaryMainLight": false, "bakedWithStationaryMainLight": false,
"bakedWithHighpLightmap": false "bakedWithHighpLightmap": false

View File

@ -1,9 +0,0 @@
{
"ver": "1.2.0",
"importer": "directory",
"imported": true,
"uuid": "e463c184-b6d0-44bd-ad17-a687b7e57066",
"files": [],
"subMetas": {},
"userData": {}
}

View File

@ -1,9 +0,0 @@
{
"ver": "1.2.0",
"importer": "directory",
"imported": true,
"uuid": "8c4115a2-0771-4713-8341-0c04f5d3e96c",
"files": [],
"subMetas": {},
"userData": {}
}

View File

@ -1,9 +0,0 @@
{
"ver": "1.2.0",
"importer": "directory",
"imported": true,
"uuid": "837bfbbd-73e4-47b9-acf4-05f7683e90da",
"files": [],
"subMetas": {},
"userData": {}
}

View File

@ -1,230 +0,0 @@
DesertTitan.png
size: 1024,256
format: RGBA8888
filter: Linear,Linear
repeat: none
VFX-Swing_0000
rotate: true
xy: 325, 28
size: 60, 104
orig: 69, 113
offset: 2, 5
index: -1
VFX-Swing_0001
rotate: false
xy: 519, 20
size: 60, 68
orig: 69, 113
offset: 3, 5
index: -1
VFX-Swing_0002
rotate: true
xy: 637, 30
size: 58, 47
orig: 69, 113
offset: 3, 5
index: -1
body
rotate: true
xy: 226, 19
size: 69, 95
orig: 69, 95
offset: 0, 0
index: -1
crack
rotate: true
xy: 470, 6
size: 24, 23
orig: 26, 26
offset: 1, 2
index: -1
dead1
rotate: true
xy: 4, 92
size: 160, 130
orig: 160, 130
offset: 0, 0
index: -1
dead2
rotate: true
xy: 138, 92
size: 160, 130
orig: 160, 130
offset: 0, 0
index: -1
dead3
rotate: true
xy: 272, 92
size: 160, 130
orig: 160, 130
offset: 0, 0
index: -1
dead4
rotate: true
xy: 406, 92
size: 160, 130
orig: 160, 130
offset: 0, 0
index: -1
dead5
rotate: true
xy: 540, 92
size: 160, 130
orig: 160, 130
offset: 0, 0
index: -1
dead6
rotate: true
xy: 674, 120
size: 132, 129
orig: 132, 129
offset: 0, 0
index: -1
dead7
rotate: true
xy: 807, 124
size: 128, 129
orig: 128, 129
offset: 0, 0
index: -1
eye1
rotate: false
xy: 387, 5
size: 23, 19
orig: 23, 19
offset: 0, 0
index: -1
eye2
rotate: true
xy: 497, 13
size: 17, 15
orig: 18, 15
offset: 0, 0
index: -1
eye3
rotate: false
xy: 169, 9
size: 7, 8
orig: 8, 8
offset: 1, 0
index: -1
front-leg
rotate: false
xy: 735, 81
size: 28, 35
orig: 28, 35
offset: 0, 0
index: -1
horn1
rotate: true
xy: 414, 10
size: 14, 21
orig: 14, 21
offset: 0, 0
index: -1
horn2
rotate: true
xy: 325, 5
size: 19, 27
orig: 19, 27
offset: 0, 0
index: -1
horn3
rotate: true
xy: 356, 5
size: 19, 27
orig: 19, 27
offset: 0, 0
index: -1
impact1
rotate: false
xy: 137, 4
size: 13, 13
orig: 13, 13
offset: 0, 0
index: -1
impact2
rotate: true
xy: 154, 5
size: 12, 11
orig: 13, 13
offset: 0, 1
index: -1
left_arm
rotate: false
xy: 583, 28
size: 50, 60
orig: 52, 60
offset: 2, 0
index: -1
left_fist
rotate: true
xy: 760, 46
size: 31, 30
orig: 31, 30
offset: 0, 0
index: -1
left_hand
rotate: false
xy: 688, 24
size: 37, 41
orig: 37, 41
offset: 0, 0
index: -1
mace
rotate: false
xy: 433, 34
size: 82, 54
orig: 82, 54
offset: 0, 0
index: -1
mouth
rotate: true
xy: 729, 22
size: 43, 27
orig: 43, 27
offset: 0, 0
index: -1
rear-arm
rotate: true
xy: 4, 6
size: 82, 99
orig: 82, 99
offset: 0, 0
index: -1
rear-leg
rotate: true
xy: 439, 4
size: 26, 27
orig: 26, 27
offset: 0, 0
index: -1
shoulder_armor
rotate: false
xy: 688, 69
size: 43, 47
orig: 43, 48
offset: 0, 0
index: -1
split-line
rotate: false
xy: 107, 6
size: 26, 11
orig: 26, 11
offset: 0, 0
index: -1
split1
rotate: true
xy: 107, 21
size: 67, 115
orig: 67, 115
offset: 0, 0
index: -1
split2
rotate: true
xy: 807, 4
size: 116, 121
orig: 116, 121
offset: 0, 0
index: -1

View File

@ -1,11 +0,0 @@
{
"ver": "1.0.2",
"importer": "text",
"imported": true,
"uuid": "eb9b685c-7d59-46c6-ac02-e378d241e77d",
"files": [
".json"
],
"subMetas": {},
"userData": {}
}

File diff suppressed because one or more lines are too long

View File

@ -1,11 +0,0 @@
{
"ver": "1.2.6",
"importer": "spine-data",
"imported": true,
"uuid": "6697509e-ec9b-40f3-949a-25a30376fad2",
"files": [
".json"
],
"subMetas": {},
"userData": {}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 115 KiB

View File

@ -1,42 +0,0 @@
{
"ver": "1.0.26",
"importer": "image",
"imported": true,
"uuid": "ff8e25b3-f316-4363-b858-418d7181404b",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "ff8e25b3-f316-4363-b858-418d7181404b@6c48a",
"displayName": "DesertTitan",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "repeat",
"wrapModeT": "repeat",
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0,
"isUuid": true,
"imageUuidOrDatabaseUri": "ff8e25b3-f316-4363-b858-418d7181404b",
"visible": false
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"hasAlpha": true,
"type": "texture",
"fixAlphaTransparencyArtifacts": false,
"redirect": "ff8e25b3-f316-4363-b858-418d7181404b@6c48a"
}
}

View File

@ -1,9 +0,0 @@
{
"ver": "1.2.0",
"importer": "directory",
"imported": true,
"uuid": "f753c488-8079-4fb3-b5f3-7c1fb7301eaf",
"files": [],
"subMetas": {},
"userData": {}
}

View File

@ -1,97 +0,0 @@
slow boss.png
size: 1024,512
format: RGBA8888
filter: Linear,Linear
repeat: none
body
rotate: false
xy: 612, 218
size: 203, 290
orig: 204, 290
offset: 0, 0
index: -1
front-forearm
rotate: false
xy: 177, 39
size: 138, 205
orig: 140, 206
offset: 1, 1
index: -1
front-hand
rotate: true
xy: 4, 104
size: 140, 169
orig: 140, 238
offset: 0, 1
index: -1
front-leg
rotate: false
xy: 819, 393
size: 101, 115
orig: 101, 115
offset: 0, 0
index: -1
front-upper-arm
rotate: true
xy: 475, 16
size: 146, 120
orig: 147, 120
offset: 0, 0
index: -1
head
rotate: false
xy: 364, 294
size: 244, 214
orig: 244, 214
offset: 0, 0
index: -1
lower-jaw
rotate: false
xy: 759, 107
size: 154, 107
orig: 156, 107
offset: 1, 0
index: -1
magic_vfx
rotate: true
xy: 475, 166
size: 124, 122
orig: 128, 128
offset: 2, 3
index: -1
rear-forearm
rotate: true
xy: 601, 93
size: 121, 154
orig: 122, 155
offset: 0, 1
index: -1
rear-hand
rotate: false
xy: 364, 78
size: 107, 212
orig: 107, 212
offset: 0, 0
index: -1
rear-leg
rotate: false
xy: 759, 4
size: 106, 99
orig: 106, 99
offset: 0, 0
index: -1
rear-upper-arm
rotate: true
xy: 4, 24
size: 76, 96
orig: 76, 96
offset: 0, 0
index: -1
upper-body
rotate: false
xy: 4, 248
size: 356, 260
orig: 357, 260
offset: 0, 0
index: -1

View File

@ -1,11 +0,0 @@
{
"ver": "1.0.2",
"importer": "text",
"imported": true,
"uuid": "7418e971-3d80-4563-b499-4e22b523b758",
"files": [
".json"
],
"subMetas": {},
"userData": {}
}

View File

@ -1,957 +0,0 @@
{
"skeleton": {
"hash": "FSmfOb8TjeMXiArDcK7WnF1dmA4",
"spine": "3.8.99",
"x": -80.2,
"y": -25.4,
"width": 171,
"height": 242.2,
"images": "",
"audio": "D:/Huy 2D Animation/works/2024/Product/super hero game/boss/slow boss"
},
"bones": [
{ "name": "root" },
{ "name": "pivot", "parent": "root", "scaleX": 0.2, "scaleY": 0.2 },
{ "name": "character-pivot", "parent": "pivot" },
{ "name": "hip", "parent": "character-pivot", "y": 144.64 },
{ "name": "body", "parent": "hip", "length": 95.69, "rotation": 93.18, "x": 18.82, "y": 39.09 },
{ "name": "body2", "parent": "body", "length": 258.52, "rotation": 6.57, "x": 95.69 },
{ "name": "rear-upper-arm", "parent": "body2", "length": 104.36, "rotation": 121.64, "x": 99.5, "y": 163.69 },
{ "name": "rear-forearm", "parent": "rear-upper-arm", "length": 96.88, "rotation": 25.2, "x": 115.48, "y": 2.58 },
{ "name": "rear-hand", "parent": "rear-forearm", "length": 59.95, "rotation": 28.48, "x": 98.43, "y": 6.45 },
{ "name": "front-upper-arm", "parent": "body2", "length": 163.18, "rotation": -131.12, "x": 101.91, "y": -135.64 },
{ "name": "front-forearm", "parent": "front-upper-arm", "length": 138.32, "rotation": -54.79, "x": 174.86, "y": -11.53 },
{ "name": "front-hand", "parent": "front-forearm", "length": 77.66, "rotation": -20.74, "x": 144.67, "y": -4.42 },
{ "name": "rear-leg", "parent": "hip", "length": 79.76, "rotation": -135.67, "x": -34.62, "y": -8.68 },
{ "name": "rear-leg2", "parent": "rear-leg", "length": 73.57, "rotation": 38.42, "x": 79.76 },
{ "name": "front-leg", "parent": "hip", "length": 95.03, "rotation": -54.09, "x": 58.27, "y": -6.03 },
{ "name": "front-leg2", "parent": "front-leg", "length": 72.11, "rotation": -23.15, "x": 95.03 },
{ "name": "rear-leg-constraint", "parent": "character-pivot", "rotation": 4.28, "x": -97.06, "y": 8.8, "color": "ff3f00ff" },
{ "name": "rear-leg3", "parent": "rear-leg-constraint", "length": 73.71, "rotation": -170.17, "x": -2.73, "y": -1.15 },
{ "name": "front-leg-constraint", "parent": "character-pivot", "x": 131.08, "y": -7.98, "color": "ff3f00ff" },
{ "name": "front-leg3", "parent": "front-leg-constraint", "length": 41.56, "rotation": -16.47, "x": 3.97, "y": 2.67 },
{ "name": "head", "parent": "body2", "length": 244.89, "rotation": 1.5, "x": 143.25, "y": 57.88 },
{ "name": "lower-jaw", "parent": "head", "length": 69.23, "rotation": -179.08, "x": -15.61, "y": -3.66 },
{ "name": "vfx-pivot", "parent": "character-pivot", "y": 700 }
],
"slots": [
{ "name": "rear-leg", "bone": "rear-leg", "attachment": "rear-leg" },
{ "name": "front-leg", "bone": "front-leg", "attachment": "front-leg" },
{ "name": "rear-hand", "bone": "rear-hand", "attachment": "rear-hand" },
{ "name": "rear-upper-arm", "bone": "rear-upper-arm", "attachment": "rear-upper-arm" },
{ "name": "rear-forearm", "bone": "rear-forearm", "attachment": "rear-forearm" },
{ "name": "front-upper-arm", "bone": "front-upper-arm", "attachment": "front-upper-arm" },
{ "name": "body", "bone": "body", "attachment": "body" },
{ "name": "upper-body", "bone": "body2", "attachment": "upper-body" },
{ "name": "lower-jaw", "bone": "lower-jaw", "attachment": "lower-jaw" },
{ "name": "head", "bone": "head", "attachment": "head" },
{ "name": "front-hand", "bone": "front-hand", "attachment": "front-hand" },
{ "name": "front-forearm", "bone": "front-forearm", "attachment": "front-forearm" },
{ "name": "magic_vfx", "bone": "vfx-pivot", "color": "00ff0700", "attachment": "magic_vfx", "blend": "additive" }
],
"ik": [
{
"name": "front-leg-constraint",
"order": 1,
"bones": [ "front-leg", "front-leg2" ],
"target": "front-leg-constraint",
"bendPositive": false
},
{
"name": "rear-leg-constraint",
"bones": [ "rear-leg", "rear-leg2" ],
"target": "rear-leg-constraint"
}
],
"skins": [
{
"name": "default",
"attachments": {
"body": {
"body": {
"type": "mesh",
"uvs": [ 0.53004, 0, 0.72329, 0.02671, 0.89062, 0.10526, 0.95601, 0.19059, 0.97402, 0.23559, 0.9952, 0.28851, 0.99518, 0.38639, 0.99517, 0.4414, 0.90941, 0.53712, 0.86473, 0.56333, 0.85874, 0.6798, 0.85552, 0.74229, 0.71321, 0.85134, 0.64552, 0.87663, 0.6141, 0.92898, 0.60692, 1, 0.58517, 1, 0.51691, 0.96751, 0.34002, 0.8901, 0.25719, 0.76811, 0.2862, 0.7084, 0.32696, 0.62449, 0.30139, 0.60727, 0.15175, 0.51381, 0.04755, 0.41912, 0, 0.3332, 0, 0.2732, 0.01285, 0.19441, 0.10122, 0.0916, 0.23404, 0.02979, 0.40175, 0, 0.32163, 0.52888, 0.55197, 0.51592, 0.81733, 0.45763, 0.16131, 0.36048, 0.32163, 0.36437, 0.51696, 0.35141, 0.7602, 0.30608, 0.4064, 0.65825, 0.56303, 0.67509, 0.72519, 0.63623, 0.38016, 0.72561, 0.51711, 0.74199, 0.65116, 0.72868, 0.77063, 0.7041 ],
"triangles": [ 37, 1, 2, 37, 2, 3, 37, 3, 4, 37, 4, 5, 26, 34, 25, 36, 30, 0, 36, 0, 1, 36, 1, 37, 35, 29, 30, 35, 34, 28, 34, 27, 28, 27, 34, 26, 28, 29, 35, 30, 36, 35, 6, 37, 5, 24, 25, 34, 6, 33, 37, 7, 33, 6, 36, 37, 33, 23, 24, 34, 23, 34, 35, 32, 36, 33, 31, 23, 35, 35, 36, 32, 31, 35, 32, 8, 33, 7, 22, 23, 31, 9, 33, 8, 38, 21, 31, 22, 31, 21, 40, 32, 33, 40, 33, 9, 32, 38, 31, 39, 38, 32, 40, 39, 32, 10, 40, 9, 44, 40, 10, 43, 39, 40, 43, 40, 44, 42, 39, 43, 11, 44, 10, 12, 43, 44, 12, 44, 11, 20, 21, 38, 41, 20, 38, 42, 38, 39, 41, 38, 42, 13, 42, 43, 13, 43, 12, 41, 19, 20, 18, 19, 41, 42, 13, 18, 42, 18, 41, 14, 17, 13, 13, 17, 18, 16, 17, 14, 15, 16, 14 ],
"vertices": [ 1, 5, 290.97, -41.1, 1, 1, 5, 262.41, -116, 1, 2, 4, 320.46, -150.67, 0.00272, 5, 206.04, -175.41, 0.99728, 2, 4, 269.66, -174.5, 0.02283, 5, 152.85, -193.27, 0.97717, 2, 4, 243.23, -180.38, 0.04449, 5, 125.92, -196.08, 0.95551, 2, 4, 212.16, -187.28, 0.08279, 5, 94.27, -199.38, 0.91721, 2, 4, 155.58, -184.14, 0.19786, 5, 38.41, -189.78, 0.80214, 2, 4, 123.77, -182.37, 0.27609, 5, 7.02, -184.38, 0.72391, 3, 3, 159.13, 117.37, 2.0E-5, 4, 70.37, -144.44, 0.51905, 5, -41.68, -140.59, 0.48093, 3, 3, 140.95, 102.19, 0.00273, 4, 56.23, -125.44, 0.66797, 5, -53.56, -120.1, 0.3293, 3, 3, 138.51, 34.76, 0.11046, 4, -10.96, -119.26, 0.85427, 5, -119.61, -106.27, 0.03527, 3, 3, 137.2, -1.43, 0.22468, 4, -47.02, -115.95, 0.77041, 5, -155.05, -98.85, 0.00491, 2, 3, 79.28, -64.57, 0.71613, 4, -106.85, -54.62, 0.28387, 2, 3, 51.73, -79.21, 0.89434, 4, -119.94, -26.3, 0.10566, 2, 3, 38.94, -109.52, 0.98673, 4, -149.5, -11.85, 0.01327, 1, 3, 36.02, -150.64, 1, 1, 3, 27.17, -150.64, 1, 1, 3, -0.62, -131.83, 1, 1, 3, -72.61, -87.01, 1, 3, 3, -106.33, -16.38, 0.96233, 4, -48.44, 128.03, 0.03718, 5, -128.53, 143.68, 4.9E-4, 3, 3, -94.52, 18.19, 0.83765, 4, -14.57, 114.32, 0.14758, 5, -96.46, 126.19, 0.01476, 3, 3, -77.93, 66.78, 0.33837, 4, 33.01, 95.06, 0.46659, 5, -51.39, 101.61, 0.19504, 3, 3, -88.33, 76.75, 0.20446, 4, 43.54, 104.9, 0.46004, 5, -39.8, 110.18, 0.3355, 3, 3, -149.24, 130.86, 0.0173, 4, 100.96, 162.71, 0.17587, 5, 23.85, 161.03, 0.80683, 3, 3, -191.65, 185.69, 3.1E-4, 4, 158.05, 202.01, 0.05418, 5, 85.07, 193.54, 0.94551, 2, 4, 208.79, 218.57, 0.01778, 5, 137.37, 204.19, 0.98222, 2, 4, 243.48, 216.64, 0.00684, 5, 171.61, 198.31, 0.99316, 2, 4, 288.74, 208.89, 6.3E-4, 5, 215.69, 185.42, 0.99937, 1, 5, 268.26, 139.89, 1, 1, 5, 294.38, 80.55, 1, 1, 5, 299.81, 10.36, 1, 3, 3, -80.1, 122.14, 0.06292, 4, 88.41, 94.15, 0.34942, 5, 3.54, 94.37, 0.58766, 2, 4, 90.7, 0.13, 0.88123, 5, -4.95, 0.7, 0.11877, 2, 4, 118.4, -109.57, 0.35003, 5, 10.02, -111.45, 0.64997, 3, 3, -145.35, 219.64, 9.0E-5, 4, 189.38, 153.9, 0.0361, 5, 110.69, 142.16, 0.96382, 3, 3, -80.1, 217.39, 2.5E-4, 4, 183.51, 88.87, 0.02694, 5, 97.42, 78.23, 0.97281, 1, 5, 91.34, -1.39, 1, 2, 4, 207.31, -91.23, 0.0439, 5, 100.44, -103.4, 0.9561, 3, 3, -45.6, 47.23, 0.48329, 4, 11.7, 63.86, 0.4667, 5, -76.12, 73.06, 0.05, 2, 3, 18.15, 37.48, 0.02297, 4, -1.57, 0.75, 0.97703, 3, 3, 84.15, 59.98, 0.03449, 4, 17.24, -66.39, 0.91967, 5, -85.54, -56.98, 0.04584, 3, 3, -56.28, 8.23, 0.86457, 4, -26.64, 76.69, 0.12785, 5, -112.75, 90.19, 0.00757, 1, 3, -0.53, -1.26, 1, 2, 3, 54.02, 6.45, 0.39024, 4, -34.54, -33.34, 0.60976, 3, 3, 102.65, 20.68, 0.18099, 4, -23.03, -82.68, 0.80811, 5, -127.4, -68.55, 0.0109 ],
"hull": 31,
"edges": [ 0, 60, 0, 2, 2, 4, 4, 6, 14, 16, 16, 18, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 42, 44, 44, 46, 46, 48, 48, 50, 50, 52, 52, 54, 54, 56, 56, 58, 58, 60, 46, 62, 62, 64, 64, 66, 10, 12, 12, 14, 66, 12, 50, 68, 68, 70, 70, 72, 72, 74, 6, 8, 8, 10, 74, 8, 42, 76, 76, 78, 78, 80, 80, 18, 38, 40, 40, 42, 40, 82, 82, 84, 84, 86, 86, 88, 18, 20, 20, 22, 88, 20 ],
"width": 407,
"height": 579
}
},
"front-forearm": {
"front-forearm": { "x": 83.89, "y": 35.21, "rotation": 86.15, "width": 280, "height": 411 }
},
"front-hand": {
"front-hand": { "x": 45.38, "y": 9.54, "rotation": 106.89, "width": 279, "height": 476 }
},
"front-leg": {
"front-leg": {
"type": "mesh",
"uvs": [ 0.28902, 0, 0.39831, 0.08551, 0.54687, 0.20174, 0.62211, 0.30917, 0.7018, 0.42292, 0.72391, 0.49425, 0.81596, 0.56625, 1, 0.71018, 1, 0.7641, 0.74955, 0.99051, 0.60743, 1, 0.54613, 1, 0.17937, 0.92587, 0.03316, 0.92677, 0.14352, 0.75414, 0.21994, 0.63461, 0.21806, 0.52609, 0.12386, 0.39733, 0, 0.22803, 0, 0.17952, 0.0544, 0.04279, 0.20855, 0, 0.08831, 0.22743, 0.23876, 0.19992, 0.33488, 0.14306, 0.33488, 0.50621, 0.45607, 0.45852, 0.53757, 0.398, 0.20533, 0.36682, 0.32652, 0.31179, 0.43727, 0.25127, 0.34951, 0.62542, 0.47279, 0.59241, 0.60861, 0.53922, 0.31816, 0.77398, 0.53339, 0.7483, 0.70264, 0.65293 ],
"triangles": [ 34, 35, 11, 12, 14, 34, 9, 10, 35, 35, 36, 9, 9, 36, 8, 8, 36, 7, 36, 6, 7, 36, 5, 6, 10, 11, 35, 12, 34, 11, 13, 14, 12, 35, 31, 32, 35, 34, 31, 14, 15, 34, 34, 15, 31, 36, 32, 33, 36, 35, 32, 36, 33, 5, 15, 16, 31, 16, 25, 31, 31, 25, 32, 25, 26, 32, 32, 26, 33, 26, 27, 33, 33, 4, 5, 33, 27, 4, 17, 28, 16, 16, 28, 25, 28, 29, 25, 25, 29, 26, 26, 29, 27, 27, 3, 4, 29, 30, 27, 3, 30, 2, 3, 27, 30, 18, 22, 17, 17, 22, 28, 28, 23, 29, 28, 22, 23, 29, 24, 30, 29, 23, 24, 24, 1, 30, 30, 1, 2, 18, 19, 22, 23, 22, 20, 22, 19, 20, 20, 21, 23, 24, 21, 0, 24, 23, 21, 24, 0, 1 ],
"vertices": [ 1, 14, -7.4, 34.77, 1, 3, 14, 21.35, 41.08, 0.99601, 15, -83.9, 8.8, 0.00394, 19, -72.1, 136.48, 5.0E-5, 3, 14, 60.42, 49.66, 0.93409, 15, -51.34, 32.05, 0.0601, 19, -35.86, 119.57, 0.00582, 3, 14, 89.21, 47.48, 0.65398, 15, -24.01, 41.37, 0.29263, 19, -14.3, 100.35, 0.05339, 3, 14, 119.71, 45.17, 0.36238, 15, 4.93, 51.24, 0.45069, 19, 8.53, 80.01, 0.18693, 3, 14, 135.54, 39.19, 0.09213, 15, 21.84, 51.96, 0.52454, 19, 17.48, 65.64, 0.38333, 3, 14, 159.75, 44.51, 0.02009, 15, 42.01, 66.37, 0.24935, 19, 39.94, 55.16, 0.73055, 3, 14, 208.14, 55.14, 8.4E-4, 15, 82.33, 95.17, 0.08056, 19, 84.84, 34.22, 0.9186, 2, 15, 94.37, 92.44, 9.2E-4, 19, 88.39, 22.39, 0.99908, 2, 15, 133.82, 31.9, 4.0E-5, 19, 55.07, -41.73, 0.99996, 1, 19, 28.33, -52.02, 1, 1, 19, 16.53, -55.56, 1, 1, 19, -58.96, -60.49, 1, 1, 19, -87.05, -69.13, 1, 3, 14, 115.33, -90.2, 0.02704, 15, 54.13, -74.96, 0.47296, 19, -77.16, -24.89, 0.5, 3, 14, 102.16, -61.71, 0.16613, 15, 30.82, -53.93, 0.58387, 19, -70.31, 5.74, 0.25, 2, 14, 81.81, -47.44, 0.49164, 15, 6.5, -48.81, 0.50836, 2, 14, 46.83, -45.48, 0.85076, 15, -26.44, -60.77, 0.14924, 2, 14, 0.82, -42.9, 0.9874, 15, -69.75, -76.49, 0.0126, 1, 14, -8.17, -36.39, 1, 1, 14, -27.12, -9.17, 1, 1, 14, -16.88, 21.67, 1, 1, 14, 11.12, -28.45, 1, 1, 14, 23.76, -0.26, 1, 1, 14, 24.54, 23.03, 1, 3, 14, 91.9, -25.75, 0.34075, 15, 7.25, -24.9, 0.65901, 19, -56.63, 40.55, 2.5E-4, 3, 14, 97.34, 0.39, 0.38272, 15, 1.98, 1.27, 0.60858, 19, -36.44, 58, 0.0087, 3, 14, 95.72, 21.78, 0.49568, 15, -7.92, 20.3, 0.48794, 19, -24.73, 75.99, 0.01639, 2, 14, 50.77, -28.12, 0.96869, 15, -29.64, -43.25, 0.03131, 2, 14, 54.85, -1, 0.98515, 15, -36.54, -16.71, 0.01485, 3, 14, 56.68, 25.16, 0.99422, 15, -45.15, 8.06, 0.00572, 19, -53.7, 102.38, 7.0E-5, 2, 14, 115.73, -39.38, 0.05623, 15, 34.52, -28.07, 0.94377, 3, 14, 124.14, -14.87, 0.03167, 15, 32.62, -2.23, 0.88931, 19, -24.41, 29.6, 0.07901, 3, 14, 130.29, 14.38, 0.03695, 15, 26.77, 27.09, 0.75978, 19, -1.76, 49.11, 0.20327, 3, 14, 139.59, -64.43, 7.5E-4, 15, 66.31, -41.72, 0.53902, 19, -42.23, -19.15, 0.46023, 3, 14, 160.2, -25.95, 7.6E-4, 15, 70.13, 1.77, 0.60785, 19, -2.49, -1.09, 0.39139, 3, 14, 162.47, 14.42, 8.5E-4, 15, 56.34, 39.77, 0.35491, 19, 23.82, 29.6, 0.64424 ],
"hull": 22,
"edges": [ 0, 42, 8, 10, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 30, 32, 36, 38, 38, 40, 40, 42, 36, 44, 44, 46, 46, 48, 0, 2, 2, 4, 48, 2, 32, 50, 50, 52, 52, 54, 4, 6, 6, 8, 54, 6, 32, 34, 34, 36, 34, 56, 56, 58, 58, 60, 60, 4, 30, 62, 62, 64, 64, 66, 66, 10, 26, 28, 28, 30, 28, 68, 68, 70, 70, 72, 10, 12, 12, 14, 72, 12 ],
"width": 201,
"height": 229
}
},
"front-upper-arm": {
"front-upper-arm": { "x": 117.65, "y": -1.7, "rotation": 31.36, "width": 293, "height": 240 }
},
"head": {
"head": { "x": 168.42, "y": -57.25, "rotation": -101.25, "width": 487, "height": 428 }
},
"lower-jaw": {
"lower-jaw": { "x": 51.86, "y": 19.67, "rotation": 77.83, "width": 312, "height": 213 }
},
"magic_vfx": {
"magic_vfx": { "scaleX": 3, "scaleY": 3, "width": 256, "height": 256 }
},
"rear-forearm": {
"rear-forearm": { "x": 41.33, "y": -14.15, "rotation": 113.4, "width": 244, "height": 310 }
},
"rear-hand": {
"rear-hand": { "x": 38.55, "y": 5.38, "rotation": 84.92, "width": 214, "height": 423 }
},
"rear-leg": {
"rear-leg": {
"type": "mesh",
"uvs": [ 0.83635, 0, 0.97076, 0.04914, 1, 0.1899, 1, 0.26483, 0.94623, 0.35968, 0.91138, 0.42117, 0.83068, 0.56353, 0.81056, 0.68444, 0.8498, 0.73718, 0.9655, 0.89268, 0.92039, 0.95996, 0.55986, 1, 0, 0.9681, 0, 0.89534, 0.03471, 0.79412, 0.2681, 0.6363, 0.29653, 0.55397, 0.3378, 0.43446, 0.41503, 0.21081, 0.56845, 0.10658, 0.72533, 0, 0.47346, 0.28954, 0.59938, 0.36847, 0.77223, 0.41847, 0.60926, 0.1606, 0.71544, 0.25007, 0.82408, 0.32637, 0.42407, 0.47899, 0.59691, 0.5474, 0.73272, 0.56582, 0.43395, 0.68949, 0.55247, 0.73686, 0.68581, 0.76317, 0.4216, 0.60792, 0.56975, 0.64739, 0.68581, 0.66844 ],
"triangles": [ 10, 32, 8, 11, 12, 30, 30, 12, 14, 14, 15, 30, 30, 31, 11, 11, 31, 32, 12, 13, 14, 15, 33, 30, 15, 16, 33, 10, 11, 32, 10, 8, 9, 6, 23, 5, 32, 7, 8, 32, 31, 35, 31, 34, 35, 32, 35, 7, 30, 33, 34, 35, 29, 7, 7, 29, 6, 34, 28, 35, 35, 28, 29, 34, 33, 28, 33, 27, 28, 33, 16, 27, 6, 29, 23, 29, 28, 23, 16, 17, 27, 28, 22, 23, 28, 27, 22, 27, 21, 22, 27, 17, 21, 17, 18, 21, 31, 30, 34, 23, 26, 5, 5, 26, 4, 22, 25, 23, 23, 25, 26, 22, 24, 25, 22, 21, 24, 4, 26, 3, 26, 25, 0, 3, 26, 2, 2, 26, 0, 0, 25, 20, 21, 19, 24, 21, 18, 19, 2, 0, 1, 25, 24, 20, 24, 19, 20 ],
"vertices": [ 1, 12, -5.55, -17, 1, 2, 12, -19.04, 9.78, 0.9983, 13, -71.34, 69.06, 0.0017, 2, 12, -3.98, 34.03, 0.99092, 13, -44.47, 78.7, 0.00908, 2, 12, 6.38, 44.64, 0.95458, 13, -29.75, 80.57, 0.04542, 2, 12, 27.62, 50.15, 0.87931, 13, -9.69, 71.69, 0.12069, 2, 12, 41.39, 53.72, 0.63735, 13, 3.32, 65.93, 0.36265, 3, 12, 73.27, 61.99, 0.31233, 13, 33.43, 52.6, 0.68763, 17, -66.31, -19.53, 4.0E-5, 3, 12, 93.03, 76.15, 0.09265, 13, 57.72, 51.41, 0.90658, 17, -56.58, 2.75, 7.7E-4, 3, 12, 94.41, 89.4, 0.01684, 13, 67.03, 60.94, 0.71437, 17, -62.19, 14.84, 0.26879, 3, 12, 98.46, 128.48, 0.00414, 13, 94.49, 89.05, 0.32823, 17, -78.72, 50.49, 0.66764, 1, 17, -66.35, 61.21, 1, 1, 17, 9.47, 51.12, 1, 1, 17, 122.84, 17.33, 1, 1, 17, 119.47, 3.32, 1, 2, 13, 99.93, -108.24, 0.05749, 17, 107.66, -14.45, 0.94251, 3, 12, 168.25, -10.65, 8.0E-5, 13, 62.71, -63.34, 0.20513, 17, 52.47, -33.31, 0.79479, 3, 12, 152.57, -18.12, 0.01111, 13, 45.78, -59.44, 0.46113, 17, 42.82, -47.75, 0.52776, 3, 12, 129.81, -28.96, 0.1674, 13, 21.21, -53.79, 0.58714, 17, 28.81, -68.72, 0.24546, 3, 12, 87.21, -49.26, 0.53466, 13, -24.78, -43.22, 0.40368, 17, 2.61, -107.95, 0.06166, 3, 12, 49.63, -41.4, 0.89433, 13, -49.34, -13.71, 0.10336, 17, -33.7, -120.44, 0.00231, 2, 12, 11.21, -33.37, 0.99333, 13, -74.45, 16.46, 0.00667, 3, 12, 89.28, -29.49, 0.46241, 13, -10.87, -29.02, 0.5292, 17, -5.73, -89.92, 0.00838, 3, 12, 81.19, 0.26, 0.46452, 13, 1.28, -0.69, 0.53018, 17, -27.91, -68.5, 0.0053, 3, 12, 62.02, 32.82, 0.54979, 13, 6.5, 36.74, 0.45014, 17, -61.05, -50.34, 7.0E-5, 2, 12, 50.94, -27.73, 0.98975, 13, -39.81, -3.82, 0.01025, 2, 12, 47.3, 0.59, 0.95815, 13, -25.07, 20.64, 0.04185, 2, 12, 41.45, 27.42, 0.92509, 13, -12.97, 45.29, 0.07491, 3, 12, 122.95, -9.94, 0.02218, 13, 27.66, -34.62, 0.8374, 17, 13.18, -55.88, 0.14042, 3, 12, 106.32, 25.24, 0.05879, 13, 36.49, 3.27, 0.87468, 17, -19.11, -34.18, 0.06653, 2, 12, 88.37, 47.87, 0.14669, 13, 36.49, 32.15, 0.85331, 2, 13, 68.74, -27.29, 0.22325, 17, 20.91, -14.87, 0.77675, 3, 12, 139.24, 45.52, 0.00151, 13, 74.89, -1.3, 0.47356, 17, -1.21, 0.1, 0.52494, 3, 12, 122.76, 68.9, 0.00565, 13, 76.5, 27.27, 0.73522, 17, -27.34, 11.75, 0.25913, 3, 12, 141.16, 7.96, 1.1E-4, 13, 53.05, -31.91, 0.64594, 17, 19.66, -31.19, 0.35395, 3, 12, 124.26, 35.39, 0.00868, 13, 56.85, 0.08, 0.82114, 17, -8.9, -16.27, 0.17018, 3, 12, 109.65, 55.49, 0.02549, 13, 57.9, 24.9, 0.97446, 17, -31.73, -6.49, 5.0E-5 ],
"hull": 21,
"edges": [ 0, 40, 0, 2, 2, 4, 4, 6, 12, 14, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 36, 42, 42, 44, 44, 46, 10, 12, 46, 10, 36, 38, 38, 40, 38, 48, 48, 50, 50, 52, 6, 8, 8, 10, 52, 8, 34, 36, 34, 54, 54, 56, 56, 58, 58, 12, 30, 60, 60, 62, 62, 64, 14, 16, 16, 18, 64, 16, 30, 32, 32, 34, 32, 66, 66, 68, 68, 70, 70, 14 ],
"width": 211,
"height": 198
}
},
"rear-upper-arm": {
"rear-upper-arm": { "x": 55.23, "y": 5.45, "rotation": 138.61, "width": 151, "height": 192 }
},
"upper-body": {
"upper-body": { "x": 171.52, "y": -51.29, "rotation": -99.75, "width": 714, "height": 520 }
}
}
}
],
"animations": {
"attack": {
"bones": {
"body": {
"rotate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.3, "angle": 1.72, "curve": 0.25, "c3": 0.75 },
{ "time": 1, "angle": -6.73, "curve": "stepped" },
{ "time": 1.1, "angle": -6.73, "curve": 0.25, "c3": 0.75 },
{ "time": 1.4, "angle": 3.93, "curve": 0.25, "c3": 0.75 },
{ "time": 1.6667 }
],
"scale": [
{ "time": 0.4, "curve": 0, "c2": 0.35, "c3": 0.75 },
{ "time": 0.9, "x": 1.191, "y": 1.191, "curve": "stepped" },
{ "time": 1.2, "x": 1.191, "y": 1.191, "curve": 0, "c2": 0.27, "c3": 0.75 },
{ "time": 1.5 }
]
},
"body2": {
"rotate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.3, "angle": 1.72, "curve": 0.25, "c3": 0.75 },
{ "time": 1, "angle": -6.73, "curve": "stepped" },
{ "time": 1.1, "angle": -6.73, "curve": 0.25, "c3": 0.75 },
{ "time": 1.4, "angle": 3.93, "curve": 0.25, "c3": 0.75 },
{ "time": 1.6667 }
]
},
"head": {
"rotate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.3, "angle": 1.72, "curve": 0.25, "c3": 0.75 },
{ "time": 1, "angle": -6.73, "curve": "stepped" },
{ "time": 1.1, "angle": -6.73, "curve": 0.25, "c3": 0.75 },
{ "time": 1.4, "angle": 3.93, "curve": 0.25, "c3": 0.75 },
{ "time": 1.6667 }
]
},
"rear-upper-arm": {
"rotate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.4, "angle": 6.79, "curve": 0.25, "c3": 0.75 },
{ "time": 0.8, "angle": -84.87, "curve": "stepped" },
{ "time": 1.1, "angle": -84.87, "curve": 0.25, "c3": 0.75 },
{ "time": 1.3, "angle": 20.55, "curve": 0.25, "c3": 0.75 },
{ "time": 1.6667 }
]
},
"rear-forearm": {
"rotate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.4, "angle": 6.79, "curve": 0.25, "c3": 0.75 },
{ "time": 0.8, "angle": -14.68, "curve": "stepped" },
{ "time": 1.1, "angle": -14.68, "curve": 0.25, "c3": 0.75 },
{ "time": 1.3, "angle": 42.92, "curve": 0.25, "c3": 0.75 },
{ "time": 1.6667 }
],
"scale": [
{ "time": 1.1 },
{ "time": 1.2333, "x": 1.166, "y": 1.166, "curve": "stepped" },
{ "time": 1.4, "x": 1.166, "y": 1.166 },
{ "time": 1.6667 }
]
},
"rear-hand": {
"rotate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.4, "angle": 6.79, "curve": 0.25, "c3": 0.75 },
{ "time": 0.8, "angle": -14.68, "curve": "stepped" },
{ "time": 1.1, "angle": -14.68, "curve": 0.25, "c3": 0.75 },
{ "time": 1.3, "angle": 42.92, "curve": 0.25, "c3": 0.75 },
{ "time": 1.6667 }
]
},
"front-upper-arm": {
"rotate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.4, "angle": -12.85, "curve": 0.25, "c3": 0.75 },
{ "time": 0.8, "angle": 84.71, "curve": "stepped" },
{ "time": 1.1, "angle": 84.71, "curve": 0.25, "c3": 0.75 },
{ "time": 1.3, "angle": -61.03, "curve": 0.25, "c3": 0.75 },
{ "time": 1.6667 }
]
},
"front-forearm": {
"rotate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.4, "angle": -12.85, "curve": 0.25, "c3": 0.75 },
{ "time": 0.8, "angle": 41.67, "curve": "stepped" },
{ "time": 1.1, "angle": 41.67, "curve": 0.25, "c3": 0.75 },
{ "time": 1.3, "angle": -9.73, "curve": 0.25, "c3": 0.75 },
{ "time": 1.6667 }
],
"scale": [
{ "time": 1.1, "curve": 0.25, "c3": 0.75 },
{ "time": 1.2333, "x": 1.166, "y": 1.166, "curve": "stepped" },
{ "time": 1.4, "x": 1.166, "y": 1.166, "curve": 0.25, "c3": 0.75 },
{ "time": 1.6667 }
]
},
"front-hand": {
"rotate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.4, "angle": -12.85, "curve": 0.25, "c3": 0.75 },
{ "time": 0.8, "angle": 1.37, "curve": "stepped" },
{ "time": 1.1, "angle": 1.37, "curve": 0.25, "c3": 0.75 },
{ "time": 1.3, "angle": -34.74, "curve": 0.25, "c3": 0.75 },
{ "time": 1.6667 }
]
},
"hip": {
"translate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.2667, "y": -37.13, "curve": 0.25, "c3": 0.75 },
{ "time": 0.6, "y": 8.84, "curve": "stepped" },
{ "time": 1.1, "y": 8.84, "curve": 0.25, "c3": 0.75 },
{ "time": 1.3, "y": -60.11, "curve": 0.25, "c3": 0.75 },
{ "time": 1.6667 }
]
},
"lower-jaw": {
"translate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.2, "x": 26.1, "y": 0.42, "curve": 0.25, "c3": 0.75 },
{ "time": 0.7, "x": -7.21, "y": -0.12, "curve": "stepped" },
{ "time": 1.2, "x": -7.21, "y": -0.12, "curve": 0.25, "c3": 0.75 },
{ "time": 1.3667, "x": 32.12, "y": 0.52, "curve": "stepped" },
{ "time": 1.6, "x": 32.12, "y": 0.52, "curve": 0.25, "c3": 0.75 },
{ "time": 1.6667 }
]
}
},
"drawOrder": [
{
"time": 0.5,
"offsets": [
{ "slot": "front-hand", "offset": -4 },
{ "slot": "front-forearm", "offset": -4 }
]
},
{
"time": 1.2333,
"offsets": [
{ "slot": "rear-hand", "offset": 6 },
{ "slot": "rear-forearm", "offset": 5 }
]
},
{ "time": 1.6667 }
]
},
"dead": {
"slots": {
"body": {
"color": [
{ "time": 1.2, "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
{ "time": 1.4, "color": "ffffff00" }
]
},
"front-forearm": {
"color": [
{ "time": 1.2, "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
{ "time": 1.4, "color": "ffffff00" }
]
},
"front-hand": {
"color": [
{ "time": 1.2, "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
{ "time": 1.4, "color": "ffffff00" }
]
},
"front-leg": {
"color": [
{ "time": 1.2, "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
{ "time": 1.4, "color": "ffffff00" }
]
},
"front-upper-arm": {
"color": [
{ "time": 1.2, "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
{ "time": 1.4, "color": "ffffff00" }
]
},
"head": {
"color": [
{ "time": 1.2, "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
{ "time": 1.4, "color": "ffffff00" }
]
},
"lower-jaw": {
"color": [
{ "time": 1.2, "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
{ "time": 1.4, "color": "ffffff00" }
]
},
"rear-forearm": {
"color": [
{ "time": 1.2, "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
{ "time": 1.4, "color": "ffffff00" }
]
},
"rear-hand": {
"color": [
{ "time": 1.2, "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
{ "time": 1.4, "color": "ffffff00" }
]
},
"rear-leg": {
"color": [
{ "time": 1.2, "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
{ "time": 1.4, "color": "ffffff00" }
]
},
"rear-upper-arm": {
"color": [
{ "time": 1.2, "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
{ "time": 1.4, "color": "ffffff00" }
]
},
"upper-body": {
"color": [
{ "time": 1.2, "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
{ "time": 1.4, "color": "ffffff00" }
]
}
},
"bones": {
"hip": {
"translate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.1333, "x": 31.58, "curve": 0.305, "c3": 0.64, "c4": 0.36 },
{ "time": 0.5, "x": 28.59, "y": -3.2, "curve": 0.289, "c2": 0.17, "c3": 0.755 },
{ "time": 0.7, "x": -38.76, "y": -109.44, "curve": 0.25, "c3": 0.75 },
{ "time": 0.8, "x": -38.76, "y": -70.68, "curve": 0.25, "c3": 0.75 },
{ "time": 0.9, "x": -38.76, "y": -79.8 }
]
},
"body": {
"rotate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.1333, "angle": -17.8, "curve": 0.305, "c3": 0.64, "c4": 0.36 },
{ "time": 0.5, "angle": -16.8, "curve": 0.289, "c2": 0.17, "c3": 0.755 },
{ "time": 0.8, "angle": 5.79 }
]
},
"body2": {
"rotate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.1333, "angle": -17.8, "curve": 0.305, "c3": 0.64, "c4": 0.36 },
{ "time": 0.5, "angle": -16.8, "curve": 0.289, "c2": 0.17, "c3": 0.755 },
{ "time": 0.8, "angle": 5.79 }
]
},
"front-upper-arm": {
"rotate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.1333, "angle": -60.15, "curve": 0.305, "c3": 0.64, "c4": 0.36 },
{ "time": 0.5, "angle": -58.91, "curve": 0.289, "c2": 0.17, "c3": 0.755 },
{ "time": 0.8, "angle": -31.05, "curve": 0.25, "c3": 0.75 },
{ "time": 1, "angle": -38.75, "curve": 0.25, "c3": 0.75 },
{ "time": 1.2, "angle": -35.5 }
]
},
"front-forearm": {
"rotate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.1333, "angle": -9.75, "curve": 0.305, "c3": 0.64, "c4": 0.36 },
{ "time": 0.5, "angle": -8.51, "curve": 0.289, "c2": 0.17, "c3": 0.755 },
{ "time": 0.8, "angle": 19.35, "curve": 0.25, "c3": 0.75 },
{ "time": 1, "angle": 11.65, "curve": 0.25, "c3": 0.75 },
{ "time": 1.2, "angle": 14.9 }
]
},
"front-hand": {
"rotate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.1333, "angle": 12.93, "curve": 0.305, "c3": 0.64, "c4": 0.36 },
{ "time": 0.5, "angle": 14.16, "curve": 0.289, "c2": 0.17, "c3": 0.755 },
{ "time": 0.8, "angle": 42.03, "curve": 0.25, "c3": 0.75 },
{ "time": 1, "angle": 5.45, "curve": 0.25, "c3": 0.75 },
{ "time": 1.2, "angle": 8.69 }
]
},
"rear-upper-arm": {
"rotate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.2667, "angle": -12.33, "curve": 0.25, "c3": 0.75 },
{ "time": 0.6333, "angle": 13.19, "curve": 0.25, "c3": 0.75 },
{ "time": 0.9, "angle": -10.34 }
]
},
"rear-forearm": {
"rotate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.2667, "angle": -12.33, "curve": 0.25, "c3": 0.75 },
{ "time": 0.6333, "angle": 13.19, "curve": 0.25, "c3": 0.75 },
{ "time": 0.9, "angle": -10.34 }
]
},
"rear-hand": {
"rotate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.2667, "angle": -12.33, "curve": 0.25, "c3": 0.75 },
{ "time": 0.6333, "angle": 13.19, "curve": 0.25, "c3": 0.75 },
{ "time": 0.9, "angle": -10.34 }
]
},
"head": {
"rotate": [
{ "time": 0.8667, "curve": 0.25, "c3": 0.75 },
{ "time": 0.9667, "angle": 13.45, "curve": 0.25, "c3": 0.75 },
{ "time": 1.0667, "angle": 35.51 }
],
"translate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.2333, "x": 31.7, "y": 0.83, "curve": 0.25, "c3": 0.75 },
{ "time": 0.4667, "x": -16.88, "y": -0.44, "curve": 0.25, "c3": 0.75 },
{ "time": 0.7333, "x": -49.83, "y": -1.3, "curve": 0.25, "c3": 0.75 },
{ "time": 0.9, "x": -275.58, "y": 102.33, "curve": 0.25, "c3": 0.75 },
{ "time": 1, "x": -199.99, "y": 126.65, "curve": 0.25, "c3": 0.75 },
{ "time": 1.1, "x": -269.61, "y": 148.95 }
]
},
"lower-jaw": {
"rotate": [
{ "time": 1, "curve": 0.25, "c3": 0.75 },
{ "time": 1.1333, "angle": 38.21 }
],
"translate": [
{ "time": 0.9, "curve": 0.25, "c3": 0.75 },
{ "time": 1, "x": -6.9, "y": -64.84, "curve": 0.25, "c3": 0.75 },
{ "time": 1.1333, "x": -18.73, "y": -23.93 }
]
}
}
},
"idle": {
"bones": {
"hip": {
"translate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 1.2, "y": -5.42, "curve": 0.25, "c3": 0.75 },
{ "time": 2.4 }
]
},
"body": {
"rotate": [
{ "angle": -1.72, "curve": 0.367, "c2": 0.63, "c3": 0.704 },
{ "time": 0.1667, "angle": -1.95, "curve": 0.25, "c3": 0.75 },
{ "time": 1.3667, "angle": 1.19, "curve": 0.244, "c3": 0.698, "c4": 0.78 },
{ "time": 2.4, "angle": -1.72 }
]
},
"body2": {
"rotate": [
{ "angle": -1.28, "curve": 0.381, "c2": 0.59, "c3": 0.728 },
{ "time": 0.3333, "angle": -1.95, "curve": 0.25, "c3": 0.75 },
{ "time": 1.5333, "angle": 1.19, "curve": 0.243, "c3": 0.66, "c4": 0.64 },
{ "time": 2.4, "angle": -1.28 }
]
},
"head": {
"rotate": [
{ "angle": -0.73, "curve": 0.381, "c2": 0.54, "c3": 0.744 },
{ "time": 0.5, "angle": -1.95, "curve": 0.25, "c3": 0.75 },
{ "time": 1.7, "angle": 1.19, "curve": 0.246, "c3": 0.635, "c4": 0.55 },
{ "time": 2.4, "angle": -0.73 }
]
},
"rear-upper-arm": {
"rotate": [
{ "angle": 1.67, "curve": 0.382, "c2": 0.57, "c3": 0.735 },
{ "time": 0.4, "angle": -1.45, "curve": 0.25, "c3": 0.75 },
{ "time": 1.6, "angle": 9.55, "curve": 0.243, "c3": 0.649, "c4": 0.6 },
{ "time": 2.4, "angle": 1.67 }
]
},
"rear-forearm": {
"rotate": [
{ "angle": 2.84, "curve": 0.381, "c2": 0.54, "c3": 0.744 },
{ "time": 0.5, "angle": -1.45, "curve": 0.25, "c3": 0.75 },
{ "time": 1.7, "angle": 9.55, "curve": 0.246, "c3": 0.635, "c4": 0.55 },
{ "time": 2.4, "angle": 2.84 }
]
},
"rear-hand": {
"rotate": [
{ "angle": 4.05, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
{ "time": 0.6, "angle": -1.45, "curve": 0.25, "c3": 0.75 },
{ "time": 1.8, "angle": 9.55, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
{ "time": 2.4, "angle": 4.05 }
]
},
"front-upper-arm": {
"rotate": [
{ "angle": 3.47, "curve": 0.382, "c2": 0.57, "c3": 0.735 },
{ "time": 0.4, "angle": 8.7, "curve": 0.25, "c3": 0.75 },
{ "time": 1.6, "angle": -9.73, "curve": 0.243, "c3": 0.649, "c4": 0.6 },
{ "time": 2.4, "angle": 3.47 }
]
},
"front-forearm": {
"rotate": [
{ "angle": 1.52, "curve": 0.381, "c2": 0.54, "c3": 0.744 },
{ "time": 0.5, "angle": 8.7, "curve": 0.25, "c3": 0.75 },
{ "time": 1.7, "angle": -9.73, "curve": 0.246, "c3": 0.635, "c4": 0.55 },
{ "time": 2.4, "angle": 1.52 }
]
},
"front-hand": {
"rotate": [
{ "angle": -0.51, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
{ "time": 0.6, "angle": 8.7, "curve": 0.25, "c3": 0.75 },
{ "time": 1.8, "angle": -9.73, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
{ "time": 2.4, "angle": -0.51 }
]
}
}
},
"move": {
"bones": {
"hip": {
"translate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.3333, "y": -20.81, "curve": 0.25, "c3": 0.75 },
{ "time": 0.6667, "y": 3.47, "curve": 0.25, "c3": 0.75 },
{ "time": 1, "curve": 0.25, "c3": 0.75 },
{ "time": 1.3333, "y": -20.81, "curve": 0.25, "c3": 0.75 },
{ "time": 1.6667, "y": 3.47, "curve": 0.25, "c3": 0.75 },
{ "time": 2 }
]
},
"rear-leg-constraint": {
"translate": [
{ "time": 1.3333, "curve": 0.25, "c3": 0.75 },
{ "time": 1.6667, "x": -25.65, "y": 41.56, "curve": 0.25, "c3": 0.75 },
{ "time": 2 }
],
"scale": [
{ "x": 1.443, "y": 1.443, "curve": 0.25, "c3": 0.75 },
{ "time": 1, "x": 0.671, "y": 0.671, "curve": "stepped" },
{ "time": 1.3333, "x": 0.671, "y": 0.671, "curve": 0.25, "c3": 0.75 },
{ "time": 2, "x": 1.443, "y": 1.443 }
]
},
"front-leg-constraint": {
"translate": [
{ "time": 0.3333, "curve": 0.25, "c3": 0.75 },
{ "time": 0.6667, "x": 20.81, "y": 34.68, "curve": 0.25, "c3": 0.75 },
{ "time": 1 }
],
"scale": [
{ "x": 0.665, "y": 0.665, "curve": "stepped" },
{ "time": 0.3333, "x": 0.665, "y": 0.665, "curve": 0.25, "c3": 0.75 },
{ "time": 1, "x": 1.285, "y": 1.285, "curve": 0.25, "c3": 0.75 },
{ "time": 2, "x": 0.665, "y": 0.665 }
]
},
"body": {
"rotate": [
{ "angle": -3.81, "curve": 0.366, "c2": 0.63, "c3": 0.703 },
{ "time": 0.1333, "angle": -4.24, "curve": 0.25, "c3": 0.75 },
{ "time": 1.1333, "angle": 2.03, "curve": 0.244, "c3": 0.7, "c4": 0.79 },
{ "time": 2, "angle": -3.81 }
]
},
"body2": {
"rotate": [
{ "angle": -2.97, "curve": 0.38, "c2": 0.59, "c3": 0.727 },
{ "time": 0.2667, "angle": -4.24, "curve": 0.25, "c3": 0.75 },
{ "time": 1.2667, "angle": 2.03, "curve": 0.242, "c3": 0.663, "c4": 0.65 },
{ "time": 2, "angle": -2.97 }
]
},
"rear-upper-arm": {
"rotate": [
{ "angle": -8.77, "curve": 0.378, "c2": 0.61, "c3": 0.722 },
{ "time": 0.2333, "angle": -11.12, "curve": 0.25, "c3": 0.75 },
{ "time": 1.2333, "angle": 3.03, "curve": 0.242, "c3": 0.671, "c4": 0.68 },
{ "time": 2, "angle": -8.77 }
],
"scale": [
{ "x": 0.873, "y": 0.873, "curve": 0.378, "c2": 0.61, "c3": 0.722 },
{ "time": 0.2333, "x": 0.839, "y": 0.839, "curve": 0.25, "c3": 0.75 },
{ "time": 1.2333, "x": 1.047, "y": 1.047, "curve": 0.242, "c3": 0.671, "c4": 0.68 },
{ "time": 2, "x": 0.873, "y": 0.873 }
]
},
"rear-forearm": {
"rotate": [
{ "angle": -5.92, "curve": 0.381, "c2": 0.55, "c3": 0.742 },
{ "time": 0.4, "angle": -11.12, "curve": 0.25, "c3": 0.75 },
{ "time": 1.4, "angle": 3.03, "curve": 0.245, "c3": 0.637, "c4": 0.56 },
{ "time": 2, "angle": -5.92 }
],
"scale": [
{ "x": 0.841, "y": 0.841, "curve": 0.381, "c2": 0.55, "c3": 0.742 },
{ "time": 0.4, "x": 0.77, "y": 0.77, "curve": 0.25, "c3": 0.75 },
{ "time": 1.4, "x": 0.961, "y": 0.961, "curve": 0.245, "c3": 0.637, "c4": 0.56 },
{ "time": 2, "x": 0.841, "y": 0.841 }
]
},
"rear-hand": {
"rotate": [
{ "angle": -4.05, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
{ "time": 0.5, "angle": -11.12, "curve": 0.25, "c3": 0.75 },
{ "time": 1.5, "angle": 3.03, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
{ "time": 2, "angle": -4.05 }
]
},
"front-upper-arm": {
"rotate": [
{ "angle": 4.71, "curve": 0.377, "c2": 0.61, "c3": 0.72 },
{ "time": 0.2333, "angle": 2.56, "curve": 0.25, "c3": 0.75 },
{ "time": 1.2, "angle": 16.18, "curve": 0.242, "c3": 0.673, "c4": 0.69 },
{ "time": 2, "angle": 4.71 }
],
"scale": [
{ "x": 0.966, "y": 0.966, "curve": 0.377, "c2": 0.61, "c3": 0.72 },
{ "time": 0.2333, "curve": 0.25, "c3": 0.75 },
{ "time": 1.2, "x": 0.783, "y": 0.783, "curve": 0.242, "c3": 0.673, "c4": 0.69 },
{ "time": 2, "x": 0.966, "y": 0.966 }
]
},
"front-forearm": {
"rotate": [
{ "angle": 7.34, "curve": 0.382, "c2": 0.55, "c3": 0.741 },
{ "time": 0.4, "angle": 2.56, "curve": 0.25, "c3": 0.75 },
{ "time": 1.3667, "angle": 16.18, "curve": 0.245, "c3": 0.639, "c4": 0.56 },
{ "time": 2, "angle": 7.34 }
],
"scale": [
{ "x": 0.953, "y": 0.953, "curve": 0.382, "c2": 0.55, "c3": 0.741 },
{ "time": 0.4, "curve": 0.25, "c3": 0.75 },
{ "time": 1.3667, "x": 0.866, "y": 0.866, "curve": 0.245, "c3": 0.639, "c4": 0.56 },
{ "time": 2, "x": 0.953, "y": 0.953 }
]
},
"front-hand": {
"rotate": [
{ "angle": 9.37, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
{ "time": 0.5, "angle": 2.56, "curve": 0.25, "c3": 0.75 },
{ "time": 1.5, "angle": 16.18, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
{ "time": 2, "angle": 9.37 }
]
},
"lower-jaw": {
"rotate": [
{ "angle": -9.62, "curve": 0.25, "c3": 0.75 },
{ "time": 1, "angle": 1.71, "curve": 0.25, "c3": 0.75 },
{ "time": 2, "angle": -9.62 }
],
"translate": [
{ "x": 8.03, "y": 0.13, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
{ "time": 0.5, "curve": 0.25, "c3": 0.75 },
{ "time": 1.5, "x": 16.07, "y": 0.26, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
{ "time": 2, "x": 8.03, "y": 0.13 }
]
}
}
},
"skill": {
"slots": {
"magic_vfx": {
"color": [
{ "time": 0.5, "color": "00ff0700", "curve": 0.25, "c3": 0.75 },
{ "time": 0.8333, "color": "00ff07ff", "curve": "stepped" },
{ "time": 1.6333, "color": "00ff07ff", "curve": 0.25, "c3": 0.75 },
{ "time": 1.9667, "color": "00ff0700" }
]
}
},
"bones": {
"body": {
"rotate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.3, "angle": 3.15, "curve": 0.25, "c3": 0.75 },
{ "time": 0.6, "angle": -5.41, "curve": 0.25, "c3": 0.75 },
{ "time": 0.8, "angle": -3.07, "curve": 0.25, "c3": 0.75 },
{ "time": 1, "angle": -5.4, "curve": 0.25, "c3": 0.75 },
{ "time": 1.2, "angle": -3.37, "curve": 0.25, "c3": 0.75 },
{ "time": 1.4, "angle": -5.16, "curve": "stepped" },
{ "time": 1.6, "angle": -5.16, "curve": 0.25, "c3": 0.75 },
{ "time": 2, "angle": 0.88, "curve": 0.25, "c3": 0.75 },
{ "time": 2.4 }
],
"translate": [
{ "time": 0.3, "curve": 0.25, "c3": 0.75 },
{ "time": 0.5, "x": -0.07, "y": 20.29, "curve": 0.25, "c3": 0.75 },
{ "time": 0.7, "x": -0.6, "y": -11.7, "curve": 0.25, "c3": 0.75 },
{ "time": 0.9, "x": 0.02, "y": 17.86, "curve": 0.25, "c3": 0.75 },
{ "time": 1.1, "x": -0.37, "y": -4.6, "curve": 0.25, "c3": 0.75 },
{ "time": 1.3, "x": -0.02, "y": 9.38, "curve": 0.25, "c3": 0.75 },
{ "time": 1.5 }
]
},
"body2": {
"rotate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.3, "angle": 3.15, "curve": 0.25, "c3": 0.75 },
{ "time": 0.6, "angle": -5.41, "curve": 0.25, "c3": 0.75 },
{ "time": 0.8, "angle": -3.07, "curve": 0.25, "c3": 0.75 },
{ "time": 1, "angle": -5.4, "curve": 0.25, "c3": 0.75 },
{ "time": 1.2, "angle": -3.37, "curve": 0.25, "c3": 0.75 },
{ "time": 1.4, "angle": -5.16, "curve": "stepped" },
{ "time": 1.6, "angle": -5.16, "curve": 0.25, "c3": 0.75 },
{ "time": 2, "angle": 0.88, "curve": 0.25, "c3": 0.75 },
{ "time": 2.4 }
]
},
"hip": {
"rotate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.6, "angle": -6.27, "curve": "stepped" },
{ "time": 1.7, "angle": -6.27, "curve": 0.25, "c3": 0.75 },
{ "time": 2.4 }
],
"translate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.3, "x": -2.06, "y": -29.46, "curve": 0.25, "c3": 0.75 },
{ "time": 0.6, "x": -1.76, "y": -16.02, "curve": "stepped" },
{ "time": 1.7, "x": -1.76, "y": -16.02, "curve": 0.25, "c3": 0.75 },
{ "time": 2.4 }
]
},
"lower-jaw": {
"rotate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.2, "angle": -5.3, "curve": "stepped" },
{ "time": 0.5, "angle": -5.3, "curve": 0.25, "c3": 0.75 },
{ "time": 0.7667, "angle": -15.51, "curve": 0.25, "c3": 0.75 },
{ "time": 1.0333, "angle": 1.69, "curve": 0.25, "c3": 0.75 },
{ "time": 1.3, "angle": -12.65, "curve": 0.25, "c3": 0.75 },
{ "time": 1.5667, "angle": -2.71, "curve": 0.25, "c3": 0.75 },
{ "time": 1.8333 }
],
"translate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.2, "x": 33.33, "y": 0.54, "curve": "stepped" },
{ "time": 0.4, "x": 33.33, "y": 0.54, "curve": 0.25, "c3": 0.75 },
{ "time": 0.5667, "x": -8.04, "y": 4.05, "curve": 0.276, "c3": 0.621, "c4": 0.4 },
{
"time": 0.7,
"x": 21.77,
"y": 0.93,
"curve": 0.314,
"c2": 0.27,
"c3": 0.657,
"c4": 0.64
},
{
"time": 0.8333,
"x": -12.7,
"y": 1.07,
"curve": 0.343,
"c2": 0.36,
"c3": 0.686,
"c4": 0.73
},
{ "time": 0.9667, "x": 34.34, "y": -0.55, "curve": 0.379, "c2": 0.6, "c3": 0.724 },
{ "time": 1.1, "x": -8.04, "y": 4.05, "curve": 0.276, "c3": 0.621, "c4": 0.4 },
{
"time": 1.2333,
"x": 32.48,
"y": -1.32,
"curve": 0.314,
"c2": 0.27,
"c3": 0.657,
"c4": 0.64
},
{
"time": 1.3667,
"x": -7.37,
"y": 0.04,
"curve": 0.343,
"c2": 0.36,
"c3": 0.686,
"c4": 0.73
},
{ "time": 1.5, "x": 22.25, "y": -0.17, "curve": 0.379, "c2": 0.6, "c3": 0.724 },
{ "time": 1.6333 }
]
},
"rear-upper-arm": {
"rotate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.3333, "angle": 38.21, "curve": 0.25, "c3": 0.75 },
{ "time": 0.6, "angle": -17.23, "curve": 0.25, "c3": 0.75 },
{ "time": 0.9333, "angle": -26.52, "curve": 0.25, "c3": 0.75 },
{ "time": 1.2667, "angle": 9.46, "curve": 0.25, "c3": 0.75 },
{ "time": 1.6, "angle": -36.49, "curve": 0.25, "c3": 0.75 },
{ "time": 1.9333, "angle": -4.87, "curve": 0.25, "c3": 0.75 },
{ "time": 2.2, "angle": 3.63, "curve": 0.25, "c3": 0.75 },
{ "time": 2.4 }
],
"scale": [
{ "curve": "stepped" },
{ "time": 0.5, "y": -1, "curve": "stepped" },
{ "time": 1.7, "y": -1, "curve": "stepped" },
{ "time": 1.9 }
]
},
"rear-forearm": {
"rotate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.3333, "angle": 38.21, "curve": 0.25, "c3": 0.75 },
{ "time": 0.6, "angle": 44.44, "curve": 0.25, "c3": 0.75 },
{ "time": 0.9333, "angle": 43.4, "curve": 0.25, "c3": 0.75 },
{ "time": 1.2667, "angle": 72.3, "curve": 0.25, "c3": 0.75 },
{ "time": 1.6, "angle": 34.25, "curve": 0.25, "c3": 0.75 },
{ "time": 1.9333, "angle": 38.7, "curve": 0.25, "c3": 0.75 },
{ "time": 2.4 }
],
"translate": [
{ "time": 0.4, "curve": 0.25, "c3": 0.75 },
{ "time": 0.5, "x": -20.43, "y": -49.44, "curve": 0.25, "c3": 0.75 },
{ "time": 0.6333, "x": 20.54, "y": 55.23, "curve": 0.25, "c3": 0.75 },
{ "time": 0.8, "curve": "stepped" },
{ "time": 1.6 },
{ "time": 1.7333, "x": 19.96, "y": 36.14 },
{ "time": 1.9, "x": -37.67, "y": -76.27 },
{ "time": 2.1 }
]
},
"rear-hand": {
"rotate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.3333, "angle": 38.21, "curve": 0.25, "c3": 0.75 },
{ "time": 0.6, "angle": 18.97, "curve": 0.25, "c3": 0.75 },
{ "time": 0.9333, "angle": 17.93, "curve": 0.25, "c3": 0.75 },
{ "time": 1.2667, "angle": -1.63, "curve": 0.25, "c3": 0.75 },
{ "time": 1.6, "angle": 8.79, "curve": 0.25, "c3": 0.75 },
{ "time": 1.9333, "angle": 13.24, "curve": 0.25, "c3": 0.75 },
{ "time": 2.4 }
]
},
"front-upper-arm": {
"rotate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.3333, "angle": -34.61, "curve": 0.25, "c3": 0.75 },
{ "time": 0.6, "angle": 45.61, "curve": 0.25, "c3": 0.75 },
{ "time": 0.9333, "angle": 23.81, "curve": 0.25, "c3": 0.75 },
{ "time": 1.2667, "angle": 34.49, "curve": 0.25, "c3": 0.75 },
{ "time": 1.6, "angle": 27.58, "curve": 0.25, "c3": 0.75 },
{ "time": 1.9333, "angle": -8.8, "curve": 0.25, "c3": 0.75 },
{ "time": 2.2, "angle": -15.24, "curve": 0.25, "c3": 0.75 },
{ "time": 2.4 }
],
"scale": [
{ "curve": "stepped" },
{ "time": 0.5, "y": -1, "curve": "stepped" },
{ "time": 1.7, "y": -1, "curve": "stepped" },
{ "time": 1.9 }
]
},
"front-forearm": {
"rotate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.3333, "angle": -34.61, "curve": 0.25, "c3": 0.75 },
{ "time": 0.6, "angle": -24.37, "curve": 0.25, "c3": 0.75 },
{ "time": 0.9333, "angle": -40.06, "curve": 0.25, "c3": 0.75 },
{ "time": 1.2667, "angle": -24.42, "curve": 0.25, "c3": 0.75 },
{ "time": 1.6, "angle": -36.55, "curve": 0.25, "c3": 0.75 },
{ "time": 1.9333, "angle": -34.1, "curve": 0.25, "c3": 0.75 },
{ "time": 2.4 }
],
"translate": [
{ "time": 0.4, "curve": 0.25, "c3": 0.75 },
{ "time": 0.5, "x": -7.95, "y": 87.04, "curve": 0.25, "c3": 0.75 },
{ "time": 0.6333, "x": 2.08, "y": 31.29, "curve": 0.25, "c3": 0.75 },
{ "time": 0.8, "curve": "stepped" },
{ "time": 1.6, "curve": 0.25, "c3": 0.75 },
{ "time": 1.7333, "x": -0.65, "y": -50.12, "curve": 0.25, "c3": 0.75 },
{ "time": 1.9, "x": -1.72, "y": 68.02, "curve": 0.25, "c3": 0.75 },
{ "time": 2.1 }
]
},
"front-hand": {
"rotate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.3333, "angle": -34.61, "curve": 0.25, "c3": 0.75 },
{ "time": 0.6, "angle": 6.89, "curve": 0.25, "c3": 0.75 },
{ "time": 0.9333, "angle": -8.79, "curve": 0.25, "c3": 0.75 },
{ "time": 1.2667, "angle": 6.85, "curve": 0.25, "c3": 0.75 },
{ "time": 1.6, "angle": -5.28, "curve": 0.25, "c3": 0.75 },
{ "time": 1.9333, "angle": -7.32, "curve": 0.25, "c3": 0.75 },
{ "time": 2.4 }
]
},
"vfx-pivot": {
"rotate": [
{ "time": 0.3333, "curve": 0.25, "c3": 0.75 },
{ "time": 2.1667, "angle": 180, "curve": 0.25, "c3": 0.75 },
{ "time": 2.4 }
],
"translate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 1.2, "x": 90, "curve": 0.25, "c3": 0.75 },
{ "time": 2.4 }
],
"scale": [
{ "time": 0.3333, "curve": 0.25, "c3": 0.75 },
{ "time": 2.0333, "x": 1.331, "y": 1.331 }
]
}
},
"drawOrder": [
{
"time": 0.1333,
"offsets": [
{ "slot": "rear-hand", "offset": 6 },
{ "slot": "rear-forearm", "offset": 5 }
]
},
{ "time": 2.4 }
]
}
}
}

View File

@ -1,11 +0,0 @@
{
"ver": "1.2.6",
"importer": "spine-data",
"imported": true,
"uuid": "2febbe4a-3db8-4ba0-9c35-4c978471e89d",
"files": [
".json"
],
"subMetas": {},
"userData": {}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 196 KiB

View File

@ -1,42 +0,0 @@
{
"ver": "1.0.26",
"importer": "image",
"imported": true,
"uuid": "736f7cb7-8e87-4cc2-a127-fd58a352494d",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "736f7cb7-8e87-4cc2-a127-fd58a352494d@6c48a",
"displayName": "slow boss",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "repeat",
"wrapModeT": "repeat",
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0,
"isUuid": true,
"imageUuidOrDatabaseUri": "736f7cb7-8e87-4cc2-a127-fd58a352494d",
"visible": false
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"hasAlpha": true,
"type": "texture",
"fixAlphaTransparencyArtifacts": false,
"redirect": "736f7cb7-8e87-4cc2-a127-fd58a352494d@6c48a"
}
}

View File

@ -1,9 +0,0 @@
{
"ver": "1.2.0",
"importer": "directory",
"imported": true,
"uuid": "a0cb3965-00e9-44f3-b874-546ed7eb2a97",
"files": [],
"subMetas": {},
"userData": {}
}

View File

@ -1,230 +0,0 @@
character.png
size: 1024,1024
format: RGBA8888
filter: Linear,Linear
repeat: none
VFX_swordswingA_0000
rotate: true
xy: 722, 643
size: 115, 117
orig: 128, 128
offset: 7, 8
index: -1
VFX_swordswingA_0002
rotate: false
xy: 772, 485
size: 108, 103
orig: 128, 128
offset: 7, 5
index: -1
VFX_swordswingA_0004
rotate: false
xy: 884, 551
size: 105, 54
orig: 128, 128
offset: 6, 7
index: -1
VFX_swordswingB_0000
rotate: true
xy: 668, 255
size: 112, 106
orig: 128, 128
offset: 8, 3
index: -1
VFX_swordswingB_0002
rotate: true
xy: 668, 157
size: 94, 87
orig: 128, 128
offset: 9, 23
index: -1
VFX_swordswingB_0004
rotate: false
xy: 665, 371
size: 86, 36
orig: 128, 128
offset: 11, 68
index: -1
body
rotate: true
xy: 583, 362
size: 45, 78
orig: 45, 78
offset: 0, 0
index: -1
dome
rotate: false
xy: 843, 647
size: 111, 111
orig: 111, 111
offset: 0, 0
index: -1
front-foot
rotate: true
xy: 1001, 663
size: 30, 16
orig: 30, 16
offset: 0, 0
index: -1
front-forearm
rotate: true
xy: 923, 610
size: 33, 39
orig: 33, 39
offset: 0, 0
index: -1
front-hand1
rotate: true
xy: 882, 609
size: 34, 37
orig: 34, 37
offset: 0, 0
index: -1
front-hand2
rotate: true
xy: 958, 697
size: 61, 60
orig: 66, 63
offset: 3, 2
index: -1
front-leg
rotate: true
xy: 668, 126
size: 27, 43
orig: 27, 43
offset: 0, 0
index: -1
front-thigh
rotate: true
xy: 966, 609
size: 22, 43
orig: 22, 43
offset: 0, 0
index: -1
front-upperarm
rotate: true
xy: 958, 660
size: 33, 39
orig: 33, 39
offset: 0, 0
index: -1
head
rotate: false
xy: 583, 411
size: 185, 174
orig: 185, 174
offset: 0, 0
index: -1
piercevfx
rotate: true
xy: 772, 394
size: 87, 123
orig: 87, 123
offset: 0, 0
index: -1
rear-foot
rotate: false
xy: 755, 373
size: 34, 17
orig: 34, 17
offset: 0, 0
index: -1
rear-forearm
rotate: false
xy: 953, 762
size: 28, 28
orig: 28, 28
offset: 0, 0
index: -1
rear-hand1
rotate: true
xy: 920, 762
size: 28, 29
orig: 28, 29
offset: 0, 0
index: -1
rear-leg
rotate: true
xy: 966, 635
size: 21, 44
orig: 21, 44
offset: 0, 0
index: -1
rear-thigh
rotate: false
xy: 456, 101
size: 24, 42
orig: 24, 42
offset: 0, 0
index: -1
rear-upper-arm
rotate: true
xy: 985, 768
size: 22, 34
orig: 22, 34
offset: 0, 0
index: -1
skill1_4
rotate: false
xy: 4, 4
size: 448, 340
orig: 768, 768
offset: 159, 279
index: -1
sword
rotate: true
xy: 722, 762
size: 78, 194
orig: 78, 194
offset: 0, 0
index: -1
sword-knot
rotate: true
xy: 351, 589
size: 251, 367
orig: 253, 369
offset: 1, 1
index: -1
sword-vfx
rotate: false
xy: 4, 348
size: 343, 492
orig: 351, 500
offset: 4, 4
index: -1
vfx-impact
rotate: false
xy: 884, 491
size: 61, 56
orig: 64, 64
offset: 1, 5
index: -1
vfx-strike
rotate: false
xy: 722, 592
size: 156, 47
orig: 158, 47
offset: 1, 0
index: -1
vfx-thrust
rotate: false
xy: 920, 794
size: 94, 46
orig: 95, 46
offset: 0, 0
index: -1
vfx-wheel1
rotate: false
xy: 456, 147
size: 208, 208
orig: 256, 256
offset: 23, 24
index: -1
vfx-wheel2
rotate: false
xy: 351, 359
size: 228, 226
orig: 256, 256
offset: 12, 13
index: -1

View File

@ -1,12 +0,0 @@
{
"ver": "1.0.1",
"importer": "*",
"imported": true,
"uuid": "7b838de9-6498-4227-a578-8351cbb4da99",
"files": [
".atlas",
".json"
],
"subMetas": {},
"userData": {}
}

File diff suppressed because it is too large Load Diff

View File

@ -1,11 +0,0 @@
{
"ver": "1.2.6",
"importer": "spine-data",
"imported": true,
"uuid": "1b7d42a5-cb3d-4410-80a2-fd53485c1446",
"files": [
".json"
],
"subMetas": {},
"userData": {}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 420 KiB

View File

@ -1,42 +0,0 @@
{
"ver": "1.0.26",
"importer": "image",
"imported": true,
"uuid": "834a909b-b6e4-444f-8fb8-662338e01dfd",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "834a909b-b6e4-444f-8fb8-662338e01dfd@6c48a",
"displayName": "character",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "repeat",
"wrapModeT": "repeat",
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0,
"isUuid": true,
"imageUuidOrDatabaseUri": "834a909b-b6e4-444f-8fb8-662338e01dfd",
"visible": false
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"hasAlpha": true,
"type": "texture",
"fixAlphaTransparencyArtifacts": false,
"redirect": "834a909b-b6e4-444f-8fb8-662338e01dfd@6c48a"
}
}

View File

@ -1,9 +0,0 @@
{
"ver": "1.2.0",
"importer": "directory",
"imported": true,
"uuid": "02735f62-8b3a-44b4-a5b3-897abca5ab27",
"files": [],
"subMetas": {},
"userData": {}
}

View File

@ -1,9 +0,0 @@
{
"ver": "1.2.0",
"importer": "directory",
"imported": true,
"uuid": "bd3110e9-e323-4ede-85cb-71e8e1a595c7",
"files": [],
"subMetas": {},
"userData": {}
}

View File

@ -1,83 +0,0 @@
heavy-creep.png
size: 1024,512
format: RGBA8888
filter: Linear,Linear
repeat: none
body
rotate: false
xy: 535, 16
size: 183, 215
orig: 183, 385
offset: 0, 0
index: -1
front-arm
rotate: true
xy: 313, 4
size: 170, 218
orig: 170, 218
offset: 0, 0
index: -1
front-fist
rotate: true
xy: 183, 12
size: 153, 126
orig: 153, 126
offset: 0, 0
index: -1
front-hand
rotate: false
xy: 361, 235
size: 171, 70
orig: 171, 70
offset: 0, 0
index: -1
front-leg
rotate: false
xy: 599, 363
size: 54, 66
orig: 55, 66
offset: 0, 0
index: -1
head
rotate: false
xy: 4, 169
size: 232, 333
orig: 232, 333
offset: 0, 0
index: -1
rear-arm
rotate: true
xy: 4, 27
size: 138, 175
orig: 138, 175
offset: 0, 0
index: -1
rear-fist
rotate: true
xy: 240, 178
size: 127, 117
orig: 127, 117
offset: 0, 0
index: -1
rear-hand
rotate: false
xy: 536, 239
size: 133, 66
orig: 133, 66
offset: 0, 0
index: -1
rear-leg
rotate: true
xy: 599, 433
size: 69, 66
orig: 69, 66
offset: 0, 0
index: -1
shoulder
rotate: false
xy: 240, 309
size: 355, 193
orig: 355, 193
offset: 0, 0
index: -1

View File

@ -1,11 +0,0 @@
{
"ver": "1.0.2",
"importer": "text",
"imported": true,
"uuid": "df6ddbd1-7f65-4670-a7bc-b1ad71ec6929",
"files": [
".json"
],
"subMetas": {},
"userData": {}
}

File diff suppressed because one or more lines are too long

View File

@ -1,11 +0,0 @@
{
"ver": "1.2.6",
"importer": "spine-data",
"imported": true,
"uuid": "0730cbfe-ba27-4401-942f-3eeaef1a4f7f",
"files": [
".json"
],
"subMetas": {},
"userData": {}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 241 KiB

View File

@ -1,42 +0,0 @@
{
"ver": "1.0.26",
"importer": "image",
"imported": true,
"uuid": "d2dbca63-37c7-4bb2-b387-6e3c38a88edf",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "d2dbca63-37c7-4bb2-b387-6e3c38a88edf@6c48a",
"displayName": "heavy-creep",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "repeat",
"wrapModeT": "repeat",
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0,
"isUuid": true,
"imageUuidOrDatabaseUri": "d2dbca63-37c7-4bb2-b387-6e3c38a88edf",
"visible": false
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"hasAlpha": true,
"type": "texture",
"fixAlphaTransparencyArtifacts": false,
"redirect": "d2dbca63-37c7-4bb2-b387-6e3c38a88edf@6c48a"
}
}

View File

@ -1,9 +0,0 @@
{
"ver": "1.2.0",
"importer": "directory",
"imported": true,
"uuid": "23d204fd-48c5-474d-9a2f-37a8439b5ccd",
"files": [],
"subMetas": {},
"userData": {}
}

View File

@ -1,76 +0,0 @@
light_creep.png
size: 512,256
format: RGBA8888
filter: Linear,Linear
repeat: none
body
rotate: false
xy: 4, 11
size: 240, 203
orig: 240, 203
offset: 0, 0
index: -1
eye
rotate: false
xy: 248, 98
size: 71, 74
orig: 71, 74
offset: 0, 0
index: -1
horn01
rotate: false
xy: 373, 131
size: 71, 83
orig: 71, 84
offset: 0, 0
index: -1
horn02
rotate: true
xy: 248, 26
size: 68, 66
orig: 68, 66
offset: 0, 0
index: -1
horn03
rotate: false
xy: 323, 58
size: 75, 69
orig: 75, 69
offset: 0, 0
index: -1
horn04
rotate: false
xy: 402, 49
size: 59, 78
orig: 60, 78
offset: 0, 0
index: -1
iris
rotate: true
xy: 323, 136
size: 36, 42
orig: 36, 42
offset: 0, 0
index: -1
iris-dead
rotate: false
xy: 318, 4
size: 39, 50
orig: 39, 50
offset: 0, 0
index: -1
mouth
rotate: false
xy: 248, 176
size: 121, 38
orig: 122, 38
offset: 0, 0
index: -1
mouth-dead
rotate: true
xy: 448, 151
size: 63, 35
orig: 63, 35
offset: 0, 0
index: -1

View File

@ -1,11 +0,0 @@
{
"ver": "1.0.2",
"importer": "text",
"imported": true,
"uuid": "03ea8ca8-d491-4c57-a69d-98ef58f7e63a",
"files": [
".json"
],
"subMetas": {},
"userData": {}
}

View File

@ -1,381 +0,0 @@
{
"skeleton": {
"hash": "wdPWn+EwALNxrN5+Xw2cB1Y7K4E",
"spine": "3.8.99",
"x": -271.5,
"y": -200.28,
"width": 498,
"height": 1080,
"images": "",
"audio": "D:/Huy 2D Animation/works/2024/Product/super hero game/creep/light-creep"
},
"bones": [
{ "name": "root" },
{ "name": "pivot", "parent": "root", "scaleX": 0.1, "scaleY": 0.1 },
{ "name": "body", "parent": "pivot", "x": -2.84, "y": 24.88 },
{ "name": "iris", "parent": "body", "x": -51.62, "y": 156.03 },
{ "name": "mouth", "parent": "body", "x": -68.82, "y": 26.98 },
{ "name": "horn01", "parent": "body", "rotation": 88.54, "x": -25.81, "y": 274.01 },
{ "name": "horn04", "parent": "body", "rotation": 122.57, "x": -132.73, "y": 234.69 },
{ "name": "horn02", "parent": "body", "rotation": 44.05, "x": 136.42, "y": 207.65 },
{ "name": "horn03", "parent": "body", "rotation": 63.71, "x": 72.51, "y": 272.78 },
{ "name": "horn4", "parent": "horn04", "length": 75.14, "rotation": -2.49, "x": 30.83, "y": 2.01 },
{ "name": "horn1", "parent": "horn01", "length": 93.54, "rotation": -1.71, "x": 47.02, "y": -1.04 },
{ "name": "horn3", "parent": "horn03", "length": 90.49, "rotation": 1.33, "x": 24.86, "y": 0.26 },
{ "name": "horn2", "parent": "horn02", "length": 92.68, "rotation": 0.95, "x": 28.01, "y": -1.5 }
],
"slots": [
{ "name": "horn04", "bone": "horn04", "attachment": "horn04" },
{ "name": "horn03", "bone": "horn03", "attachment": "horn03" },
{ "name": "body", "bone": "body", "attachment": "body" },
{ "name": "mouth", "bone": "mouth", "attachment": "mouth" },
{ "name": "eye", "bone": "iris", "attachment": "eye" },
{ "name": "iris", "bone": "iris", "attachment": "iris" },
{ "name": "horn02", "bone": "horn02", "attachment": "horn02" },
{ "name": "horn01", "bone": "horn01", "attachment": "horn01" }
],
"skins": [
{
"name": "default",
"attachments": {
"body": {
"body": { "x": 16.34, "y": 133.12, "width": 479, "height": 406 }
},
"eye": {
"eye": { "x": -12.54, "y": -2.91, "width": 142, "height": 148 }
},
"horn01": {
"horn01": {
"type": "mesh",
"uvs": [ 0.54608, 0.01189, 0.60251, 0.0475, 0.71631, 0.1433, 0.81656, 0.27052, 0.90084, 0.40809, 0.94142, 0.50812, 0.96318, 0.5803, 0.98568, 0.65494, 1, 0.75509, 1, 0.76884, 0.9884, 0.81556, 0.93715, 0.88676, 0.86615, 0.93671, 0.78991, 0.96934, 0.71807, 0.99379, 0.5588, 0.99522, 0.38928, 0.97601, 0.2047, 0.9239, 0.11646, 0.87754, 0.02279, 0.79774, 0.00389, 0.69113, 0.01176, 0.63968, 0.071, 0.49088, 0.19769, 0.27555, 0.2969, 0.15115, 0.33324, 0.11368, 0.42567, 0.03572, 0.45575, 0.01649, 0.47487, 0.01185, 0.12661, 0.70794, 0.43895, 0.80244, 0.78773, 0.80464, 0.21511, 0.61125, 0.45197, 0.68816, 0.77993, 0.65081 ],
"triangles": [ 30, 33, 31, 33, 34, 31, 8, 31, 34, 29, 32, 30, 30, 32, 33, 8, 34, 7, 29, 21, 32, 34, 33, 3, 1, 2, 25, 28, 1, 26, 1, 28, 0, 28, 26, 27, 23, 3, 33, 23, 24, 3, 25, 2, 24, 26, 1, 25, 34, 6, 7, 34, 5, 6, 34, 4, 5, 34, 3, 4, 24, 2, 3, 21, 22, 32, 22, 23, 32, 33, 32, 23, 19, 20, 29, 31, 14, 15, 15, 16, 30, 14, 31, 13, 31, 15, 30, 16, 17, 30, 13, 31, 12, 12, 31, 11, 30, 17, 29, 11, 31, 10, 17, 18, 29, 18, 19, 29, 10, 31, 9, 9, 31, 8, 20, 21, 29 ],
"vertices": [ 1, 10, 103.56, -4.71, 1, 2, 5, 144.65, -16.94, 4.4E-4, 10, 98.06, -12.98, 0.99956, 2, 5, 129.06, -33.38, 0.00606, 10, 82.97, -29.89, 0.99394, 2, 5, 108.18, -48.05, 0.02516, 10, 62.54, -45.17, 0.97484, 2, 5, 85.52, -60.52, 0.06574, 10, 40.26, -58.31, 0.93426, 2, 5, 68.96, -66.66, 0.13192, 10, 23.89, -64.94, 0.86808, 2, 5, 56.99, -70.04, 0.21186, 10, 12.03, -68.67, 0.78814, 2, 5, 44.61, -73.52, 0.3649, 10, -0.25, -72.52, 0.6351, 2, 5, 27.94, -75.97, 0.53929, 10, -16.83, -75.46, 0.46071, 2, 5, 25.65, -76.03, 0.75854, 10, -19.13, -75.59, 0.24146, 2, 5, 17.81, -74.59, 0.91286, 10, -27.01, -74.39, 0.08714, 1, 5, 5.74, -67.67, 1, 1, 5, -2.86, -57.87, 1, 1, 5, -8.58, -47.26, 1, 1, 5, -12.92, -37.24, 1, 1, 5, -13.73, -14.8, 1, 1, 5, -11.13, 9.18, 1, 1, 5, -3.09, 35.42, 1, 1, 5, 4.34, 48.05, 1, 2, 5, 17.32, 61.59, 0.91674, 10, -31.55, 61.72, 0.08326, 2, 5, 35.05, 64.71, 0.72236, 10, -13.92, 65.36, 0.27764, 2, 5, 43.67, 63.82, 0.42381, 10, -5.28, 64.73, 0.57619, 2, 5, 68.72, 56.1, 0.17516, 10, 19.99, 57.76, 0.82484, 2, 5, 105.13, 39.16, 0.05008, 10, 56.89, 41.91, 0.94992, 2, 5, 126.25, 25.7, 0.00943, 10, 78.4, 29.09, 0.99057, 2, 5, 132.64, 20.74, 6.0E-5, 10, 84.93, 24.32, 0.99994, 1, 10, 98.65, 12.02, 1, 1, 10, 102.09, 7.96, 1, 1, 10, 103.01, 5.31, 1, 2, 5, 32.68, 47.34, 0.44117, 10, -15.77, 47.93, 0.55883, 2, 5, 18.03, 2.91, 0.54316, 10, -29.09, 3.09, 0.45684, 2, 5, 18.91, -46.26, 0.65396, 10, -26.75, -46.04, 0.34604, 2, 5, 49.14, 35.28, 0.14737, 10, 1.04, 36.36, 0.85263, 2, 5, 37.15, 1.56, 0.17419, 10, -9.94, 2.31, 0.82581, 2, 5, 44.57, -44.5, 0.20141, 10, -1.16, -43.52, 0.79859 ],
"hull": 29,
"edges": [ 0, 56, 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 38, 40, 40, 42, 42, 44, 44, 46, 46, 48, 48, 50, 50, 52, 52, 54, 54, 56, 42, 58, 58, 60, 60, 62, 62, 18, 44, 64, 64, 66, 66, 68, 10, 12, 12, 14, 68, 12 ],
"width": 141,
"height": 167
}
},
"horn02": {
"horn02": {
"type": "mesh",
"uvs": [ 0.62154, 0.00733, 0.82095, 0.0074, 0.90988, 0.02896, 0.96546, 0.05814, 0.9855, 0.12181, 0.98581, 0.33468, 0.94613, 0.53956, 0.88534, 0.70025, 0.85261, 0.76429, 0.777, 0.88613, 0.71907, 0.95279, 0.67219, 0.98531, 0.64057, 0.9927, 0.47298, 0.99293, 0.3882, 0.98084, 0.25429, 0.91053, 0.16045, 0.83263, 0.07907, 0.74666, 0.04747, 0.68979, 0.01835, 0.60268, 0.00516, 0.49631, 0.01502, 0.38076, 0.04408, 0.32046, 0.1274, 0.23391, 0.18338, 0.17577, 0.3157, 0.10585, 0.45535, 0.052, 0.1018, 0.46623, 0.25368, 0.69397, 0.47118, 0.85164, 0.18618, 0.43313, 0.33805, 0.64531, 0.5143, 0.77378 ],
"triangles": [ 30, 24, 25, 23, 24, 30, 22, 23, 30, 30, 27, 22, 5, 1, 4, 4, 2, 3, 4, 1, 2, 31, 25, 26, 30, 25, 31, 26, 0, 31, 0, 6, 7, 6, 0, 1, 5, 6, 1, 0, 32, 31, 0, 7, 32, 8, 32, 7, 29, 31, 32, 9, 32, 8, 10, 32, 9, 29, 32, 10, 10, 12, 29, 11, 12, 10, 27, 21, 22, 12, 13, 29, 20, 21, 27, 19, 20, 27, 28, 18, 19, 28, 30, 31, 27, 30, 28, 28, 19, 27, 17, 18, 28, 16, 17, 28, 28, 31, 29, 15, 28, 29, 16, 28, 15, 14, 15, 29, 13, 14, 29 ],
"vertices": [ 1, 12, 73.46, 34.17, 1, 1, 12, 92.63, 14.99, 1, 1, 12, 99.19, 4.44, 1, 1, 12, 101.83, -3.61, 1, 1, 12, 97.86, -11.43, 1, 1, 12, 78.17, -31.18, 1, 2, 7, 84.15, -46.91, 0.00177, 12, 55.38, -46.34, 0.99823, 2, 7, 63.57, -56.29, 0.03386, 12, 34.65, -55.38, 0.96614, 2, 7, 54.54, -59.23, 0.06596, 12, 25.57, -58.16, 0.93404, 2, 7, 36.05, -63.55, 0.17187, 12, 7.01, -62.18, 0.82813, 2, 7, 24.32, -64.35, 0.249, 12, -4.74, -62.78, 0.751, 1, 7, 16.78, -62.98, 1, 1, 7, 13.01, -60.69, 1, 1, 7, -3.39, -44.86, 1, 1, 7, -10.58, -35.71, 1, 1, 7, -17.27, -16.42, 1, 1, 7, -19.34, -0.22, 1, 1, 7, -19.47, 15.57, 1, 1, 7, -17.38, 23.92, 1, 1, 7, -12.29, 34.87, 1, 1, 7, -3.89, 46.13, 1, 1, 7, 7.59, 56.08, 1, 2, 7, 15.93, 59.01, 0.40377, 12, -11.07, 60.7, 0.59623, 2, 7, 31.95, 59.28, 0.25242, 12, 4.96, 60.71, 0.74758, 2, 7, 42.72, 59.47, 0.16857, 12, 15.72, 60.71, 0.83143, 2, 7, 62.02, 53.54, 0.05848, 12, 34.93, 54.46, 0.94152, 2, 7, 80.58, 45.41, 0.00894, 12, 53.34, 46.02, 0.99106, 2, 7, 8.29, 39.83, 0.54724, 12, -19.03, 41.65, 0.45276, 2, 7, 2.4, 4.02, 0.92366, 12, -25.52, 5.95, 0.07634, 2, 7, 9.3, -31.39, 0.52173, 12, -19.21, -29.58, 0.47827, 2, 7, 19.55, 34.97, 0.39356, 12, -7.85, 36.6, 0.60644, 2, 7, 15.08, 0.63, 0.45797, 12, -12.9, 2.34, 0.54203, 2, 7, 20.61, -28.13, 0.31614, 12, -7.85, -26.51, 0.68386 ],
"hull": 27,
"edges": [ 0, 52, 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 38, 40, 40, 42, 42, 44, 48, 50, 50, 52, 44, 54, 54, 56, 56, 58, 58, 20, 44, 46, 46, 48, 46, 60, 60, 62, 62, 64, 64, 18 ],
"width": 136,
"height": 131
}
},
"horn03": {
"horn03": {
"type": "mesh",
"uvs": [ 0.80644, 0.00409, 0.8437, 0.01852, 0.8729, 0.05036, 0.90306, 0.11425, 0.95303, 0.27134, 0.99159, 0.47227, 0.99498, 0.67925, 0.9846, 0.79134, 0.97086, 0.85257, 0.9509, 0.89619, 0.91079, 0.98382, 0.89332, 0.99285, 0.85378, 0.99288, 0.83441, 0.9533, 0.76714, 0.97824, 0.61752, 0.97846, 0.46395, 0.96345, 0.28172, 0.94203, 0.18953, 0.89408, 0.0274, 0.71647, 0.00164, 0.67484, 0.03089, 0.61106, 0.12568, 0.49004, 0.18884, 0.42072, 0.24474, 0.35937, 0.34597, 0.25854, 0.49757, 0.15087, 0.63428, 0.07595, 0.78327, 0.00953, 0.23284, 0.61762, 0.385, 0.72868, 0.49912, 0.80273, 0.74004, 0.86057, 0.2688, 0.56033, 0.41294, 0.68792, 0.53254, 0.76011, 0.74874, 0.80376 ],
"triangles": [ 33, 24, 25, 23, 24, 33, 22, 23, 33, 29, 22, 33, 34, 25, 26, 33, 25, 34, 29, 33, 34, 28, 0, 1, 28, 3, 27, 2, 28, 1, 3, 28, 2, 26, 5, 35, 34, 26, 35, 27, 4, 26, 4, 27, 3, 35, 5, 6, 4, 5, 26, 6, 36, 35, 7, 36, 6, 8, 36, 7, 32, 35, 36, 9, 32, 36, 8, 9, 36, 13, 32, 9, 14, 32, 13, 10, 13, 9, 11, 13, 10, 12, 13, 11, 21, 22, 29, 19, 20, 21, 30, 29, 34, 31, 34, 35, 30, 34, 31, 31, 35, 32, 29, 19, 21, 18, 29, 30, 18, 19, 29, 17, 18, 30, 16, 17, 30, 31, 16, 30, 15, 31, 32, 15, 32, 14, 16, 31, 15 ],
"vertices": [ 1, 11, 99.09, 3.63, 1, 1, 11, 99.66, -2.27, 1, 1, 11, 97.55, -8.09, 1, 1, 11, 91.52, -15.88, 1, 1, 11, 75.17, -31.76, 1, 2, 8, 78.63, -47.12, 0.00681, 11, 52.66, -48.62, 0.99319, 2, 8, 53.43, -60.13, 0.07436, 11, 27.16, -61.04, 0.92564, 2, 8, 38.98, -65.54, 0.14229, 11, 12.58, -66.11, 0.85771, 2, 8, 30.54, -67.41, 0.18154, 11, 4.11, -67.78, 0.81846, 2, 8, 23.86, -67.37, 0.21216, 11, -2.57, -67.59, 0.78784, 2, 8, 10.43, -67.29, 0.25771, 11, -15.99, -67.2, 0.74229, 2, 8, 8.16, -65.49, 0.26143, 11, -18.22, -65.35, 0.73857, 2, 8, 5.53, -60.17, 0.27152, 11, -20.73, -59.97, 0.72848, 2, 8, 9.11, -55.17, 0.29607, 11, -17.04, -55.05, 0.70393, 2, 8, 1.57, -47.63, 0.40975, 11, -24.39, -47.34, 0.59025, 2, 8, -8.39, -27.53, 0.73148, 11, -33.89, -27.01, 0.26852, 2, 8, -16.75, -5.96, 0.99751, 11, -41.75, -5.25, 0.00249, 2, 8, -26.23, 19.85, 0.96783, 11, -50.62, 20.77, 0.03217, 2, 8, -26.46, 35.15, 0.89883, 11, -50.5, 36.08, 0.10117, 2, 8, -15.42, 67.73, 0.71752, 11, -38.7, 68.39, 0.28248, 2, 8, -12.01, 73.72, 0.7037, 11, -35.16, 74.3, 0.2963, 2, 8, -2.24, 73.66, 0.6733, 11, -25.39, 74.01, 0.3267, 2, 8, 18.92, 68.26, 0.49598, 11, -4.36, 68.12, 0.50402, 2, 8, 31.64, 63.97, 0.34625, 11, 8.25, 63.53, 0.65375, 2, 8, 42.88, 60.17, 0.2202, 11, 19.41, 59.48, 0.7798, 2, 8, 61.99, 52.68, 0.07139, 11, 38.34, 51.54, 0.92861, 2, 8, 85.29, 38.82, 0.00375, 11, 61.31, 37.15, 0.99625, 1, 11, 79.27, 22.89, 1, 1, 11, 96.95, 6.46, 1, 2, 8, 10.37, 46.1, 0.55418, 11, -13.42, 46.17, 0.44582, 2, 8, 6.84, 18.9, 0.65025, 11, -17.58, 19.05, 0.34975, 2, 8, 5.33, -0.94, 0.81329, 11, -19.56, -0.75, 0.18671, 2, 8, 14.23, -36.85, 0.36175, 11, -11.49, -36.85, 0.63825, 2, 8, 19.8, 44.74, 0.42217, 11, -4.03, 44.59, 0.57783, 2, 8, 13.7, 17.62, 0.46379, 11, -10.75, 17.61, 0.53621, 2, 8, 12.78, -2.85, 0.47365, 11, -12.15, -2.83, 0.52635, 2, 8, 21.78, -34.57, 0.2658, 11, -3.89, -34.75, 0.7342 ],
"hull": 29,
"edges": [ 0, 56, 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 38, 40, 40, 42, 42, 44, 48, 50, 50, 52, 52, 54, 54, 56, 44, 58, 58, 60, 60, 62, 62, 64, 16, 18, 18, 20, 64, 18, 44, 46, 46, 48, 46, 66, 66, 68, 68, 70, 70, 72, 72, 16 ],
"width": 150,
"height": 137
}
},
"horn04": {
"horn04": {
"type": "mesh",
"uvs": [ 0.22707, 0.00633, 0.38626, 0.03693, 0.53103, 0.09476, 0.77735, 0.2177, 0.87271, 0.28314, 0.98113, 0.35754, 0.98618, 0.39642, 0.93325, 0.47083, 0.88282, 0.50966, 0.86737, 0.53678, 0.74701, 0.67534, 0.69113, 0.72894, 0.66584, 0.74681, 0.63225, 0.83079, 0.50342, 0.92976, 0.36009, 0.98421, 0.30625, 0.99458, 0.27094, 0.98623, 0.24361, 0.95505, 0.1735, 0.84727, 0.13625, 0.8182, 0.09152, 0.70764, 0.05988, 0.62945, 0.00796, 0.39584, 0.00833, 0.1971, 0.03995, 0.05292, 0.10135, 0.00598, 0.30265, 0.66309, 0.55197, 0.59187, 0.74332, 0.43161, 0.27655, 0.56293, 0.4563, 0.48948, 0.62445, 0.38932 ],
"triangles": [ 21, 22, 27, 22, 30, 27, 28, 30, 31, 28, 27, 30, 31, 30, 23, 25, 26, 0, 23, 30, 22, 24, 0, 23, 25, 0, 24, 28, 32, 29, 28, 31, 32, 1, 23, 0, 23, 1, 31, 31, 2, 32, 31, 1, 2, 4, 29, 3, 29, 32, 3, 32, 2, 3, 15, 16, 18, 16, 17, 18, 14, 15, 19, 15, 18, 19, 13, 14, 27, 14, 19, 27, 19, 20, 27, 13, 27, 12, 12, 27, 28, 20, 21, 27, 12, 28, 11, 11, 28, 10, 10, 28, 9, 28, 29, 9, 9, 29, 8, 8, 29, 7, 7, 29, 6, 29, 5, 6, 29, 4, 5 ],
"vertices": [ 1, 9, 75.36, -14.65, 1, 2, 6, 91.29, -29.3, 2.8E-4, 9, 61.76, -28.66, 0.99972, 2, 6, 74.46, -38.99, 0.0171, 9, 45.37, -39.07, 0.9829, 2, 6, 42.62, -53.43, 0.2142, 9, 14.19, -54.88, 0.7858, 2, 6, 27.97, -57.54, 0.35594, 9, -0.28, -59.62, 0.64406, 1, 6, 11.3, -62.2, 1, 1, 6, 5.9, -59.46, 1, 1, 6, -0.43, -47.94, 1, 1, 6, -2.27, -39.65, 1, 1, 6, -4.82, -35.83, 1, 1, 6, -15.21, -12.2, 1, 1, 6, -18.63, -2.13, 1, 1, 6, -19.34, 1.9, 1, 1, 6, -28.16, 12.28, 1, 1, 6, -32.83, 33.46, 1, 1, 6, -30.76, 52.37, 1, 1, 6, -28.67, 58.64, 1, 1, 6, -25.31, 61.48, 1, 1, 6, -19.49, 61.62, 1, 2, 6, -0.92, 59.66, 0.73421, 9, -34.23, 56.21, 0.26579, 2, 6, 5.26, 60.97, 0.66572, 9, -28.1, 57.79, 0.33428, 2, 6, 22.57, 56.23, 0.43504, 9, -10.61, 53.81, 0.56496, 2, 6, 34.81, 52.87, 0.26202, 9, 1.76, 50.99, 0.73798, 2, 6, 68.65, 38.59, 0.00817, 9, 36.19, 38.18, 0.99183, 1, 9, 62.83, 22.7, 1, 1, 9, 80.28, 8.24, 1, 1, 9, 82.91, -1.73, 1, 2, 6, 14.86, 31.34, 0.49089, 9, -17.23, 28.61, 0.50911, 2, 6, 8.19, 0.39, 0.75954, 9, -22.55, -2.6, 0.24046, 2, 6, 16.86, -32.17, 0.46619, 9, -12.47, -34.76, 0.53381, 2, 6, 29.62, 25.6, 0.19382, 9, -2.24, 23.51, 0.80618, 2, 6, 27.69, 1.44, 0.05257, 9, -3.11, -0.71, 0.94743, 2, 6, 30, -23.78, 0.23246, 9, 0.29, -25.8, 0.76754 ],
"hull": 27,
"edges": [ 0, 52, 0, 2, 2, 4, 4, 6, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 38, 40, 44, 46, 46, 48, 48, 50, 50, 52, 40, 42, 42, 44, 42, 54, 54, 56, 56, 58, 6, 8, 8, 10, 58, 8, 44, 60, 60, 62, 62, 64, 64, 6 ],
"width": 119,
"height": 155
}
},
"iris": {
"iris": { "x": -25.54, "y": -4.41, "width": 72, "height": 83 },
"iris-dead": { "x": -19.52, "y": 3.28, "width": 78, "height": 100 }
},
"mouth": {
"mouth": { "x": 10.67, "y": 33.63, "width": 244, "height": 75 },
"mouth-dead": { "x": 0.16, "y": 3.58, "width": 126, "height": 69 }
}
}
}
],
"animations": {
"attack": {
"bones": {
"body": {
"translate": [
{ "time": 0.1, "curve": 0.25, "c3": 0.75 },
{ "time": 0.2, "y": -18.09, "curve": "stepped" },
{ "time": 0.3333, "y": -18.09, "curve": 0.25, "c3": 0.75 },
{ "time": 0.4667, "y": 3.29, "curve": 0.25, "c3": 0.75 },
{ "time": 0.6 }
],
"scale": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.1, "x": 0.967, "y": 1.049, "curve": 0.25, "c3": 0.75 },
{ "time": 0.2, "x": 1.19, "y": 0.859, "curve": "stepped" },
{ "time": 0.3333, "x": 1.19, "y": 0.859, "curve": 0.25, "c3": 0.75 },
{ "time": 0.4667, "x": 0.984, "y": 1.033, "curve": 0.25, "c3": 0.75 },
{ "time": 0.6 }
],
"shear": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.1333, "y": -3.3, "curve": 0.25, "c3": 0.75 },
{ "time": 0.2333, "y": 7.12, "curve": "stepped" },
{ "time": 0.4, "y": 7.12, "curve": 0.25, "c3": 0.75 },
{ "time": 0.6 }
]
},
"horn2": {
"translate": [
{ "time": 0.1333, "curve": 0.25, "c3": 0.75 },
{ "time": 0.2333, "x": 33.23, "y": 0.55, "curve": 0.25, "c3": 0.75 },
{ "time": 0.4, "x": 17.28, "y": 0.29, "curve": 0.25, "c3": 0.75 },
{ "time": 0.5333 }
],
"scale": [
{ "time": 0.1333, "curve": 0.25, "c3": 0.75 },
{ "time": 0.2333, "x": 2.161, "y": 0.478, "curve": "stepped" },
{ "time": 0.4, "x": 2.161, "y": 0.478, "curve": 0.25, "c3": 0.75 },
{ "time": 0.5333 }
]
},
"horn4": {
"translate": [
{ "time": 0.1333, "curve": 0.25, "c3": 0.75 },
{ "time": 0.2333, "x": 33.21, "y": -1.44, "curve": 0.25, "c3": 0.75 },
{ "time": 0.4, "x": 17.26, "y": -0.75, "curve": 0.25, "c3": 0.75 },
{ "time": 0.5333 }
],
"scale": [
{ "time": 0.1333, "curve": 0.25, "c3": 0.75 },
{ "time": 0.2333, "x": 2.161, "y": 0.478, "curve": "stepped" },
{ "time": 0.4, "x": 2.161, "y": 0.478, "curve": 0.25, "c3": 0.75 },
{ "time": 0.5333 }
]
},
"horn1": {
"translate": [
{ "time": 0.1333, "curve": 0.25, "c3": 0.75 },
{ "time": 0.2333, "x": 33.22, "y": -0.99, "curve": 0.25, "c3": 0.75 },
{ "time": 0.4, "x": 17.27, "y": -0.51, "curve": 0.25, "c3": 0.75 },
{ "time": 0.5333 }
],
"scale": [
{ "time": 0.1333, "curve": 0.25, "c3": 0.75 },
{ "time": 0.2333, "x": 2.161, "y": 0.478, "curve": "stepped" },
{ "time": 0.4, "x": 2.161, "y": 0.478, "curve": 0.25, "c3": 0.75 },
{ "time": 0.5333 }
]
},
"horn3": {
"translate": [
{ "time": 0.1333, "curve": 0.25, "c3": 0.75 },
{ "time": 0.2333, "x": 33.23, "y": 0.77, "curve": 0.25, "c3": 0.75 },
{ "time": 0.4, "x": 17.28, "y": 0.4, "curve": 0.25, "c3": 0.75 },
{ "time": 0.5333 }
],
"scale": [
{ "time": 0.1333, "curve": 0.25, "c3": 0.75 },
{ "time": 0.2333, "x": 2.161, "y": 0.478, "curve": "stepped" },
{ "time": 0.4, "x": 2.161, "y": 0.478, "curve": 0.25, "c3": 0.75 },
{ "time": 0.5333 }
]
}
}
},
"dead": {
"slots": {
"body": {
"color": [
{ "time": 0.6, "color": "ffffffff", "curve": 0, "c2": 0.8, "c3": 0.75 },
{ "time": 0.8, "color": "ffffff00" }
]
},
"eye": {
"color": [
{ "time": 0.6, "color": "ffffffff", "curve": 0, "c2": 0.8, "c3": 0.75 },
{ "time": 0.8, "color": "ffffff00" }
]
},
"horn01": {
"color": [
{ "time": 0.6, "color": "ffffffff", "curve": 0, "c2": 0.8, "c3": 0.75 },
{ "time": 0.8, "color": "ffffff00" }
]
},
"horn02": {
"color": [
{ "time": 0.6, "color": "ffffffff", "curve": 0, "c2": 0.8, "c3": 0.75 },
{ "time": 0.8, "color": "ffffff00" }
]
},
"horn03": {
"color": [
{ "time": 0.6, "color": "ffffffff", "curve": 0, "c2": 0.8, "c3": 0.75 },
{ "time": 0.8, "color": "ffffff00" }
]
},
"horn04": {
"color": [
{ "time": 0.6, "color": "ffffffff", "curve": 0, "c2": 0.8, "c3": 0.75 },
{ "time": 0.8, "color": "ffffff00" }
]
},
"iris": {
"color": [
{ "time": 0.6, "color": "ffffffff", "curve": 0, "c2": 0.8, "c3": 0.75 },
{ "time": 0.8, "color": "ffffff00" }
],
"attachment": [
{ "time": 0.3, "name": "iris-dead" }
]
},
"mouth": {
"color": [
{ "time": 0.6, "color": "ffffffff", "curve": 0, "c2": 0.8, "c3": 0.75 },
{ "time": 0.8, "color": "ffffff00" }
],
"attachment": [
{ "time": 0.3, "name": "mouth-dead" }
]
}
},
"bones": {
"mouth": {
"translate": [
{ "time": 0.2, "curve": 0.25, "c3": 0.75 },
{ "time": 0.3, "y": -22.07, "curve": "stepped" },
{ "time": 0.5, "y": -22.07, "curve": 0.25, "c3": 0.75 },
{ "time": 0.6333, "y": 6.18, "curve": 0.25, "c3": 0.75 },
{ "time": 0.8 }
],
"scale": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.2, "x": 1.149, "y": 0.805, "curve": 0.25, "c3": 0.75 },
{ "time": 0.3, "x": 0.859, "y": 1.227, "curve": 0.25, "c3": 0.75 },
{ "time": 0.4667, "x": 1.165, "y": 0.837, "curve": 0.25, "c3": 0.75 },
{ "time": 0.6 }
]
},
"body": {
"rotate": [
{ "time": 0.3, "curve": 0.25, "c3": 0.75 },
{ "time": 0.7333, "angle": -51.09 }
],
"translate": [
{ "time": 0.2, "curve": 0.25, "c3": 0.75 },
{ "time": 0.6, "x": -94.64, "y": -28.58 }
]
},
"pivot": {
"translate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.2, "y": -13.76, "curve": 0.25, "c3": 0.75 },
{ "time": 0.3, "x": 3.23, "y": -2.21, "curve": 0.25, "c3": 0.75 },
{ "time": 0.5, "x": 1.06, "y": -20.81, "curve": 0.25, "c3": 0.75 },
{ "time": 0.8 }
],
"scale": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.2, "x": 1.224, "y": 0.811, "curve": 0.25, "c3": 0.75 },
{ "time": 0.3, "x": 0.826, "y": 1.144, "curve": 0.25, "c3": 0.75 },
{ "time": 0.5, "x": 1.177, "y": 0.682, "curve": 0.25, "c3": 0.75 },
{ "time": 0.6667, "x": 0.934, "y": 1.057, "curve": 0.25, "c3": 0.75 },
{ "time": 0.8, "x": 1.062, "y": 0.947 }
],
"shear": [
{ "time": 0.2, "curve": 0.25, "c3": 0.75 },
{ "time": 0.3, "y": -17.36, "curve": 0.25, "c3": 0.75 },
{ "time": 0.6, "y": 3.36, "curve": 0.25, "c3": 0.75 },
{ "time": 0.8 }
]
}
}
},
"idle": {
"bones": {
"body": {
"translate": [
{ "y": -1.59, "curve": 0.379, "c2": 0.6, "c3": 0.724 },
{ "time": 0.0667, "curve": 0.25, "c3": 0.75 },
{ "time": 0.3667, "y": -8.6, "curve": 0.242, "c3": 0.667, "c4": 0.67 },
{ "time": 0.6, "y": -1.59 }
],
"scale": [
{ "x": 1.013, "y": 0.988, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
{ "time": 0.1667, "x": 0.963, "y": 1.012, "curve": 0.25, "c3": 0.75 },
{ "time": 0.4667, "x": 1.062, "y": 0.963, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
{ "time": 0.6, "x": 1.013, "y": 0.988 }
]
},
"mouth": {
"scale": [
{ "x": 1.049, "y": 0.951, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
{ "time": 0.1667, "curve": 0.25, "c3": 0.75 },
{ "time": 0.4667, "x": 1.098, "y": 0.902, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
{ "time": 0.6, "x": 1.049, "y": 0.951 }
]
},
"iris": {
"translate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.3, "y": -6.22, "curve": 0.25, "c3": 0.75 },
{ "time": 0.6 }
]
}
}
},
"move": {
"bones": {
"mouth": {
"scale": [
{ "x": 1.049, "y": 0.951, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
{ "time": 0.1667, "curve": 0.25, "c3": 0.75 },
{ "time": 0.4667, "x": 1.098, "y": 0.902, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
{ "time": 0.6, "x": 1.049, "y": 0.951 }
]
},
"iris": {
"translate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.3, "y": -6.22, "curve": 0.25, "c3": 0.75 },
{ "time": 0.6 }
]
},
"body": {
"translate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.0667, "y": -20.75, "curve": 0.25, "c3": 0.75 },
{ "time": 0.2, "y": 47.49, "curve": 0.25, "c3": 0.75 },
{ "time": 0.3, "curve": 0.25, "c3": 0.75 },
{ "time": 0.3667, "y": -20.75, "curve": 0.25, "c3": 0.75 },
{ "time": 0.5, "y": 47.49, "curve": 0.25, "c3": 0.75 },
{ "time": 0.6 }
],
"scale": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.0667, "x": 1.184, "y": 0.79, "curve": 0.25, "c3": 0.75 },
{ "time": 0.2, "x": 0.923, "y": 1.086, "curve": 0.25, "c3": 0.75 },
{ "time": 0.3, "curve": 0.25, "c3": 0.75 },
{ "time": 0.3667, "x": 1.184, "y": 0.79, "curve": 0.25, "c3": 0.75 },
{ "time": 0.5, "x": 0.923, "y": 1.086, "curve": 0.25, "c3": 0.75 },
{ "time": 0.6 }
],
"shear": [
{ "y": 3.6, "curve": 0.333, "c2": 0.33, "c3": 0.758 },
{ "time": 0.1, "curve": 0.25, "c3": 0.75 },
{ "time": 0.2667, "y": 4.42, "curve": 0.25, "c3": 0.75 },
{ "time": 0.4, "curve": 0.25, "c3": 0.75 },
{ "time": 0.5667, "y": 4.42, "curve": 0.276, "c3": 0.621, "c4": 0.4 },
{ "time": 0.6, "y": 3.6 }
]
}
}
}
}
}

View File

@ -1,11 +0,0 @@
{
"ver": "1.2.6",
"importer": "spine-data",
"imported": true,
"uuid": "b5d72979-3f10-434d-b8f6-0cb5155aa8ca",
"files": [
".json"
],
"subMetas": {},
"userData": {}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 39 KiB

View File

@ -1,42 +0,0 @@
{
"ver": "1.0.26",
"importer": "image",
"imported": true,
"uuid": "9b4f9bfd-f3a0-457c-ae49-3cadad69a3dc",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "9b4f9bfd-f3a0-457c-ae49-3cadad69a3dc@6c48a",
"displayName": "light_creep",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "repeat",
"wrapModeT": "repeat",
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0,
"isUuid": true,
"imageUuidOrDatabaseUri": "9b4f9bfd-f3a0-457c-ae49-3cadad69a3dc",
"visible": false
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"hasAlpha": true,
"type": "texture",
"fixAlphaTransparencyArtifacts": false,
"redirect": "9b4f9bfd-f3a0-457c-ae49-3cadad69a3dc@6c48a"
}
}

View File

@ -1,9 +0,0 @@
{
"ver": "1.2.0",
"importer": "directory",
"imported": true,
"uuid": "1ec59fc8-1818-41fd-b708-3ef9a4c94e10",
"files": [],
"subMetas": {},
"userData": {}
}

View File

@ -1,97 +0,0 @@
medium-creep.png
size: 512,256
format: RGBA8888
filter: Linear,Linear
repeat: none
body
rotate: true
xy: 4, 4
size: 231, 254
orig: 233, 255
offset: 1, 0
index: -1
club
rotate: false
xy: 262, 105
size: 166, 130
orig: 168, 130
offset: 1, 0
index: -1
front-arm
rotate: true
xy: 432, 109
size: 36, 70
orig: 36, 70
offset: 0, 0
index: -1
front-eye
rotate: true
xy: 379, 47
size: 54, 42
orig: 54, 42
offset: 0, 0
index: -1
front-iris
rotate: false
xy: 490, 186
size: 17, 22
orig: 17, 22
offset: 0, 0
index: -1
front-leg
rotate: true
xy: 432, 61
size: 44, 57
orig: 44, 57
offset: 0, 0
index: -1
front-sclera
rotate: false
xy: 262, 64
size: 47, 37
orig: 47, 37
offset: 0, 0
index: -1
mouth
rotate: false
xy: 262, 37
size: 113, 20
orig: 115, 20
offset: 1, 0
index: -1
rear-arm
rotate: false
xy: 432, 149
size: 54, 86
orig: 54, 86
offset: 0, 0
index: -1
rear-eye
rotate: false
xy: 313, 66
size: 48, 35
orig: 49, 35
offset: 1, 0
index: -1
rear-iris
rotate: false
xy: 490, 212
size: 18, 23
orig: 20, 23
offset: 1, 0
index: -1
rear-leg
rotate: false
xy: 425, 10
size: 43, 47
orig: 44, 48
offset: 0, 0
index: -1
rear-sclera
rotate: false
xy: 379, 11
size: 41, 32
orig: 43, 32
offset: 1, 0
index: -1

View File

@ -1,11 +0,0 @@
{
"ver": "1.0.2",
"importer": "text",
"imported": true,
"uuid": "29ea2e40-9342-477b-ab5b-3c3e1cf62857",
"files": [
".json"
],
"subMetas": {},
"userData": {}
}

View File

@ -1,578 +0,0 @@
{
"skeleton": {
"hash": "YSjsTCA+z+z+SxqMlaCt92Ccyzk",
"spine": "3.8.99",
"x": -249,
"y": -211.28,
"width": 498,
"height": 1080,
"images": "",
"audio": "D:/Huy 2D Animation/works/2024/Product/super hero game/creep/medium-creep"
},
"bones": [
{ "name": "root" },
{ "name": "character-pivot", "parent": "root", "scaleX": 0.14, "scaleY": 0.14 },
{ "name": "pivot", "parent": "character-pivot", "y": 10 },
{ "name": "body", "parent": "pivot", "length": 318.6, "rotation": 90, "x": 0.62, "y": 19.99 },
{ "name": "rear-leg", "parent": "pivot", "length": 31.48, "rotation": -92.34, "x": -93.14, "y": 24.72 },
{ "name": "rear-leg2", "parent": "rear-leg", "length": 27.45, "rotation": 13.12, "x": 31.48 },
{ "name": "rear-leg-constraint", "parent": "character-pivot", "rotation": 3.44, "x": -94.64, "y": -21.69, "color": "ff3f00ff" },
{ "name": "rear-leg3", "parent": "rear-leg-constraint", "length": 35.78, "rotation": -177.18 },
{ "name": "front-leg", "parent": "pivot", "length": 47.58, "rotation": -93.09, "x": 93.88, "y": 36.92 },
{ "name": "front-leg2", "parent": "front-leg", "length": 27.58, "rotation": 15.19, "x": 47.58 },
{ "name": "front-leg-constraint", "parent": "character-pivot", "x": 95.42, "y": -25.49, "color": "ff3f00ff" },
{ "name": "front-leg3", "parent": "front-leg-constraint", "length": 44.45, "rotation": -172.51 },
{ "name": "rear-arm", "parent": "body", "length": 109.38, "rotation": 153.43, "x": 175.94, "y": 183.37 },
{ "name": "club", "parent": "rear-arm", "length": 200.68, "rotation": -57.72, "x": 105.03, "y": -2.3 },
{ "name": "front-arm", "parent": "body", "length": 80.46, "rotation": 168.69, "x": 201.44, "y": -173.75 },
{ "name": "rear-iris", "parent": "body", "x": 253.59, "y": 92.46 },
{ "name": "front-iris", "parent": "body", "x": 251.12, "y": -12.97 },
{ "name": "body2", "parent": "body", "x": 190.61, "y": 170.91 }
],
"slots": [
{ "name": "rear-leg", "bone": "rear-leg", "attachment": "rear-leg" },
{ "name": "front-leg", "bone": "front-leg", "attachment": "front-leg" },
{ "name": "rear-arm", "bone": "rear-arm", "attachment": "rear-arm" },
{ "name": "club", "bone": "club", "attachment": "club" },
{ "name": "body", "bone": "body", "attachment": "body" },
{ "name": "eyes-mask", "bone": "body", "attachment": "eyes-mask" },
{ "name": "rear-sclera", "bone": "body", "attachment": "rear-sclera" },
{ "name": "rear-iris", "bone": "rear-iris", "attachment": "rear-iris" },
{ "name": "front-sclera", "bone": "body", "attachment": "front-sclera" },
{ "name": "front-iris", "bone": "front-iris", "attachment": "front-iris" },
{ "name": "rear-eye", "bone": "body", "attachment": "rear-eye" },
{ "name": "front-eye", "bone": "body", "attachment": "front-eye" },
{ "name": "mouth", "bone": "body", "attachment": "mouth" },
{ "name": "front-arm", "bone": "front-arm", "attachment": "front-arm" }
],
"ik": [
{
"name": "front-leg-constraint",
"order": 1,
"bones": [ "front-leg", "front-leg2" ],
"target": "front-leg-constraint"
},
{
"name": "rear-leg-constraint",
"bones": [ "rear-leg", "rear-leg2" ],
"target": "rear-leg-constraint"
}
],
"skins": [
{
"name": "default",
"attachments": {
"body": {
"body": { "x": 216.01, "y": -11.38, "rotation": -90, "width": 466, "height": 510 }
},
"club": {
"club": { "x": 130.54, "y": 5.01, "rotation": 146.87, "width": 335, "height": 259 }
},
"eyes-mask": {
"eyes-mask": {
"type": "clipping",
"end": "front-iris",
"vertexCount": 43,
"vertices": [ 261.3, 63.48, 261.2, 76.58, 265.25, 150.38, 256.72, 152.98, 242.55, 153.13, 230.17, 150.32, 222.36, 146.3, 213, 137.98, 208.21, 129.55, 205.93, 120.4, 206.86, 108.44, 209.67, 95.54, 214.25, 86.08, 219.13, 80.88, 225.69, 75.99, 233.49, 72.77, 242.04, 71.79, 251.82, 72.31, 258.55, 74.92, 259.62, 63.53, 258.59, 55.5, 253, 56.09, 242.8, 55.27, 234.57, 53.72, 225.14, 50.51, 216.68, 46.09, 205.54, 37.91, 198.33, 28.33, 194.39, 18.27, 193.94, 5.07, 196.36, -5.1, 199.33, -12.97, 203.84, -19.44, 212.05, -25.21, 222.14, -30.58, 234.22, -34.45, 246.13, -36.29, 259.09, -35.25, 261.89, -30.53, 264.2, 10.83, 262.68, 47.04, 261.57, 54.06, 260.29, 55.24 ],
"color": "ce3a3aff"
}
},
"front-arm": {
"front-arm": { "x": 60.32, "y": 1.48, "rotation": 101.31, "width": 72, "height": 140 }
},
"front-eye": {
"front-eye": { "x": 231.51, "y": 9.12, "rotation": -90, "width": 107, "height": 83 }
},
"front-iris": {
"front-iris": { "x": 0.38, "y": 1.09, "rotation": -90, "width": 33, "height": 43 }
},
"front-leg": {
"front-leg": {
"type": "mesh",
"uvs": [ 0.84981, 0.01581, 0.9774, 0.15135, 0.97748, 0.32921, 0.97756, 0.49819, 0.97759, 0.56936, 0.96604, 0.62329, 0.91348, 0.86861, 0.86212, 0.90654, 0.80929, 0.94557, 0.61554, 0.96348, 0.22041, 1, 0.01757, 1, 0.02384, 0.78752, 0.18277, 0.71293, 0.28584, 0.66456, 0.40224, 0.60994, 0.36412, 0.52825, 0.32763, 0.45009, 0.31029, 0.3389, 0.28688, 0.18882, 0.36524, 0.09848, 0.54229, 0.01764, 0.41827, 0.3469, 0.63972, 0.35279, 0.81536, 0.33707, 0.46663, 0.52767, 0.62954, 0.52767, 0.80772, 0.51784, 0.50105, 0.6236, 0.65418, 0.63434, 0.84707, 0.63127, 0.4917, 0.69692, 0.69255, 0.76907, 0.78204, 0.83047, 0.30477, 0.74605, 0.43403, 0.80131, 0.54937, 0.86425 ],
"triangles": [ 14, 15, 31, 34, 14, 31, 13, 14, 34, 35, 34, 31, 36, 35, 31, 32, 36, 31, 7, 33, 6, 8, 33, 7, 33, 9, 36, 33, 36, 32, 9, 33, 8, 34, 12, 13, 10, 34, 35, 10, 12, 34, 11, 12, 10, 10, 35, 36, 10, 36, 9, 27, 3, 4, 4, 30, 27, 28, 25, 26, 15, 25, 28, 5, 30, 4, 29, 26, 27, 29, 27, 30, 28, 26, 29, 31, 15, 28, 32, 29, 30, 31, 28, 29, 32, 31, 29, 33, 32, 30, 6, 30, 5, 33, 30, 6, 0, 23, 21, 24, 0, 1, 24, 1, 2, 22, 18, 19, 23, 22, 20, 21, 23, 20, 22, 19, 20, 0, 24, 23, 17, 18, 22, 24, 2, 3, 27, 23, 24, 27, 24, 3, 23, 25, 22, 26, 23, 27, 25, 17, 22, 23, 26, 25, 16, 17, 25, 15, 16, 25 ],
"vertices": [ 1, 8, -12.17, 16.27, 1, 2, 8, 2.65, 28.32, 0.99492, 9, -35.94, 39.1, 0.00508, 2, 8, 22.9, 29.42, 0.88151, 9, -16.11, 34.86, 0.11849, 2, 8, 42.13, 30.47, 0.46674, 9, 2.73, 30.83, 0.53326, 2, 8, 50.23, 30.91, 0.26655, 9, 10.66, 29.13, 0.73345, 2, 8, 56.43, 30.22, 0.14857, 9, 16.46, 26.85, 0.85143, 2, 9, 42.83, 16.47, 0.53334, 11, -16.8, 14.89, 0.46666, 2, 9, 46.12, 11.14, 0.36928, 11, -11.55, 18.29, 0.63072, 2, 9, 49.49, 5.66, 0.21696, 11, -6.15, 21.79, 0.78304, 2, 9, 47.92, -11.44, 0.00324, 11, 10.98, 20.59, 0.99676, 1, 11, 45.92, 18.15, 1, 1, 11, 63.45, 14.8, 1, 1, 11, 58.36, -8.89, 1, 2, 9, 12.01, -42.69, 0.02005, 11, 43.03, -14.62, 0.97995, 3, 8, 64.36, -29.29, 0.00843, 9, 8.52, -32.67, 0.12322, 11, 33.08, -18.33, 0.86835, 3, 8, 57.58, -19.4, 0.166, 9, 4.57, -21.35, 0.41854, 11, 21.85, -22.52, 0.41546, 3, 8, 48.47, -23.25, 0.59892, 9, -5.23, -22.67, 0.29932, 11, 23.4, -32.3, 0.10176, 3, 8, 39.74, -26.94, 0.85272, 9, -14.62, -23.95, 0.1226, 11, 24.88, -41.65, 0.02468, 3, 8, 27.17, -29.15, 0.9821, 9, -27.33, -22.78, 0.01715, 11, 24, -54.39, 7.5E-4, 1, 8, 10.2, -32.13, 1, 1, 8, -0.46, -25.8, 1, 1, 8, -10.5, -10.74, 1, 3, 8, 27.57, -19.61, 0.98286, 9, -24.45, -13.68, 0.01613, 11, 14.83, -51.71, 0.00101, 2, 8, 27.18, -0.12, 0.99997, 9, -19.71, 5.23, 3.0E-5, 2, 8, 24.56, 15.22, 0.92511, 9, -18.22, 20.72, 0.07489, 3, 8, 47.91, -14.25, 0.53686, 9, -3.41, -13.84, 0.36757, 11, 14.52, -30.67, 0.09556, 2, 8, 47.14, 0.07, 0.64092, 9, -0.4, 0.18, 0.35908, 2, 8, 45.18, 15.66, 0.42753, 9, 1.79, 15.74, 0.57247, 3, 8, 58.67, -10.63, 0.08368, 9, 7.92, -13.17, 0.61708, 11, 13.6, -19.36, 0.29924, 2, 9, 11.94, -0.25, 0.9976, 11, 0.6, -15.63, 0.0024, 2, 8, 57.9, 19.82, 0.09532, 9, 15.15, 16.42, 0.90468, 3, 8, 67.06, -11.01, 0.00979, 9, 15.92, -15.73, 0.35578, 11, 15.98, -11.3, 0.63443, 2, 9, 27.67, -0.17, 0.44681, 11, 0.16, 0.09, 0.55319, 2, 9, 36.16, 6.07, 0.41938, 11, -6.26, 8.45, 0.58062, 3, 8, 73.54, -27.13, 5.6E-4, 9, 17.95, -32.98, 0.04705, 11, 33.19, -8.89, 0.95238, 2, 9, 26.49, -23.18, 0.00299, 11, 23.2, -0.57, 0.99701, 1, 11, 14.58, 8.38, 1 ],
"hull": 22,
"edges": [ 0, 42, 0, 2, 20, 22, 22, 24, 38, 40, 40, 42, 34, 36, 36, 38, 36, 44, 44, 46, 46, 48, 2, 4, 48, 4, 30, 32, 32, 34, 32, 50, 50, 52, 52, 54, 4, 6, 6, 8, 54, 6, 30, 56, 56, 58, 58, 60, 8, 10, 10, 12, 60, 10, 28, 30, 28, 62, 62, 64, 64, 66, 12, 14, 14, 16, 66, 14, 24, 26, 26, 28, 26, 68, 68, 70, 70, 72, 16, 18, 18, 20, 72, 18 ],
"width": 88,
"height": 114
}
},
"front-sclera": {
"front-sclera": { "x": 228.51, "y": 9.12, "rotation": -90, "width": 93, "height": 73 }
},
"mouth": {
"mouth": { "x": 172.51, "y": 58.62, "rotation": -90, "width": 230, "height": 39 }
},
"rear-arm": {
"rear-arm": {
"type": "mesh",
"uvs": [ 0.8577, 0.18705, 1, 0.34556, 1, 0.37736, 0.98608, 0.41513, 0.96012, 0.48556, 0.91851, 0.59844, 0.67838, 0.84274, 0.35896, 0.98855, 0.10334, 0.98835, 0.00284, 0.89341, 0.03753, 0.63485, 0.24649, 0.26194, 0.28826, 0.21033, 0.35575, 0.12693, 0.4116, 0.05793, 0.45848, 0, 0.47557, 0, 0.60573, 0.03773, 0.52335, 0.17635, 0.68134, 0.24899, 0.8619, 0.38214, 0.4641, 0.25713, 0.61307, 0.32371, 0.80932, 0.46574, 0.56814, 0.10474, 0.76439, 0.20091, 0.93227, 0.33407 ],
"triangles": [ 10, 6, 7, 7, 8, 9, 10, 7, 9, 6, 10, 23, 10, 11, 22, 11, 21, 22, 11, 12, 21, 6, 23, 5, 23, 10, 22, 5, 23, 4, 3, 4, 20, 4, 23, 20, 23, 22, 20, 2, 3, 26, 22, 19, 20, 20, 19, 26, 3, 20, 26, 26, 1, 2, 22, 21, 19, 12, 13, 21, 21, 18, 19, 21, 13, 18, 26, 19, 25, 25, 0, 26, 1, 26, 0, 19, 18, 25, 17, 0, 25, 25, 18, 24, 25, 24, 17, 18, 13, 24, 24, 13, 14, 24, 14, 16, 14, 15, 16, 24, 16, 17 ],
"vertices": [ 2, 17, 1.41, -11.06, 0.96123, 12, -24.91, 13.85, 0.03877, 2, 17, -25.69, -26.29, 0.34911, 12, -7.47, 39.59, 0.65089, 2, 17, -31.13, -26.29, 0.29852, 12, -2.61, 42.02, 0.70148, 2, 17, -37.59, -24.8, 0.22828, 12, 3.84, 43.58, 0.77172, 2, 17, -49.63, -22.02, 0.11449, 12, 15.85, 46.48, 0.88551, 2, 17, -68.93, -17.57, 0.02749, 12, 35.1, 51.13, 0.97251, 1, 12, 83.96, 46.83, 1, 1, 12, 121.55, 27.41, 1, 1, 12, 133.75, 2.93, 1, 1, 12, 124.04, -13.95, 1, 1, 12, 82.83, -30.4, 1, 2, 17, -11.39, 54.34, 0.05101, 12, 15.8, -38.92, 0.94899, 2, 17, -2.57, 49.87, 0.13712, 12, 5.9, -38.87, 0.86288, 2, 17, 11.69, 42.65, 0.3975, 12, -10.08, -38.79, 0.6025, 2, 17, 23.49, 36.67, 0.6181, 12, -23.31, -38.72, 0.3819, 2, 17, 33.4, 31.66, 0.70002, 12, -34.41, -38.66, 0.29998, 2, 17, 33.4, 29.83, 0.70158, 12, -35.23, -37.03, 0.29842, 2, 17, 26.95, 15.9, 0.772, 12, -35.69, -21.69, 0.228, 2, 17, 3.24, 24.72, 0.41484, 12, -10.54, -18.97, 0.58516, 2, 17, -9.18, 7.81, 0.32224, 12, -6.99, 1.71, 0.67776, 2, 17, -31.95, -11.51, 0.23328, 12, 4.73, 29.17, 0.76672, 2, 17, -10.57, 31.06, 0.09103, 12, 4.65, -18.46, 0.90897, 2, 17, -21.95, 15.12, 0.00105, 12, 7.7, 0.89, 0.99895, 2, 17, -46.24, -5.88, 0.08077, 12, 20.03, 30.53, 0.91923, 2, 17, 15.49, 19.92, 0.70282, 12, -23.64, -20.16, 0.29718, 2, 17, -0.96, -1.08, 0.9844, 12, -18.32, 5.98, 0.0156, 2, 17, -23.73, -19.04, 0.38516, 12, -5.99, 32.23, 0.61484 ],
"hull": 18,
"edges": [ 0, 34, 0, 2, 2, 4, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 30, 32, 32, 34, 26, 36, 36, 38, 38, 40, 8, 10, 40, 8, 22, 24, 24, 26, 24, 42, 42, 44, 44, 46, 46, 10, 26, 28, 28, 30, 28, 48, 48, 50, 50, 52, 4, 6, 6, 8, 52, 6 ],
"width": 107,
"height": 171
}
},
"rear-eye": {
"rear-eye": { "x": 236.51, "y": 114.62, "rotation": -90, "width": 98, "height": 69 }
},
"rear-iris": {
"rear-iris": { "x": 3.92, "y": 3.17, "rotation": -90, "width": 40, "height": 45 }
},
"rear-leg": {
"rear-leg": {
"type": "mesh",
"uvs": [ 0.95069, 0.11336, 0.96068, 0.30319, 0.96669, 0.41724, 0.95651, 0.51711, 0.91604, 0.91409, 0.85682, 0.93454, 0.77887, 0.96146, 0.39163, 1, 0.23322, 1, 0.02229, 0.96286, 0.02135, 0.81456, 0.21636, 0.68579, 0.38965, 0.62652, 0.36826, 0.53675, 0.34726, 0.44865, 0.31749, 0.32374, 0.2819, 0.17441, 0.52304, 0.02075, 0.80153, 0.02097, 0.49583, 0.63509, 0.60564, 0.69641, 0.68866, 0.76263, 0.77972, 0.84602, 0.36549, 0.70126, 0.48503, 0.73494, 0.59905, 0.7821, 0.69284, 0.85957, 0.43537, 0.46378, 0.62664, 0.47894, 0.81054, 0.46378, 0.46296, 0.54799, 0.64687, 0.56989, 0.80503, 0.55136, 0.43169, 0.33981, 0.63399, 0.34991, 0.80871, 0.32802 ],
"triangles": [ 23, 11, 12, 24, 12, 19, 24, 19, 20, 23, 12, 24, 25, 24, 20, 25, 20, 21, 26, 21, 22, 25, 21, 26, 5, 22, 4, 6, 26, 22, 6, 22, 5, 8, 9, 10, 8, 11, 23, 8, 10, 11, 7, 23, 24, 7, 24, 25, 7, 25, 26, 8, 23, 7, 7, 26, 6, 3, 29, 2, 32, 28, 29, 32, 29, 3, 31, 28, 32, 30, 28, 31, 12, 13, 30, 19, 30, 31, 12, 30, 19, 20, 19, 31, 21, 31, 32, 20, 31, 21, 22, 21, 32, 3, 22, 32, 4, 22, 3, 33, 15, 16, 35, 18, 0, 35, 0, 1, 17, 33, 16, 34, 17, 18, 34, 18, 35, 33, 17, 34, 35, 1, 2, 14, 15, 33, 29, 35, 2, 34, 35, 29, 27, 33, 34, 14, 33, 27, 28, 27, 34, 28, 34, 29, 13, 14, 27, 30, 27, 28, 13, 27, 30 ],
"vertices": [ 2, 4, -4.6, 26.68, 0.9909, 5, -29.09, 34.18, 0.0091, 2, 4, 13.38, 28.28, 0.84991, 5, -11.21, 31.66, 0.15009, 2, 4, 24.19, 29.25, 0.61318, 5, -0.47, 30.14, 0.38682, 2, 4, 33.7, 28.75, 0.34896, 5, 8.69, 27.5, 0.65104, 2, 5, 45.08, 16.98, 0.55502, 7, -17.43, 17.18, 0.44498, 2, 5, 46.02, 11.56, 0.46837, 7, -12.04, 18.27, 0.53163, 2, 5, 47.26, 4.42, 0.27658, 7, -4.93, 19.69, 0.72342, 1, 7, 28.91, 17.87, 1, 1, 7, 42.51, 15.64, 1, 1, 7, 60.05, 9.2, 1, 1, 7, 57.86, -4.72, 1, 3, 4, 52.34, -34.93, 1.6E-4, 5, 12.38, -38.76, 0.01675, 7, 39.14, -14.05, 0.98309, 3, 4, 46.1, -20.1, 0.08427, 5, 9.67, -22.89, 0.31591, 7, 23.35, -17.18, 0.59982, 3, 4, 37.66, -22.31, 0.37752, 5, 0.95, -23.13, 0.40632, 7, 23.81, -25.89, 0.21616, 3, 4, 29.37, -24.48, 0.69162, 5, -7.62, -23.36, 0.2359, 7, 24.26, -34.45, 0.07249, 3, 4, 17.62, -27.55, 0.94385, 5, -19.76, -23.68, 0.04812, 7, 24.9, -46.58, 0.00804, 2, 4, 3.57, -31.22, 0.99936, 5, -34.27, -24.07, 6.4E-4, 1, 4, -11.87, -10.85, 1, 1, 4, -12.84, 13.36, 1, 3, 4, 46.54, -10.84, 0.04529, 5, 12.2, -13.97, 0.50726, 7, 14.36, -14.88, 0.44744, 2, 5, 19.71, -5.68, 0.59495, 7, 5.88, -7.59, 0.40505, 2, 5, 27.24, 0.24, 0.6128, 7, -0.24, -0.21, 0.3872, 2, 5, 36.5, 6.54, 0.46239, 7, -6.77, 8.88, 0.53761, 3, 4, 53.28, -21.91, 0.01107, 5, 16.25, -26.29, 0.10944, 7, 26.57, -10.51, 0.87949, 3, 4, 56.05, -11.39, 0.00276, 5, 21.34, -16.67, 0.12482, 7, 16.82, -5.67, 0.87242, 1, 7, 7.76, 0.35, 1, 2, 5, 36.36, -1.13, 0.13734, 7, 0.89, 8.93, 0.86266, 3, 4, 30.49, -16.76, 0.61118, 5, -4.77, -16.09, 0.30319, 7, 16.93, -31.79, 0.08563, 3, 4, 31.25, -0.07, 0.58744, 5, -0.24, -0.02, 0.41252, 7, 0.74, -27.68, 4.0E-5, 2, 4, 29.16, 15.86, 0.50513, 5, 1.34, 15.97, 0.49487, 3, 4, 38.39, -14.03, 0.26114, 5, 3.54, -15.23, 0.521, 7, 15.85, -23.51, 0.21786, 2, 4, 39.81, 2.04, 2.6E-4, 5, 8.57, 0.09, 0.99974, 2, 4, 37.49, 15.72, 0.19859, 5, 9.42, 13.94, 0.80141, 3, 4, 18.74, -17.56, 0.93335, 5, -16.4, -14.2, 0.05607, 7, 15.34, -43.47, 0.01058, 1, 4, 18.98, 0.07, 1, 2, 4, 16.28, 15.17, 0.87983, 5, -11.36, 18.23, 0.12017 ],
"hull": 19,
"edges": [ 0, 36, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 32, 34, 34, 36, 24, 38, 38, 40, 40, 42, 42, 44, 8, 10, 10, 12, 44, 10, 22, 46, 46, 48, 48, 50, 50, 52, 52, 12, 28, 54, 54, 56, 56, 58, 58, 4, 24, 26, 26, 28, 26, 60, 60, 62, 62, 64, 4, 6, 6, 8, 64, 6, 28, 30, 30, 32, 30, 66, 66, 68, 68, 70, 0, 2, 2, 4, 70, 2 ],
"width": 87,
"height": 95
}
},
"rear-sclera": {
"rear-sclera": { "x": 236.51, "y": 113.62, "rotation": -90, "width": 86, "height": 63 }
}
}
}
],
"animations": {
"attack": {
"bones": {
"rear-iris": {
"translate": [
{ "x": -9.25, "y": 47.94 }
]
},
"front-iris": {
"translate": [
{ "x": -6.73, "y": 56.35 }
]
},
"body": {
"rotate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.2, "angle": -6.21, "curve": 0.25, "c3": 0.75 },
{ "time": 0.3, "angle": 18.23, "curve": 0.25, "c3": 0.75 },
{ "time": 0.6 }
]
},
"rear-arm": {
"rotate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.1667, "angle": -83.46, "curve": 0.25, "c3": 0.75 },
{ "time": 0.3, "angle": -7.12, "curve": 0.25, "c3": 0.75 },
{ "time": 0.6 }
]
},
"club": {
"rotate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.2, "angle": -46.49, "curve": 0.25, "c3": 0.75 },
{ "time": 0.4, "angle": -3.62, "curve": 0.25, "c3": 0.75 },
{ "time": 0.6 }
],
"scale": [
{ "time": 0.2, "curve": 0.25, "c3": 0.75 },
{ "time": 0.3, "x": 1.2, "y": 1.2, "curve": "stepped" },
{ "time": 0.4, "x": 1.2, "y": 1.2, "curve": 0.25, "c3": 0.75 },
{ "time": 0.5 }
]
},
"pivot": {
"translate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.1333, "x": 3.94, "y": 3.15, "curve": 0.25, "c3": 0.75 },
{ "time": 0.2667, "x": -24.43, "y": -12.61, "curve": "stepped" },
{ "time": 0.4667, "x": -24.43, "y": -12.61, "curve": 0.25, "c3": 0.75 },
{ "time": 0.6 }
]
},
"front-arm": {
"rotate": [
{ "angle": -18.8, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
{ "time": 0.1, "angle": -37.61, "curve": 0.25, "c3": 0.75 },
{ "time": 0.3, "angle": 59.77, "curve": 0.25, "c3": 0.75 },
{ "time": 0.5, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
{ "time": 0.6, "angle": -18.8 }
]
}
}
},
"die": {
"slots": {
"body": {
"color": [
{ "time": 0.3, "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
{ "time": 0.5, "color": "ffffff00" }
]
},
"club": {
"color": [
{ "time": 0.3, "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
{ "time": 0.5, "color": "ffffff00" }
]
},
"eyes-mask": {
"color": [
{ "time": 0.3, "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
{ "time": 0.5, "color": "ffffff00" }
]
},
"front-arm": {
"color": [
{ "time": 0.3, "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
{ "time": 0.5, "color": "ffffff00" }
]
},
"front-eye": {
"color": [
{ "time": 0.3, "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
{ "time": 0.5, "color": "ffffff00" }
]
},
"front-iris": {
"color": [
{ "time": 0.3, "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
{ "time": 0.5, "color": "ffffff00" }
]
},
"front-leg": {
"color": [
{ "time": 0.3, "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
{ "time": 0.5, "color": "ffffff00" }
]
},
"front-sclera": {
"color": [
{ "time": 0.3, "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
{ "time": 0.5, "color": "ffffff00" }
]
},
"mouth": {
"color": [
{ "time": 0.3, "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
{ "time": 0.5, "color": "ffffff00" }
]
},
"rear-arm": {
"color": [
{ "time": 0.3, "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
{ "time": 0.5, "color": "ffffff00" }
]
},
"rear-eye": {
"color": [
{ "time": 0.3, "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
{ "time": 0.5, "color": "ffffff00" }
]
},
"rear-iris": {
"color": [
{ "time": 0.3, "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
{ "time": 0.5, "color": "ffffff00" }
]
},
"rear-leg": {
"color": [
{ "time": 0.3, "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
{ "time": 0.5, "color": "ffffff00" }
]
},
"rear-sclera": {
"color": [
{ "time": 0.3, "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
{ "time": 0.5, "color": "ffffff00" }
]
}
},
"bones": {
"rear-iris": {
"translate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.1333, "x": -17.18, "curve": 0.25, "c3": 0.75 },
{ "time": 0.2333, "x": 40.79 }
]
},
"front-iris": {
"translate": [
{ "time": 0.0667, "curve": 0.25, "c3": 0.75 },
{ "time": 0.2, "x": -17.18, "curve": 0.25, "c3": 0.75 },
{ "time": 0.3, "x": 40.79 }
]
},
"pivot": {
"translate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.1, "x": -24.55, "y": -58.31, "curve": 0.25, "c3": 0.75 },
{ "time": 0.2, "x": -24.55, "y": -53.2, "curve": 0.25, "c3": 0.75 },
{ "time": 0.3, "x": -24.55, "y": -55.24 }
]
},
"body": {
"rotate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.2333, "angle": -6.05 }
],
"translate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.1333, "y": -11.25, "curve": 0.25, "c3": 0.75 },
{ "time": 0.2, "y": -4.09, "curve": 0.25, "c3": 0.75 },
{ "time": 0.3, "y": -7.16 }
]
},
"rear-arm": {
"rotate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.1333, "angle": 7.56 }
]
},
"club": {
"rotate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.1333, "angle": 7.56 }
]
}
}
},
"move": {
"bones": {
"pivot": {
"translate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.3, "y": -12.32, "curve": 0.25, "c3": 0.75 },
{ "time": 0.6, "curve": 0.25, "c3": 0.75 },
{ "time": 0.9, "y": -12.32, "curve": 0.25, "c3": 0.75 },
{ "time": 1.2 }
]
},
"body": {
"rotate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.2, "angle": -2.27, "curve": 0.25, "c3": 0.75 },
{ "time": 0.4, "angle": 1.15, "curve": 0.25, "c3": 0.75 },
{ "time": 0.6, "curve": 0.25, "c3": 0.75 },
{ "time": 0.8, "angle": -2.27, "curve": 0.25, "c3": 0.75 },
{ "time": 1, "angle": 1.15, "curve": 0.25, "c3": 0.75 },
{ "time": 1.2 }
],
"translate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.3, "x": -4.4, "curve": 0.25, "c3": 0.75 },
{ "time": 0.6, "curve": 0.25, "c3": 0.75 },
{ "time": 0.9, "x": -4.4, "curve": 0.25, "c3": 0.75 },
{ "time": 1.2 }
]
},
"rear-leg-constraint": {
"rotate": [
{ "angle": -24.6, "curve": 0, "c2": 0.54, "c3": 0 },
{ "time": 0.2, "angle": -6.38, "curve": 0.325, "c2": 0.31, "c3": 0.675, "c4": 0.69 },
{ "time": 0.4, "angle": 14.11, "curve": 0.382, "c2": 0.57, "c3": 0.735 },
{ "time": 0.6, "angle": 11.85, "curve": 0.25, "c3": 0.75 },
{ "time": 1.2, "angle": -24.6 }
],
"translate": [
{ "x": -21.12, "y": 7.04, "curve": 0.265, "c3": 0.618, "c4": 0.43 },
{
"time": 0.2,
"x": 52.17,
"y": -7.4,
"curve": 0.325,
"c2": 0.31,
"c3": 0.675,
"c4": 0.69
},
{ "time": 0.4, "x": 198.04, "y": -0.66, "curve": 0.382, "c2": 0.57, "c3": 0.735 },
{ "time": 0.6, "x": 240.24, "y": -3.52, "curve": 0.25, "c3": 0.75 },
{ "time": 1.2, "x": -21.12, "y": 7.04 }
]
},
"rear-leg": {
"translate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.2, "x": 61.82, "y": -5.64, "curve": 0.25, "c3": 0.75 },
{ "time": 0.4, "x": 173.3, "y": 1.96, "curve": 0.25, "c3": 0.75 },
{ "time": 0.6, "x": 214.72, "y": -10.56, "curve": 0.25, "c3": 0.75 },
{ "time": 1.2 }
]
},
"front-leg-constraint": {
"rotate": [
{ "angle": 22.81, "curve": 0.25, "c3": 0.75 },
{ "time": 0.6, "angle": -26.82, "curve": 0, "c2": 0.5, "c3": 0, "c4": 0.85 },
{ "time": 0.8, "angle": -19.43, "curve": 0.325, "c2": 0.31, "c3": 0.675, "c4": 0.69 },
{ "time": 1, "angle": 7.92, "curve": 0.382, "c2": 0.57, "c3": 0.735 },
{ "time": 1.2, "angle": 22.81 }
],
"translate": [
{ "x": 30.8, "y": 15.84, "curve": 0.25, "c3": 0.75 },
{ "time": 0.6, "x": -204.16, "y": 6.16, "curve": 0.265, "c3": 0.618, "c4": 0.43 },
{
"time": 0.8,
"x": -155.08,
"y": -1.65,
"curve": 0.325,
"c2": 0.31,
"c3": 0.675,
"c4": 0.69
},
{ "time": 1, "x": -7.89, "y": 0.97, "curve": 0.382, "c2": 0.57, "c3": 0.735 },
{ "time": 1.2, "x": 30.8, "y": 15.84 }
]
},
"front-leg": {
"translate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.6, "x": -169.84, "y": -7.04, "curve": 0.25, "c3": 0.75 },
{ "time": 0.8, "x": -132.2, "y": 0.24, "curve": 0.25, "c3": 0.75 },
{ "time": 1, "x": -44.63, "y": -1.67, "curve": 0.25, "c3": 0.75 },
{ "time": 1.2 }
]
},
"front-arm": {
"rotate": [
{ "angle": -12.42, "curve": 0.25, "c3": 0.75 },
{ "time": 0.6, "angle": 21.32, "curve": 0.25, "c3": 0.75 },
{ "time": 1.2, "angle": -12.42 }
]
},
"rear-arm": {
"rotate": [
{ "angle": 15.57, "curve": 0.25, "c3": 0.75 },
{ "time": 0.6, "angle": 1.11, "curve": 0.25, "c3": 0.75 },
{ "time": 1.2, "angle": 15.57 }
]
},
"club": {
"rotate": [
{ "angle": -10.63, "curve": 0.25, "c3": 0.75 },
{ "time": 0.6, "angle": -25.09, "curve": 0.25, "c3": 0.75 },
{ "time": 1.2, "angle": -10.63 }
]
}
}
},
"spawn": {
"slots": {
"body": {
"color": [
{ "color": "ffffff00", "curve": "stepped" },
{ "time": 0.0333, "color": "ffffff00", "curve": 0, "c2": 0.19, "c3": 0.75 },
{ "time": 0.1, "color": "ffffffff" }
]
},
"club": {
"color": [
{ "color": "ffffff00", "curve": "stepped" },
{ "time": 0.0667, "color": "ffffff00", "curve": 0, "c2": 0.58, "c3": 0.75 },
{ "time": 0.1333, "color": "ffffffff" }
]
},
"front-arm": {
"color": [
{ "color": "ffffff00", "curve": "stepped" },
{ "time": 0.0667, "color": "ffffff00", "curve": 0, "c2": 0.58, "c3": 0.75 },
{ "time": 0.1333, "color": "ffffffff" }
]
},
"front-eye": {
"color": [
{ "color": "ffffff00", "curve": "stepped" },
{ "time": 0.1, "color": "ffffff00", "curve": 0.25, "c3": 0.75 },
{ "time": 0.1667, "color": "ffffffff" }
]
},
"front-iris": {
"color": [
{ "color": "ffffff00", "curve": "stepped" },
{ "time": 0.2, "color": "ffffff00", "curve": 0.25, "c3": 0.75 },
{ "time": 0.2667, "color": "ffffffff" }
]
},
"front-leg": {
"color": [
{ "color": "ffffff00", "curve": "stepped" },
{ "time": 0.1, "color": "ffffff00", "curve": 0, "c2": 0.49, "c3": 0.75 },
{ "time": 0.1667, "color": "ffffffff" }
]
},
"front-sclera": {
"color": [
{ "color": "ffffff00", "curve": "stepped" },
{ "time": 0.1, "color": "ffffff00", "curve": 0.25, "c3": 0.75 },
{ "time": 0.1667, "color": "ffffffff" }
]
},
"mouth": {
"color": [
{ "color": "ffffff00", "curve": "stepped" },
{ "time": 0.1, "color": "ffffff00", "curve": 0.25, "c3": 0.75 },
{ "time": 0.1667, "color": "ffffffff" }
]
},
"rear-arm": {
"color": [
{ "color": "ffffff00", "curve": "stepped" },
{ "time": 0.0667, "color": "ffffff00", "curve": 0, "c2": 0.58, "c3": 0.75 },
{ "time": 0.1333, "color": "ffffffff" }
]
},
"rear-eye": {
"color": [
{ "color": "ffffff00", "curve": "stepped" },
{ "time": 0.1, "color": "ffffff00", "curve": 0.25, "c3": 0.75 },
{ "time": 0.1667, "color": "ffffffff" }
]
},
"rear-iris": {
"color": [
{ "color": "ffffff00", "curve": "stepped" },
{ "time": 0.2, "color": "ffffff00", "curve": 0.25, "c3": 0.75 },
{ "time": 0.2667, "color": "ffffffff" }
]
},
"rear-leg": {
"color": [
{ "color": "ffffff00", "curve": "stepped" },
{ "time": 0.1, "color": "ffffff00", "curve": 0, "c2": 0.49, "c3": 0.75 },
{ "time": 0.1667, "color": "ffffffff" }
]
},
"rear-sclera": {
"color": [
{ "color": "ffffff00", "curve": "stepped" },
{ "time": 0.1, "color": "ffffff00", "curve": 0.25, "c3": 0.75 },
{ "time": 0.1667, "color": "ffffffff" }
]
}
},
"bones": {
"body": {
"rotate": [
{ "angle": -54.5, "curve": 0.25, "c3": 0.75 },
{ "time": 0.2333, "angle": 17.57, "curve": 0.25, "c3": 0.75 },
{ "time": 0.4 }
],
"translate": [
{ "y": -56.46, "curve": 0.25, "c3": 0.75 },
{ "time": 0.0667, "y": 3.89, "curve": 0.25, "c3": 0.75 },
{ "time": 0.1667, "y": -31.15, "curve": 0.25, "c3": 0.75 },
{ "time": 0.3, "y": 2.52, "curve": 0.25, "c3": 0.75 },
{ "time": 0.4 }
],
"scale": [
{ "x": 1.039, "y": 0.942, "curve": 0.25, "c3": 0.75 },
{ "time": 0.0667, "x": 1.12, "y": 0.942, "curve": 0.25, "c3": 0.75 },
{ "time": 0.2, "x": 0.924, "y": 1.052, "curve": 0.25, "c3": 0.75 },
{ "time": 0.3 }
]
}
}
}
}
}

View File

@ -1,11 +0,0 @@
{
"ver": "1.2.6",
"importer": "spine-data",
"imported": true,
"uuid": "8d72dcb4-fabf-4548-948e-6b655f3a433e",
"files": [
".json"
],
"subMetas": {},
"userData": {}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 53 KiB

View File

@ -1,42 +0,0 @@
{
"ver": "1.0.26",
"importer": "image",
"imported": true,
"uuid": "0681440c-0447-4236-abdd-3cc7d134b6b5",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "0681440c-0447-4236-abdd-3cc7d134b6b5@6c48a",
"displayName": "medium-creep",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "repeat",
"wrapModeT": "repeat",
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0,
"isUuid": true,
"imageUuidOrDatabaseUri": "0681440c-0447-4236-abdd-3cc7d134b6b5",
"visible": false
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"hasAlpha": true,
"type": "texture",
"fixAlphaTransparencyArtifacts": false,
"redirect": "0681440c-0447-4236-abdd-3cc7d134b6b5@6c48a"
}
}

View File

@ -1,9 +0,0 @@
{
"ver": "1.2.0",
"importer": "directory",
"imported": true,
"uuid": "aa5d24a2-a466-4fb8-b80e-4685609592b7",
"files": [],
"subMetas": {},
"userData": {}
}

View File

@ -1,69 +0,0 @@
poison-creep.png
size: 1024,256
format: RGBA8888
filter: Linear,Linear
repeat: none
body
rotate: true
xy: 572, 96
size: 153, 145
orig: 155, 146
offset: 1, 1
index: -1
front-arm
rotate: false
xy: 4, 4
size: 87, 64
orig: 87, 64
offset: 0, 0
index: -1
front-leg
rotate: true
xy: 265, 7
size: 68, 118
orig: 69, 118
offset: 0, 0
index: -1
front-wing
rotate: false
xy: 4, 72
size: 249, 177
orig: 249, 177
offset: 0, 0
index: -1
head
rotate: false
xy: 257, 79
size: 168, 170
orig: 169, 170
offset: 0, 0
index: -1
rear-arm
rotate: false
xy: 184, 17
size: 77, 51
orig: 78, 51
offset: 0, 0
index: -1
rear-leg
rotate: true
xy: 95, 10
size: 58, 85
orig: 58, 86
offset: 0, 1
index: -1
rear-wing
rotate: true
xy: 721, 104
size: 145, 132
orig: 145, 132
offset: 0, 0
index: -1
tail
rotate: true
xy: 429, 53
size: 196, 139
orig: 203, 139
offset: 1, 0
index: -1

View File

@ -1,11 +0,0 @@
{
"ver": "1.0.2",
"importer": "text",
"imported": true,
"uuid": "3eb0b5ae-2d78-4cf0-b1a7-a20874245150",
"files": [
".json"
],
"subMetas": {},
"userData": {}
}

View File

@ -1,696 +0,0 @@
{
"skeleton": {
"hash": "Dr88ojlOogHAYNGa0nQ+2iiVlEs",
"spine": "3.8.99",
"x": -51.95,
"y": -10.91,
"width": 89.32,
"height": 75.13,
"images": "",
"audio": "D:/Huy 2D Animation/works/2024/Product/super hero game/creep/poison-creep"
},
"bones": [
{ "name": "root" },
{ "name": "pivot", "parent": "root", "scaleX": 0.11, "scaleY": 0.11 },
{ "name": "hip", "parent": "pivot", "y": 40 },
{ "name": "body", "parent": "hip", "length": 133.66, "rotation": 59.93, "x": 10.52, "y": 17.96 },
{ "name": "head", "parent": "body", "length": 221.49, "rotation": 15.75, "x": 143.85, "y": 0.62 },
{ "name": "front-wing", "parent": "body", "length": 106.82, "rotation": 83.73, "x": 158.48, "y": 93.47 },
{ "name": "front-wing2", "parent": "front-wing", "length": 140.22, "rotation": -26.37, "x": 106.82 },
{ "name": "front-wing3", "parent": "front-wing2", "length": 132.49, "rotation": 21.65, "x": 140.22 },
{ "name": "front-wing4", "parent": "front-wing3", "length": 141.7, "rotation": 21.49, "x": 132.49 },
{ "name": "rear-wing", "parent": "body", "length": 73.9, "rotation": 45.59, "x": 344.09, "y": -21.84 },
{ "name": "rear-wing2", "parent": "rear-wing", "length": 66.93, "rotation": -34.49, "x": 73.9 },
{ "name": "rear-wing3", "parent": "rear-wing2", "length": 80.74, "rotation": 49.93, "x": 66.93 },
{ "name": "rear-wing4", "parent": "rear-wing3", "length": 83.23, "rotation": 38.88, "x": 80.74 },
{ "name": "front-arm", "parent": "body", "length": 65.64, "rotation": 113.49, "x": 101.99, "y": 115.75 },
{ "name": "front-arm2", "parent": "front-arm", "length": 70.5, "rotation": 58.08, "x": 65.64 },
{ "name": "rear-arm", "parent": "body", "length": 59.23, "rotation": -31.26, "x": 75.19, "y": -66.48 },
{ "name": "rear-arm2", "parent": "rear-arm", "length": 43.29, "rotation": -51.87, "x": 59.23 },
{ "name": "front-leg", "parent": "body", "length": 110.21, "rotation": -166.63, "x": -37.45, "y": 97.29 },
{ "name": "rear-leg", "parent": "body", "length": 62.9, "rotation": -161.1, "x": 31.76, "y": -64.3 },
{ "name": "tail", "parent": "body", "length": 94.16, "rotation": 62.39, "x": 22.18, "y": 114.84 },
{ "name": "tail2", "parent": "tail", "length": 67.23, "rotation": 4.83, "x": 94.16 },
{ "name": "tail3", "parent": "tail2", "length": 54.17, "rotation": 2.99, "x": 67.23 }
],
"slots": [
{ "name": "tail", "bone": "tail", "attachment": "tail" },
{ "name": "rear-leg", "bone": "rear-leg", "attachment": "rear-leg" },
{ "name": "rear-arm", "bone": "rear-arm", "attachment": "rear-arm" },
{ "name": "body", "bone": "body", "attachment": "body" },
{ "name": "rear-wing", "bone": "rear-wing", "attachment": "rear-wing" },
{ "name": "front-wing", "bone": "front-wing", "attachment": "front-wing" },
{ "name": "front-leg", "bone": "front-leg", "attachment": "front-leg" },
{ "name": "front-arm", "bone": "front-arm", "attachment": "front-arm" },
{ "name": "head", "bone": "head", "attachment": "head" }
],
"skins": [
{
"name": "default",
"attachments": {
"body": {
"body": { "x": 82.11, "y": 26.53, "rotation": -59.93, "width": 310, "height": 291 }
},
"front-arm": {
"front-arm": {
"type": "mesh",
"uvs": [ 0.31585, 0, 0.43847, 0.01671, 0.714, 0.05426, 1, 0.30338, 1, 0.38896, 0.80444, 0.5469, 0.59138, 0.49962, 0.50897, 0.48133, 0.53554, 0.55391, 0.59167, 0.70721, 0.44957, 0.98539, 0.01431, 0.9849, 0.00578, 0.45769, 0.14745, 0.23383, 0.29543, 0, 0.36684, 0.10974, 0.46281, 0.27708, 0.50061, 0.38465, 0.47735, 0.0938, 0.54132, 0.26114, 0.57913, 0.38067, 0.25052, 0.27708, 0.37557, 0.36473, 0.44536, 0.44043 ],
"triangles": [ 15, 0, 1, 14, 0, 15, 21, 13, 14, 15, 21, 14, 22, 21, 15, 16, 22, 15, 23, 22, 16, 23, 17, 7, 23, 7, 8, 11, 12, 23, 21, 12, 13, 22, 12, 21, 10, 23, 8, 10, 8, 9, 23, 12, 22, 10, 11, 23, 18, 1, 2, 15, 1, 18, 19, 18, 2, 16, 15, 18, 16, 18, 19, 20, 19, 2, 5, 20, 2, 17, 16, 19, 17, 19, 20, 3, 5, 2, 17, 23, 16, 7, 17, 20, 5, 6, 20, 7, 20, 6, 3, 4, 5 ],
"vertices": [ 2, 13, 91.86, -30.26, 0.29705, 14, -11.82, -38.26, 0.70295, 2, 13, 70.42, -30.6, 0.71484, 14, -23.44, -20.24, 0.28516, 1, 13, 22.25, -31.36, 1, 1, 13, -30.81, -5.63, 1, 1, 13, -32.06, 5.17, 1, 1, 13, -0.55, 28.99, 1, 2, 13, 36.96, 27.28, 0.87681, 14, 7.99, 38.76, 0.12319, 2, 13, 51.47, 26.61, 0.3921, 14, 15.1, 26.1, 0.6079, 2, 13, 45.82, 35.24, 0.11886, 14, 19.43, 35.45, 0.88114, 2, 13, 33.89, 53.46, 0.01703, 14, 28.59, 55.21, 0.98297, 1, 14, 71.63, 57.86, 1, 1, 14, 118.73, -1.45, 1, 1, 14, 67.25, -44.29, 1, 2, 13, 117.57, 2.6, 0.00251, 14, 29.66, -42.7, 0.99749, 2, 13, 95.39, -29.85, 0.27071, 14, -9.61, -41.04, 0.72929, 2, 13, 81.45, -17.43, 0.37473, 14, -6.44, -22.64, 0.62527, 2, 13, 62.43, 1.76, 0.9468, 14, -0.2, 3.66, 0.0532, 2, 13, 54.33, 14.58, 0.60636, 14, 6.39, 17.31, 0.39364, 2, 13, 62.58, -21.65, 0.87858, 14, -19.99, -8.85, 0.12142, 1, 13, 49.09, -1.81, 1, 2, 13, 40.81, 12.51, 0.90995, 14, -2.51, 27.69, 0.09005, 2, 13, 99.12, 6, 0.00647, 14, 22.79, -25.25, 0.99353, 1, 14, 17.96, -1.29, 1, 2, 13, 63.06, 22.72, 0.18022, 14, 17.92, 14.2, 0.81978 ],
"hull": 15,
"edges": [ 0, 28, 4, 6, 6, 8, 8, 10, 18, 20, 20, 22, 22, 24, 28, 30, 30, 32, 32, 34, 34, 14, 0, 2, 2, 4, 2, 36, 36, 38, 38, 40, 10, 12, 12, 14, 40, 12, 24, 26, 26, 28, 26, 42, 42, 44, 44, 46, 14, 16, 16, 18, 46, 16 ],
"width": 174,
"height": 127
}
},
"front-leg": {
"front-leg": { "x": 54.25, "y": 12.25, "rotation": 106.7, "width": 138, "height": 236 }
},
"front-wing": {
"front-wing": {
"type": "mesh",
"uvs": [ 0.33627, 0, 0.57898, 0.0738, 0.65974, 0.09836, 0.71382, 0.1603, 0.87014, 0.33932, 0.95395, 0.43529, 0.78547, 0.50957, 0.80826, 0.60313, 0.84067, 0.73619, 0.85028, 0.77563, 1, 0.91399, 1, 0.97203, 0.9558, 0.99828, 0.78249, 0.97465, 0.7082, 0.8251, 0.64894, 0.70581, 0.59618, 0.5996, 0.56303, 0.51467, 0.52541, 0.41832, 0.3719, 0.39102, 0.4067, 0.29152, 0.27603, 0.1477, 0, 0.06702, 0, 0.02961, 0.16975, 0, 0.74687, 0.81006, 0.79266, 0.78294, 0.82037, 0.75752, 0.81193, 0.91175, 0.84085, 0.83718, 0.69483, 0.68859, 0.74784, 0.65469, 0.78158, 0.62757, 0.60139, 0.48114, 0.66775, 0.42485, 0.75851, 0.39053, 0.65799, 0.56626, 0.70191, 0.54155, 0.42866, 0.2377, 0.46477, 0.18004, 0.50966, 0.13748, 0.55358, 0.36401, 0.577, 0.32557, 0.63458, 0.2432, 0.27935, 0.12304, 0.28618, 0.09421, 0.30472, 0.05303 ],
"triangles": [ 46, 24, 0, 22, 23, 24, 45, 24, 46, 44, 24, 45, 21, 24, 44, 22, 24, 21, 39, 0, 40, 46, 0, 39, 38, 46, 39, 45, 46, 38, 44, 45, 38, 21, 44, 38, 20, 21, 38, 40, 0, 1, 43, 1, 2, 43, 2, 3, 40, 1, 43, 42, 40, 43, 39, 40, 42, 41, 38, 39, 42, 41, 39, 20, 38, 41, 43, 3, 35, 18, 20, 41, 19, 20, 18, 34, 43, 35, 42, 43, 34, 33, 42, 34, 41, 42, 33, 18, 41, 33, 17, 18, 33, 35, 3, 4, 6, 35, 4, 6, 4, 5, 37, 34, 35, 37, 35, 6, 36, 33, 34, 37, 36, 34, 16, 17, 33, 16, 33, 36, 32, 37, 6, 32, 6, 7, 31, 37, 32, 30, 36, 37, 30, 37, 31, 15, 16, 36, 15, 36, 30, 32, 7, 8, 27, 32, 8, 31, 32, 27, 26, 31, 27, 25, 30, 31, 25, 31, 26, 14, 30, 25, 15, 30, 14, 27, 8, 9, 29, 27, 9, 26, 27, 29, 28, 26, 29, 25, 26, 28, 29, 9, 10, 12, 28, 29, 29, 10, 12, 13, 25, 28, 14, 25, 13, 11, 12, 10, 13, 28, 12 ],
"vertices": [ 1, 8, 81.39, -38.91, 1, 2, 7, 114.18, -66.09, 0.92695, 8, -41.25, -54.78, 0.07305, 3, 6, 244.56, -51.06, 0.00659, 7, 78.15, -85.95, 0.9932, 8, -82.05, -60.07, 2.0E-4, 2, 6, 212.73, -64.95, 0.08207, 7, 43.44, -87.11, 0.91793, 2, 6, 120.71, -105.08, 0.89149, 7, -56.89, -90.47, 0.10851, 1, 6, 71.38, -126.59, 1, 2, 6, 86.48, -39.97, 0.99232, 7, -64.69, -17.33, 0.00768, 1, 6, 51.85, -34.87, 1, 2, 5, 96.86, -25.89, 0.51684, 6, 2.58, -27.62, 0.48316, 2, 5, 84.74, -17.49, 0.90853, 6, -12.02, -25.47, 0.09147, 1, 5, -4.35, -22.21, 1, 1, 5, -16.52, -5.66, 1, 1, 5, -4.3, 14.87, 1, 2, 5, 70.18, 59.27, 0.99238, 6, -59.15, 36.83, 0.00762, 2, 5, 131.35, 38.55, 0.23192, 6, 4.86, 45.44, 0.76808, 2, 6, 55.92, 52.31, 0.99912, 7, -59.06, 79.71, 8.8E-4, 2, 6, 101.38, 58.42, 0.87014, 7, -14.55, 68.63, 0.12986, 2, 6, 135.67, 59.31, 0.46625, 7, 17.65, 56.8, 0.53375, 3, 6, 174.57, 60.31, 0.04197, 7, 54.17, 43.39, 0.95425, 8, -56.97, 69.06, 0.00378, 2, 7, 118.16, 86.33, 0.83758, 8, 18.3, 85.57, 0.16242, 2, 7, 128.23, 48.39, 0.58153, 8, 13.77, 46.58, 0.41847, 1, 8, 92.14, 20.41, 1, 1, 8, 231.23, 39.55, 1, 1, 8, 235.67, 27.07, 1, 1, 8, 159.53, -11.13, 1, 2, 5, 118.99, 22.85, 0.32437, 6, 0.76, 25.88, 0.67563, 2, 5, 106.32, 1.6, 0.56244, 6, -1.16, 1.22, 0.43756, 2, 5, 100.53, -13.82, 0.60485, 6, 0.51, -15.17, 0.39515, 2, 5, 71.56, 32.65, 0.99441, 6, -46.09, 13.59, 0.00559, 1, 5, 75.61, 2.85, 1, 1, 6, 50.86, 29.2, 1, 1, 6, 49.42, 0.23, 1, 1, 6, 50.25, -19.1, 1, 2, 6, 137.46, 36.89, 0.45104, 7, 11.04, 35.3, 0.54896, 2, 6, 140.01, -1.62, 0.53706, 7, -0.79, -1.43, 0.46294, 2, 6, 130.09, -47.36, 0.76541, 7, -26.88, -40.28, 0.23459, 2, 6, 97.75, 25.65, 0.96135, 7, -30.01, 39.5, 0.03865, 2, 6, 95.5, 2.2, 0.99961, 7, -40.75, 18.54, 3.9E-4, 2, 7, 132.5, 26.84, 0.39787, 8, 9.85, 24.96, 0.60213, 2, 7, 132.35, -0.37, 0.51423, 8, -0.26, -0.29, 0.48577, 2, 7, 125.4, -26.41, 0.77345, 8, -16.27, -21.98, 0.22655, 3, 6, 185.22, 39.04, 0.01009, 7, 56.23, 19.68, 0.98977, 8, -63.74, 46.25, 1.3E-4, 2, 6, 191.97, 22.43, 1.8E-4, 7, 56.37, 1.76, 0.99982, 2, 6, 204.74, -16.42, 0.01025, 7, 53.91, -39.06, 0.98975, 1, 8, 93.51, 11.63, 1, 1, 8, 93.72, 0.87, 1, 1, 8, 89.91, -15.96, 1 ],
"hull": 25,
"edges": [ 0, 48, 10, 12, 18, 20, 20, 22, 22, 24, 24, 26, 36, 38, 38, 40, 40, 42, 42, 44, 44, 46, 46, 48, 26, 28, 28, 50, 50, 52, 52, 54, 16, 18, 54, 16, 26, 56, 56, 58, 58, 18, 28, 30, 30, 32, 30, 60, 60, 62, 62, 64, 12, 14, 14, 16, 64, 14, 32, 34, 34, 36, 34, 66, 66, 68, 68, 70, 8, 10, 70, 8, 32, 72, 72, 74, 74, 12, 40, 76, 76, 78, 78, 80, 0, 2, 2, 4, 80, 2, 36, 82, 82, 84, 84, 86, 4, 6, 6, 8, 86, 6, 42, 88, 88, 90, 90, 92, 92, 0 ],
"width": 498,
"height": 354
}
},
"head": {
"head": { "x": 122.43, "y": -46.81, "rotation": -75.68, "width": 338, "height": 340 }
},
"rear-arm": {
"rear-arm": {
"type": "mesh",
"uvs": [ 0.647, 0.08373, 0.75728, 0.13865, 0.85032, 0.24964, 0.86995, 0.27306, 0.9903, 0.53541, 0.98625, 0.80635, 0.69511, 1, 0.60904, 1, 0.3832, 0.72161, 0.37452, 0.69108, 0.36243, 0.64858, 0.16706, 0.89521, 0.0127, 0.81465, 0.01149, 0.55625, 0.24093, 0.20395, 0.29593, 0.15733, 0.48056, 8.4E-4, 0.33746, 0.54675, 0.31795, 0.47564, 0.29356, 0.31471, 0.40402, 0.54668, 0.4546, 0.36925, 0.53698, 0.22731, 0.44998, 0.60106, 0.56125, 0.44803, 0.70866, 0.31496 ],
"triangles": [ 22, 16, 0, 15, 16, 22, 25, 0, 1, 25, 1, 2, 22, 0, 25, 24, 22, 25, 21, 22, 24, 24, 23, 21, 4, 25, 3, 24, 6, 7, 23, 24, 7, 8, 23, 7, 25, 2, 3, 4, 6, 25, 25, 6, 24, 6, 4, 5, 19, 14, 15, 21, 19, 15, 22, 21, 15, 18, 19, 21, 20, 18, 21, 23, 20, 21, 17, 18, 20, 13, 14, 19, 13, 19, 18, 10, 17, 20, 9, 10, 20, 23, 9, 20, 8, 9, 23, 13, 11, 12, 17, 13, 18, 17, 11, 13, 10, 11, 17 ],
"vertices": [ 2, 15, 98.46, 10.7, 0.03411, 16, 15.81, 37.47, 0.96589, 2, 15, 110.8, -2.37, 1.0E-5, 16, 33.7, 39.1, 0.99999, 1, 16, 51.37, 34.48, 1, 1, 16, 55.1, 33.5, 1, 1, 16, 82.69, 16.5, 1, 1, 16, 92.89, -8.9, 1, 2, 15, 60.6, -74.07, 0.03234, 16, 59.12, -44.66, 0.96766, 2, 15, 48.9, -67.67, 0.06375, 16, 46.85, -49.91, 0.93625, 2, 15, 31.68, -26.21, 0.60318, 16, 3.6, -37.86, 0.39682, 2, 15, 31.98, -22.86, 0.66605, 16, 1.15, -35.55, 0.33395, 2, 15, 32.39, -18.19, 0.8195, 16, -2.26, -32.35, 0.1805, 1, 15, -6.13, -25.52, 1, 1, 15, -23.22, -6.9, 1, 1, 15, -10.86, 16.09, 1, 2, 15, 37.41, 30.25, 0.99847, 16, -37.26, 1.51, 0.00153, 2, 15, 47.15, 30.29, 0.96188, 16, -31.28, 9.2, 0.03812, 2, 15, 79.85, 30.42, 0.36476, 16, -11.2, 35, 0.63524, 2, 15, 33.93, -7.31, 0.95805, 16, -9.87, -24.42, 0.04195, 1, 15, 34.72, 0.44, 1, 1, 15, 39.21, 16.52, 1, 2, 15, 42.99, -12.25, 0.79363, 16, -0.39, -20.35, 0.20637, 2, 15, 58.46, -0.29, 0.66703, 16, -0.24, -0.79, 0.33297, 2, 15, 76.54, 6.16, 0.11142, 16, 5.84, 17.42, 0.88858, 2, 15, 46.6, -20.49, 0.53695, 16, 8.32, -22.59, 0.46305, 2, 15, 69.15, -15.21, 0.00961, 16, 18.09, -1.59, 0.99039, 1, 16, 33.79, 19.77, 1 ],
"hull": 17,
"edges": [ 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 20, 22, 22, 24, 24, 26, 26, 28, 20, 34, 34, 36, 36, 38, 28, 30, 30, 32, 38, 30, 16, 18, 18, 20, 18, 40, 40, 42, 42, 44, 2, 0, 0, 32, 44, 0, 16, 46, 46, 48, 48, 50, 2, 4, 4, 6, 50, 4 ],
"width": 155,
"height": 101
}
},
"rear-leg": {
"rear-leg": { "x": 19.01, "y": -3.77, "rotation": 101.16, "width": 116, "height": 171 }
},
"rear-wing": {
"rear-wing": {
"type": "mesh",
"uvs": [ 0.12449, 0, 0.51622, 0.10956, 0.56285, 0.1226, 0.71676, 0.21553, 0.94633, 0.35414, 0.96697, 0.42218, 1, 0.53106, 1, 0.59245, 0.75366, 0.48466, 0.63578, 0.56615, 0.53865, 0.63328, 0.55874, 0.77997, 0.58886, 1, 0.55172, 1, 0.47874, 0.94247, 0.40342, 0.76047, 0.34424, 0.61744, 0.29646, 0.50199, 0.26983, 0.31522, 0.26118, 0.25451, 0.24438, 0.13672, 0.20845, 0.09674, 0, 0.02342, 0, 0.0052, 0.05937, 0, 0.38798, 0.62491, 0.45255, 0.63712, 0.49314, 0.63508, 0.43847, 0.77484, 0.49109, 0.7881, 0.52266, 0.7881, 0.37382, 0.52076, 0.48057, 0.55226, 0.55724, 0.56387, 0.35127, 0.35617, 0.53319, 0.39762, 0.72262, 0.43575, 0.29414, 0.14397, 0.39036, 0.13734, 0.46854, 0.13071, 0.34977, 0.25339, 0.44599, 0.25007, 0.57228, 0.25007 ],
"triangles": [ 22, 23, 24, 21, 0, 38, 24, 0, 21, 22, 24, 21, 21, 37, 20, 38, 37, 21, 40, 37, 38, 19, 20, 37, 19, 37, 40, 0, 1, 38, 38, 1, 39, 41, 38, 39, 42, 2, 3, 1, 2, 42, 39, 1, 42, 41, 39, 42, 40, 38, 41, 18, 19, 40, 34, 40, 41, 18, 40, 34, 35, 41, 42, 34, 41, 35, 36, 3, 4, 42, 3, 36, 35, 42, 36, 17, 18, 34, 36, 4, 5, 8, 36, 5, 31, 34, 35, 17, 34, 31, 32, 31, 35, 9, 33, 35, 36, 9, 35, 32, 35, 33, 8, 9, 36, 8, 5, 6, 7, 8, 6, 16, 17, 31, 25, 31, 32, 16, 31, 25, 10, 32, 33, 10, 33, 9, 27, 32, 10, 26, 25, 32, 27, 26, 32, 15, 25, 26, 16, 25, 15, 28, 15, 26, 30, 27, 10, 30, 10, 11, 27, 28, 26, 29, 27, 30, 29, 28, 27, 14, 28, 29, 15, 28, 14, 11, 14, 30, 14, 29, 30, 11, 13, 14, 13, 11, 12 ],
"vertices": [ 1, 12, 83.94, -6.77, 1, 2, 11, 67.17, -35.17, 0.99913, 12, -32.64, -18.87, 8.7E-4, 2, 10, 138.24, 14.86, 0.00114, 11, 57.27, -45, 0.99886, 2, 10, 129.63, -35.29, 0.22522, 11, 13.35, -70.7, 0.77478, 2, 10, 116.8, -110.1, 0.60131, 11, -52.16, -109.04, 0.39869, 2, 10, 101.82, -121.58, 0.62269, 11, -70.59, -104.96, 0.37731, 2, 10, 77.86, -139.95, 0.6446, 11, -100.07, -98.44, 0.3554, 2, 10, 62.59, -145.19, 0.64684, 11, -113.91, -90.13, 0.35316, 2, 10, 66.17, -68.42, 0.67569, 11, -52.85, -43.46, 0.32431, 3, 9, 78.2, -55.19, 0.00326, 10, 34.79, -43.06, 0.96473, 11, -53.64, -3.12, 0.03201, 2, 9, 68.72, -23.33, 0.40241, 10, 8.94, -22.16, 0.59759, 1, 9, 29.99, -18.61, 1, 1, 9, -28.1, -11.54, 1, 1, 9, -25.22, -1.17, 1, 1, 9, -4.98, 15.18, 1, 2, 9, 46.99, 23.41, 0.99589, 10, -35.44, 4.05, 0.00411, 3, 9, 87.83, 29.88, 0.22889, 10, -5.45, 32.51, 0.72594, 11, -21.71, 76.32, 0.04517, 4, 9, 120.79, 35.1, 0.00199, 10, 18.76, 55.48, 0.72931, 11, 11.46, 72.58, 0.26054, 12, -8.38, 99.98, 0.00816, 3, 10, 62.7, 78.75, 0.18686, 11, 57.55, 53.93, 0.60099, 12, 15.8, 56.53, 0.21215, 3, 10, 76.99, 86.32, 0.07844, 11, 72.53, 47.86, 0.4855, 12, 23.66, 42.41, 0.43606, 3, 10, 104.7, 101, 0.00296, 11, 101.6, 36.1, 0.03817, 12, 38.91, 15.01, 0.95887, 3, 10, 111.26, 114.27, 1.0E-5, 11, 115.98, 39.63, 1.9E-4, 12, 52.31, 8.73, 0.9998, 1, 12, 115.7, 11.46, 1, 1, 12, 117.36, 6.96, 1, 1, 12, 101.67, -0.26, 1, 3, 9, 82.54, 18.18, 0.33494, 10, -3.18, 19.87, 0.64453, 11, -29.92, 66.45, 0.02052, 3, 9, 74.43, 1, 0.47609, 10, -0.13, 1.12, 0.52364, 11, -42.31, 52.05, 2.7E-4, 2, 9, 71.8, -10.48, 0.51916, 10, 4.2, -9.83, 0.48084, 1, 9, 40.63, 14.63, 1, 1, 9, 33.18, 0.86, 1, 1, 9, 30.73, -7.96, 1, 4, 9, 110.03, 14.81, 0.00862, 10, 21.39, 32.66, 0.83818, 11, -4.32, 55.88, 0.15168, 12, -31.14, 96.89, 0.00152, 2, 10, 23.62, 0.69, 0.9993, 11, -27.35, 33.6, 7.0E-4, 2, 9, 84.87, -33.41, 0.03688, 10, 27.96, -21.33, 0.96312, 3, 10, 60.2, 52.92, 0.29511, 11, 36.16, 39.22, 0.63972, 12, -10.08, 58.5, 0.06516, 2, 10, 67.04, -0.51, 0.51482, 11, -0.32, -0.41, 0.48518, 2, 10, 75.41, -55.73, 0.65093, 11, -37.19, -42.36, 0.34907, 3, 10, 107.59, 86.73, 0.00498, 11, 92.54, 24.71, 0.07655, 12, 24.7, 11.82, 0.91847, 2, 11, 79.68, -0.11, 0.62803, 12, -0.89, 0.57, 0.37197, 2, 11, 69.51, -20.45, 0.97629, 12, -21.57, -8.88, 0.02371, 3, 10, 85.62, 62.12, 0.06249, 11, 59.57, 25.68, 0.72201, 12, -0.36, 33.28, 0.2155, 3, 10, 95.51, 36.01, 0.00144, 11, 45.96, 1.31, 0.99749, 12, -26.25, 22.84, 0.00107, 2, 10, 107.42, 1.38, 0.02049, 11, 27.12, -30.1, 0.97951 ],
"hull": 25,
"edges": [ 0, 48, 12, 14, 14, 16, 24, 26, 26, 28, 40, 42, 42, 44, 44, 46, 46, 48, 32, 34, 32, 50, 50, 52, 52, 54, 54, 20, 28, 30, 30, 32, 30, 56, 56, 58, 58, 60, 20, 22, 22, 24, 60, 22, 34, 62, 62, 64, 64, 66, 16, 18, 18, 20, 66, 18, 34, 36, 36, 68, 68, 70, 70, 72, 8, 10, 10, 12, 72, 10, 40, 74, 74, 76, 76, 78, 0, 2, 2, 4, 78, 2, 36, 38, 38, 40, 38, 80, 80, 82, 82, 84, 4, 6, 6, 8, 84, 6 ],
"width": 290,
"height": 263
}
},
"tail": {
"tail": { "x": 162.58, "y": 68.78, "rotation": -122.32, "width": 405, "height": 277 }
}
}
}
],
"animations": {
"attack": {
"bones": {
"hip": {
"rotate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.2333, "angle": 6.85, "curve": 0.25, "c3": 0.75 },
{ "time": 0.4, "angle": -9.93, "curve": 0.25, "c3": 0.75 },
{ "time": 0.8 }
],
"translate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.2333, "x": -26.82, "curve": 0.25, "c3": 0.75 },
{ "time": 0.4, "x": 28.61, "curve": 0.25, "c3": 0.75 },
{ "time": 0.8 }
]
},
"body": {
"rotate": [
{ "angle": -0.67, "curve": 0.379, "c2": 0.6, "c3": 0.724 },
{ "time": 0.1, "curve": 0.25, "c3": 0.75 },
{ "time": 0.3, "angle": 6.6, "curve": 0.25, "c3": 0.75 },
{ "time": 0.5, "angle": -3.64, "curve": 0.242, "c3": 0.667, "c4": 0.67 },
{ "time": 0.8, "angle": -0.67 }
]
},
"head": {
"rotate": [
{ "angle": 2.62, "curve": 0.381, "c2": 0.54, "c3": 0.744 },
{ "time": 0.1667, "curve": 0.25, "c3": 0.75 },
{ "time": 0.3667, "angle": 6.6, "curve": 0.25, "c3": 0.75 },
{ "time": 0.5667, "angle": 6.71, "curve": 0.246, "c3": 0.635, "c4": 0.55 },
{ "time": 0.8, "angle": 2.62 }
]
},
"front-arm": {
"rotate": [
{ "angle": -0.8, "curve": 0.375, "c2": 0.62, "c3": 0.716 },
{ "time": 0.0667, "curve": 0.25, "c3": 0.75 },
{ "time": 0.3333, "angle": 40.47, "curve": 0.25, "c3": 0.75 },
{ "time": 0.5333, "angle": -6.17, "curve": 0.243, "c3": 0.68, "c4": 0.71 },
{ "time": 0.8, "angle": -0.8 }
]
},
"front-arm2": {
"rotate": [
{ "angle": -1.49, "curve": 0.382, "c2": 0.58, "c3": 0.731 },
{ "time": 0.1, "curve": 0.25, "c3": 0.75 },
{ "time": 0.3667, "angle": 40.47, "curve": 0.25, "c3": 0.75 },
{ "time": 0.5667, "angle": -6.17, "curve": 0.243, "c3": 0.655, "c4": 0.63 },
{ "time": 0.8, "angle": -1.49 }
]
},
"rear-arm": {
"rotate": [
{ "angle": 1.84, "curve": 0.375, "c2": 0.62, "c3": 0.716 },
{ "time": 0.0667, "curve": 0.25, "c3": 0.75 },
{ "time": 0.3333, "angle": -12.35, "curve": 0.25, "c3": 0.75 },
{ "time": 0.5333, "angle": 14.17, "curve": 0.243, "c3": 0.68, "c4": 0.71 },
{ "time": 0.8, "angle": 1.84 }
]
},
"rear-arm2": {
"rotate": [
{ "angle": 3.43, "curve": 0.382, "c2": 0.58, "c3": 0.731 },
{ "time": 0.1, "curve": 0.25, "c3": 0.75 },
{ "time": 0.3667, "angle": -12.35, "curve": 0.25, "c3": 0.75 },
{ "time": 0.5667, "angle": 14.17, "curve": 0.243, "c3": 0.655, "c4": 0.63 },
{ "time": 0.8, "angle": 3.43 }
]
},
"front-wing": {
"rotate": [
{ "angle": 12.83, "curve": 0.25, "c3": 0.75 },
{ "time": 0.2, "angle": -2.3, "curve": 0.25, "c3": 0.75 },
{ "time": 0.4, "angle": 25.72, "curve": 0.25, "c3": 0.75 },
{ "time": 0.8, "angle": 12.83 }
]
},
"front-wing2": {
"rotate": [
{ "angle": 12.83, "curve": 0.25, "c3": 0.75 },
{ "time": 0.2, "angle": -2.3, "curve": 0.25, "c3": 0.75 },
{ "time": 0.4, "angle": 25.72, "curve": 0.25, "c3": 0.75 },
{ "time": 0.8, "angle": 12.83 }
]
},
"front-wing3": {
"rotate": [
{ "angle": 12.83, "curve": 0.25, "c3": 0.75 },
{ "time": 0.2, "angle": -2.3, "curve": 0.25, "c3": 0.75 },
{ "time": 0.4, "angle": 25.72, "curve": 0.25, "c3": 0.75 },
{ "time": 0.8, "angle": 12.83 }
]
},
"front-wing4": {
"rotate": [
{ "angle": 12.83, "curve": 0.25, "c3": 0.75 },
{ "time": 0.2, "angle": -2.3, "curve": 0.25, "c3": 0.75 },
{ "time": 0.4, "angle": 25.72, "curve": 0.25, "c3": 0.75 },
{ "time": 0.8, "angle": 12.83 }
]
},
"rear-wing": {
"rotate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.2, "angle": 10.84, "curve": 0.25, "c3": 0.75 },
{ "time": 0.4, "angle": 2.81, "curve": 0.25, "c3": 0.75 },
{ "time": 0.8 }
],
"scale": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.2, "x": 1.354, "y": 0.661, "curve": 0.25, "c3": 0.75 },
{ "time": 0.4, "x": 0.541, "y": 1.176, "curve": 0.25, "c3": 0.75 },
{ "time": 0.8 }
]
},
"rear-wing2": {
"rotate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.2, "angle": 10.84, "curve": 0.25, "c3": 0.75 },
{ "time": 0.4, "angle": 2.81, "curve": 0.25, "c3": 0.75 },
{ "time": 0.8 }
]
},
"rear-wing3": {
"rotate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.2, "angle": 10.84, "curve": 0.25, "c3": 0.75 },
{ "time": 0.4, "angle": 2.81, "curve": 0.25, "c3": 0.75 },
{ "time": 0.8 }
]
},
"rear-wing4": {
"rotate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.2, "angle": 10.84, "curve": 0.25, "c3": 0.75 },
{ "time": 0.4, "angle": 2.81, "curve": 0.25, "c3": 0.75 },
{ "time": 0.8 }
]
}
}
},
"dead": {
"slots": {
"body": {
"color": [
{ "time": 0.5, "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
{ "time": 0.7, "color": "ffffff00" }
]
},
"front-arm": {
"color": [
{ "time": 0.5, "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
{ "time": 0.7, "color": "ffffff00" }
]
},
"front-leg": {
"color": [
{ "time": 0.5, "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
{ "time": 0.7, "color": "ffffff00" }
]
},
"front-wing": {
"color": [
{ "time": 0.5, "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
{ "time": 0.7, "color": "ffffff00" }
]
},
"head": {
"color": [
{ "time": 0.5, "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
{ "time": 0.7, "color": "ffffff00" }
]
},
"rear-arm": {
"color": [
{ "time": 0.5, "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
{ "time": 0.7, "color": "ffffff00" }
]
},
"rear-leg": {
"color": [
{ "time": 0.5, "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
{ "time": 0.7, "color": "ffffff00" }
]
},
"rear-wing": {
"color": [
{ "time": 0.5, "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
{ "time": 0.7, "color": "ffffff00" }
]
},
"tail": {
"color": [
{ "time": 0.5, "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
{ "time": 0.7, "color": "ffffff00" }
]
}
},
"bones": {
"rear-wing3": {
"rotate": [
{ "angle": 4.16 }
]
},
"rear-wing": {
"rotate": [
{ "angle": -0.11 }
],
"shear": [
{ "x": 5.17, "y": -1.28 }
]
},
"rear-wing2": {
"rotate": [
{ "angle": 1.96 }
]
},
"body": {
"rotate": [
{ "angle": -0.46, "curve": 0.25, "c3": 0.75 },
{ "time": 0.1667, "angle": 40.11, "curve": 0.25, "c3": 0.75 },
{ "time": 0.7, "angle": 16.55 }
]
},
"head": {
"rotate": [
{ "angle": -1.28, "curve": 0.25, "c3": 0.75 },
{ "time": 0.1667, "angle": 39.3, "curve": 0.25, "c3": 0.75 },
{ "time": 0.7, "angle": 15.74 }
]
},
"hip": {
"translate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.2333, "x": -105.47, "curve": 0.25, "c3": 0.75 },
{ "time": 0.7 }
]
},
"front-wing2": {
"rotate": [
{ "angle": 5.46 }
]
},
"front-wing3": {
"rotate": [
{ "angle": 9.7 }
]
},
"front-wing4": {
"rotate": [
{ "angle": 13.1 }
]
},
"front-wing": {
"rotate": [
{ "angle": 4.63 }
]
},
"rear-wing4": {
"rotate": [
{ "angle": 5.92 }
]
}
}
},
"move": {
"bones": {
"hip": {
"translate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.6, "y": 25.65, "curve": 0.25, "c3": 0.75 },
{ "time": 1.2 }
]
},
"body": {
"rotate": [
{ "angle": -0.46, "curve": 0.377, "c2": 0.61, "c3": 0.72 },
{ "time": 0.1333, "curve": 0.25, "c3": 0.75 },
{ "time": 0.7333, "angle": -3, "curve": 0.243, "c3": 0.674, "c4": 0.69 },
{ "time": 1.2, "angle": -0.46 }
]
},
"head": {
"rotate": [
{ "angle": -1.28, "curve": 0.379, "c2": 0.53, "c3": 0.746 },
{ "time": 0.2667, "curve": 0.25, "c3": 0.75 },
{ "time": 0.8667, "angle": -3, "curve": 0.247, "c3": 0.631, "c4": 0.53 },
{ "time": 1.2, "angle": -1.28 }
]
},
"front-arm": {
"rotate": [
{},
{ "time": 0.6, "angle": -11.71 },
{ "time": 1.2 }
]
},
"front-arm2": {
"rotate": [
{},
{ "time": 0.6, "angle": -11.71 },
{ "time": 1.2 }
]
},
"rear-arm": {
"rotate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.6, "angle": 11.19, "curve": 0.25, "c3": 0.75 },
{ "time": 1.2 }
]
},
"rear-arm2": {
"rotate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.6, "angle": 11.19, "curve": 0.25, "c3": 0.75 },
{ "time": 1.2 }
]
},
"front-wing": {
"rotate": [
{ "angle": 4.63, "curve": 0.377, "c2": 0.61, "c3": 0.72 },
{ "time": 0.1333, "angle": -0.79, "curve": 0.25, "c3": 0.75 },
{ "time": 0.7333, "angle": 34.35, "curve": 0.243, "c3": 0.674, "c4": 0.69 },
{ "time": 1.2, "angle": 4.63 }
]
},
"front-wing2": {
"rotate": [
{ "angle": 5.46, "curve": 0.379, "c2": 0.53, "c3": 0.746 },
{ "time": 0.2667, "angle": -0.79, "curve": 0.25, "c3": 0.75 },
{ "time": 0.8667, "angle": 13.86, "curve": 0.247, "c3": 0.631, "c4": 0.53 },
{ "time": 1.2, "angle": 5.46 }
]
},
"front-wing3": {
"rotate": [
{ "angle": 9.7, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
{ "time": 0.4, "angle": -0.79, "curve": 0.25, "c3": 0.75 },
{ "time": 1, "angle": 13.86, "curve": 0.265, "c3": 0.618, "c4": 0.43 },
{ "time": 1.2, "angle": 9.7 }
]
},
"front-wing4": {
"rotate": [
{ "angle": 13.1, "curve": 0.293, "c2": 0.18, "c3": 0.755 },
{ "time": 0.5333, "angle": -0.79, "curve": 0.25, "c3": 0.75 },
{ "time": 1.1333, "angle": 13.86, "curve": 0.302, "c3": 0.638, "c4": 0.36 },
{ "time": 1.2, "angle": 13.1 }
]
},
"rear-wing": {
"rotate": [
{ "angle": -0.11, "curve": 0.377, "c2": 0.61, "c3": 0.72 },
{ "time": 0.1333, "angle": -1.28, "curve": 0.25, "c3": 0.75 },
{ "time": 0.7333, "angle": 6.31, "curve": 0.243, "c3": 0.674, "c4": 0.69 },
{ "time": 1.2, "angle": -0.11 }
],
"shear": [
{ "x": 5.17, "y": -1.28, "curve": 0.377, "c2": 0.61, "c3": 0.72 },
{ "time": 0.1333, "curve": 0.25, "c3": 0.75 },
{ "time": 0.7333, "x": 33.48, "y": -8.29, "curve": 0.243, "c3": 0.674, "c4": 0.69 },
{ "time": 1.2, "x": 5.17, "y": -1.28 }
]
},
"rear-wing2": {
"rotate": [
{ "angle": 1.96, "curve": 0.379, "c2": 0.53, "c3": 0.746 },
{ "time": 0.2667, "angle": -1.28, "curve": 0.25, "c3": 0.75 },
{ "time": 0.8667, "angle": 6.31, "curve": 0.247, "c3": 0.631, "c4": 0.53 },
{ "time": 1.2, "angle": 1.96 }
]
},
"rear-wing3": {
"rotate": [
{ "angle": 4.16, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
{ "time": 0.4, "angle": -1.28, "curve": 0.25, "c3": 0.75 },
{ "time": 1, "angle": 6.31, "curve": 0.265, "c3": 0.618, "c4": 0.43 },
{ "time": 1.2, "angle": 4.16 }
]
},
"rear-wing4": {
"rotate": [
{ "angle": 5.92, "curve": 0.293, "c2": 0.18, "c3": 0.755 },
{ "time": 0.5333, "angle": -1.28, "curve": 0.25, "c3": 0.75 },
{ "time": 1.1333, "angle": 6.31, "curve": 0.302, "c3": 0.638, "c4": 0.36 },
{ "time": 1.2, "angle": 5.92 }
]
}
}
},
"spawn": {
"slots": {
"body": {
"color": [
{ "color": "ffffff00", "curve": 0.25, "c3": 0.75 },
{ "time": 0.2, "color": "ffffffff" }
]
},
"front-arm": {
"color": [
{ "color": "ffffff00", "curve": 0.25, "c3": 0.75 },
{ "time": 0.2, "color": "ffffffff" }
]
},
"front-leg": {
"color": [
{ "color": "ffffff00", "curve": 0.25, "c3": 0.75 },
{ "time": 0.2, "color": "ffffffff" }
]
},
"front-wing": {
"color": [
{ "color": "ffffff00", "curve": 0.25, "c3": 0.75 },
{ "time": 0.2, "color": "ffffffff" }
]
},
"head": {
"color": [
{ "color": "ffffff00", "curve": 0.25, "c3": 0.75 },
{ "time": 0.2, "color": "ffffffff" }
]
},
"rear-arm": {
"color": [
{ "color": "ffffff00", "curve": 0.25, "c3": 0.75 },
{ "time": 0.2, "color": "ffffffff" }
]
},
"rear-leg": {
"color": [
{ "color": "ffffff00", "curve": 0.25, "c3": 0.75 },
{ "time": 0.2, "color": "ffffffff" }
]
},
"rear-wing": {
"color": [
{ "color": "ffffff00", "curve": 0.25, "c3": 0.75 },
{ "time": 0.2, "color": "ffffffff" }
]
},
"tail": {
"color": [
{ "color": "ffffff00", "curve": 0.25, "c3": 0.75 },
{ "time": 0.2, "color": "ffffffff" }
]
}
},
"bones": {
"rear-wing3": {
"rotate": [
{ "angle": 4.16, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
{ "time": 0.2, "angle": -1.28, "curve": 0.25, "c3": 0.75 },
{ "time": 0.5, "angle": 6.31, "curve": 0.265, "c3": 0.618, "c4": 0.43 },
{ "time": 0.6, "angle": 4.16 }
]
},
"rear-wing": {
"rotate": [
{ "angle": -0.11, "curve": 0.377, "c2": 0.61, "c3": 0.72 },
{ "time": 0.0667, "angle": -1.28, "curve": 0.25, "c3": 0.75 },
{ "time": 0.3667, "angle": 6.31, "curve": 0.243, "c3": 0.674, "c4": 0.69 },
{ "time": 0.6, "angle": -0.11 }
],
"shear": [
{ "x": 5.17, "y": -1.28, "curve": 0.377, "c2": 0.61, "c3": 0.72 },
{ "time": 0.0667, "curve": 0.25, "c3": 0.75 },
{ "time": 0.3667, "x": 33.48, "y": -8.29, "curve": 0.243, "c3": 0.674, "c4": 0.69 },
{ "time": 0.6, "x": 5.17, "y": -1.28 }
]
},
"rear-wing2": {
"rotate": [
{ "angle": 1.96, "curve": 0.379, "c2": 0.53, "c3": 0.746 },
{ "time": 0.1333, "angle": -1.28, "curve": 0.25, "c3": 0.75 },
{ "time": 0.4333, "angle": 6.31, "curve": 0.247, "c3": 0.631, "c4": 0.53 },
{ "time": 0.6, "angle": 1.96 }
]
},
"front-wing4": {
"rotate": [
{ "angle": 13.1, "curve": 0.293, "c2": 0.18, "c3": 0.755 },
{ "time": 0.2667, "angle": -0.79, "curve": 0.25, "c3": 0.75 },
{ "time": 0.5667, "angle": 13.86, "curve": 0.302, "c3": 0.638, "c4": 0.36 },
{ "time": 0.6, "angle": 13.1 }
]
},
"front-wing3": {
"rotate": [
{ "angle": 9.7, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
{ "time": 0.2, "angle": -0.79, "curve": 0.25, "c3": 0.75 },
{ "time": 0.5, "angle": 13.86, "curve": 0.265, "c3": 0.618, "c4": 0.43 },
{ "time": 0.6, "angle": 9.7 }
]
},
"hip": {
"translate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.3, "y": 25.65, "curve": 0.25, "c3": 0.75 },
{ "time": 0.6 }
],
"scale": [
{ "x": 0.572, "y": 1.099, "curve": 0.25, "c3": 0.75 },
{ "time": 0.2333, "x": 1.118, "y": 0.737, "curve": 0.25, "c3": 0.75 },
{ "time": 0.4 }
]
},
"body": {
"rotate": [
{ "angle": -0.46, "curve": 0.377, "c2": 0.61, "c3": 0.72 },
{ "time": 0.0667, "curve": 0.25, "c3": 0.75 },
{ "time": 0.3667, "angle": -3, "curve": 0.243, "c3": 0.674, "c4": 0.69 },
{ "time": 0.6, "angle": -0.46 }
]
},
"rear-arm": {
"rotate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.3, "angle": 11.19, "curve": 0.25, "c3": 0.75 },
{ "time": 0.6 }
]
},
"head": {
"rotate": [
{ "angle": -1.28, "curve": 0.379, "c2": 0.53, "c3": 0.746 },
{ "time": 0.1333, "curve": 0.25, "c3": 0.75 },
{ "time": 0.4333, "angle": -3, "curve": 0.247, "c3": 0.631, "c4": 0.53 },
{ "time": 0.6, "angle": -1.28 }
]
},
"front-wing": {
"rotate": [
{ "angle": 4.63, "curve": 0.377, "c2": 0.61, "c3": 0.72 },
{ "time": 0.0667, "angle": -0.79, "curve": 0.25, "c3": 0.75 },
{ "time": 0.3667, "angle": 34.35, "curve": 0.243, "c3": 0.674, "c4": 0.69 },
{ "time": 0.6, "angle": 4.63 }
]
},
"rear-arm2": {
"rotate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.3, "angle": 11.19, "curve": 0.25, "c3": 0.75 },
{ "time": 0.6 }
]
},
"front-wing2": {
"rotate": [
{ "angle": 5.46, "curve": 0.379, "c2": 0.53, "c3": 0.746 },
{ "time": 0.1333, "angle": -0.79, "curve": 0.25, "c3": 0.75 },
{ "time": 0.4333, "angle": 13.86, "curve": 0.247, "c3": 0.631, "c4": 0.53 },
{ "time": 0.6, "angle": 5.46 }
]
},
"front-arm2": {
"rotate": [
{},
{ "time": 0.3, "angle": -11.71 },
{ "time": 0.6 }
]
},
"front-arm": {
"rotate": [
{},
{ "time": 0.3, "angle": -11.71 },
{ "time": 0.6 }
]
},
"rear-wing4": {
"rotate": [
{ "angle": 5.92, "curve": 0.293, "c2": 0.18, "c3": 0.755 },
{ "time": 0.2667, "angle": -1.28, "curve": 0.25, "c3": 0.75 },
{ "time": 0.5667, "angle": 6.31, "curve": 0.302, "c3": 0.638, "c4": 0.36 },
{ "time": 0.6, "angle": 5.92 }
]
}
}
}
}
}

View File

@ -1,11 +0,0 @@
{
"ver": "1.2.6",
"importer": "spine-data",
"imported": true,
"uuid": "d2cdaed1-3291-4244-a166-a4b9866af29f",
"files": [
".json"
],
"subMetas": {},
"userData": {}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 130 KiB

View File

@ -1,42 +0,0 @@
{
"ver": "1.0.26",
"importer": "image",
"imported": true,
"uuid": "312f1251-aa89-40e7-b3be-d1c40d2863b5",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "312f1251-aa89-40e7-b3be-d1c40d2863b5@6c48a",
"displayName": "poison-creep",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "repeat",
"wrapModeT": "repeat",
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0,
"isUuid": true,
"imageUuidOrDatabaseUri": "312f1251-aa89-40e7-b3be-d1c40d2863b5",
"visible": false
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"hasAlpha": true,
"type": "texture",
"fixAlphaTransparencyArtifacts": false,
"redirect": "312f1251-aa89-40e7-b3be-d1c40d2863b5@6c48a"
}
}

View File

@ -1,9 +0,0 @@
{
"ver": "1.2.0",
"importer": "directory",
"imported": true,
"uuid": "e0c86010-a0fe-4e7c-86f9-350c47be7327",
"files": [],
"subMetas": {},
"userData": {}
}

View File

@ -1,160 +0,0 @@
ranger-creep.png
size: 1024,512
format: RGBA8888
filter: Linear,Linear
repeat: none
body
rotate: false
xy: 4, 116
size: 134, 188
orig: 145, 192
offset: 10, 0
index: -1
dead-fluid
rotate: true
xy: 142, 127
size: 177, 52
orig: 177, 52
offset: 0, 0
index: -1
front-eye
rotate: true
xy: 440, 74
size: 63, 57
orig: 63, 57
offset: 0, 0
index: -1
front-iris
rotate: true
xy: 194, 310
size: 18, 30
orig: 18, 30
offset: 0, 0
index: -1
front-iris-dead
rotate: true
xy: 501, 97
size: 40, 35
orig: 40, 35
offset: 0, 0
index: -1
front-wing
rotate: true
xy: 198, 130
size: 176, 160
orig: 176, 161
offset: 0, 1
index: -1
front-wingB
rotate: false
xy: 362, 141
size: 167, 167
orig: 168, 167
offset: 0, 0
index: -1
head
rotate: true
xy: 4, 308
size: 200, 186
orig: 200, 187
offset: 0, 0
index: -1
mouth-dead
rotate: true
xy: 440, 12
size: 58, 31
orig: 58, 31
offset: 0, 0
index: -1
mouth1
rotate: true
xy: 154, 14
size: 109, 50
orig: 109, 50
offset: 0, 0
index: -1
mouth2
rotate: true
xy: 359, 312
size: 24, 42
orig: 24, 42
offset: 0, 0
index: -1
ranger creep dead fragment1
rotate: false
xy: 363, 13
size: 73, 124
orig: 73, 125
offset: 0, 1
index: -1
ranger creep dead fragment2
rotate: false
xy: 57, 9
size: 93, 103
orig: 93, 103
offset: 0, 0
index: -1
ranger creep dead fragment3
rotate: true
xy: 208, 4
size: 27, 76
orig: 27, 76
offset: 0, 0
index: -1
ranger creep dead fragment4
rotate: true
xy: 208, 35
size: 91, 82
orig: 91, 82
offset: 0, 0
index: -1
ranger creep dead fragment5
rotate: true
xy: 4, 7
size: 105, 49
orig: 105, 49
offset: 0, 0
index: -1
ranger creep dead fragment6
rotate: true
xy: 294, 37
size: 89, 65
orig: 89, 65
offset: 0, 0
index: -1
rear-eye
rotate: false
xy: 475, 18
size: 37, 52
orig: 37, 52
offset: 0, 0
index: -1
rear-iris
rotate: true
xy: 228, 311
size: 17, 29
orig: 17, 29
offset: 0, 0
index: -1
rear-iris-dead
rotate: true
xy: 288, 7
size: 24, 33
orig: 24, 33
offset: 0, 0
index: -1
rear-wing
rotate: false
xy: 359, 340
size: 166, 168
orig: 167, 168
offset: 0, 0
index: -1
rear-wingB
rotate: true
xy: 194, 332
size: 176, 161
orig: 176, 161
offset: 0, 0
index: -1

View File

@ -1,11 +0,0 @@
{
"ver": "1.0.2",
"importer": "text",
"imported": true,
"uuid": "cd3ec0f7-a0b8-4eaa-b3bf-91a3749934a0",
"files": [
".json"
],
"subMetas": {},
"userData": {}
}

View File

@ -1,709 +0,0 @@
{
"skeleton": {
"hash": "bsGun1DtXo0KTXToyqvNh4iLUFc",
"spine": "3.8.99",
"x": -43.1,
"y": -8.4,
"width": 81.2,
"height": 43.6,
"images": "",
"audio": "D:/Huy 2D Animation/works/2024/Product/super hero game/creep/ranger-creep"
},
"bones": [
{ "name": "root" },
{ "name": "character-pivot", "parent": "root", "scaleX": 0.1, "scaleY": 0.1 },
{ "name": "body", "parent": "character-pivot", "length": 100, "rotation": 95.49, "x": -29.37, "y": 12.84 },
{ "name": "head", "parent": "body", "length": 221.01, "rotation": -0.1, "x": 39.05, "y": 8.98 },
{ "name": "front-wing", "parent": "body", "length": 331.4, "rotation": 43.18, "x": -11.8, "y": 57.84 },
{ "name": "rear-wing", "parent": "body", "length": 325.66, "rotation": -46.9, "x": -21.58, "y": -80.09 },
{ "name": "mouth", "parent": "head", "x": 52.83, "y": 20.35 },
{ "name": "mouth-attack", "parent": "mouth", "x": 5.21, "y": -4.1 },
{ "name": "character-die-fragment", "parent": "body", "rotation": -95.49, "x": 41.83, "y": 46.85 },
{ "name": "ranger creep dead fragment6", "parent": "character-die-fragment", "length": 102.18, "rotation": -138.09, "x": -85.42, "y": -4.02 },
{ "name": "ranger creep dead fragment1", "parent": "character-die-fragment", "length": 156.32, "rotation": 104.82, "x": -14.25, "y": 64.23 },
{ "name": "ranger creep dead fragment3", "parent": "character-die-fragment", "length": 99.26, "rotation": 96.61, "x": 19.07, "y": 145.6 },
{ "name": "ranger creep dead fragment2", "parent": "character-die-fragment", "length": 184.61, "rotation": 50.02, "x": 29.07, "y": 71.3 },
{ "name": "ranger creep dead fragment5", "parent": "character-die-fragment", "length": 125.47, "rotation": -14.51, "x": 119.1, "y": 62.72 },
{ "name": "ranger creep dead fragment4", "parent": "character-die-fragment", "length": 121.67, "rotation": -40.24, "x": 91.94, "y": 51.29 },
{ "name": "dead-fluid", "parent": "character-pivot" }
],
"slots": [
{ "name": "dead-fluid", "bone": "dead-fluid", "color": "ffffff00", "attachment": "dead-fluid" },
{ "name": "dead-fluid-glow", "bone": "dead-fluid", "color": "ffffff00", "attachment": "dead-fluid", "blend": "additive" },
{ "name": "rear-wing", "bone": "rear-wing", "attachment": "rear-wing" },
{ "name": "front-wing", "bone": "front-wing", "attachment": "front-wing" },
{ "name": "body", "bone": "body", "attachment": "body" },
{ "name": "head", "bone": "head", "attachment": "head" },
{ "name": "rear-eye", "bone": "head", "attachment": "rear-eye" },
{ "name": "front-eye", "bone": "head", "attachment": "front-eye" },
{ "name": "front-iris", "bone": "head", "attachment": "front-iris" },
{ "name": "rear-iris", "bone": "head", "attachment": "rear-iris" },
{ "name": "mouth", "bone": "mouth", "attachment": "mouth1" },
{ "name": "mouth-dead", "bone": "mouth", "color": "ffffff00", "attachment": "mouth-dead" },
{ "name": "mouth-attack", "bone": "mouth-attack", "color": "ffffff00", "attachment": "mouth2" },
{ "name": "ranger creep dead fragment1", "bone": "ranger creep dead fragment1", "color": "ffffff00", "attachment": "ranger creep dead fragment1" },
{ "name": "ranger creep dead fragment2", "bone": "ranger creep dead fragment2", "color": "ffffff00", "attachment": "ranger creep dead fragment2" },
{ "name": "ranger creep dead fragment3", "bone": "ranger creep dead fragment3", "color": "ffffff00", "attachment": "ranger creep dead fragment3" },
{ "name": "ranger creep dead fragment4", "bone": "ranger creep dead fragment4", "color": "ffffff00", "attachment": "ranger creep dead fragment4" },
{ "name": "ranger creep dead fragment5", "bone": "ranger creep dead fragment5", "color": "ffffff00", "attachment": "ranger creep dead fragment5" },
{ "name": "ranger creep dead fragment6", "bone": "ranger creep dead fragment6", "color": "ffffff00", "attachment": "ranger creep dead fragment6" }
],
"skins": [
{
"name": "default",
"attachments": {
"body": {
"body": { "x": 93.57, "y": -15.89, "rotation": -95.49, "width": 289, "height": 383 }
},
"dead-fluid": {
"dead-fluid": { "x": 17.69, "y": -2.4, "width": 353, "height": 103 }
},
"dead-fluid-glow": {
"dead-fluid": { "x": 17.69, "y": -2.4, "width": 353, "height": 103 }
},
"front-eye": {
"front-eye": { "x": 133.09, "y": -70.84, "rotation": -95.38, "width": 126, "height": 114 }
},
"front-iris": {
"front-iris": { "x": 138.93, "y": -56.82, "rotation": -95.38, "width": 35, "height": 59 },
"front-iris-dead": { "x": 129.06, "y": -70.87, "rotation": -95.38, "width": 80, "height": 70 }
},
"front-wing": {
"front-wing": { "x": 213.52, "y": 13.42, "rotation": -138.66, "width": 352, "height": 321 },
"front-wingB": { "x": 214.48, "y": -23.06, "rotation": -48.66, "width": 335, "height": 333 }
},
"head": {
"head": { "x": 113.87, "y": -8.26, "rotation": -95.38, "width": 399, "height": 374 }
},
"mouth": {
"mouth1": { "x": -4.8, "y": -7.84, "rotation": -95.38, "width": 218, "height": 99 }
},
"mouth-attack": {
"mouth2": { "x": 7.51, "y": -1.38, "rotation": -95.38, "width": 48, "height": 84 }
},
"mouth-dead": {
"mouth-dead": { "x": -2.51, "y": 1.29, "rotation": -78.61, "width": 116, "height": 62 }
},
"ranger creep dead fragment1": {
"ranger creep dead fragment1": { "x": 85.15, "y": 8.05, "rotation": -104.82, "width": 146, "height": 249 }
},
"ranger creep dead fragment2": {
"ranger creep dead fragment2": { "x": 98.07, "y": -7.41, "rotation": -50.02, "width": 185, "height": 206 }
},
"ranger creep dead fragment3": {
"ranger creep dead fragment3": { "x": 29.95, "y": 4.3, "rotation": -96.61, "width": 53, "height": 151 }
},
"ranger creep dead fragment4": {
"ranger creep dead fragment4": { "x": 83.52, "y": -5.88, "rotation": 40.24, "width": 182, "height": 163 }
},
"ranger creep dead fragment5": {
"ranger creep dead fragment5": { "x": 58.8, "y": -17.46, "rotation": 14.51, "width": 209, "height": 98 }
},
"ranger creep dead fragment6": {
"ranger creep dead fragment6": { "x": 51.71, "y": -7.11, "rotation": 138.09, "width": 177, "height": 130 }
},
"rear-eye": {
"rear-eye": { "x": 140.46, "y": 92.69, "rotation": -95.38, "width": 73, "height": 104 }
},
"rear-iris": {
"rear-iris": { "x": 148.13, "y": 83.43, "rotation": -95.38, "width": 34, "height": 57 },
"rear-iris-dead": { "x": 142.2, "y": 94.25, "rotation": -95.38, "width": 47, "height": 66 }
},
"rear-wing": {
"rear-wing": { "x": 212.19, "y": -28.95, "rotation": -48.59, "width": 333, "height": 336 },
"rear-wingB": { "x": 216.28, "y": 7.32, "rotation": -138.59, "width": 352, "height": 322 }
}
}
}
],
"animations": {
"attack": {
"slots": {
"front-wing": {
"attachment": [
{ "time": 0.3667, "name": "front-wingB" },
{ "time": 0.5, "name": "front-wing" }
]
},
"mouth": {
"color": [
{ "time": 0.2667, "color": "ffffffff", "curve": "stepped" },
{ "time": 0.3333, "color": "ffffff00", "curve": "stepped" },
{ "time": 0.6, "color": "ffffff00", "curve": "stepped" },
{ "time": 0.8, "color": "ffffffff" }
]
},
"mouth-attack": {
"color": [
{ "time": 0.2667, "color": "ffffff00", "curve": "stepped" },
{ "time": 0.3333, "color": "ffffffff", "curve": "stepped" },
{ "time": 0.6, "color": "ffffffff", "curve": "stepped" },
{ "time": 0.8, "color": "ffffff00" }
]
},
"rear-wing": {
"attachment": [
{ "time": 0.3667, "name": "rear-wingB" },
{ "time": 0.5, "name": "rear-wing" }
]
}
},
"bones": {
"mouth": {
"translate": [
{ "curve": 0.27, "c3": 0.619, "c4": 0.41 },
{ "time": 0.2333, "y": -12.77, "curve": 0.324, "c2": 0.3, "c3": 0.66, "c4": 0.64 },
{
"time": 0.3333,
"x": 4.4,
"y": 16.08,
"curve": 0.332,
"c2": 0.33,
"c3": 0.672,
"c4": 0.68
},
{ "time": 0.6, "x": 2.43, "y": 8.87, "curve": 0.382, "c2": 0.56, "c3": 0.74 },
{ "time": 0.8 }
],
"scale": [
{ "curve": 0.27, "c3": 0.619, "c4": 0.41 },
{
"time": 0.2333,
"x": 0.451,
"y": 1.058,
"curve": 0.324,
"c2": 0.3,
"c3": 0.66,
"c4": 0.64
},
{
"time": 0.3333,
"x": 1.075,
"y": 0.419,
"curve": 0.332,
"c2": 0.33,
"c3": 0.672,
"c4": 0.68
},
{ "time": 0.6, "x": 1.042, "y": 0.68, "curve": 0.382, "c2": 0.56, "c3": 0.74 },
{ "time": 0.8 }
]
},
"mouth-attack": {
"translate": [
{ "time": 0.2667, "curve": 0.25, "c3": 0.75 },
{ "time": 0.5, "x": 4.86, "y": 35.18, "curve": 0.25, "c3": 0.75 },
{ "time": 0.8 }
]
},
"character-pivot": {
"translate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.2, "x": 28.23, "curve": "stepped" },
{ "time": 0.2667, "x": 28.23, "curve": 0.25, "c3": 0.75 },
{ "time": 0.4, "x": -50.81, "curve": "stepped" },
{ "time": 0.6, "x": -50.81, "curve": 0.25, "c3": 0.75 },
{ "time": 0.8 }
]
},
"body": {
"rotate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.2333, "angle": -7.14, "curve": 0.25, "c3": 0.75 },
{ "time": 0.6, "angle": 3.02, "curve": 0.25, "c3": 0.75 },
{ "time": 0.8 }
],
"translate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.2333, "y": 25.41, "curve": 0.25, "c3": 0.75 },
{ "time": 0.4, "x": 4.22, "y": -71.79, "curve": 0.25, "c3": 0.75 },
{ "time": 0.6, "x": -0.68, "y": 13.51, "curve": 0.25, "c3": 0.75 },
{ "time": 0.8 }
]
},
"front-wing": {
"rotate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.2667, "angle": -12.33, "curve": 0.25, "c3": 0.75 },
{ "time": 0.4667, "angle": 89.15, "curve": 0.25, "c3": 0.75 },
{ "time": 0.8 }
],
"translate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.2667, "x": 59.27, "y": 1.34, "curve": 0.25, "c3": 0.75 },
{ "time": 0.4667, "x": 143.87, "y": -8.95, "curve": 0.25, "c3": 0.75 },
{ "time": 0.8 }
],
"scale": [
{ "x": 1.221, "y": 0.619, "curve": 0.25, "c3": 0.75 },
{ "time": 0.2667, "curve": 0.25, "c3": 0.75 },
{ "time": 0.3667, "x": 0.901, "y": 1.323, "curve": 0.25, "c3": 0.75 },
{ "time": 0.4667, "x": 1.409, "y": 0.635, "curve": 0.25, "c3": 0.75 },
{ "time": 0.8, "x": 1.221, "y": 0.619 }
]
},
"rear-wing": {
"rotate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.2667, "angle": 14.44, "curve": 0.25, "c3": 0.75 },
{ "time": 0.4667, "angle": -82.4, "curve": 0.25, "c3": 0.75 },
{ "time": 0.8 }
],
"translate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.2667, "x": 67.73, "y": 1.54, "curve": 0.25, "c3": 0.75 },
{ "time": 0.4667, "x": 135.1, "y": -7.55, "curve": 0.25, "c3": 0.75 },
{ "time": 0.8 }
],
"scale": [
{ "x": 1.221, "y": 0.619, "curve": 0.25, "c3": 0.75 },
{ "time": 0.2667, "curve": 0.25, "c3": 0.75 },
{ "time": 0.3667, "x": 0.901, "y": 1.323, "curve": 0.25, "c3": 0.75 },
{ "time": 0.4667, "x": 1.409, "y": 0.635, "curve": 0.25, "c3": 0.75 },
{ "time": 0.8, "x": 1.221, "y": 0.619 }
]
},
"head": {
"rotate": [
{ "angle": 2.26, "curve": 0.25, "c3": 0.75 },
{ "time": 0.2667, "angle": -4.33, "curve": 0.25, "c3": 0.75 },
{ "time": 0.5, "angle": 4.85, "curve": 0.25, "c3": 0.75 },
{ "time": 0.8, "angle": 2.26 }
],
"translate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.2667, "x": 14.3, "y": -8.15, "curve": 0.25, "c3": 0.75 },
{ "time": 0.5, "x": -18.44, "y": 12.58, "curve": 0.25, "c3": 0.75 },
{ "time": 0.8 }
]
}
}
},
"dead": {
"slots": {
"body": {
"color": [
{ "time": 0.0667, "color": "ffffffff", "curve": "stepped" },
{ "time": 0.1333, "color": "ffffff00" }
]
},
"dead-fluid": {
"color": [
{ "time": 0.1333, "color": "ffffff00", "curve": 0, "c2": 0.45, "c3": 0.75 },
{ "time": 0.3, "color": "ffffffff", "curve": "stepped" },
{ "time": 0.5, "color": "ffffffff", "curve": 0.709, "c2": 0.04, "c3": 0.922, "c4": 0.97 },
{ "time": 1, "color": "ffffff00" }
]
},
"dead-fluid-glow": {
"color": [
{ "time": 0.1333, "color": "ffffff00", "curve": 0, "c2": 0.45, "c3": 0.75 },
{ "time": 0.3, "color": "ffffffff", "curve": "stepped" },
{ "time": 0.8, "color": "ffffffff", "curve": 0.709, "c2": 0.04, "c3": 0.922, "c4": 0.97 },
{ "time": 1, "color": "ffffff00" }
]
},
"front-eye": {
"color": [
{ "time": 0.0667, "color": "ffffffff", "curve": "stepped" },
{ "time": 0.1333, "color": "ffffff00" }
]
},
"front-iris": {
"color": [
{ "time": 0.0667, "color": "ffffffff", "curve": "stepped" },
{ "time": 0.1333, "color": "ffffff00" }
],
"attachment": [
{ "time": 0.0667, "name": "front-iris-dead" }
]
},
"front-wing": {
"color": [
{ "time": 0.0667, "color": "ffffffff", "curve": "stepped" },
{ "time": 0.1333, "color": "ffffff00" }
]
},
"head": {
"color": [
{ "time": 0.0667, "color": "ffffffff", "curve": "stepped" },
{ "time": 0.1333, "color": "ffffff00" }
]
},
"mouth": {
"color": [
{ "color": "ffffffff", "curve": "stepped" },
{ "time": 0.0667, "color": "ffffff00" }
]
},
"mouth-dead": {
"color": [
{ "color": "ffffff00", "curve": "stepped" },
{ "time": 0.0667, "color": "ffffffff", "curve": "stepped" },
{ "time": 0.1333, "color": "ffffff00" }
]
},
"ranger creep dead fragment1": {
"color": [
{ "time": 0.1, "color": "ffffff00", "curve": 0.25, "c3": 0.75 },
{ "time": 0.1667, "color": "ffffffff", "curve": "stepped" },
{ "time": 0.2333, "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
{ "time": 0.3, "color": "ffffff00" }
]
},
"ranger creep dead fragment2": {
"color": [
{ "time": 0.0667, "color": "ffffff00", "curve": 0.25, "c3": 0.75 },
{ "time": 0.1333, "color": "ffffffff", "curve": "stepped" },
{ "time": 0.2, "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
{ "time": 0.2667, "color": "ffffff00" }
]
},
"ranger creep dead fragment3": {
"color": [
{ "time": 0.0667, "color": "ffffff00", "curve": 0.25, "c3": 0.75 },
{ "time": 0.1333, "color": "ffffffff", "curve": "stepped" },
{ "time": 0.2333, "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
{ "time": 0.3, "color": "ffffff00" }
]
},
"ranger creep dead fragment4": {
"color": [
{ "time": 0.0667, "color": "ffffff00", "curve": 0.25, "c3": 0.75 },
{ "time": 0.1333, "color": "ffffffff", "curve": "stepped" },
{ "time": 0.1667, "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
{ "time": 0.2333, "color": "ffffff00" }
]
},
"ranger creep dead fragment5": {
"color": [
{ "time": 0.0667, "color": "ffffff00", "curve": 0.25, "c3": 0.75 },
{ "time": 0.1333, "color": "ffffffff", "curve": "stepped" },
{ "time": 0.2, "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
{ "time": 0.2667, "color": "ffffff00" }
]
},
"ranger creep dead fragment6": {
"color": [
{ "time": 0.1, "color": "ffffff00", "curve": 0.25, "c3": 0.75 },
{ "time": 0.1667, "color": "ffffffff", "curve": "stepped" },
{ "time": 0.2333, "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
{ "time": 0.3, "color": "ffffff00" }
]
},
"rear-eye": {
"color": [
{ "time": 0.0667, "color": "ffffffff", "curve": "stepped" },
{ "time": 0.1333, "color": "ffffff00" }
]
},
"rear-iris": {
"color": [
{ "time": 0.0667, "color": "ffffffff", "curve": "stepped" },
{ "time": 0.1333, "color": "ffffff00" }
],
"attachment": [
{ "time": 0.0667, "name": "rear-iris-dead" }
]
},
"rear-wing": {
"color": [
{ "time": 0.0667, "color": "ffffffff", "curve": "stepped" },
{ "time": 0.1333, "color": "ffffff00" }
]
}
},
"bones": {
"rear-wing": {
"rotate": [
{ "curve": 0.242, "c3": 0.667, "c4": 0.67 },
{ "time": 0.1333, "angle": -24.73, "curve": 0.379, "c2": 0.6, "c3": 0.724 },
{ "time": 0.4, "angle": -30.33 }
],
"translate": [
{ "x": 30.49, "y": -2.93, "curve": 0.242, "c3": 0.667, "c4": 0.67 },
{ "time": 0.1333, "x": 69.3, "y": -68.5, "curve": 0.379, "c2": 0.6, "c3": 0.724 },
{ "time": 0.4, "x": 78.08, "y": -83.33 }
],
"scale": [
{ "x": 1.084, "y": 1.227 }
]
},
"front-wing": {
"rotate": [
{ "curve": 0.242, "c3": 0.667, "c4": 0.67 },
{ "time": 0.1333, "angle": -32.45, "curve": 0.379, "c2": 0.6, "c3": 0.724 },
{ "time": 0.4, "angle": -39.79 }
],
"translate": [
{ "x": 30.49, "y": -2.93, "curve": 0.242, "c3": 0.667, "c4": 0.67 },
{ "time": 0.1333, "x": 70.93, "y": -29.92, "curve": 0.379, "c2": 0.6, "c3": 0.724 },
{ "time": 0.4, "x": 80.07, "y": -36.02 }
],
"scale": [
{ "x": 1.084, "y": 1.227 }
]
},
"body": {
"rotate": [
{ "curve": 0.242, "c3": 0.667, "c4": 0.67 },
{ "time": 0.1, "angle": -10.22, "curve": 0.379, "c2": 0.6, "c3": 0.724 },
{ "time": 0.4, "angle": -12.53 }
],
"translate": [
{ "curve": 0.242, "c3": 0.667, "c4": 0.67 },
{ "time": 0.2, "x": 32.19, "y": -3.98, "curve": 0.379, "c2": 0.6, "c3": 0.724 },
{ "time": 0.4, "x": 39.48, "y": -4.88 }
]
},
"head": {
"rotate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.2, "angle": -19.32 }
],
"translate": [
{ "x": -70.12, "y": 6.74, "curve": 0.25, "c3": 0.75 },
{ "time": 0.2, "x": -40.02, "y": -1.5 }
]
},
"ranger creep dead fragment1": {
"rotate": [
{ "angle": -45.27 }
],
"translate": [
{ "time": 0.1 },
{ "time": 0.3, "x": 173.36, "y": 294.84 }
]
},
"ranger creep dead fragment2": {
"translate": [
{ "time": 0.0667, "curve": 0.161, "c2": 0.06, "c3": 0.654, "c4": 0.8 },
{ "time": 0.2667, "x": 247.22, "y": 224.4 }
]
},
"ranger creep dead fragment3": {
"rotate": [
{ "angle": -74.21 }
],
"translate": [
{ "time": 0.0667, "curve": 0.161, "c2": 0.06, "c3": 0.654, "c4": 0.8 },
{ "time": 0.3, "x": 147.75, "y": 60.91 }
]
},
"ranger creep dead fragment4": {
"rotate": [
{ "angle": 36.82 }
],
"translate": [
{ "time": 0.0667, "curve": 0.161, "c2": 0.06, "c3": 0.654, "c4": 0.8 },
{ "time": 0.2333, "x": 193.04, "y": -11.52 }
]
},
"ranger creep dead fragment5": {
"translate": [
{ "time": 0.0667, "curve": 0.161, "c2": 0.06, "c3": 0.654, "c4": 0.8 },
{ "time": 0.2667, "x": 249.4, "y": -64.55 }
]
},
"ranger creep dead fragment6": {
"rotate": [
{ "angle": 137.56 }
],
"translate": [
{ "time": 0.1, "curve": 0.161, "c2": 0.06, "c3": 0.654, "c4": 0.8 },
{ "time": 0.3, "x": 247.72, "y": -2.31 }
]
},
"dead-fluid": {
"scale": [
{ "x": 0.8, "y": 0.8, "curve": "stepped" },
{ "time": 0.1333, "x": 0.8, "y": 0.8, "curve": 0, "c2": 0.4, "c3": 0.75 },
{ "time": 0.4, "x": 1.296, "y": 1.296, "curve": 0.25, "c3": 0.75 },
{ "time": 0.6, "x": 1.192, "y": 1.192, "curve": 0.25, "c3": 0.75 },
{ "time": 1, "x": 1.2, "y": 1.2 }
]
}
}
},
"move": {
"slots": {
"front-wing": {
"attachment": [
{ "time": 0.0333, "name": "front-wingB" },
{ "time": 0.3333, "name": "front-wing" },
{ "time": 0.6333, "name": "front-wingB" },
{ "time": 0.9333, "name": "front-wing" }
]
},
"rear-wing": {
"attachment": [
{ "time": 0.0333, "name": "rear-wingB" },
{ "time": 0.3333, "name": "rear-wing" },
{ "time": 0.6333, "name": "rear-wingB" },
{ "time": 0.9333, "name": "rear-wing" }
]
}
},
"bones": {
"body": {
"translate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.3, "x": -6.31, "y": 65.66, "curve": 0.25, "c3": 0.75 },
{ "time": 0.6, "curve": 0.25, "c3": 0.75 },
{ "time": 0.9, "x": -6.31, "y": 65.66, "curve": 0.25, "c3": 0.75 },
{ "time": 1.2 }
]
},
"rear-wing": {
"rotate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.3, "angle": -58.92, "curve": 0.25, "c3": 0.75 },
{ "time": 0.6, "curve": 0.25, "c3": 0.75 },
{ "time": 0.9, "angle": -58.92, "curve": 0.25, "c3": 0.75 },
{ "time": 1.2 }
],
"translate": [
{ "x": 30.49, "y": -2.93, "curve": 0.369, "c2": 0.47, "c3": 0.753 },
{ "time": 0.1667, "x": -56.04, "y": 5.38, "curve": 0.25, "c3": 0.75 },
{ "time": 0.4667, "x": 44.83, "y": -4.31, "curve": 0.25, "c3": 0.75 },
{ "time": 0.7667, "x": 11.21, "y": -1.08, "curve": 0.25, "c3": 0.75 },
{ "time": 1.0667, "x": 44.83, "y": -4.31, "curve": 0.254, "c3": 0.621, "c4": 0.47 },
{ "time": 1.2, "x": 30.49, "y": -2.93 }
],
"scale": [
{ "x": 1.084, "y": 1.227, "curve": 0.381, "c2": 0.55, "c3": 0.742 },
{ "time": 0.0667, "x": 1.214, "y": 0.808, "curve": 0.25, "c3": 0.75 },
{ "time": 0.2, "x": 0.463, "y": 1.946, "curve": 0.25, "c3": 0.75 },
{ "time": 0.3667, "x": 1.214, "y": 0.808, "curve": 0.25, "c3": 0.75 },
{ "time": 0.5, "x": 0.861, "y": 1.946, "curve": 0.25, "c3": 0.75 },
{ "time": 0.6667, "x": 1.214, "y": 0.808, "curve": 0.25, "c3": 0.75 },
{ "time": 0.8, "x": 0.861, "y": 1.946, "curve": 0.25, "c3": 0.75 },
{ "time": 0.9667, "x": 1.214, "y": 0.808, "curve": 0.25, "c3": 0.75 },
{ "time": 1.1, "x": 0.861, "y": 1.946, "curve": 0.245, "c3": 0.637, "c4": 0.56 },
{ "time": 1.2, "x": 1.084, "y": 1.227 }
]
},
"front-wing": {
"rotate": [
{ "curve": 0.25, "c3": 0.75 },
{ "time": 0.3, "angle": 65.53, "curve": 0.25, "c3": 0.75 },
{ "time": 0.6, "curve": 0.25, "c3": 0.75 },
{ "time": 0.9, "angle": 65.53, "curve": 0.25, "c3": 0.75 },
{ "time": 1.2 }
],
"translate": [
{ "x": 30.49, "y": -2.93, "curve": 0.369, "c2": 0.47, "c3": 0.753 },
{ "time": 0.1667, "x": -56.04, "y": 5.38, "curve": 0.25, "c3": 0.75 },
{ "time": 0.4667, "x": 44.83, "y": -4.31, "curve": 0.25, "c3": 0.75 },
{ "time": 0.7667, "x": 11.21, "y": -1.08, "curve": 0.25, "c3": 0.75 },
{ "time": 1.0667, "x": 44.83, "y": -4.31, "curve": 0.254, "c3": 0.621, "c4": 0.47 },
{ "time": 1.2, "x": 30.49, "y": -2.93 }
],
"scale": [
{ "x": 1.084, "y": 1.227, "curve": 0.381, "c2": 0.55, "c3": 0.742 },
{ "time": 0.0667, "x": 1.214, "y": 0.808, "curve": 0.25, "c3": 0.75 },
{ "time": 0.2, "x": 0.463, "y": 1.946, "curve": 0.25, "c3": 0.75 },
{ "time": 0.3667, "x": 1.214, "y": 0.808, "curve": 0.25, "c3": 0.75 },
{ "time": 0.5, "x": 0.861, "y": 1.946, "curve": 0.25, "c3": 0.75 },
{ "time": 0.6667, "x": 1.214, "y": 0.808, "curve": 0.25, "c3": 0.75 },
{ "time": 0.8, "x": 0.861, "y": 1.946, "curve": 0.25, "c3": 0.75 },
{ "time": 0.9667, "x": 1.214, "y": 0.808, "curve": 0.25, "c3": 0.75 },
{ "time": 1.1, "x": 0.861, "y": 1.946, "curve": 0.245, "c3": 0.637, "c4": 0.56 },
{ "time": 1.2, "x": 1.084, "y": 1.227 }
]
},
"head": {
"translate": [
{ "x": -70.12, "y": 6.74, "curve": 0.382, "c2": 0.57, "c3": 0.735 },
{ "time": 0.1, "x": -100.87, "y": 9.69, "curve": 0.25, "c3": 0.75 },
{ "time": 0.4, "x": -26.15, "y": 2.51, "curve": 0.25, "c3": 0.75 },
{ "time": 0.7, "x": -100.87, "y": 9.69, "curve": 0.25, "c3": 0.75 },
{ "time": 1, "x": 7.47, "y": -0.72, "curve": 0.243, "c3": 0.649, "c4": 0.6 },
{ "time": 1.2, "x": -70.12, "y": 6.74 }
]
}
}
},
"spawn": {
"slots": {
"front-wing": {
"attachment": [
{ "name": "front-wingB" },
{ "time": 0.1333, "name": "front-wing" }
]
},
"rear-wing": {
"attachment": [
{ "name": "rear-wingB" },
{ "time": 0.1333, "name": "rear-wing" }
]
}
},
"bones": {
"front-wing": {
"rotate": [
{ "angle": -159.63, "curve": 0.25, "c3": 0.75 },
{ "time": 0.2, "angle": 13.94, "curve": 0.25, "c3": 0.75 },
{ "time": 0.4 }
],
"translate": [
{ "x": 143.86, "y": 161.43, "curve": 0.25, "c3": 0.75 },
{ "time": 0.2667, "x": 10.92, "y": -1.05, "curve": 0.25, "c3": 0.75 },
{ "time": 0.4, "x": 30.49, "y": -2.93 }
],
"scale": [
{ "x": 0.743, "y": 1.141, "curve": 0.25, "c3": 0.75 },
{ "time": 0.2, "x": 1.084, "y": 1.227 }
]
},
"rear-wing": {
"rotate": [
{ "angle": 151.22, "curve": 0.25, "c3": 0.75 },
{ "time": 0.2, "angle": -22.09, "curve": 0.25, "c3": 0.75 },
{ "time": 0.4 }
],
"translate": [
{ "x": 115.9, "y": -129.61, "curve": 0.25, "c3": 0.75 },
{ "time": 0.2667, "x": 10.92, "y": -1.05, "curve": 0.25, "c3": 0.75 },
{ "time": 0.4, "x": 30.49, "y": -2.93 }
],
"scale": [
{ "x": 0.783, "y": 0.937, "curve": 0.25, "c3": 0.75 },
{ "time": 0.2, "x": 1.084, "y": 1.227 }
]
},
"body": {
"translate": [
{ "x": -1.66, "y": 17.28, "curve": 0.25, "c3": 0.75 },
{ "time": 0.2, "x": 2.23, "y": -23.18, "curve": 0.25, "c3": 0.75 },
{ "time": 0.4 }
]
},
"head": {
"translate": [
{ "x": 10.48, "y": -0.02, "curve": "stepped" },
{ "time": 0.0667, "x": 10.48, "y": -0.02, "curve": 0.25, "c3": 0.75 },
{ "time": 0.2667, "x": -113, "y": 6.82, "curve": 0.25, "c3": 0.75 },
{ "time": 0.4, "x": -70.12, "y": 6.74 }
]
},
"character-pivot": {
"scale": [
{ "x": 0.681, "y": 1.172, "curve": 0.25, "c3": 0.75 },
{ "time": 0.2, "x": 1.123, "y": 0.828, "curve": 0.25, "c3": 0.75 },
{ "time": 0.4 }
]
}
},
"drawOrder": [
{
"offsets": [
{ "slot": "rear-wing", "offset": 9 },
{ "slot": "front-wing", "offset": 9 }
]
},
{ "time": 0.1333 }
]
}
}
}

View File

@ -1,11 +0,0 @@
{
"ver": "1.2.6",
"importer": "spine-data",
"imported": true,
"uuid": "3708c091-04be-4aff-ab87-01bd69df4b11",
"files": [
".json"
],
"subMetas": {},
"userData": {}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 193 KiB

View File

@ -1,42 +0,0 @@
{
"ver": "1.0.26",
"importer": "image",
"imported": true,
"uuid": "6515104a-5832-455a-ae9c-e36e556fd34e",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "6515104a-5832-455a-ae9c-e36e556fd34e@6c48a",
"displayName": "ranger-creep",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "repeat",
"wrapModeT": "repeat",
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0,
"isUuid": true,
"imageUuidOrDatabaseUri": "6515104a-5832-455a-ae9c-e36e556fd34e",
"visible": false
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"hasAlpha": true,
"type": "texture",
"fixAlphaTransparencyArtifacts": false,
"redirect": "6515104a-5832-455a-ae9c-e36e556fd34e@6c48a"
}
}

View File

@ -1,9 +0,0 @@
{
"ver": "1.2.0",
"importer": "directory",
"imported": true,
"uuid": "1488d7fe-ccb6-450e-8eb4-2ae29c459533",
"files": [],
"subMetas": {},
"userData": {}
}

View File

@ -1,9 +0,0 @@
{
"ver": "1.2.0",
"importer": "directory",
"imported": true,
"uuid": "4b3ae144-42a7-4c29-9312-d5ef8bacb4d6",
"files": [],
"subMetas": {},
"userData": {}
}

View File

@ -1,244 +0,0 @@
character-warrior.png
size: 1024,256
format: RGBA8888
filter: Linear,Linear
repeat: none
VFX-SwordSwing_0000
rotate: true
xy: 129, 95
size: 157, 115
orig: 160, 160
offset: 2, 17
index: -1
VFX-SwordSwing_0001
rotate: true
xy: 248, 130
size: 122, 112
orig: 160, 160
offset: 37, 20
index: -1
VFX-SwordSwing_0002
rotate: false
xy: 276, 14
size: 99, 112
orig: 160, 160
offset: 59, 21
index: -1
VFX-SwordSwing_0003
rotate: true
xy: 106, 17
size: 59, 109
orig: 160, 160
offset: 75, 25
index: -1
VFX-SwordSwing_0004
rotate: true
xy: 504, 134
size: 22, 15
orig: 160, 160
offset: 97, 119
index: -1
VFX-slash_0000
rotate: false
xy: 379, 59
size: 57, 78
orig: 80, 80
offset: 12, 0
index: -1
VFX-slash_0001
rotate: false
xy: 379, 7
size: 57, 48
orig: 80, 80
offset: 12, 1
index: -1
VFX-slash_0002
rotate: true
xy: 477, 200
size: 52, 34
orig: 80, 80
offset: 15, 1
index: -1
body
rotate: false
xy: 467, 11
size: 44, 44
orig: 44, 44
offset: 0, 0
index: -1
character-spawn_2
rotate: false
xy: 4, 80
size: 121, 172
orig: 121, 172
offset: 0, 0
index: -1
front-arm
rotate: false
xy: 477, 123
size: 23, 33
orig: 23, 33
offset: 0, 0
index: -1
front-eye
rotate: false
xy: 506, 178
size: 18, 18
orig: 18, 18
offset: 0, 0
index: -1
front-eye2
rotate: false
xy: 216, 8
size: 16, 5
orig: 16, 5
offset: 0, 0
index: -1
front-iris
rotate: false
xy: 164, 4
size: 5, 9
orig: 5, 9
offset: 0, 0
index: -1
front-leg
rotate: false
xy: 248, 97
size: 24, 29
orig: 24, 29
offset: 0, 0
index: -1
head
rotate: false
xy: 364, 141
size: 109, 111
orig: 109, 111
offset: 0, 0
index: -1
mouth
rotate: false
xy: 254, 10
size: 13, 3
orig: 13, 3
offset: 0, 0
index: -1
mouth2
rotate: false
xy: 191, 7
size: 11, 6
orig: 11, 6
offset: 0, 0
index: -1
nose
rotate: false
xy: 173, 4
size: 5, 9
orig: 5, 9
offset: 0, 0
index: -1
rear-arm
rotate: false
xy: 477, 160
size: 25, 36
orig: 25, 36
offset: 0, 0
index: -1
rear-armB
rotate: false
xy: 477, 86
size: 23, 33
orig: 23, 33
offset: 0, 0
index: -1
rear-eye
rotate: true
xy: 506, 160
size: 14, 15
orig: 14, 15
offset: 0, 0
index: -1
rear-eye2
rotate: false
xy: 236, 9
size: 14, 4
orig: 14, 4
offset: 0, 0
index: -1
rear-iris
rotate: false
xy: 182, 5
size: 5, 8
orig: 5, 8
offset: 0, 0
index: -1
rear-leg
rotate: true
xy: 477, 60
size: 22, 24
orig: 22, 24
offset: 0, 0
index: -1
rear-thumb
rotate: false
xy: 145, 80
size: 11, 11
orig: 11, 11
offset: 0, 0
index: -1
scarf
rotate: true
xy: 440, 10
size: 45, 23
orig: 45, 23
offset: 0, 0
index: -1
shield-icon
rotate: false
xy: 206, 7
size: 6, 6
orig: 6, 6
offset: 0, 0
index: -1
sword
rotate: true
xy: 440, 59
size: 78, 33
orig: 78, 33
offset: 0, 0
index: -1
sword-knot
rotate: false
xy: 219, 17
size: 51, 74
orig: 51, 74
offset: 0, 0
index: -1
sword-vfx
rotate: true
xy: 4, 8
size: 68, 98
orig: 70, 100
offset: 1, 1
index: -1
vfx-impact
rotate: false
xy: 129, 80
size: 12, 11
orig: 13, 13
offset: 0, 1
index: -1
vfx-strike
rotate: false
xy: 106, 4
size: 31, 9
orig: 32, 9
offset: 1, 0
index: -1
vfx-thrust
rotate: false
xy: 141, 4
size: 19, 9
orig: 19, 9
offset: 0, 0
index: -1

View File

@ -1,11 +0,0 @@
{
"ver": "1.0.2",
"importer": "text",
"imported": true,
"uuid": "d6668752-4f73-4b6a-9939-62ab38bd17e5",
"files": [
".json"
],
"subMetas": {},
"userData": {}
}

View File

@ -1,11 +0,0 @@
{
"ver": "1.2.6",
"importer": "spine-data",
"imported": true,
"uuid": "91a9893f-20d4-4d93-aafe-e62a189c5a84",
"files": [
".json"
],
"subMetas": {},
"userData": {}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 91 KiB

View File

@ -1,42 +0,0 @@
{
"ver": "1.0.26",
"importer": "image",
"imported": true,
"uuid": "8449067a-ff2f-429f-b285-739a2096e6d2",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "8449067a-ff2f-429f-b285-739a2096e6d2@6c48a",
"displayName": "character-warrior",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "repeat",
"wrapModeT": "repeat",
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0,
"isUuid": true,
"imageUuidOrDatabaseUri": "8449067a-ff2f-429f-b285-739a2096e6d2",
"visible": false
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"hasAlpha": true,
"type": "texture",
"fixAlphaTransparencyArtifacts": false,
"redirect": "8449067a-ff2f-429f-b285-739a2096e6d2@6c48a"
}
}

View File

@ -1,57 +0,0 @@
[
{
"no": 1,
"name_id": "C1",
"group": "Box",
"data_name": "Heal Hp",
"visual_name": "Heal Hp",
"descriptions": "Cộng điểm hồi máu",
"hp": 50,
"value": 5,
"unit": "hp/s"
},
{
"no": 2,
"name_id": "C2",
"group": "Box",
"data_name": "Atk",
"visual_name": "Atk",
"descriptions": "Cộng điểm tấn công",
"hp": 50,
"value": 50,
"unit": "dmg"
},
{
"no": 3,
"name_id": "C3",
"group": "Box",
"data_name": "Hp",
"visual_name": "Hp",
"descriptions": "Cộng điểm HP",
"hp": 50,
"value": 100,
"unit": "hp"
},
{
"no": 4,
"name_id": "C4",
"group": "Box",
"data_name": "Move Speed",
"visual_name": "Move Speed",
"descriptions": "Công điểm tốc độ chạy",
"hp": 50,
"value": 0.5,
"unit": "unit/s"
},
{
"no": 5,
"name_id": "C5",
"group": "Box",
"data_name": "Iron Shield",
"visual_name": "Iron Shield",
"descriptions": "Cộng điểm bất tử.",
"hp": 50,
"value": 10,
"unit": "s"
}
]

View File

@ -1,11 +0,0 @@
{
"ver": "2.0.1",
"importer": "json",
"imported": true,
"uuid": "13740875-f9e2-4c67-9a1a-365973a48780",
"files": [
".json"
],
"subMetas": {},
"userData": {}
}

View File

@ -9,7 +9,7 @@
"exp": 5, "exp": 5,
"movespeed": 1, "movespeed": 1,
"atkrange": 1, "atkrange": 1,
"atkcooldown": 3, "atkcooldown": 1,
"visualrange": 6, "visualrange": 6,
"skilleffect": "Critdmg" "skilleffect": "Critdmg"
}, },
@ -21,7 +21,7 @@
"hp": 500, "hp": 500,
"atkspeed": 50, "atkspeed": 50,
"exp": 6, "exp": 6,
"movespeed": 1.5, "movespeed": 1,
"atkrange": 6, "atkrange": 6,
"atkcooldown": 1, "atkcooldown": 1,
"visualrange": 6, "visualrange": 6,
@ -37,7 +37,7 @@
"exp": 7, "exp": 7,
"movespeed": 1, "movespeed": 1,
"atkrange": 6, "atkrange": 6,
"atkcooldown": 1.5, "atkcooldown": 1,
"visualrange": 6, "visualrange": 6,
"skilleffect": "Slow" "skilleffect": "Slow"
}, },
@ -51,7 +51,7 @@
"exp": 50, "exp": 50,
"movespeed": 1, "movespeed": 1,
"atkrange": 6, "atkrange": 6,
"atkcooldown": 3, "atkcooldown": 1,
"visualrange": 10, "visualrange": 10,
"skilleffect": "Spawn" "skilleffect": "Spawn"
}, },
@ -65,7 +65,7 @@
"exp": 100, "exp": 100,
"movespeed": 1, "movespeed": 1,
"atkrange": 1, "atkrange": 1,
"atkcooldown": 3, "atkcooldown": 1,
"visualrange": 10, "visualrange": 10,
"skilleffect": "Splits" "skilleffect": "Splits"
}, },
@ -79,7 +79,7 @@
"exp": 150, "exp": 150,
"movespeed": 1, "movespeed": 1,
"atkrange": 6, "atkrange": 6,
"atkcooldown": 2, "atkcooldown": 1,
"visualrange": 10, "visualrange": 10,
"skilleffect": "Immortal" "skilleffect": "Immortal"
}, },
@ -93,7 +93,7 @@
"exp": 200, "exp": 200,
"movespeed": 1, "movespeed": 1,
"atkrange": 6, "atkrange": 6,
"atkcooldown": 2, "atkcooldown": 1,
"visualrange": 10, "visualrange": 10,
"skilleffect": "Heal" "skilleffect": "Heal"
} }

View File

@ -1,192 +0,0 @@
[
{
"no": 1,
"name_id": "W1",
"group": "Wall",
"data_name": "Wooden Wall",
"visual_name": "Wooden Wall",
"descriptions": "Tường gỗ không đi qua được, che đạn"
},
{
"no": 2,
"name_id": "W2",
"group": "Wall",
"data_name": "Brick Wall",
"visual_name": "Brick Wall",
"descriptions": "Tường gạch không đi qua được, che đạn"
},
{
"no": 3,
"name_id": "W3",
"group": "Wall",
"data_name": "Stone Wall",
"visual_name": "Stone Wall",
"descriptions": "Tường đá không đi qua được, che đạn"
},
{
"no": 4,
"name_id": "W4",
"group": "Wall",
"data_name": "Ice Wall",
"visual_name": "Ice Wall",
"descriptions": "Tường băng không đi qua được, che đạn"
},
{
"no": 5,
"name_id": "W5",
"group": "Wall",
"data_name": "Lava Wall",
"visual_name": "Lava Wall",
"descriptions": "Tường dung nham không đi qua được, che đạn"
},
{
"no": 6,
"name_id": "T1",
"group": "Trap",
"data_name": "Spear",
"visual_name": "Spear",
"descriptions": "Bẫy giáo gây sát thương",
"value": 50,
"unit": "dmg/2s"
},
{
"no": 7,
"name_id": "T2",
"group": "Trap",
"data_name": "Poisson",
"visual_name": "Poisson",
"descriptions": "Bãi độc gây sát thương",
"value": 50,
"unit": "dmg*10s"
},
{
"no": 8,
"name_id": "T3",
"group": "Trap",
"data_name": "Lava",
"visual_name": "Lava",
"descriptions": "Dung nham gây sát thương",
"value": 500,
"unit": "dmg"
},
{
"no": 9,
"name_id": "T4",
"group": "Trap",
"data_name": "Ice",
"visual_name": "Ice",
"descriptions": "Băng giá gây sát thương, làm chậm",
"value": 200,
"unit": "dmg+ Ice 2s"
},
{
"no": 10,
"name_id": "T5",
"group": "Trap",
"data_name": "Fire",
"visual_name": "Fire",
"descriptions": "Lửa gây sát thương",
"value": 100,
"unit": "dmg*5s"
},
{
"no": 11,
"name_id": "C1",
"group": "Box",
"data_name": "Heal Hp",
"visual_name": "Heal Hp",
"descriptions": "Cộng điểm hồi máu",
"hp": 50,
"value": 5,
"unit": "hp/s"
},
{
"no": 12,
"name_id": "C2",
"group": "Box",
"data_name": "Atk",
"visual_name": "Atk",
"descriptions": "Cộng điểm tấn công",
"hp": 50,
"value": 50,
"unit": "dmg"
},
{
"no": 13,
"name_id": "C3",
"group": "Box",
"data_name": "Hp",
"visual_name": "Hp",
"descriptions": "Cộng điểm HP",
"hp": 50,
"value": 100,
"unit": "hp"
},
{
"no": 14,
"name_id": "C4",
"group": "Box",
"data_name": "Move Speed",
"visual_name": "Move Speed",
"descriptions": "Công điểm tốc độ chạy",
"hp": 50,
"value": 0.5,
"unit": "unit/s"
},
{
"no": 15,
"name_id": "C5",
"group": "Box",
"data_name": "Iron Shield",
"visual_name": "Iron Shield",
"descriptions": "Cộng điểm bất tử.",
"hp": 50,
"value": 10,
"unit": "s"
},
{
"no": 16,
"name_id": "G1",
"group": "Gate",
"data_name": "Stone Gate",
"visual_name": "Creep Gate",
"descriptions": "Mỗi 5s sinh ra 3 creep",
"hp": 100
},
{
"no": 17,
"name_id": "G2",
"group": "Gate",
"data_name": "Ice Gate",
"visual_name": "Monster Gate",
"descriptions": "Mỗi 5s sinh ra 5 creep",
"hp": 300
},
{
"no": 18,
"name_id": "G3",
"group": "Gate",
"data_name": "Dungeon Gate",
"visual_name": "Dwarf Gate",
"descriptions": "Mỗi 5s sinh ra 7 creep",
"hp": 500
},
{
"no": 19,
"name_id": "G4",
"group": "Gate",
"data_name": "Tomb Gate",
"visual_name": "Tomb Gate",
"descriptions": "Mỗi 5s sinh ra 10 creep",
"hp": 800
},
{
"no": 20,
"name_id": "G5",
"group": "Gate",
"data_name": "Hell Gate",
"visual_name": "Hell Gate",
"descriptions": "Mỗi 5s sinh ra 15 creep",
"hp": 1300
}
]

View File

@ -1,11 +0,0 @@
{
"ver": "2.0.1",
"importer": "json",
"imported": true,
"uuid": "d34023e2-531b-4185-95b8-12f1b909e31f",
"files": [
".json"
],
"subMetas": {},
"userData": {}
}

View File

@ -3,12 +3,12 @@
"no": 1, "no": 1,
"nameid": "E1", "nameid": "E1",
"group": "Melee", "group": "Melee",
"atk": 5, "atk": 1,
"hp": 10, "hp": 10,
"exp": 1, "exp": 1,
"atkspeed": 60, "atkspeed": 60,
"atkcooldown": 3, "atkcooldown": 1,
"movespeed": 3, "movespeed": 1,
"atkrange": 1, "atkrange": 1,
"visualrange": 5, "visualrange": 5,
"aoedmg": 0, "aoedmg": 0,
@ -18,12 +18,12 @@
"no": 2, "no": 2,
"nameid": "E2", "nameid": "E2",
"group": "Melee", "group": "Melee",
"atk": 7, "atk": 2,
"hp": 30, "hp": 30,
"exp": 2, "exp": 2,
"atkspeed": 50, "atkspeed": 50,
"atkcooldown": 3, "atkcooldown": 1,
"movespeed": 3, "movespeed": 1,
"atkrange": 1, "atkrange": 1,
"visualrange": 5, "visualrange": 5,
"aoedmg": 0, "aoedmg": 0,
@ -33,12 +33,12 @@
"no": 3, "no": 3,
"nameid": "E3", "nameid": "E3",
"group": "Melee", "group": "Melee",
"atk": 10, "atk": 5,
"hp": 50, "hp": 50,
"exp": 3, "exp": 3,
"atkspeed": 30, "atkspeed": 30,
"atkcooldown": 3, "atkcooldown": 1,
"movespeed": 3, "movespeed": 1,
"atkrange": 1, "atkrange": 1,
"visualrange": 5, "visualrange": 5,
"aoedmg": 0, "aoedmg": 0,
@ -52,8 +52,8 @@
"hp": 10, "hp": 10,
"exp": 4, "exp": 4,
"atkspeed": 40, "atkspeed": 40,
"atkcooldown": 2, "atkcooldown": 1,
"movespeed": 3, "movespeed": 1,
"atkrange": 5, "atkrange": 5,
"visualrange": 8, "visualrange": 8,
"aoedmg": 0, "aoedmg": 0,
@ -67,8 +67,8 @@
"hp": 20, "hp": 20,
"exp": 5, "exp": 5,
"atkspeed": 40, "atkspeed": 40,
"atkcooldown": 2, "atkcooldown": 1,
"movespeed": 3, "movespeed": 1,
"atkrange": 5, "atkrange": 5,
"visualrange": 8, "visualrange": 8,
"aoedmg": 0, "aoedmg": 0,
@ -82,8 +82,8 @@
"hp": 40, "hp": 40,
"exp": 10, "exp": 10,
"atkspeed": 30, "atkspeed": 30,
"atkcooldown": 2, "atkcooldown": 1,
"movespeed": 3, "movespeed": 1,
"atkrange": 5, "atkrange": 5,
"visualrange": 8, "visualrange": 8,
"aoedmg": 0, "aoedmg": 0,

View File

@ -1,72 +0,0 @@
[
{
"no": 1,
"name_id": "G1",
"group": "Stone Gate",
"data_name": "Creep Gate",
"descriptions": "gate có 100Hp và tầm range là 6 unit, Khi hero đi vào tầm range sẽ kích hoạt, mỗi 5s sinh ra 3 Enemy E1 và 1 enemy E2",
"creep_id1": "E1",
"creep_id2": "E2",
"gate_hp": 100,
"gate_range": 6,
"step_time": 5,
"number_creep1": 3,
"number_creep2": 1
},
{
"no": 2,
"name_id": "G2",
"group": "Ice Gate",
"data_name": "Monster Gate",
"descriptions": "gate có 300Hp và tầm range là 8 unit, Khi hero đi vào tầm range sẽ kích hoạt, mỗi 10s sinh ra 5 Enemy E1 và 2 enemy E3",
"creep_id1": "E1",
"creep_id2": "E3",
"gate_hp": 300,
"gate_range": 8,
"step_time": 10,
"number_creep1": 5,
"number_creep2": 2
},
{
"no": 3,
"name_id": "G3",
"group": "Dungeon Gate",
"data_name": "Dwarf Gate",
"descriptions": "gate có 500Hp và tầm range là 10 unit, Khi hero đi vào tầm range sẽ kích hoạt, mỗi 15s sinh ra 7 Enemy E1 và 2 enemy E4",
"creep_id1": "E1",
"creep_id2": "E4",
"gate_hp": 500,
"gate_range": 10,
"step_time": 15,
"number_creep1": 7,
"number_creep2": 2
},
{
"no": 4,
"name_id": "G4",
"group": "Tomb Gate",
"data_name": "Tomb Gate",
"descriptions": "gate có 800Hp và tầm range là 12 unit, Khi hero đi vào tầm range sẽ kích hoạt, mỗi 20s sinh ra 10 Enemy E1 và 3 enemy E5",
"creep_id1": "E1",
"creep_id2": "E5",
"gate_hp": 800,
"gate_range": 12,
"step_time": 20,
"number_creep1": 10,
"number_creep2": 3
},
{
"no": 5,
"name_id": "G5",
"group": "Hell Gate",
"data_name": "Hell Gate",
"descriptions": "gate có 1300Hp và tầm range là 14 unit, Khi hero đi vào tầm range sẽ kích hoạt, mỗi 25s sinh ra 15 Enemy E2 và 5 enemy E5",
"creep_id1": "E2",
"creep_id2": "E5",
"gate_hp": 1300,
"gate_range": 14,
"step_time": 25,
"number_creep1": 15,
"number_creep2": 5
}
]

View File

@ -1,11 +0,0 @@
{
"ver": "2.0.1",
"importer": "json",
"imported": true,
"uuid": "70674e67-f7e6-4557-b66d-78d28dfc3270",
"files": [
".json"
],
"subMetas": {},
"userData": {}
}

View File

@ -1,62 +0,0 @@
[
{
"level": 1,
"data": "PS1|1|35_AS1|1|9_PS3|1|21_AS3|1|5_PS5|1|13_AS2|1|3_PS7|1|13_AS1|1|1"
},
{
"level": 2,
"data": "PS2|1|35_AS1|1|9_PS4|1|21_AS3|1|5_PS6|1|13_AS2|1|3_PS8|1|13_AS1|1|1"
},
{
"level": 3,
"data": "PS3|1|35_AS1|1|9_PS5|1|21_AS3|1|5_PS7|1|13_AS2|1|3_PS1|1|13_AS1|1|1"
},
{
"level": 4,
"data": "PS4|1|35_AS1|1|9_PS6|1|21_AS3|1|5_PS8|1|13_AS2|1|3_PS2|1|13_AS1|1|1"
},
{
"level": 5,
"data": "PS5|1|35_AS1|1|9_PS1|1|21_AS3|1|5_PS1|1|13_AS2|1|3_PS3|1|13_AS1|1|1"
},
{
"level": 6,
"data": "PS6|1|35_AS1|1|9_PS2|1|21_AS3|1|5_PS2|1|13_AS2|1|3_PS4|1|13_AS1|1|1"
},
{
"level": 7,
"data": "PS7|1|35_AS1|1|9_PS3|1|21_AS3|1|5_PS3|1|13_AS2|1|3_PS5|1|13_AS1|1|1"
},
{
"level": 8,
"data": "PS1|1|35_AS1|1|9_PS4|1|21_AS3|1|5_PS4|1|13_AS2|1|3_PS6|1|13_AS1|1|1"
},
{
"level": 9,
"data": "PS2|1|35_AS1|1|9_PS5|1|21_AS3|1|5_PS5|1|13_AS2|1|3_PS7|1|13_AS1|1|1"
},
{
"level": 10,
"data": "PS3|1|35_AS1|1|9_PS6|1|21_AS3|1|5_PS6|1|13_AS2|1|3_PS8|1|13_AS1|1|1"
},
{
"level": 11,
"data": "PS4|1|35_AS1|1|9_PS7|1|21_AS3|1|5_PS7|1|13_AS2|1|3_PS1|1|13_AS1|1|1"
},
{
"level": 12,
"data": "PS5|1|35_AS1|1|9_PS1|1|21_AS3|1|5_PS1|1|13_AS2|1|3_PS2|1|13_AS1|1|1"
},
{
"level": 13,
"data": "PS6|1|35_AS1|1|9_PS2|1|21_AS3|1|5_PS2|1|13_AS2|1|3_PS3|1|13_AS1|1|1"
},
{
"level": 14,
"data": "PS7|1|35_AS1|1|9_PS3|1|21_AS3|1|5_PS3|1|13_AS2|1|3_PS4|1|13_AS1|1|1"
},
{
"level": 15,
"data": "PS8|1|35_AS1|1|9_PS4|1|21_AS3|1|5_PS4|1|13_AS2|1|3_PS5|1|13_AS1|1|1"
}
]

View File

@ -1,11 +0,0 @@
{
"ver": "2.0.1",
"importer": "json",
"imported": true,
"uuid": "79a9f56b-8ee5-4456-ad8d-af372e824168",
"files": [
".json"
],
"subMetas": {},
"userData": {}
}

View File

@ -1,92 +0,0 @@
[
{
"no": 1,
"map": 1,
"start_level": 1,
"end_level": 50
},
{
"no": 2,
"map": 2,
"start_level": 51,
"end_level": 100
},
{
"no": 3,
"map": 3,
"start_level": 101,
"end_level": 150
},
{
"no": 4,
"map": 4,
"start_level": 151,
"end_level": 400
},
{
"no": 5,
"map": 5,
"start_level": 401,
"end_level": 650
},
{
"no": 6,
"map": 6,
"start_level": 651,
"end_level": 900
},
{
"no": 7,
"map": 7,
"start_level": 901,
"end_level": 1150
},
{
"no": 8,
"map": 8,
"start_level": 1151,
"end_level": 1400
},
{
"no": 9,
"map": 9,
"start_level": 1401,
"end_level": 1650
},
{
"no": 10,
"map": 10,
"start_level": 1651,
"end_level": 1900
},
{
"no": 11,
"map": 11,
"start_level": 1901,
"end_level": 2150
},
{
"no": 12,
"map": 12,
"start_level": 2151,
"end_level": 2400
},
{
"no": 13,
"map": 13,
"start_level": 2401,
"end_level": 2650
},
{
"no": 14,
"map": 14,
"start_level": 2651,
"end_level": 2900
},
{
"no": 15,
"map": 15,
"start_level": 2901,
"end_level": 3150
}
]

View File

@ -1,11 +0,0 @@
{
"ver": "2.0.1",
"importer": "json",
"imported": true,
"uuid": "c16849cd-1b57-4a41-9179-ef5e81a159b4",
"files": [
".json"
],
"subMetas": {},
"userData": {}
}

View File

@ -1,77 +0,0 @@
[
{
"no": 1,
"rewardid": "PS1",
"name": "Atk"
},
{
"no": 2,
"rewardid": "PS2",
"name": "Hp"
},
{
"no": 3,
"rewardid": "PS3",
"name": "Mana"
},
{
"no": 4,
"rewardid": "PS4",
"name": "Mana Max"
},
{
"no": 5,
"rewardid": "PS5",
"name": "Exp"
},
{
"no": 6,
"rewardid": "PS6",
"name": "Move Speed"
},
{
"no": 7,
"rewardid": "PS7",
"name": "Hp Heal"
},
{
"no": 8,
"rewardid": "PS8",
"name": "AoE Range"
},
{
"no": 9,
"rewardid": "PS9",
"name": "Atk Range"
},
{
"no": 10,
"rewardid": "AS1",
"name": "Flash"
},
{
"no": 11,
"rewardid": "AS2",
"name": "WheelBlood"
},
{
"no": 12,
"rewardid": "AS3",
"name": "IronShield"
},
{
"no": 13,
"rewardid": "G",
"name": "Gold"
},
{
"no": 14,
"rewardid": "K",
"name": "Key"
},
{
"no": 15,
"rewardid": "E",
"name": "Energy"
}
]

View File

@ -1,11 +0,0 @@
{
"ver": "2.0.1",
"importer": "json",
"imported": true,
"uuid": "0c240bde-71cf-4db8-b9ca-f1e5da9a0054",
"files": [
".json"
],
"subMetas": {},
"userData": {}
}

View File

@ -1,52 +0,0 @@
[
{
"no": 1,
"name_id": "T1",
"group": "Trap",
"data_name": "Spear",
"visual_name": "Spear",
"descriptions": "Bẫy giáo gây sát thương mỗi 2s gây 50Dmg",
"value": 50,
"unit": "dmg/2s"
},
{
"no": 2,
"name_id": "T2",
"group": "Trap",
"data_name": "Poisson",
"visual_name": "Poisson",
"descriptions": "Bãi độc gây sát thương 50 dmg mỗi giây, trong 10 s",
"value": 50,
"unit": "dmg*10s"
},
{
"no": 3,
"name_id": "T3",
"group": "Trap",
"data_name": "Lava",
"visual_name": "Lava",
"descriptions": "Dung nham gây sát thương 500 dmg",
"value": 500,
"unit": "dmg"
},
{
"no": 4,
"name_id": "T4",
"group": "Trap",
"data_name": "Ice",
"visual_name": "Ice",
"descriptions": "Băng giá gây sát thương, đóng băng hero trong 2s",
"value": 200,
"unit": "dmg+ Ice 2s"
},
{
"no": 5,
"name_id": "T5",
"group": "Trap",
"data_name": "Fire",
"visual_name": "Fire",
"descriptions": "Lửa gây sát thương 100 dmg mỗi s, trong 5s",
"value": 100,
"unit": "dmg*5s"
}
]

View File

@ -1,11 +0,0 @@
{
"ver": "2.0.1",
"importer": "json",
"imported": true,
"uuid": "fe36cb96-8254-48fd-9664-899adc42f940",
"files": [
".json"
],
"subMetas": {},
"userData": {}
}

View File

@ -2,7 +2,7 @@
"ver": "1.1.50", "ver": "1.1.50",
"importer": "prefab", "importer": "prefab",
"imported": true, "imported": true,
"uuid": "d8613e9c-fe71-4034-96d1-bd8e04da8087", "uuid": "0f85c16a-b858-4c6d-9e5c-3ee2800b3b25",
"files": [ "files": [
".json" ".json"
], ],

View File

@ -2,7 +2,7 @@
"ver": "1.1.50", "ver": "1.1.50",
"importer": "prefab", "importer": "prefab",
"imported": true, "imported": true,
"uuid": "81b5f5bc-3c41-46c7-96ef-ef076f4f15f3", "uuid": "9a597d9f-3602-4202-8fa4-569697b7c5c2",
"files": [ "files": [
".json" ".json"
], ],

View File

@ -2,7 +2,7 @@
"ver": "1.1.50", "ver": "1.1.50",
"importer": "prefab", "importer": "prefab",
"imported": true, "imported": true,
"uuid": "00fe22d2-9262-49f6-b949-50802b47f579", "uuid": "1a50c928-ac4c-4dbf-8d56-d19723c7e217",
"files": [ "files": [
".json" ".json"
], ],

View File

@ -2,7 +2,7 @@
"ver": "1.1.50", "ver": "1.1.50",
"importer": "prefab", "importer": "prefab",
"imported": true, "imported": true,
"uuid": "819ede20-8c84-4abd-a8bd-f67d5e15223d", "uuid": "95a4de80-5f66-4eab-9aef-0ccb109bf102",
"files": [ "files": [
".json" ".json"
], ],

View File

@ -1,9 +0,0 @@
{
"ver": "1.2.0",
"importer": "directory",
"imported": true,
"uuid": "0435a050-9aba-4d03-a664-b8ff6001c833",
"files": [],
"subMetas": {},
"userData": {}
}

View File

@ -1,9 +0,0 @@
{
"ver": "1.2.0",
"importer": "directory",
"imported": true,
"uuid": "2fe00751-1f29-4043-bed9-64dfbdacab11",
"files": [],
"subMetas": {},
"userData": {}
}

View File

@ -1,259 +0,0 @@
[
{
"__type__": "cc.Prefab",
"_name": "ActiveSkill1",
"_objFlags": 0,
"__editorExtras__": {},
"_native": "",
"data": {
"__id__": 1
},
"optimizationPolicy": 0,
"persistent": false
},
{
"__type__": "cc.Node",
"_name": "ActiveSkill1",
"_objFlags": 0,
"__editorExtras__": {},
"_parent": null,
"_children": [
{
"__id__": 2
}
],
"_active": true,
"_components": [
{
"__id__": 13
},
{
"__id__": 15
}
],
"_prefab": {
"__id__": 17
},
"_lpos": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_lrot": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": 0,
"w": 1
},
"_lscale": {
"__type__": "cc.Vec3",
"x": 1,
"y": 5,
"z": 1
},
"_mobility": 0,
"_layer": 33554432,
"_euler": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_id": ""
},
{
"__type__": "cc.Node",
"_objFlags": 0,
"_parent": {
"__id__": 1
},
"_prefab": {
"__id__": 3
},
"__editorExtras__": {}
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 2
},
"asset": {
"__uuid__": "0919c0c2-7ab2-4f22-b311-8dd5f45c4ab7",
"__expectedType__": "cc.Prefab"
},
"fileId": "25X0jhE9BAH4a1NjqbVBZq",
"instance": {
"__id__": 4
}
},
{
"__type__": "cc.PrefabInstance",
"fileId": "ddIorE6ddNsoqT/8iLF2J/",
"prefabRootNode": {
"__id__": 1
},
"mountedChildren": [],
"mountedComponents": [],
"propertyOverrides": [
{
"__id__": 5
},
{
"__id__": 7
},
{
"__id__": 9
},
{
"__id__": 11
}
],
"removedComponents": []
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 6
},
"propertyPath": [
"_name"
],
"value": "Skill01"
},
{
"__type__": "cc.TargetInfo",
"localID": [
"25X0jhE9BAH4a1NjqbVBZq"
]
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 8
},
"propertyPath": [
"_lpos"
],
"value": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
}
},
{
"__type__": "cc.TargetInfo",
"localID": [
"25X0jhE9BAH4a1NjqbVBZq"
]
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 10
},
"propertyPath": [
"_lrot"
],
"value": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": 0,
"w": 1
}
},
{
"__type__": "cc.TargetInfo",
"localID": [
"25X0jhE9BAH4a1NjqbVBZq"
]
},
{
"__type__": "CCPropertyOverrideInfo",
"targetInfo": {
"__id__": 12
},
"propertyPath": [
"_euler"
],
"value": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
}
},
{
"__type__": "cc.TargetInfo",
"localID": [
"25X0jhE9BAH4a1NjqbVBZq"
]
},
{
"__type__": "cc.UITransform",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 1
},
"_enabled": true,
"__prefab": {
"__id__": 14
},
"_contentSize": {
"__type__": "cc.Size",
"width": 20,
"height": 50
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "6cq8SHzBZKS7Ola1L1I+VS"
},
{
"__type__": "dc247zLSm5KGa+Ip1zpVBZg",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 1
},
"_enabled": true,
"__prefab": {
"__id__": 16
},
"theme": null,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "11aAMHyh9CUqQup3celw3Q"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__id__": 0
},
"fileId": "745CurHClF+5UY+WLp6BUf",
"instance": null,
"targetOverrides": null,
"nestedPrefabInstanceRoots": [
{
"__id__": 2
}
]
}
]

View File

@ -1,13 +0,0 @@
{
"ver": "1.1.50",
"importer": "prefab",
"imported": true,
"uuid": "506ecffb-06c4-4000-b5a9-415944f7484d",
"files": [
".json"
],
"subMetas": {},
"userData": {
"syncNodeName": "ActiveSkill1"
}
}

Some files were not shown because too many files have changed in this diff Show More