diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2022-11-12 11:55:26 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2022-11-12 11:55:26 +0100 |
commit | 3e3066111dd80ea7944f7897025952881b704352 (patch) | |
tree | 58915341e0427fc0267cb4a2e712f4d5233b4de5 /anim | |
parent | 6e8473c60655a40a09ac0d2091deaf447ba54df4 (diff) |
add z component to anim_group world offset
Diffstat (limited to 'anim')
-rw-r--r-- | anim/door_close.json | 24 | ||||
-rw-r--r-- | anim/npc_walk.json | 48 |
2 files changed, 60 insertions, 12 deletions
diff --git a/anim/door_close.json b/anim/door_close.json index de578210..0d666de7 100644 --- a/anim/door_close.json +++ b/anim/door_close.json @@ -283,7 +283,11 @@ ],
"ground": "959 x 540",
"name": "n",
- "offset": "0 x -32"
+ "offset": [
+ 0,
+ -32,
+ 0
+ ]
},
{
"frames": [
@@ -565,7 +569,11 @@ ],
"ground": "959 x 540",
"name": "e",
- "offset": "32 x 0"
+ "offset": [
+ 32,
+ 0,
+ 0
+ ]
},
{
"frames": [
@@ -847,7 +855,11 @@ ],
"ground": "959 x 540",
"name": "s",
- "offset": "0 x 32"
+ "offset": [
+ 0,
+ 32,
+ 0
+ ]
},
{
"frames": [
@@ -1129,7 +1141,11 @@ ],
"ground": "959 x 540",
"name": "w",
- "offset": "-32 x 0"
+ "offset": [
+ -32,
+ 0,
+ 0
+ ]
}
],
"height": 0,
diff --git a/anim/npc_walk.json b/anim/npc_walk.json index f3d0add1..5cc7672a 100644 --- a/anim/npc_walk.json +++ b/anim/npc_walk.json @@ -248,7 +248,11 @@ ],
"ground": "479 x 494",
"name": "n",
- "offset": "0 x 0"
+ "offset": [
+ 0,
+ 0,
+ 0
+ ]
},
{
"frames": [
@@ -495,7 +499,11 @@ ],
"ground": "479 x 494",
"name": "ne",
- "offset": "0 x 0"
+ "offset": [
+ 0,
+ 0,
+ 0
+ ]
},
{
"frames": [
@@ -742,7 +750,11 @@ ],
"ground": "479 x 494",
"name": "e",
- "offset": "0 x 0"
+ "offset": [
+ 0,
+ 0,
+ 0
+ ]
},
{
"frames": [
@@ -989,7 +1001,11 @@ ],
"ground": "479 x 494",
"name": "se",
- "offset": "0 x 0"
+ "offset": [
+ 0,
+ 0,
+ 0
+ ]
},
{
"frames": [
@@ -1236,7 +1252,11 @@ ],
"ground": "479 x 494",
"name": "s",
- "offset": "0 x 0"
+ "offset": [
+ 0,
+ 0,
+ 0
+ ]
},
{
"frames": [
@@ -1483,7 +1503,11 @@ ],
"ground": "479 x 494",
"name": "sw",
- "offset": "0 x 0"
+ "offset": [
+ 0,
+ 0,
+ 0
+ ]
},
{
"frames": [
@@ -1730,7 +1754,11 @@ ],
"ground": "479 x 494",
"name": "w",
- "offset": "0 x 0"
+ "offset": [
+ 0,
+ 0,
+ 0
+ ]
},
{
"frames": [
@@ -1977,7 +2005,11 @@ ],
"ground": "479 x 494",
"name": "nw",
- "offset": "0 x 0"
+ "offset": [
+ 0,
+ 0,
+ 0
+ ]
}
],
"height": 0,
|