Added better example to haybail example to showcase pausing and unpausing

This commit is contained in:
Sachith Hasaranga Seneviratne 2014-06-16 20:51:58 +05:30
parent f0622f425d
commit f55d1c004e

View File

@ -2,10 +2,13 @@ void onTrigger()
{
/*to activate this add the following line to stk-assets/farm/scene.xml
<object type="action-trigger" action="haybail" distance="30.0" xyz="100.72 10.20 -26.22" hpr="0.0 -0.0 0.0" scale="7.00 7.00 7.00"/>
<object type="action-trigger" action="haybail-activate" distance="10.0" xyz="69.97 8.08 -107.84" hpr="0.0 -0.0 0.0" scale="7.00 7.00 7.00"/>
*/
displayMessage("Haybail reactivated");
//enableAnimation("hayBail.b3d");
squashKart(0,35.0); //id of kart,time to squash
TrackObject @t_obj = getTrackObject("hayBail.b3d");
Animator @haybailAnimator = t_obj.getAnimator();
haybailAnimator.setPaused(false);
}