| 939 | } |
| 940 | |
| 941 | bool TSShapeInstance::initGround() |
| 942 | { |
| 943 | for (S32 i=0; i<mThreadList.size(); i++) |
| 944 | { |
| 945 | TSThread * th = mThreadList[i]; |
| 946 | if (!th->transitionData.inTransition && th->getSequence()->numGroundFrames>0) |
| 947 | { |
| 948 | mGroundThread = th; |
| 949 | return true; |
| 950 | } |
| 951 | } |
| 952 | return false; |
| 953 | } |
| 954 | |
| 955 | void TSShapeInstance::animateGround() |
| 956 | { |
nothing calls this directly
no test coverage detected