Updated default avatar-animation.json

This commit is contained in:
Anthony J. Thibault 2015-09-23 10:59:52 -07:00
parent a9848cd157
commit a454584496
2 changed files with 6 additions and 1 deletions

View file

@ -23,6 +23,11 @@
"positionVar": "leftHandPosition",
"rotationVar": "leftHandRotation"
},
{
"jointName": "Neck",
"positionVar": "neckPosition",
"rotationVar": "neckRotation"
},
{
"jointName": "Head",
"positionVar": "headPosition",

View file

@ -61,7 +61,7 @@ public:
// hierarchy accessors
void addChild(Pointer child) { _children.push_back(child); }
void removeChild(Pointer child);
Pointer getChild(int i) const;
int getChildCount() const { return (int)_children.size(); }