Skip to content
This repository was archived by the owner on Aug 15, 2019. It is now read-only.

Commit 63e6480

Browse files
committed
Signed-off-by: duttaoindril <[email protected]>
1 parent 1b6bd8e commit 63e6480

File tree

65 files changed

+282
-8
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+282
-8
lines changed
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
frameSize : [32, 32],
3+
frameDuration : 0.5,
4+
frames : [
5+
[ "idle.0" ]
6+
]
7+
}
240 Bytes
1.33 KB
1.38 KB
1.29 KB
1.39 KB
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
frameSize : [8, 8],
3+
frameDuration : 0.5,
4+
frames : [
5+
[ "walk.0", "walk.1" ],
6+
[ "idle.0", "idle.1" ]
7+
]
8+
}
231 Bytes
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
frameSize : [8, 8],
3+
frameDuration : 0.5,
4+
frames : [
5+
[ "walk.0", "walk.1" ],
6+
[ "idle.0", "idle.1" ]
7+
],
8+
stateTypes : {
9+
mainState : {
10+
default : "idle",
11+
"idle" : {
12+
frameDuration : 0.25
13+
},
14+
"walk" : {
15+
end : "loop"
16+
}
17+
}
18+
},
19+
animationParts : {
20+
"body" : {
21+
frameDuration : 0.25,
22+
states : {
23+
"idle" : {
24+
image : "idle.<frame>"
25+
},
26+
"walk" : {
27+
image : "walk.<frame>"
28+
}
29+
}
30+
}
31+
}
32+
}

mgdc-android/assets/data/testpart.png

231 Bytes

0 commit comments

Comments
 (0)