I opened the GreyGuy scml file and saved it as scon. Now when I try the file in my scon parser, I have no sprites. I only have bones. There are no sprite objects in the obj_info property of the player entity.
In the scon file there is:
"name": "Player",
"obj_info": [
{
"h": 10,
"name": "pelvis",
"type": "bone",
"w": 200
},
...,
{
"h": 10,
"name": "back_foot",
"type": "bone",
"w": 200
}
]
but the scml file has:
<obj_info name="p_torso_idle" type="sprite">
<frames>
<i folder="0" file="0"/>
<i folder="0" file="1"/>
<i folder="0" file="2"/>
</frames>
</obj_info>
...
<obj_info name="p_foot_walk_a" type="sprite">
<frames>
<i folder="5" file="1"/>
<i folder="5" file="5"/>
</frames>
</obj_info>
<obj_info name="pelvis" type="bone" w="200" h="10"/>
...
<obj_info name="back_foot" type="bone" w="200" h="10"/>
Is this normal?