Jump to content

tickle mercilessly example


prawnin69

Recommended Posts

@prawnin69 and @Shooty:

In case you haven't already found it, there is a resource called LocomotionConfig with a description on how the Locomotion system works:
 

 

 

<!--
  This file defines how to play locomotion animation on sims.

  Move Controllers:
    This defines an animation (or set of) which a specific part of a walkstyle can use. 
    Often these represent a blended combination of several seperate clips, aka blend tree.
    During runtime the game will pass information such as the distance, movement angle, or turn angle it wants
    the animation to play. This information will then be used to blend between the various clips in the 
    controller to hit the desired mark.
    
    Name: name we are giving this movement controller.
    
    Rig: the rig to use
    
    Clone: copy all the clips from the specified move controller. NOTE: The specified controller must already be
      defined.
      
    OverridePrefix: When cloning this will override the prefix of the clip names (for example, you can change all clip 
      names from "a_" to "c_")
    
    Classifiers:
      These describe how the blend tree is arranged. The following can be used in combination with each other.
        'd': distance
        'm': movement angle
        't': turn angle
  
      For example, a classifier of 'd' allows the animation to blend the distances of two clips. Usually
      a long and short. Movement angle allows us to blend clips where the sims direction of 
      travel changes (but orientation stays the same). Turn angle blends clips where the sims 
      orientation (facing direction) changes. Any two or all three of these can be used in combination.
      Valid types are: "d", "t", "m", "dt", "td", "dmt", "md", "mt". Note, the order of the letters can affect
      the resulting blend tree. 
      
      Clip: name of the actual animation clip this controller uses.
        move_side: allows the movement side to be specified, otherwise it is procedurally calculated.
                   move_side indicates which direction the absolute  movement angle is in (for example, 45 degrees to the right)
                   Values can be  "left" or "right".
        move_angle: angle override in degrees.
        turn_side: allows the turn side to be specified, otherwise it is procedurally calculated.
                   turn_side indicates which direction the absolute turn angle is in (for example, 15 degrees to the left)
                   Values can be "left" or "right".
        turn_angle: angle override in degrees.
        distance: allows the distance (float) the clip moves to be specified, otherwise it is procedurally calculated 
        is_pivot: specifies that this clip should be used for distance calculations. If not specified it uses the first animation.
                  Values can be "true" or "false"
        mirror: The clip is mirrored
    
  Style:
    A "style" or "walkstyle" is a group of controllers and other information that specify how locomotion
    should animate. A single style can contain many varients based on age, gender, etc.
    
    Name: the name we give the walkstyle. "walk", "run", etc. This is the name the game refers to.
    
    Varient: Depending on the age, sex, or species of the sim we can select different groups of controllers to play.    
      Age, Gender: self explanitory, these are used to pick the appropriate varient to play for a specific sim.
                   Age values can be "Child", "Teen", "Adult", "Elder". Gender can be "Male" or "Female".
      
      Controllers: start, stop, step, turn, etc: specific parts of a locomotion. The name here specifies which 
      controller to use.
      
      fade cycles are animations that blend over the base cycle. Blend speed is controlled by fadeBlendIn and fadeBlendOut
	  
		fadeBlendIn="1.0"   duration of the blend in in seconds
		fadeBlendOut="1.0"  duration of the blend out in seconds
		fadeStart="0.0"     how many seconds into the cycle before we start to blend in
		fadeEnd="1.0"       how many seconds from the end of the path before we start blending out
      
    DEFUNCT: minMultiplier: this is the smallest multiplier the game can use when slowing down a sim
    DEFUNCT: maxMultiplier: this is the fastest the game can multiply the animation by
    DEFUNCT: maxMultiplierIncrease: how fast the multiplier can ramp up
    DEFUNCT: maxMultiplierDecrease: how fast the multiplier can ramp down
      
    steeringSpeed: how fast procedural steering can turn this sim in degrees per second.
    timeScale: how much to procedurally scale the animation speed by. Defaults to 1.0
    logictype: the internal logic code the game uses to control locomotion. See engineering for valid types.
    allowFocus: allows focus to be disabled during this walkstyle
      
    Defaults: these values are used when something is undefined in a specifc style.
    
-->
<?xml version="1.0" encoding="utf-8" ?>
<LocomotionConfig>

  <!-- ADULTS -->

 
  <MoveController name="adult_turn_and_go" rig="uuRig" classifiers="td" >
    <Clip name="a_loco_default_turnAndGo_0_x" is_pivot="true" />
    <Clip move_side="left" turn_side="left" name="a_loco_default_turnAndGo_L_90_x" />
    <Clip move_side="left" turn_side="left" name="a_loco_default_turnAndGo_L_180_x" />
    <Clip move_side="right" turn_side="right" name="a_loco_default_turnAndGo_R_90_x" />
    <Clip move_side="right" turn_side="right" name="a_loco_default_turnAndGo_R_180_x" />
    <Clip name="a_loco_default_turnAndGo_0_short_x" />
    <Clip move_side="left" turn_side="left" name="a_loco_default_turnAndGo_L_90_short_x" />
    <Clip move_side="left" turn_side="left" name="a_loco_default_turnAndGo_L_180_short_x" />
    <Clip move_side="right" turn_side="right" name="a_loco_default_turnAndGo_R_90_short_x" />
    <Clip move_side="right" turn_side="right" name="a_loco_default_turnAndGo_R_180_short_x" />
  </MoveController>

  <MoveController name="child_turn_and_go" rig="uuRig" classifiers="td" clone="adult_turn_and_go" overrideprefix="c" >
  </MoveController>

  <MoveController name="adult_turn_and_stop" rig="uuRig" classifiers="td" >
    <Clip name="a_loco_default_turnAndStop_2step_0_x" is_pivot="true" />
    <Clip move_side="left" turn_side="left" name="a_loco_default_turnAndStop_L_2step_90_x" turn_angle="89.99" />
    <Clip move_side="left" turn_side="left" name="a_loco_default_turnAndStop_L_90_x" />
    <Clip move_side="left" turn_side="left" name="a_loco_default_turnAndStop_L_180_x" />
    <Clip move_side="right" turn_side="right" name="a_loco_default_turnAndStop_R_2step_90_x" turn_angle="-89.99" />      
    <Clip move_side="right" turn_side="right" name="a_loco_default_turnAndStop_R_90_x" />
    <Clip move_side="right" turn_side="right" name="a_loco_default_turnAndStop_R_180_x" />
    <Clip name="a_loco_default_turnAndStop_2step_0_short_x" />
    <Clip move_side="left" turn_side="left" name="a_loco_default_turnAndStop_L_2step_90_short_x" turn_angle="89.99" /> 
    <Clip move_side="left" turn_side="left" name="a_loco_default_turnAndStop_L_90_short_x" />
    <Clip move_side="left" turn_side="left" name="a_loco_default_turnAndStop_L_180_short_x" />
    <Clip move_side="right" turn_side="right" name="a_loco_default_turnAndStop_R_2step_90_short_x" turn_angle="-89.99" /> 
    <Clip move_side="right" turn_side="right" name="a_loco_default_turnAndStop_R_90_short_x" />
    <Clip move_side="right" turn_side="right" name="a_loco_default_turnAndStop_R_180_short_x" />
  </MoveController>

  <MoveController name="child_turn_and_stop" rig="uuRig" classifiers="td" clone="adult_turn_and_stop" overrideprefix="c" >
  </MoveController>
  
  <MoveController name="reaper_turn_and_go" rig="uuRig" classifiers="td" >
        <Clip move_side="left" turn_side="left" name="a_loco_reaper_turnAndGo_0_x" is_pivot="true" />
        <Clip move_side="left" turn_side="left" name="a_loco_reaper_turnAndGo_L_180_x" />
        <Clip move_side="right" turn_side="right" name="a_loco_reaper_turnAndGo_0_x" turn_angle="-0.01" mirror="true" />
        <Clip move_side="right" turn_side="right" name="a_loco_reaper_turnAndGo_R_180_x" />        
        <Clip move_side="left" turn_side="left" name="a_loco_reaper_turnAndGo_0_short_x" />
        <Clip move_side="left" turn_side="left" name="a_loco_reaper_turnAndGo_L_180_short_x" />
        <Clip move_side="right" turn_side="right" name="a_loco_reaper_turnAndGo_0_short_x" turn_angle="-0.01" mirror="true" />
        <Clip move_side="right" turn_side="right" name="a_loco_reaper_turnAndGo_R_180_short_x" />
  </MoveController>
  
  <MoveController name="reaper_turn_and_stop" rig="uuRig" classifiers="td" >
    <Clip move_side="left" turn_side="left" name="a_loco_reaper_turnAndStop_0_x" is_pivot="true" />
    <Clip move_side="left" turn_side="left" name="a_loco_reaper_turnAndStop_L_180_x" />
    <Clip move_side="right" turn_side="right" name="a_loco_reaper_turnAndStop_0_x" turn_angle="-0.01" mirror="true" />
	<Clip move_side="right" turn_side="right" name="a_loco_reaper_turnAndStop_R_180_x" />  
    <Clip move_side="left" turn_side="left" name="a_loco_reaper_turnAndStop_0_short_x" />
    <Clip move_side="left" turn_side="left" name="a_loco_reaper_turnAndStop_L_180_short_x" />
    <Clip move_side="right" turn_side="right" name="a_loco_reaper_turnAndStop_0_short_x" turn_angle="-0.01" mirror="true" /> 
    <Clip move_side="right" turn_side="right" name="a_loco_reaper_turnAndStop_R_180_short_x" />
  </MoveController>
  
  <MoveController name="reaper_turn_and_stop_to_transition" rig="uuRig" classifiers="td" >
    <Clip name="a_loco_reaper_stairs_turnAndStop_0_2step_x" is_pivot="true" />
    <Clip move_side="left" turn_side="left" name="a_loco_reaper_stairs_turnAndStopL_90_2step_x" />
    <Clip move_side="right" turn_side="right" name="a_loco_reaper_stairs_turnAndStopR_90_2step_x"  />
    <Clip name="a_loco_reaper_stairs_turnAndStop_0_2step_short_x" />
    <Clip move_side="left" turn_side="left" name="a_loco_reaper_stairs_turnAndStopL_90_2step_short_x"  />
    <Clip move_side="right" turn_side="right" name="a_loco_reaper_stairs_turnAndStopR_90_2step_short_x"  />
  </MoveController>

  <MoveController name="adult_turn_and_stop_to_transition" rig="uuRig" classifiers="td" >
    <Clip name="a_loco_stairs_turnAndStop_0_2step_x" is_pivot="true" />
    <Clip move_side="left" turn_side="left" name="a_loco_stairs_turnAndStopL_90_2step_x" />
    <Clip move_side="right" turn_side="right" name="a_loco_stairs_turnAndStopR_90_2step_x"  />
    <Clip name="a_loco_stairs_turnAndStop_0_2step_short_x" />
    <Clip move_side="left" turn_side="left" name="a_loco_stairs_turnAndStopL_90_2step_short_x"  />
    <Clip move_side="right" turn_side="right" name="a_loco_stairs_turnAndStopR_90_2step_short_x"  />
  </MoveController>
  
  <MoveController name="child_turn_and_stop_to_transition" rig="uuRig" classifiers="td" clone="adult_turn_and_stop_to_transition" overrideprefix="c" >
  </MoveController>

  <MoveController name="adult_run_and_stop" rig="uuRig" classifiers="td" >
    <Clip name="a_loco_run_turnAndStop_0_x" is_pivot="true" />
    <Clip name="a_loco_run_turnAndStop_0_short_x" />
  </MoveController>

  <MoveController name="adult_turn_and_run" rig="uuRig" classifiers="td" >
    <Clip name="a_loco_run_turnAndGo_0_x" is_pivot="true" />
    <Clip name="a_loco_run_turnAndGo_0_short_x" />
  </MoveController>

  
  <MoveController name="adult_turn_in_place" rig="uuRig" classifiers="t" >
    <Clip move_side="right" turn_side="right" name="a_loco_turnInPlace_0" />
    <Clip move_side="right" turn_side="right" name="a_loco_turnInPlace_90" />
    <Clip move_side="right" turn_side="right" name="a_loco_turnInPlace_180" />
    <Clip move_side="left"  turn_side="left"  name="a_loco_turnInPlace_0" mirror="true" />
    <Clip move_side="left"  turn_side="left"  name="a_loco_turnInPlace_90" mirror="true" />
    <Clip move_side="left"  turn_side="left"  name="a_loco_turnInPlace_180" mirror="true" />
  </MoveController>
  
   <MoveController name="child_turn_in_place" rig="uuRig" classifiers="t" >
    <Clip move_side="right" turn_side="right" name="c_loco_turnInPlace_0" />
    <Clip move_side="right" turn_side="right" name="c_loco_turnInPlace_90" />
    <Clip move_side="right" turn_side="right" name="c_loco_turnInPlace_180" />
    <Clip move_side="left"  turn_side="left"  name="c_loco_turnInPlace_0" mirror="true" />
    <Clip move_side="left"  turn_side="left"  name="c_loco_turnInPlace_90" mirror="true" />
    <Clip move_side="left"  turn_side="left"  name="c_loco_turnInPlace_180" mirror="true" />
  </MoveController>

  <MoveController name="adult_single_step" rig="uuRig" classifiers="dmt" >
    <!-- long -->
    
    <!-- left arc -->
    <Clip name="a_loco_singleStep_0_0_L" move_side="left" is_pivot="true" />
    <Clip name="a_loco_singleStep_0_90_L" move_side="left" />
    <Clip name="a_loco_singleStep_0_270_L" move_side="left" />
    <Clip name="a_loco_singleStep_0_180_L" move_side="left" />
    <Clip name="a_loco_singleStep_0_180_R" move_side="left" mirror="true" turn_angle="-180.0"/>

    <Clip name="a_loco_singleStep_45_0_L" move_side="left" />
    <Clip name="a_loco_singleStep_45_90_L" move_side="left" />
    <Clip name="a_loco_singleStep_45_270_L" move_side="left" />
    <Clip name="a_loco_singleStep_45_180_L" move_side="left" />
    <Clip name="a_loco_singleStep_45_180_R" move_side="left" mirror="true" turn_angle="-180.0"/>

    <Clip name="a_loco_singleStep_90_0_L" move_side="left" />
    <Clip name="a_loco_singleStep_90_90_L" move_side="left" />
    <Clip name="a_loco_singleStep_90_270_L" move_side="left" />
    <Clip name="a_loco_singleStep_90_180_L" move_side="left" />
    <Clip name="a_loco_singleStep_90_180_R" move_side="left" mirror="true" turn_angle="-180.0"/>

    <Clip name="a_loco_singleStep_135_0_L" move_side="left" />
    <Clip name="a_loco_singleStep_135_90_L" move_side="left" />
    <Clip name="a_loco_singleStep_135_270_L" move_side="left" />
    <Clip name="a_loco_singleStep_135_180_L" move_side="left" />
    <Clip name="a_loco_singleStep_135_180_R" move_side="left" mirror="true" turn_angle="-180.0"/>

    <Clip name="a_loco_singleStep_180_0_L" move_side="left" />
    <Clip name="a_loco_singleStep_180_90_L" move_side="left" />
    <Clip name="a_loco_singleStep_180_270_L" move_side="left" />
    <Clip name="a_loco_singleStep_180_180_L" move_side="left" />
    <Clip name="a_loco_singleStep_180_180_R" move_side="left" mirror="true" turn_angle="-180.0"/>

    <!-- right arc -->
    <Clip name="a_loco_singleStep_0_0_L" move_side="right" mirror="true" move_angle="-0.00001" />
    <Clip name="a_loco_singleStep_0_90_R" move_side="right" move_angle="-0.00001" />
    <Clip name="a_loco_singleStep_0_270_R" move_side="right" move_angle="-0.00001" />
    <Clip name="a_loco_singleStep_0_180_R" move_side="right" move_angle="-0.00001" />
    <Clip name="a_loco_singleStep_0_180_L" move_side="right" move_angle="-0.00001" mirror="true" turn_angle="-180.0" />

    <Clip name="a_loco_singleStep_45_0_L" move_side="right" mirror="true" />
    <Clip name="a_loco_singleStep_45_90_R" move_side="right" />
    <Clip name="a_loco_singleStep_45_270_R" move_side="right" />
    <Clip name="a_loco_singleStep_45_180_R" move_side="right" />
    <Clip name="a_loco_singleStep_45_180_L" move_side="right" mirror="true" turn_angle="-180.0"/>

    <Clip name="a_loco_singleStep_90_0_L" move_side="right" mirror="true" />
    <Clip name="a_loco_singleStep_90_90_R" move_side="right" />
    <Clip name="a_loco_singleStep_90_270_R" move_side="right" />
    <Clip name="a_loco_singleStep_90_180_R" move_side="right" />
    <Clip name="a_loco_singleStep_90_180_L" move_side="right" mirror="true" turn_angle="-180.0"/>

    <Clip name="a_loco_singleStep_135_0_L" move_side="right" mirror="true" />
    <Clip name="a_loco_singleStep_135_90_R" move_side="right" />
    <Clip name="a_loco_singleStep_135_270_R" move_side="right" />
    <Clip name="a_loco_singleStep_135_180_R" move_side="right" />
    <Clip name="a_loco_singleStep_135_180_L" move_side="right" mirror="true" turn_angle="-180.0"/>

    <Clip name="a_loco_singleStep_180_0_L" move_side="right" mirror="true" />
    <Clip name="a_loco_singleStep_180_90_R" move_side="right" />
    <Clip name="a_loco_singleStep_180_270_R" move_side="right" />
    <Clip name="a_loco_singleStep_180_180_R" move_side="right" />
    <Clip name="a_loco_singleStep_180_180_L" move_side="right" mirror="true" turn_angle="-180.0"/>
    
    <!-- short -->
    <Clip name="a_loco_stepInPlace_0_L"  move_side="left" is_pivot="true" move_angle="0" />
    <Clip name="a_loco_stepInPlace_90_L" move_side="left" move_angle="0"  />
    <Clip name="a_loco_stepInPlace_270_L" move_side="left" move_angle="0" />
    <Clip name="a_loco_stepInPlace_180_L" move_side="left" move_angle="0" />
    <Clip name="a_loco_stepInPlace_180_R" move_side="left" move_angle="0" mirror="true" turn_angle="-180.0" />

    <Clip name="a_loco_stepInPlace_0_L"  move_side="right" mirror="true" move_angle="-0.00001" />
    <Clip name="a_loco_stepInPlace_90_R" move_side="right" move_angle="-0.00001" />
    <Clip name="a_loco_stepInPlace_270_R" move_side="right" move_angle="-0.00001" />
    <Clip name="a_loco_stepInPlace_180_R" move_side="right" move_angle="-0.00001" />
    <Clip name="a_loco_stepInPlace_180_L" move_side="right" move_angle="-0.00001" mirror="true" turn_angle="-180.0" />
  </MoveController>

  <MoveController name="child_single_step" rig="uuRig" classifiers="dmt" clone="adult_single_step" overrideprefix="c" >
  </MoveController>

  <MoveController name="adult_default_walk_r" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
   <Clip name="a_loco_default_walk_RFoot_short_x" /> 
    <Clip name="a_loco_default_walk_RFoot_medium_x" is_pivot="true" />
     <Clip name="a_loco_default_walk_RFoot_long_x" />  
  </MoveController>

  <MoveController name="adult_default_walk_l" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
     <Clip name="a_loco_default_walk_LFoot_short_x" /> 
    <Clip name="a_loco_default_walk_LFoot_medium_x" is_pivot="true" />
     <Clip name="a_loco_default_walk_LFoot_long_x" /> 
  </MoveController>
  
  <MoveController name="adult_male_walk_r" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_male_walk_RFoot_short_x" />
    <Clip name="a_loco_male_walk_RFoot_medium_x" is_pivot="true" />
    <Clip name="a_loco_male_walk_RFoot_long_x" />
    <Clip name="a_loco_male_walk_RFoot_max_x" />
  </MoveController>

  <MoveController name="adult_male_walk_l" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_male_walk_LFoot_short_x" />
    <Clip name="a_loco_male_walk_LFoot_medium_x" is_pivot="true" />
    <Clip name="a_loco_male_walk_LFoot_long_x" />
    <Clip name="a_loco_male_walk_LFoot_max_x" />
  </MoveController>
  
  <MoveController name="adult_female_walk_r" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_female_walk_RFoot_short_x" />
    <Clip name="a_loco_female_walk_RFoot_x" is_pivot="true" />
    <Clip name="a_loco_female_walk_RFoot_long_x" />
  </MoveController>

  <MoveController name="adult_female_walk_l" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_female_walk_LFoot_short_x" />
    <Clip name="a_loco_female_walk_LFoot_x" is_pivot="true" />
    <Clip name="a_loco_female_walk_LFoot_long_x" />
  </MoveController>
  
    <MoveController name="elder_walk_r" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="e_loco_elder_walk_RFoot_short_x" />
     <Clip name="e_loco_elder_walk_RFoot_medium_x" is_pivot="true" />
  </MoveController>

  <MoveController name="elder_walk_l" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="e_loco_elder_walk_LFoot_short_x" />
    <Clip name="e_loco_elder_walk_LFoot_medium_x" is_pivot="true" />
  </MoveController>

  <MoveController name="child_male_walk_r" rig="uuRig" classifiers="d" >
    <Clip name="c_stand_posture_x" />
    <Clip name="c_loco_kid_walk_RFoot_short_x" />
    <Clip name="c_loco_kid_walk_RFoot_x" is_pivot="true" />
    <Clip name="c_loco_run_RFoot_x" />
  </MoveController>

  <MoveController name="child_male_walk_l" rig="uuRig" classifiers="d" >
    <Clip name="c_stand_posture_x" />
    <Clip name="c_loco_kid_walk_LFoot_short_x" />
    <Clip name="c_loco_kid_walk_LFoot_x" is_pivot="true" />
    <Clip name="c_loco_run_LFoot_x" />
  </MoveController>

  <MoveController name="adult_walk_sad_r" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_walk_sad_RFoot_short_x" />
    <Clip name="a_loco_walk_sad_RFoot_medium_x" is_pivot="true" />
    <Clip name="a_loco_walk_sad_RFoot_long_x" />
  </MoveController>

  <MoveController name="child_walk_sad_r" rig="uuRig" classifiers="d" clone="adult_walk_sad_r" overrideprefix="c" >
  </MoveController>
  
  <MoveController name="adult_walk_sad_l" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_walk_sad_LFoot_short_x" />
    <Clip name="a_loco_walk_sad_LFoot_medium_x" is_pivot="true" />
    <Clip name="a_loco_walk_sad_LFoot_long_x" />
  </MoveController>  
  
  <MoveController name="child_walk_sad_l" rig="uuRig" classifiers="d" clone="adult_walk_sad_l" overrideprefix="c" >
  </MoveController>
  
  <MoveController name="adult_walk_angry_r" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_walk_angry_RFoot_short_x" />
    <Clip name="a_loco_walk_angry_RFoot_medium_x" is_pivot="true" />
    <Clip name="a_loco_walk_angry_RFoot_long_x" />
  </MoveController>
  
  <MoveController name="child_walk_angry_r" rig="uuRig" classifiers="d" clone="adult_walk_angry_r" overrideprefix="c" >
  </MoveController>

  <MoveController name="adult_walk_angry_l" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_walk_angry_LFoot_short_x" />
    <Clip name="a_loco_walk_angry_LFoot_medium_x" is_pivot="true" />
    <Clip name="a_loco_walk_angry_LFoot_long_x" />
  </MoveController>  
  
   <MoveController name="child_walk_angry_l" rig="uuRig" classifiers="d" clone="adult_walk_angry_l" overrideprefix="c" >
  </MoveController>

  <MoveController name="adult_walk_pregnant_r" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_walk_pregnant_RFoot_short_x" />
    <Clip name="a_loco_walk_pregnant_RFoot_medium_x" is_pivot="true" />
    <Clip name="a_loco_walk_pregnant_RFoot_long_x" />
  </MoveController>

  <MoveController name="adult_walk_pregnant_l" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_walk_pregnant_LFoot_short_x" />
    <Clip name="a_loco_walk_pregnant_LFoot_medium_x" is_pivot="true" />
    <Clip name="a_loco_walk_pregnant_LFoot_long_x" />
  </MoveController>  

  <MoveController name="adult_walk_perky_r" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_walk_perky_RFoot_short_x" />
    <Clip name="a_loco_walk_perky_RFoot_medium_x" is_pivot="true" />
    <Clip name="a_loco_walk_perky_RFoot_long_x" />
  </MoveController>

  <MoveController name="adult_walk_perky_l" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_walk_perky_LFoot_short_x" />
    <Clip name="a_loco_walk_perky_LFoot_medium_x" is_pivot="true" />
    <Clip name="a_loco_walk_perky_LFoot_long_x" />
  </MoveController>  
  
   <MoveController name="adult_walk_snooty_r" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_walk_snooty_RFoot_short_x" />
    <Clip name="a_loco_walk_snooty_RFoot_medium_x" is_pivot="true" />
    <Clip name="a_loco_walk_snooty_RFoot_long_x" />
  </MoveController>

  <MoveController name="adult_walk_snooty_l" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_walk_snooty_LFoot_short_x" />
    <Clip name="a_loco_walk_snooty_LFoot_medium_x" is_pivot="true" />
    <Clip name="a_loco_walk_snooty_LFoot_long_x" />
  </MoveController>  
  
   <MoveController name="adult_walk_swagger_r" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_walk_swagger_RFoot_short_x" />
    <Clip name="a_loco_walk_swagger_RFoot_medium_x" is_pivot="true" />
    <Clip name="a_loco_walk_swagger_RFoot_long_x" />
  </MoveController>

  <MoveController name="adult_walk_swagger_l" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_walk_swagger_LFoot_short_x" />
    <Clip name="a_loco_walk_swagger_LFoot_medium_x" is_pivot="true" />
    <Clip name="a_loco_walk_swagger_LFoot_long_x" />
  </MoveController>  

<MoveController name="adult_walk_confident_r" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_walk_confident_RFoot_short_x" />
    <Clip name="a_loco_walk_confident_RFoot_medium_x" is_pivot="true" />
    <Clip name="a_loco_walk_confident_RFoot_long_x" />
  </MoveController>
  
  <MoveController name="child_walk_confident_r" rig="uuRig" classifiers="d" clone="adult_walk_confident_r" overrideprefix="c" >
  </MoveController>

  <MoveController name="adult_walk_confident_l" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_walk_confident_LFoot_short_x" />
    <Clip name="a_loco_walk_confident_LFoot_medium_x" is_pivot="true" />
    <Clip name="a_loco_walk_confident_LFoot_long_x" />
  </MoveController> 
  
    <MoveController name="child_walk_confident_l" rig="uuRig" classifiers="d" clone="adult_walk_confident_l" overrideprefix="c" >
  </MoveController>
  
  <MoveController name="adult_walk_goofy_r" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_walk_goofy_RFoot_short_x" />
    <Clip name="a_loco_walk_goofy_RFoot_medium_x" is_pivot="true" />
    <Clip name="a_loco_walk_goofy_RFoot_long_x" />
  </MoveController>

  <MoveController name="adult_walk_goofy_l" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_walk_goofy_LFoot_short_x" />
    <Clip name="a_loco_walk_goofy_LFoot_medium_x" is_pivot="true" />
    <Clip name="a_loco_walk_goofy_LFoot_long_x" />
  </MoveController>
  
  <MoveController name="adult_walk_pee_r" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_pee_walk_RFoot_short_x" />
    <Clip name="a_loco_pee_walk_RFoot_medium_x" is_pivot="true" />
  </MoveController>
  
  <MoveController name="child_walk_pee_r" rig="uuRig" classifiers="d" clone="adult_walk_pee_r" overrideprefix="c" >
  </MoveController>

  <MoveController name="adult_walk_pee_l" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_pee_walk_LFoot_short_x" />
    <Clip name="a_loco_pee_walk_LFoot_medium_x" is_pivot="true" />
  </MoveController>
  
   <MoveController name="child_walk_pee_l" rig="uuRig" classifiers="d" clone="adult_walk_pee_l" overrideprefix="c" >
  </MoveController>
  
    <MoveController name="adult_walk_energetic_r" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_walk_energetic_RFoot_short_x" />
    <Clip name="a_loco_walk_energetic_RFoot_medium_x" is_pivot="true" />
    <Clip name="a_loco_walk_energetic_RFoot_long_x" />
  </MoveController>
  
  <MoveController name="child_walk_energetic_r" rig="uuRig" classifiers="d" clone="adult_walk_energetic_r" overrideprefix="c" >
  </MoveController>

  <MoveController name="adult_walk_energetic_l" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_walk_energetic_LFoot_short_x" />
    <Clip name="a_loco_walk_energetic_LFoot_medium_x" is_pivot="true" />
    <Clip name="a_loco_walk_energetic_LFoot_long_x" />
  </MoveController>
  
   <MoveController name="child_walk_energetic_l" rig="uuRig" classifiers="d" clone="adult_walk_energetic_l" overrideprefix="c" >
  </MoveController>
 
  <MoveController name="adult_walk_masculine_r" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_walk_masculine_RFoot_short_x" />
    <Clip name="a_loco_walk_masculine_RFoot_medium_x" is_pivot="true" />
    <Clip name="a_loco_walk_masculine_RFoot_long_x" />
  </MoveController>

  <MoveController name="adult_walk_masculine_l" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_walk_masculine_LFoot_short_x" />
    <Clip name="a_loco_walk_masculine_LFoot_medium_x" is_pivot="true" />
    <Clip name="a_loco_walk_masculine_LFoot_long_x" />
  </MoveController>
  
  <MoveController name="adult_walk_sleepy_r" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_walk_sleepy_RFoot_short_x" />
    <Clip name="a_loco_walk_sleepy_RFoot_medium_x" is_pivot="true" />
    <Clip name="a_loco_walk_sleepy_RFoot_long_x" />
  </MoveController>
  
  <MoveController name="child_walk_sleepy_r" rig="uuRig" classifiers="d" clone="adult_walk_sleepy_r" overrideprefix="c" >
  </MoveController>

  <MoveController name="adult_walk_sleepy_l" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_walk_sleepy_LFoot_short_x" />
    <Clip name="a_loco_walk_sleepy_LFoot_medium_x" is_pivot="true" />
    <Clip name="a_loco_walk_sleepy_LFoot_long_x" />
  </MoveController>  
  
    <MoveController name="child_walk_sleepy_l" rig="uuRig" classifiers="d" clone="adult_walk_sleepy_l" overrideprefix="c" >
  </MoveController>
  
   <MoveController name="adult_walk_feminine_r" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_walk_feminine_RFoot_short_x" /> 
    <Clip name="a_loco_walk_feminine_RFoot_medium_x" is_pivot="true" />
    <Clip name="a_loco_walk_feminine_RFoot_long_x" />  
  </MoveController>

  <MoveController name="adult_walk_feminine_l" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_walk_feminine_LFoot_short_x" /> 
    <Clip name="a_loco_walk_feminine_LFoot_medium_x" is_pivot="true" />
    <Clip name="a_loco_walk_feminine_LFoot_long_x" /> 
  </MoveController>
  
  <MoveController name="adult_walk_reaper_r" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_walk_reaper_RFoot_short_x" />
    <Clip name="a_loco_walk_reaper_RFoot_medium_x" is_pivot="true" />
    <Clip name="a_loco_walk_reaper_RFoot_long_x" />
  </MoveController>

  <MoveController name="adult_walk_reaper_l" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_walk_reaper_LFoot_short_x" />
    <Clip name="a_loco_walk_reaper_LFoot_medium_x" is_pivot="true" />
    <Clip name="a_loco_walk_reaper_LFoot_long_x" />
  </MoveController>  
  
  <MoveController name="adult_run_r" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_run_RFoot_x" is_pivot="true" />
    <Clip name="a_loco_male_walk_RFoot_medium_x" />
    <Clip name="a_loco_jog_RFoot_x" />
  </MoveController>

  <MoveController name="adult_run_l" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_run_LFoot_x" is_pivot="true" />
    <Clip name="a_loco_male_walk_LFoot_medium_x" />
    <Clip name="a_loco_jog_LFoot_x" />
  </MoveController>
  
  <MoveController name="adult_run_panic_r" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_run_panic_RFoot_short_x" />
    <Clip name="a_loco_run_panic_RFoot_x" is_pivot="true" />
  </MoveController>
    
  <MoveController name="adult_run_panic_l" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_run_panic_LFoot_short_x" />
    <Clip name="a_loco_run_panic_LFoot_x" is_pivot="true" />
  </MoveController>
  
  <MoveController name="child_run_panic_r" rig="uuRig" classifiers="d" >
    <Clip name="c_stand_posture_x" />
    <Clip name="c_loco_run_panic_RFoot_short_x" />
    <Clip name="c_loco_run_panic_RFoot_x" is_pivot="true" />
  </MoveController>
  
  <MoveController name="child_run_panic_l" rig="uuRig" classifiers="d" >
    <Clip name="c_stand_posture_x" />
    <Clip name="c_loco_run_panic_LFoot_x" is_pivot="true" />
    <Clip name="c_loco_run_panic_LFoot_short_x" />
  </MoveController>

  <MoveController name="adult_jog_r" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_jog_RFoot_x" is_pivot="true" />
    <Clip name="a_loco_male_walk_RFoot_medium_x" />
     </MoveController>

  <MoveController name="adult_jog_l" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_jog_LFoot_x" is_pivot="true" />
    <Clip name="a_loco_male_walk_LFoot_medium_x" />
    </MoveController>
  
  <MoveController name="adult_male_jog_r" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
	<Clip name="a_loco_jog_male_RFoot_short_x" />
    <Clip name="a_loco_jog_male_RFoot_x" is_pivot="true" />
    <Clip name="a_loco_male_walk_RFoot_medium_x" />
    </MoveController>

  <MoveController name="adult_male_jog_l" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
	<Clip name="a_loco_jog_male_LFoot_short_x" />
    <Clip name="a_loco_jog_male_LFoot_x" is_pivot="true" />
    <Clip name="a_loco_male_walk_LFoot_medium_x" />
 
  </MoveController>
  
    <MoveController name="adult_female_jog_r" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
	<Clip name="a_loco_jog_female_RFoot_short_x" />
    <Clip name="a_loco_jog_female_RFoot_x" is_pivot="true" />
    <Clip name="a_loco_male_walk_RFoot_medium_x" />
  </MoveController>

  <MoveController name="adult_female_jog_l" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
	<Clip name="a_loco_jog_female_LFoot_short_x" />
    <Clip name="a_loco_jog_female_LFoot_x" is_pivot="true" />
    <Clip name="a_loco_male_walk_LFoot_medium_x" />
  </MoveController>
	
  <MoveController name="child_jog_r" rig="uuRig" classifiers="d" >
    <Clip name="c_stand_posture_x" />
	<Clip name="c_loco_jog_RFoot_short_x" />
    <Clip name="c_loco_jog_RFoot_x" is_pivot="true" />
    <Clip name="c_loco_kid_walk_RFoot_x" />
  </MoveController>

  <MoveController name="child_jog_l" rig="uuRig" classifiers="d" >
    <Clip name="c_stand_posture_x" />
	<Clip name="c_loco_jog_LFoot_short_x" />
    <Clip name="c_loco_jog_LFoot_x" is_pivot="true" />
    <Clip name="c_loco_kid_walk_LFoot_x" />
  </MoveController>

  <!-- Stairs -->

  <MoveController name="adult_male_stairs_up_start" rig="uuRig" classifiers="d" >
    <Clip name="a_loco_stairs_startUp_walk_x" is_pivot="true" />
  </MoveController>

  <MoveController name="adult_male_stairs_up_cycle" rig="uuRig" classifiers="d" >
    <Clip name="a_loco_stairs_stepUp_x" is_pivot="true" />
  </MoveController>

  <MoveController name="adult_male_stairs_up_stop" rig="uuRig" classifiers="td" >
    <Clip name="a_loco_stairs_stopUp_walk_x" is_pivot="true" />
    <Clip name="a_loco_stairs_stopUp_90_walk_x"  turn_angle="90" />
    <Clip name="a_loco_stairs_stopUp_270_walk_x"  turn_angle="-90" />  
  </MoveController>

  <MoveController name="adult_male_stairs_down_start" rig="uuRig" classifiers="d" >
    <Clip name="a_loco_stairs_startDown_walk_x" is_pivot="true" />
  </MoveController>

  <MoveController name="adult_male_stairs_down_cycle" rig="uuRig" classifiers="d" >
    <Clip name="a_loco_stairs_stepDown_x" is_pivot="true" />
  </MoveController>

  <MoveController name="adult_male_stairs_down_stop" rig="uuRig" classifiers="td" >
    <Clip name="a_loco_stairs_stopDown_walk_x" is_pivot="true" />
    <Clip name="a_loco_stairs_stopDown_90_walk_x"  turn_angle="90" />
    <Clip name="a_loco_stairs_stopDown_270_walk_x"  turn_angle="-90" />
  </MoveController>
  
  <MoveController name="child_male_stairs_up_start" rig="uuRig" classifiers="d" >
    <Clip name="c_loco_stairs_startUp_walk_x" is_pivot="true" />
  </MoveController>

  <MoveController name="child_male_stairs_up_cycle" rig="uuRig" classifiers="d" >
    <Clip name="c_loco_stairs_stepUp_x" is_pivot="true" />
  </MoveController>

  <MoveController name="child_male_stairs_up_stop" rig="uuRig" classifiers="td" >
    <Clip name="c_loco_stairs_stopUp_walk_x" is_pivot="true" />
	<Clip name="c_loco_stairs_stopUp_90_walk_x" turn_angle="90" />
	<Clip name="c_loco_stairs_stopUp_270_walk_x" turn_angle="-90" />
  </MoveController>

  <MoveController name="child_male_stairs_down_start" rig="uuRig" classifiers="d" >
    <Clip name="c_loco_stairs_startDown_walk_x" is_pivot="true" />
  </MoveController>

  <MoveController name="child_male_stairs_down_cycle" rig="uuRig" classifiers="d" >
    <Clip name="c_loco_stairs_stepDown_x" is_pivot="true" />
  </MoveController>

  <MoveController name="child_male_stairs_down_stop" rig="uuRig" classifiers="td" >
    <Clip name="c_loco_stairs_stopDown_walk_x" is_pivot="true" />
	<Clip name="c_loco_stairs_stopDown_90_walk_x"  turn_angle="90" />
    <Clip name="c_loco_stairs_stopDown_270_walk_x"  turn_angle="-90" />
  </MoveController>
  
  <MoveController name="reaper_stairs_up_start" rig="uuRig" classifiers="d" >
    <Clip name="a_loco_reaper_stairs_startUp_walk_x" is_pivot="true" />
  </MoveController>

  <MoveController name="reaper_stairs_up_cycle" rig="uuRig" classifiers="d" >
    <Clip name="a_loco_reaper_stairs_stepUp_x" is_pivot="true" />
  </MoveController>

  <MoveController name="reaper_stairs_up_stop" rig="uuRig" classifiers="d" >
    <Clip name="a_loco_reaper_stairs_stopUp_walk_x" is_pivot="true" />
  </MoveController>

  <MoveController name="reaper_stairs_down_start" rig="uuRig" classifiers="d" >
    <Clip name="a_loco_reaper_stairs_startDown_walk_x" is_pivot="true" />
  </MoveController>

  <MoveController name="reaper_stairs_down_cycle" rig="uuRig" classifiers="d" >
    <Clip name="a_loco_reaper_stairs_stepDown_x" is_pivot="true" />
  </MoveController>

  <MoveController name="reaper_stairs_down_stop" rig="uuRig" classifiers="d" >
    <Clip name="a_loco_reaper_stairs_stopDown_walk_x" is_pivot="true" />
  </MoveController>
  


  <!-- Walk Style Definitions -->

  <Style name="Walk">
    <Variant age="adult"   gender="male"   start="adult_turn_and_go" cycle_r="adult_default_walk_r" cycle_l="adult_default_walk_l" cycle_fade_r="adult_male_walk_r" cycle_fade_l="adult_male_walk_l" fadeBlendIn="0.8" fadeBlendOut="0.8" fadeStart="0" fadeEnd="1" stop="adult_turn_and_stop" stop_with_transition="adult_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="180.0" minMultiplier="0.5" maxMultiplier="2" maxMultiplierIncrease="0.5" maxMultiplierDecrease="0.5" logictype="walk" />
    <Variant age="adult"   gender="female"   start="adult_turn_and_go" cycle_r="adult_default_walk_r" cycle_l="adult_default_walk_l" cycle_fade_r="adult_female_walk_r" cycle_fade_l="adult_female_walk_l" fadeBlendIn="0.8" fadeBlendOut="0.8" fadeStart="0" fadeEnd="1" stop="adult_turn_and_stop" stop_with_transition="adult_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="180.0" minMultiplier="0.5" maxMultiplier="2" maxMultiplierIncrease="0.5" maxMultiplierDecrease="0.5" logictype="walk" />
	<Variant age="elder"   gender="male"   start="adult_turn_and_go" cycle_r="adult_default_walk_r" cycle_l="adult_default_walk_l" cycle_fade_r="elder_walk_r" cycle_fade_l="elder_walk_l" fadeBlendIn="0.8" fadeBlendOut="0.8" fadeStart="0" fadeEnd="1" stop="adult_turn_and_stop" stop_with_transition="adult_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="180.0" minMultiplier="0.5" maxMultiplier="2" maxMultiplierIncrease="0.5" maxMultiplierDecrease="0.5" logictype="walk" />
	<Variant age="elder"   gender="female"   start="adult_turn_and_go" cycle_r="adult_default_walk_r" cycle_l="adult_default_walk_l" cycle_fade_r="elder_walk_r" cycle_fade_l="elder_walk_l" fadeBlendIn="0.8" fadeBlendOut="0.8" fadeStart="0" fadeEnd="1" stop="adult_turn_and_stop" stop_with_transition="adult_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="180.0" minMultiplier="0.5" maxMultiplier="2" maxMultiplierIncrease="0.5" maxMultiplierDecrease="0.5" logictype="walk" />
	<Variant age="child"   gender="male"   start="child_turn_and_go" cycle_r="child_male_walk_r" cycle_l="child_male_walk_l"  stop="child_turn_and_stop" stop_with_transition="child_turn_and_stop_to_transition" turn="child_turn_in_place" steeringSpeed="180.0" minMultiplier="0.5" maxMultiplier="2" maxMultiplierIncrease="0.5" maxMultiplierDecrease="0.5" logictype="walk" />
  </Style>

  <Style name="WalkSlow">
    <Variant age="adult"   gender="male"   start="adult_turn_and_go" cycle_r="adult_default_walk_r" cycle_l="adult_default_walk_l" cycle_fade_r="adult_male_walk_r" cycle_fade_l="adult_male_walk_l" fadeBlendIn="0.8" fadeBlendOut="0.8" fadeStart="0" fadeEnd="1" stop="adult_turn_and_stop" stop_with_transition="adult_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="180.0" timeScale="1.2" logictype="walk" />
    <Variant age="adult"   gender="female"   start="adult_turn_and_go" cycle_r="adult_default_walk_r" cycle_l="adult_default_walk_l" cycle_fade_r="adult_female_walk_r" cycle_fade_l="adult_female_walk_l" fadeBlendIn="0.8" fadeBlendOut="0.8" fadeStart="0" fadeEnd="1" stop="adult_turn_and_stop" stop_with_transition="adult_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="180.0" timeScale="1.2" logictype="walk" />
    <Variant age="child"   gender="male"   start="child_turn_and_go" cycle_r="child_male_walk_r" cycle_l="child_male_walk_l"  stop="child_turn_and_stop" stop_with_transition="child_turn_and_stop_to_transition" turn="child_turn_in_place" steeringSpeed="180.0" timeScale="1.0" logictype="walk" />
  </Style>

  <Style name="WalkFast">
    <Variant age="adult"   gender="male"   start="adult_turn_and_go" cycle_r="adult_default_walk_r" cycle_l="adult_default_walk_l" cycle_fade_r="adult_male_walk_r" cycle_fade_l="adult_male_walk_l" fadeBlendIn="0.8" fadeBlendOut="0.8" fadeStart="0" fadeEnd="1" stop="adult_turn_and_stop" stop_with_transition="adult_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="180.0" timeScale="0.8" logictype="walk" />
    <Variant age="adult"   gender="female"   start="adult_turn_and_go" cycle_r="adult_default_walk_r" cycle_l="adult_default_walk_l" cycle_fade_r="adult_female_walk_r" cycle_fade_l="adult_female_walk_l" fadeBlendIn="0.8" fadeBlendOut="0.8" fadeStart="0" fadeEnd="1" stop="adult_turn_and_stop" stop_with_transition="adult_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="180.0" timeScale="0.8" logictype="walk" />
    <Variant age="child"   gender="male"   start="child_turn_and_go" cycle_r="child_male_walk_r" cycle_l="child_male_walk_l"  stop="child_turn_and_stop" stop_with_transition="child_turn_and_stop_to_transition" turn="child_turn_in_place" steeringSpeed="180.0" timeScale="0.5" logictype="walk" />
  </Style>

  <Style name="WalkSad">
    <Variant age="adult"   gender="male"   start="adult_turn_and_go" cycle_r="adult_default_walk_r" cycle_l="adult_default_walk_l" cycle_fade_r="adult_walk_sad_r" cycle_fade_l="adult_walk_sad_l" fadeBlendIn="1.0" fadeBlendOut="1.0" fadeStart="0" fadeEnd="1" stop="adult_turn_and_stop" stop_with_transition="adult_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="200.0" timeScale="1.3" allowFocus="false" logictype="walk" />
    <Variant age="adult"   gender="female"   start="adult_turn_and_go" cycle_r="adult_default_walk_r" cycle_l="adult_default_walk_l" cycle_fade_r="adult_walk_sad_r" cycle_fade_l="adult_walk_sad_l" fadeBlendIn="1.0" fadeBlendOut="1.0" fadeStart="0" fadeEnd="1" stop="adult_turn_and_stop" stop_with_transition="adult_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="200.0" timeScale="1.3" allowFocus="false" logictype="walk" />
    <Variant age="child"   gender="male"   start="child_turn_and_go" cycle_r="child_male_walk_r" cycle_l="child_male_walk_l"  cycle_fade_r="child_walk_sad_r" cycle_fade_l="child_walk_sad_l" fadeBlendIn="1.0" fadeBlendOut="1.0" fadeStart="0" fadeEnd="1"  stop="child_turn_and_stop" stop_with_transition="child_turn_and_stop_to_transition" turn="child_turn_in_place" steeringSpeed="200.0" timeScale="1.0" allowFocus="false" logictype="walk" />
  </Style> 

  <Style name="WalkAngry">
    <Variant age="adult"   gender="male"   start="adult_turn_and_go" cycle_r="adult_default_walk_r" cycle_l="adult_default_walk_l" cycle_fade_r="adult_walk_angry_r" cycle_fade_l="adult_walk_angry_l" fadeBlendIn="1.0" fadeBlendOut="1.0" fadeStart="0" fadeEnd="1" stop="adult_turn_and_stop" stop_with_transition="adult_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="180.0" timeScale="1.0" logictype="walk" />
    <Variant age="adult"   gender="female"   start="adult_turn_and_go" cycle_r="adult_default_walk_r" cycle_l="adult_default_walk_l" cycle_fade_r="adult_walk_angry_r" cycle_fade_l="adult_walk_angry_l" fadeBlendIn="1.0" fadeBlendOut="1.0" fadeStart="0" fadeEnd="1" stop="adult_turn_and_stop" stop_with_transition="adult_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="180.0" timeScale="1.0" logictype="walk" />
    <Variant age="child"   gender="male"   start="child_turn_and_go" cycle_r="child_male_walk_r" cycle_l="child_male_walk_l"  cycle_fade_r="child_walk_angry_r" cycle_fade_l="child_walk_angry_l" fadeBlendIn="1.0" fadeBlendOut="1.0" fadeStart="0" fadeEnd="1"  stop="child_turn_and_stop" stop_with_transition="child_turn_and_stop_to_transition" turn="child_turn_in_place" steeringSpeed="180.0" timeScale="1.0" logictype="walk" />
  </Style> 
  
<Style name="WalkPregnant">
    <Variant age="adult"   gender="female"   start="adult_turn_and_go" cycle_r="adult_default_walk_r" cycle_l="adult_default_walk_l" cycle_fade_r="adult_walk_pregnant_r" cycle_fade_l="adult_walk_pregnant_l" fadeBlendIn="1.0" fadeBlendOut="1.0" fadeStart="0" fadeEnd="1" stop="adult_turn_and_stop" stop_with_transition="adult_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="180.0" timeScale="1.0" logictype="walk" />
  </Style>  

<Style name="WalkReaper">
    <Variant age="adult"   gender="female"   start="reaper_turn_and_go" cycle_r="adult_walk_reaper_r" cycle_l="adult_walk_reaper_l" cycle_fade_r="adult_walk_reaper_r" cycle_fade_l="adult_walk_reaper_l" fadeBlendIn="1.0" fadeBlendOut="1.0" fadeStart="0" fadeEnd="1" stop="reaper_turn_and_stop" stop_with_transition="reaper_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="180.0" logictype="walk" />
    <Variant age="adult"   gender="male"   start="reaper_turn_and_go" cycle_r="adult_walk_reaper_r" cycle_l="adult_walk_reaper_l" cycle_fade_r="adult_walk_reaper_r" cycle_fade_l="adult_walk_reaper_l" fadeBlendIn="1.0" fadeBlendOut="1.0" fadeStart="0" fadeEnd="1" stop="reaper_turn_and_stop" stop_with_transition="reaper_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="180.0" logictype="walk" />
 </Style>  
  
  <Style name="WalkSwagger">
    <Variant age="adult"   gender="male"   start="adult_turn_and_go" cycle_r="adult_default_walk_r" cycle_l="adult_default_walk_l" cycle_fade_r="adult_walk_swagger_r" cycle_fade_l="adult_walk_swagger_l" fadeBlendIn="0.8" fadeBlendOut="0.8" fadeStart="0" fadeEnd="1" stop="adult_turn_and_stop" stop_with_transition="adult_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="180.0" minMultiplier="0.5" maxMultiplier="2" maxMultiplierIncrease="0.5" maxMultiplierDecrease="0.5" logictype="walk" />
    <Variant age="adult"   gender="female"   start="adult_turn_and_go" cycle_r="adult_default_walk_r" cycle_l="adult_default_walk_l" cycle_fade_r="adult_walk_swagger_r" cycle_fade_l="adult_walk_swagger_l" fadeBlendIn="0.8" fadeBlendOut="0.8" fadeStart="0" fadeEnd="1" stop="adult_turn_and_stop" stop_with_transition="adult_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="180.0" minMultiplier="0.5" maxMultiplier="2" maxMultiplierIncrease="0.5" maxMultiplierDecrease="0.5" logictype="walk" />
	<Variant age="child"   gender="male"   start="child_turn_and_go" cycle_r="child_male_walk_r" cycle_l="child_male_walk_l"  stop="child_turn_and_stop" stop_with_transition="child_turn_and_stop_to_transition" turn="child_turn_in_place" steeringSpeed="180.0" minMultiplier="0.5" maxMultiplier="2" maxMultiplierIncrease="0.5" maxMultiplierDecrease="0.5" logictype="walk" />
  </Style>
  
 <Style name="WalkSnooty">
    <Variant age="adult"   gender="male"   start="adult_turn_and_go" cycle_r="adult_default_walk_r" cycle_l="adult_default_walk_l" cycle_fade_r="adult_walk_snooty_r" cycle_fade_l="adult_walk_snooty_l" fadeBlendIn="0.8" fadeBlendOut="0.8" fadeStart="0" fadeEnd="1" stop="adult_turn_and_stop" stop_with_transition="adult_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="180.0" minMultiplier="0.5" maxMultiplier="2" maxMultiplierIncrease="0.5" maxMultiplierDecrease="0.5" logictype="walk" />
    <Variant age="adult"   gender="female"   start="adult_turn_and_go" cycle_r="adult_default_walk_r" cycle_l="adult_default_walk_l" cycle_fade_r="adult_walk_snooty_r" cycle_fade_l="adult_walk_snooty_l" fadeBlendIn="0.8" fadeBlendOut="0.8" fadeStart="0" fadeEnd="1" stop="adult_turn_and_stop" stop_with_transition="adult_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="180.0" minMultiplier="0.5" maxMultiplier="2" maxMultiplierIncrease="0.5" maxMultiplierDecrease="0.5" logictype="walk" />
	<Variant age="child"   gender="male"   start="child_turn_and_go" cycle_r="child_male_walk_r" cycle_l="child_male_walk_l"  stop="child_turn_and_stop" stop_with_transition="child_turn_and_stop_to_transition" turn="child_turn_in_place" steeringSpeed="180.0" minMultiplier="0.5" maxMultiplier="2" maxMultiplierIncrease="0.5" maxMultiplierDecrease="0.5" logictype="walk" />
  </Style>
  
 <Style name="WalkPerky">
    <Variant age="adult"   gender="male"   start="adult_turn_and_go" cycle_r="adult_default_walk_r" cycle_l="adult_default_walk_l" cycle_fade_r="adult_walk_perky_r" cycle_fade_l="adult_walk_perky_l" fadeBlendIn="0.8" fadeBlendOut="0.8" fadeStart="0" fadeEnd="1" stop="adult_turn_and_stop" stop_with_transition="adult_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="180.0" minMultiplier="0.5" maxMultiplier="2" maxMultiplierIncrease="0.5" maxMultiplierDecrease="0.5" logictype="walk" />
    <Variant age="adult"   gender="female"   start="adult_turn_and_go" cycle_r="adult_default_walk_r" cycle_l="adult_default_walk_l" cycle_fade_r="adult_walk_perky_r" cycle_fade_l="adult_walk_perky_l" fadeBlendIn="0.8" fadeBlendOut="0.8" fadeStart="0" fadeEnd="1" stop="adult_turn_and_stop" stop_with_transition="adult_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="180.0" minMultiplier="0.5" maxMultiplier="2" maxMultiplierIncrease="0.5" maxMultiplierDecrease="0.5" logictype="walk" />
	<Variant age="child"   gender="male"   start="child_turn_and_go" cycle_r="child_male_walk_r" cycle_l="child_male_walk_l"  stop="child_turn_and_stop" stop_with_transition="child_turn_and_stop_to_transition" turn="child_turn_in_place" steeringSpeed="180.0" minMultiplier="0.5" maxMultiplier="2" maxMultiplierIncrease="0.5" maxMultiplierDecrease="0.5" logictype="walk" />
  </Style>
  
  <Style name="WalkConfident">
    <Variant age="adult"   gender="male"   start="adult_turn_and_go" cycle_r="adult_default_walk_r" cycle_l="adult_default_walk_l" cycle_fade_r="adult_walk_confident_r" cycle_fade_l="adult_walk_confident_l" fadeBlendIn="1.0" fadeBlendOut="1.0" fadeStart="0" fadeEnd="1" stop="adult_turn_and_stop" stop_with_transition="adult_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="200.0" timeScale="1" logictype="walk" />
    <Variant age="adult"   gender="female"   start="adult_turn_and_go" cycle_r="adult_default_walk_r" cycle_l="adult_default_walk_l" cycle_fade_r="adult_walk_confident_r" cycle_fade_l="adult_walk_confident_l" fadeBlendIn="1.0" fadeBlendOut="1.0" fadeStart="0" fadeEnd="1" stop="adult_turn_and_stop" stop_with_transition="adult_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="200.0" timeScale="1" logictype="walk" />
    <Variant age="child"   gender="male"   start="child_turn_and_go" cycle_r="child_male_walk_r" cycle_l="child_male_walk_l"  cycle_fade_r="child_walk_confident_r" cycle_fade_l="child_walk_confident_l" fadeBlendIn="1.0" fadeBlendOut="1.0" fadeStart="0" fadeEnd="1"  stop="child_turn_and_stop" stop_with_transition="child_turn_and_stop_to_transition" turn="child_turn_in_place" steeringSpeed="200.0" timeScale="1" logictype="walk" />
  </Style> 
  
  <Style name="WalkGoofy">
    <Variant age="adult"   gender="male"   start="adult_turn_and_go" cycle_r="adult_default_walk_r" cycle_l="adult_default_walk_l" cycle_fade_r="adult_walk_goofy_r" cycle_fade_l="adult_walk_goofy_l" fadeBlendIn="1.0" fadeBlendOut="1.0" fadeStart="0" fadeEnd="1" stop="adult_turn_and_stop" stop_with_transition="adult_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="180.0" timeScale="1.0" logictype="walk" />
    <Variant age="adult"   gender="female"   start="adult_turn_and_go" cycle_r="adult_default_walk_r" cycle_l="adult_default_walk_l" cycle_fade_r="adult_walk_goofy_r" cycle_fade_l="adult_walk_goofy_l" fadeBlendIn="1.0" fadeBlendOut="1.0" fadeStart="0" fadeEnd="1" stop="adult_turn_and_stop" stop_with_transition="adult_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="180.0" timeScale="1.0" logictype="walk" />
    <Variant age="child"   gender="male"   start="child_turn_and_go" cycle_r="child_male_walk_r" cycle_l="child_male_walk_l"  stop="child_turn_and_stop" stop_with_transition="child_turn_and_stop_to_transition" turn="child_turn_in_place" steeringSpeed="180.0" timeScale="0.5" logictype="walk" />
  </Style>

  <Style name="WalkPee">
    <Variant age="adult"   gender="male"   start="adult_turn_and_go" cycle_r="adult_default_walk_r" cycle_l="adult_default_walk_l" cycle_fade_r="adult_walk_pee_r" cycle_fade_l="adult_walk_pee_l" fadeBlendIn="1.0" fadeBlendOut="1.0" fadeStart="0" fadeEnd="1" stop="adult_turn_and_stop" stop_with_transition="adult_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="180.0" timeScale="0.75" logictype="walk" />
    <Variant age="adult"   gender="female"   start="adult_turn_and_go" cycle_r="adult_default_walk_r" cycle_l="adult_default_walk_l" cycle_fade_r="adult_walk_pee_r" cycle_fade_l="adult_walk_pee_l" fadeBlendIn="1.0" fadeBlendOut="1.0" fadeStart="0" fadeEnd="1" stop="adult_turn_and_stop" stop_with_transition="adult_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="180.0" timeScale="0.75" logictype="walk" />
    <Variant age="child"   gender="male"   start="child_turn_and_go" cycle_r="child_male_walk_r" cycle_l="child_male_walk_l" cycle_fade_r="child_walk_pee_r" cycle_fade_l="child_walk_pee_l" fadeBlendIn="1.0" fadeBlendOut="1.0" fadeStart="0" fadeEnd="1" stop="child_turn_and_stop" stop_with_transition="child_turn_and_stop_to_transition" turn="child_turn_in_place" steeringSpeed="180.0" timeScale="0.65" logictype="walk" />
  </Style>
  
  <Style name="WalkEnergetic">
    <Variant age="adult"   gender="male"   start="adult_turn_and_go" cycle_r="adult_default_walk_r" cycle_l="adult_default_walk_l" cycle_fade_r="adult_walk_energetic_r" cycle_fade_l="adult_walk_energetic_l" fadeBlendIn="0.8" fadeBlendOut="0.8" fadeStart="0" fadeEnd="0.6" stop="adult_turn_and_stop" stop_with_transition="adult_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="180.0" timeScale="1.0" logictype="walk" />
    <Variant age="adult"   gender="female"   start="adult_turn_and_go" cycle_r="adult_default_walk_r" cycle_l="adult_default_walk_l" cycle_fade_r="adult_walk_energetic_r" cycle_fade_l="adult_walk_energetic_l" fadeBlendIn="0.8" fadeBlendOut="0.8" fadeStart="0" fadeEnd="0.6" stop="adult_turn_and_stop" stop_with_transition="adult_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="180.0" timeScale="1.0" logictype="walk" />
    <Variant age="child"   gender="male"   start="child_turn_and_go" cycle_r="child_male_walk_r" cycle_l="child_male_walk_l" cycle_fade_r="child_walk_energetic_r" cycle_fade_l="child_walk_energetic_l" fadeBlendIn="0.8" fadeBlendOut="0.8" fadeStart="0" fadeEnd="0.6" stop="child_turn_and_stop" stop_with_transition="child_turn_and_stop_to_transition" turn="child_turn_in_place" steeringSpeed="180.0" timeScale="1.0" logictype="walk" />
  </Style>
  
    <Style name="WalkTough">
    <Variant age="adult"   gender="male"   start="adult_turn_and_go" cycle_r="adult_default_walk_r" cycle_l="adult_default_walk_l" cycle_fade_r="adult_walk_masculine_r" cycle_fade_l="adult_walk_masculine_l" fadeBlendIn="0.8" fadeBlendOut="0.8" fadeStart="0" fadeEnd="1" stop="adult_turn_and_stop" stop_with_transition="adult_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="180.0" timeScale="1.0" logictype="walk" />
    <Variant age="adult"   gender="female"   start="adult_turn_and_go" cycle_r="adult_default_walk_r" cycle_l="adult_default_walk_l" cycle_fade_r="adult_walk_masculine_r" cycle_fade_l="adult_walk_masculine_l" fadeBlendIn="0.8" fadeBlendOut="0.8" fadeStart="0" fadeEnd="1" stop="adult_turn_and_stop" stop_with_transition="adult_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="180.0" timeScale="1.0" logictype="walk" />
    <Variant age="child"   gender="male"   start="child_turn_and_go" cycle_r="child_male_walk_r" cycle_l="child_male_walk_l"  stop="child_turn_and_stop" stop_with_transition="child_turn_and_stop_to_transition" turn="child_turn_in_place" steeringSpeed="180.0" timeScale="0.5" logictype="walk" />
  </Style>
  
  <Style name="WalkFeminine">
    <Variant age="adult"   gender="male"   start="adult_turn_and_go" cycle_r="adult_default_walk_r" cycle_l="adult_default_walk_l" cycle_fade_r="adult_walk_feminine_r" cycle_fade_l="adult_walk_feminine_l" fadeBlendIn="0.8" fadeBlendOut="0.8" fadeStart="0" fadeEnd="1" stop="adult_turn_and_stop" stop_with_transition="adult_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="180.0" minMultiplier="0.5" maxMultiplier="2" maxMultiplierIncrease="0.5" maxMultiplierDecrease="0.5" logictype="walk" />
    <Variant age="adult"   gender="female"   start="adult_turn_and_go" cycle_r="adult_default_walk_r" cycle_l="adult_default_walk_l" cycle_fade_r="adult_walk_feminine_r" cycle_fade_l="adult_walk_feminine_l" fadeBlendIn="0.8" fadeBlendOut="0.8" fadeStart="0" fadeEnd="1" stop="adult_turn_and_stop" stop_with_transition="adult_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="180.0" minMultiplier="0.5" maxMultiplier="2" maxMultiplierIncrease="0.5" maxMultiplierDecrease="0.5" logictype="walk" />
	<Variant age="child"   gender="male"   start="child_turn_and_go" cycle_r="child_male_walk_r" cycle_l="child_male_walk_l"  stop="child_turn_and_stop" stop_with_transition="child_turn_and_stop_to_transition" turn="child_turn_in_place" steeringSpeed="180.0" minMultiplier="0.5" maxMultiplier="2" maxMultiplierIncrease="0.5" maxMultiplierDecrease="0.5" logictype="walk" />
  </Style>

  <Style name="WalkFeminineSlow">
    <Variant age="adult"   gender="male"   start="adult_turn_and_go" cycle_r="adult_default_walk_r" cycle_l="adult_default_walk_l" cycle_fade_r="adult_walk_feminine_r" cycle_fade_l="adult_walk_feminine_l" fadeBlendIn="0.8" fadeBlendOut="0.8" fadeStart="0" fadeEnd="1" stop="adult_turn_and_stop" stop_with_transition="adult_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="180.0" timeScale="1.2" logictype="walk" />
    <Variant age="adult"   gender="female"   start="adult_turn_and_go" cycle_r="adult_default_walk_r" cycle_l="adult_default_walk_l" cycle_fade_r="adult_walk_feminine_r" cycle_fade_l="adult_walk_feminine_l" fadeBlendIn="0.8" fadeBlendOut="0.8" fadeStart="0" fadeEnd="1" stop="adult_turn_and_stop" stop_with_transition="adult_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="180.0" timeScale="1.2" logictype="walk" />
    <Variant age="child"   gender="male"   start="child_turn_and_go" cycle_r="child_male_walk_r" cycle_l="child_male_walk_l"  stop="child_turn_and_stop" stop_with_transition="child_turn_and_stop_to_transition" turn="child_turn_in_place" steeringSpeed="180.0" timeScale="1.5" logictype="walk" />
  </Style>
  
  <Style name="WalkSleepy">
    <Variant age="adult"   gender="male"   start="adult_turn_and_go" cycle_r="adult_default_walk_r" cycle_l="adult_default_walk_l" cycle_fade_r="adult_walk_sleepy_r" cycle_fade_l="adult_walk_sleepy_l" fadeBlendIn="1.0" fadeBlendOut=".5" fadeStart="0" fadeEnd=".5" stop="adult_turn_and_stop" stop_with_transition="adult_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="200.0" timeScale="1.3" logictype="walk" />
    <Variant age="adult"   gender="female"   start="adult_turn_and_go" cycle_r="adult_default_walk_r" cycle_l="adult_default_walk_l" cycle_fade_r="adult_walk_sleepy_r" cycle_fade_l="adult_walk_sleepy_l" fadeBlendIn="1.0" fadeBlendOut=".5" fadeStart="0" fadeEnd=".5" stop="adult_turn_and_stop" stop_with_transition="adult_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="200.0" timeScale="1.3" logictype="walk" />
    <Variant age="child"   gender="male"   start="child_turn_and_go" cycle_r="child_male_walk_r" cycle_l="child_male_walk_l" cycle_fade_r="child_walk_sleepy_r" cycle_fade_l="child_walk_sleepy_l" fadeBlendIn="1.0" fadeBlendOut=".5" fadeStart="0" fadeEnd=".5" stop="child_turn_and_stop" stop_with_transition="child_turn_and_stop_to_transition" turn="child_turn_in_place" steeringSpeed="200.0" timeScale="1.3" logictype="walk" />
  </Style> 
  
  <Style name="RunSlow">
    <Variant age="adult"   gender="male"   start="adult_turn_and_go" cycle_r="adult_run_r" cycle_l="adult_run_l" stop="adult_turn_and_stop" turn="adult_turn_in_place" steeringSpeed="700.0" minMultiplier="0.5" maxMultiplier="1.5" maxMultiplierIncrease="0.5" maxMultiplierDecrease="0.5" timeScale="0.8" />
  </Style>

  <Style name="Run">
    <Variant age="adult"   gender="male"   start="adult_turn_and_go" cycle_r="adult_run_r" cycle_l="adult_run_l" stop="adult_turn_and_stop" turn="adult_turn_in_place" steeringSpeed="700.0" minMultiplier="0.5" maxMultiplier="1.5" maxMultiplierIncrease="0.5" maxMultiplierDecrease="0.5" />
  </Style>
  
  <Style name="Jog">
    <Variant age="adult"   gender="male"   start="adult_turn_and_go" cycle_r="adult_male_jog_r" cycle_l="adult_male_jog_l" stop="adult_turn_and_stop" turn="adult_turn_in_place" steeringSpeed="500.0" minMultiplier="0.5" maxMultiplier="1.5" maxMultiplierIncrease="0.5" maxMultiplierDecrease="0.5" />
    <Variant age="adult"   gender="female" start="adult_turn_and_go" cycle_r="adult_female_jog_r" cycle_l="adult_female_jog_l" stop="adult_turn_and_stop" turn="adult_turn_in_place" steeringSpeed="500.0" />
	<Variant age="child"   gender="male"   start="child_turn_and_go" cycle_r="child_jog_r" cycle_l="child_jog_l" stop="child_turn_and_stop" turn="child_turn_in_place" steeringSpeed="500.0" minMultiplier="0.5" maxMultiplier="1.5" maxMultiplierIncrease="0.5" maxMultiplierDecrease="0.5" />  
  </Style>
  
  <Style name="RunPanic">
    <Variant age="adult"   gender="male"   start="adult_turn_and_go" cycle_r="adult_run_panic_r" cycle_l="adult_run_panic_l" stop="adult_turn_and_stop" turn="adult_turn_in_place" steeringSpeed="500.0" minMultiplier="0.5" maxMultiplier="1.5" maxMultiplierIncrease="0.5" maxMultiplierDecrease="0.5" timeScale="0.75" />
    <Variant age="child"   gender="male"   start="child_turn_and_go" cycle_r="child_run_panic_r" cycle_l="child_run_panic_l" stop="child_turn_and_stop" turn="child_turn_in_place" steeringSpeed="500.0" minMultiplier="0.5" maxMultiplier="1.5" maxMultiplierIncrease="0.5" maxMultiplierDecrease="0.5" timeScale="0.75" />  
  </Style>
  
  <Style name="StairsUp">
    <Variant age="adult"   gender="male"   start="adult_male_stairs_up_start" cycle="adult_male_stairs_up_cycle" stop="adult_male_stairs_up_stop" minMultiplier="0.5" maxMultiplier="2" maxMultiplierIncrease="0.5" maxMultiplierDecrease="0.5" logictype="stairs" />
    <Variant age="child"   gender="male"   start="child_male_stairs_up_start" cycle="child_male_stairs_up_cycle" stop="child_male_stairs_up_stop" minMultiplier="0.5" maxMultiplier="2" maxMultiplierIncrease="0.5" maxMultiplierDecrease="0.5" logictype="stairs" />
  </Style>

  <Style name="StairsDown">
    <Variant age="adult"   gender="male"   start="adult_male_stairs_down_start" cycle="adult_male_stairs_down_cycle" stop="adult_male_stairs_down_stop" minMultiplier="0.5" maxMultiplier="2" maxMultiplierIncrease="0.5" maxMultiplierDecrease="0.5" logictype="stairs" />
    <Variant age="child"   gender="male"   start="child_male_stairs_down_start" cycle="child_male_stairs_down_cycle" stop="child_male_stairs_down_stop" minMultiplier="0.5" maxMultiplier="2" maxMultiplierIncrease="0.5" maxMultiplierDecrease="0.5" logictype="stairs" />
  </Style>
  
  <Style name="ReaperStairsUp">
    <Variant age="adult"   gender="male"   start="reaper_stairs_up_start" cycle="reaper_stairs_up_cycle" stop="reaper_stairs_up_stop" minMultiplier="0.5" maxMultiplier="2" maxMultiplierIncrease="0.5" maxMultiplierDecrease="0.5" logictype="stairs" />
  </Style>

  <Style name="ReaperStairsDown">
    <Variant age="adult"   gender="male"   start="reaper_stairs_down_start" cycle="reaper_stairs_down_cycle" stop="reaper_stairs_down_stop" minMultiplier="0.5" maxMultiplier="2" maxMultiplierIncrease="0.5" maxMultiplierDecrease="0.5" logictype="stairs" />
   </Style>

  <Style name="RunStairsUp">
    <Variant timeScale="0.5" age="adult"   gender="male"   start="adult_male_stairs_up_start" cycle="adult_male_stairs_up_cycle" stop="adult_male_stairs_up_stop" minMultiplier="0.5" maxMultiplier="2" maxMultiplierIncrease="0.5" maxMultiplierDecrease="0.5" logictype="stairs" />
    <Variant timeScale="0.5" age="child"   gender="male"   start="child_male_stairs_up_start" cycle="child_male_stairs_up_cycle" stop="child_male_stairs_up_stop" minMultiplier="0.5" maxMultiplier="2" maxMultiplierIncrease="0.5" maxMultiplierDecrease="0.5" logictype="stairs" />
  </Style>

  <Style name="RunStairsDown">
    <Variant timeScale="0.5" age="adult"   gender="male"   start="adult_male_stairs_down_start" cycle="adult_male_stairs_down_cycle" stop="adult_male_stairs_down_stop" minMultiplier="0.5" maxMultiplier="2" maxMultiplierIncrease="0.5" maxMultiplierDecrease="0.5" logictype="stairs" />
    <Variant timeScale="0.5" age="child"   gender="male"   start="child_male_stairs_down_start" cycle="child_male_stairs_down_cycle" stop="child_male_stairs_down_stop" minMultiplier="0.5" maxMultiplier="2" maxMultiplierIncrease="0.5" maxMultiplierDecrease="0.5" logictype="stairs" />
  </Style>
  
  <!-- Default style declarations -->
  <Defaults>
    <Variant age="adult"   gender="male"   start="adult_turn_and_go" cycle_r="adult_male_walk_r" cycle_l="adult_male_walk_l" stop="adult_turn_and_stop" step="adult_single_step" turn="adult_turn_in_place"  logictype="walk"/>
    <Variant age="adult"   gender="female" start="adult_turn_and_go" cycle_r="adult_male_walk_r" cycle_l="adult_male_walk_l" stop="adult_turn_and_stop" step="adult_single_step" turn="adult_turn_in_place"  logictype="walk"/>
    <Variant age="elder"   gender="male"   start="adult_turn_and_go" cycle_r="elder_walk_r" cycle_l="elder_walk_l" stop="adult_turn_and_stop" step="adult_single_step" turn="adult_turn_in_place"  logictype="walk"/>
    <Variant age="elder"   gender="female" start="adult_turn_and_go" cycle_r="elder_walk_r" cycle_l="elder_walk_r" stop="adult_turn_and_stop" step="adult_single_step" turn="adult_turn_in_place"  logictype="walk"/>
    <Variant age="teen"    gender="male"   start="adult_turn_and_go" cycle_r="adult_male_walk_r" cycle_l="adult_male_walk_l" stop="adult_turn_and_stop" step="adult_single_step" turn="adult_turn_in_place"  logictype="walk"/>
    <Variant age="child"   gender="male"   start="child_turn_and_go" cycle_r="child_male_walk_r" cycle_l="child_male_walk_l" stop="child_turn_and_stop" step="child_single_step" turn="child_turn_in_place"  logictype="walk"/>
  </Defaults>

</LocomotionConfig>

 

 

Link to comment

@prawnin69 and @Shooty:

 

In case you haven't already found it, there is a resource called LocomotionConfig with a description on how the Locomotion system works:

 

 

 

<!--
  This file defines how to play locomotion animation on sims.

  Move Controllers:
    This defines an animation (or set of) which a specific part of a walkstyle can use. 
    Often these represent a blended combination of several seperate clips, aka blend tree.
    During runtime the game will pass information such as the distance, movement angle, or turn angle it wants
    the animation to play. This information will then be used to blend between the various clips in the 
    controller to hit the desired mark.
    
    Name: name we are giving this movement controller.
    
    Rig: the rig to use
    
    Clone: copy all the clips from the specified move controller. NOTE: The specified controller must already be
      defined.
      
    OverridePrefix: When cloning this will override the prefix of the clip names (for example, you can change all clip 
      names from "a_" to "c_")
    
    Classifiers:
      These describe how the blend tree is arranged. The following can be used in combination with each other.
        'd': distance
        'm': movement angle
        't': turn angle
  
      For example, a classifier of 'd' allows the animation to blend the distances of two clips. Usually
      a long and short. Movement angle allows us to blend clips where the sims direction of 
      travel changes (but orientation stays the same). Turn angle blends clips where the sims 
      orientation (facing direction) changes. Any two or all three of these can be used in combination.
      Valid types are: "d", "t", "m", "dt", "td", "dmt", "md", "mt". Note, the order of the letters can affect
      the resulting blend tree. 
      
      Clip: name of the actual animation clip this controller uses.
        move_side: allows the movement side to be specified, otherwise it is procedurally calculated.
                   move_side indicates which direction the absolute  movement angle is in (for example, 45 degrees to the right)
                   Values can be  "left" or "right".
        move_angle: angle override in degrees.
        turn_side: allows the turn side to be specified, otherwise it is procedurally calculated.
                   turn_side indicates which direction the absolute turn angle is in (for example, 15 degrees to the left)
                   Values can be "left" or "right".
        turn_angle: angle override in degrees.
        distance: allows the distance (float) the clip moves to be specified, otherwise it is procedurally calculated 
        is_pivot: specifies that this clip should be used for distance calculations. If not specified it uses the first animation.
                  Values can be "true" or "false"
        mirror: The clip is mirrored
    
  Style:
    A "style" or "walkstyle" is a group of controllers and other information that specify how locomotion
    should animate. A single style can contain many varients based on age, gender, etc.
    
    Name: the name we give the walkstyle. "walk", "run", etc. This is the name the game refers to.
    
    Varient: Depending on the age, sex, or species of the sim we can select different groups of controllers to play.    
      Age, Gender: self explanitory, these are used to pick the appropriate varient to play for a specific sim.
                   Age values can be "Child", "Teen", "Adult", "Elder". Gender can be "Male" or "Female".
      
      Controllers: start, stop, step, turn, etc: specific parts of a locomotion. The name here specifies which 
      controller to use.
      
      fade cycles are animations that blend over the base cycle. Blend speed is controlled by fadeBlendIn and fadeBlendOut
	  
		fadeBlendIn="1.0"   duration of the blend in in seconds
		fadeBlendOut="1.0"  duration of the blend out in seconds
		fadeStart="0.0"     how many seconds into the cycle before we start to blend in
		fadeEnd="1.0"       how many seconds from the end of the path before we start blending out
      
    DEFUNCT: minMultiplier: this is the smallest multiplier the game can use when slowing down a sim
    DEFUNCT: maxMultiplier: this is the fastest the game can multiply the animation by
    DEFUNCT: maxMultiplierIncrease: how fast the multiplier can ramp up
    DEFUNCT: maxMultiplierDecrease: how fast the multiplier can ramp down
      
    steeringSpeed: how fast procedural steering can turn this sim in degrees per second.
    timeScale: how much to procedurally scale the animation speed by. Defaults to 1.0
    logictype: the internal logic code the game uses to control locomotion. See engineering for valid types.
    allowFocus: allows focus to be disabled during this walkstyle
      
    Defaults: these values are used when something is undefined in a specifc style.
    
-->
<?xml version="1.0" encoding="utf-8" ?>
<LocomotionConfig>

  <!-- ADULTS -->

 
  <MoveController name="adult_turn_and_go" rig="uuRig" classifiers="td" >
    <Clip name="a_loco_default_turnAndGo_0_x" is_pivot="true" />
    <Clip move_side="left" turn_side="left" name="a_loco_default_turnAndGo_L_90_x" />
    <Clip move_side="left" turn_side="left" name="a_loco_default_turnAndGo_L_180_x" />
    <Clip move_side="right" turn_side="right" name="a_loco_default_turnAndGo_R_90_x" />
    <Clip move_side="right" turn_side="right" name="a_loco_default_turnAndGo_R_180_x" />
    <Clip name="a_loco_default_turnAndGo_0_short_x" />
    <Clip move_side="left" turn_side="left" name="a_loco_default_turnAndGo_L_90_short_x" />
    <Clip move_side="left" turn_side="left" name="a_loco_default_turnAndGo_L_180_short_x" />
    <Clip move_side="right" turn_side="right" name="a_loco_default_turnAndGo_R_90_short_x" />
    <Clip move_side="right" turn_side="right" name="a_loco_default_turnAndGo_R_180_short_x" />
  </MoveController>

  <MoveController name="child_turn_and_go" rig="uuRig" classifiers="td" clone="adult_turn_and_go" overrideprefix="c" >
  </MoveController>

  <MoveController name="adult_turn_and_stop" rig="uuRig" classifiers="td" >
    <Clip name="a_loco_default_turnAndStop_2step_0_x" is_pivot="true" />
    <Clip move_side="left" turn_side="left" name="a_loco_default_turnAndStop_L_2step_90_x" turn_angle="89.99" />
    <Clip move_side="left" turn_side="left" name="a_loco_default_turnAndStop_L_90_x" />
    <Clip move_side="left" turn_side="left" name="a_loco_default_turnAndStop_L_180_x" />
    <Clip move_side="right" turn_side="right" name="a_loco_default_turnAndStop_R_2step_90_x" turn_angle="-89.99" />      
    <Clip move_side="right" turn_side="right" name="a_loco_default_turnAndStop_R_90_x" />
    <Clip move_side="right" turn_side="right" name="a_loco_default_turnAndStop_R_180_x" />
    <Clip name="a_loco_default_turnAndStop_2step_0_short_x" />
    <Clip move_side="left" turn_side="left" name="a_loco_default_turnAndStop_L_2step_90_short_x" turn_angle="89.99" /> 
    <Clip move_side="left" turn_side="left" name="a_loco_default_turnAndStop_L_90_short_x" />
    <Clip move_side="left" turn_side="left" name="a_loco_default_turnAndStop_L_180_short_x" />
    <Clip move_side="right" turn_side="right" name="a_loco_default_turnAndStop_R_2step_90_short_x" turn_angle="-89.99" /> 
    <Clip move_side="right" turn_side="right" name="a_loco_default_turnAndStop_R_90_short_x" />
    <Clip move_side="right" turn_side="right" name="a_loco_default_turnAndStop_R_180_short_x" />
  </MoveController>

  <MoveController name="child_turn_and_stop" rig="uuRig" classifiers="td" clone="adult_turn_and_stop" overrideprefix="c" >
  </MoveController>
  
  <MoveController name="reaper_turn_and_go" rig="uuRig" classifiers="td" >
        <Clip move_side="left" turn_side="left" name="a_loco_reaper_turnAndGo_0_x" is_pivot="true" />
        <Clip move_side="left" turn_side="left" name="a_loco_reaper_turnAndGo_L_180_x" />
        <Clip move_side="right" turn_side="right" name="a_loco_reaper_turnAndGo_0_x" turn_angle="-0.01" mirror="true" />
        <Clip move_side="right" turn_side="right" name="a_loco_reaper_turnAndGo_R_180_x" />        
        <Clip move_side="left" turn_side="left" name="a_loco_reaper_turnAndGo_0_short_x" />
        <Clip move_side="left" turn_side="left" name="a_loco_reaper_turnAndGo_L_180_short_x" />
        <Clip move_side="right" turn_side="right" name="a_loco_reaper_turnAndGo_0_short_x" turn_angle="-0.01" mirror="true" />
        <Clip move_side="right" turn_side="right" name="a_loco_reaper_turnAndGo_R_180_short_x" />
  </MoveController>
  
  <MoveController name="reaper_turn_and_stop" rig="uuRig" classifiers="td" >
    <Clip move_side="left" turn_side="left" name="a_loco_reaper_turnAndStop_0_x" is_pivot="true" />
    <Clip move_side="left" turn_side="left" name="a_loco_reaper_turnAndStop_L_180_x" />
    <Clip move_side="right" turn_side="right" name="a_loco_reaper_turnAndStop_0_x" turn_angle="-0.01" mirror="true" />
	<Clip move_side="right" turn_side="right" name="a_loco_reaper_turnAndStop_R_180_x" />  
    <Clip move_side="left" turn_side="left" name="a_loco_reaper_turnAndStop_0_short_x" />
    <Clip move_side="left" turn_side="left" name="a_loco_reaper_turnAndStop_L_180_short_x" />
    <Clip move_side="right" turn_side="right" name="a_loco_reaper_turnAndStop_0_short_x" turn_angle="-0.01" mirror="true" /> 
    <Clip move_side="right" turn_side="right" name="a_loco_reaper_turnAndStop_R_180_short_x" />
  </MoveController>
  
  <MoveController name="reaper_turn_and_stop_to_transition" rig="uuRig" classifiers="td" >
    <Clip name="a_loco_reaper_stairs_turnAndStop_0_2step_x" is_pivot="true" />
    <Clip move_side="left" turn_side="left" name="a_loco_reaper_stairs_turnAndStopL_90_2step_x" />
    <Clip move_side="right" turn_side="right" name="a_loco_reaper_stairs_turnAndStopR_90_2step_x"  />
    <Clip name="a_loco_reaper_stairs_turnAndStop_0_2step_short_x" />
    <Clip move_side="left" turn_side="left" name="a_loco_reaper_stairs_turnAndStopL_90_2step_short_x"  />
    <Clip move_side="right" turn_side="right" name="a_loco_reaper_stairs_turnAndStopR_90_2step_short_x"  />
  </MoveController>

  <MoveController name="adult_turn_and_stop_to_transition" rig="uuRig" classifiers="td" >
    <Clip name="a_loco_stairs_turnAndStop_0_2step_x" is_pivot="true" />
    <Clip move_side="left" turn_side="left" name="a_loco_stairs_turnAndStopL_90_2step_x" />
    <Clip move_side="right" turn_side="right" name="a_loco_stairs_turnAndStopR_90_2step_x"  />
    <Clip name="a_loco_stairs_turnAndStop_0_2step_short_x" />
    <Clip move_side="left" turn_side="left" name="a_loco_stairs_turnAndStopL_90_2step_short_x"  />
    <Clip move_side="right" turn_side="right" name="a_loco_stairs_turnAndStopR_90_2step_short_x"  />
  </MoveController>
  
  <MoveController name="child_turn_and_stop_to_transition" rig="uuRig" classifiers="td" clone="adult_turn_and_stop_to_transition" overrideprefix="c" >
  </MoveController>

  <MoveController name="adult_run_and_stop" rig="uuRig" classifiers="td" >
    <Clip name="a_loco_run_turnAndStop_0_x" is_pivot="true" />
    <Clip name="a_loco_run_turnAndStop_0_short_x" />
  </MoveController>

  <MoveController name="adult_turn_and_run" rig="uuRig" classifiers="td" >
    <Clip name="a_loco_run_turnAndGo_0_x" is_pivot="true" />
    <Clip name="a_loco_run_turnAndGo_0_short_x" />
  </MoveController>

  
  <MoveController name="adult_turn_in_place" rig="uuRig" classifiers="t" >
    <Clip move_side="right" turn_side="right" name="a_loco_turnInPlace_0" />
    <Clip move_side="right" turn_side="right" name="a_loco_turnInPlace_90" />
    <Clip move_side="right" turn_side="right" name="a_loco_turnInPlace_180" />
    <Clip move_side="left"  turn_side="left"  name="a_loco_turnInPlace_0" mirror="true" />
    <Clip move_side="left"  turn_side="left"  name="a_loco_turnInPlace_90" mirror="true" />
    <Clip move_side="left"  turn_side="left"  name="a_loco_turnInPlace_180" mirror="true" />
  </MoveController>
  
   <MoveController name="child_turn_in_place" rig="uuRig" classifiers="t" >
    <Clip move_side="right" turn_side="right" name="c_loco_turnInPlace_0" />
    <Clip move_side="right" turn_side="right" name="c_loco_turnInPlace_90" />
    <Clip move_side="right" turn_side="right" name="c_loco_turnInPlace_180" />
    <Clip move_side="left"  turn_side="left"  name="c_loco_turnInPlace_0" mirror="true" />
    <Clip move_side="left"  turn_side="left"  name="c_loco_turnInPlace_90" mirror="true" />
    <Clip move_side="left"  turn_side="left"  name="c_loco_turnInPlace_180" mirror="true" />
  </MoveController>

  <MoveController name="adult_single_step" rig="uuRig" classifiers="dmt" >
    <!-- long -->
    
    <!-- left arc -->
    <Clip name="a_loco_singleStep_0_0_L" move_side="left" is_pivot="true" />
    <Clip name="a_loco_singleStep_0_90_L" move_side="left" />
    <Clip name="a_loco_singleStep_0_270_L" move_side="left" />
    <Clip name="a_loco_singleStep_0_180_L" move_side="left" />
    <Clip name="a_loco_singleStep_0_180_R" move_side="left" mirror="true" turn_angle="-180.0"/>

    <Clip name="a_loco_singleStep_45_0_L" move_side="left" />
    <Clip name="a_loco_singleStep_45_90_L" move_side="left" />
    <Clip name="a_loco_singleStep_45_270_L" move_side="left" />
    <Clip name="a_loco_singleStep_45_180_L" move_side="left" />
    <Clip name="a_loco_singleStep_45_180_R" move_side="left" mirror="true" turn_angle="-180.0"/>

    <Clip name="a_loco_singleStep_90_0_L" move_side="left" />
    <Clip name="a_loco_singleStep_90_90_L" move_side="left" />
    <Clip name="a_loco_singleStep_90_270_L" move_side="left" />
    <Clip name="a_loco_singleStep_90_180_L" move_side="left" />
    <Clip name="a_loco_singleStep_90_180_R" move_side="left" mirror="true" turn_angle="-180.0"/>

    <Clip name="a_loco_singleStep_135_0_L" move_side="left" />
    <Clip name="a_loco_singleStep_135_90_L" move_side="left" />
    <Clip name="a_loco_singleStep_135_270_L" move_side="left" />
    <Clip name="a_loco_singleStep_135_180_L" move_side="left" />
    <Clip name="a_loco_singleStep_135_180_R" move_side="left" mirror="true" turn_angle="-180.0"/>

    <Clip name="a_loco_singleStep_180_0_L" move_side="left" />
    <Clip name="a_loco_singleStep_180_90_L" move_side="left" />
    <Clip name="a_loco_singleStep_180_270_L" move_side="left" />
    <Clip name="a_loco_singleStep_180_180_L" move_side="left" />
    <Clip name="a_loco_singleStep_180_180_R" move_side="left" mirror="true" turn_angle="-180.0"/>

    <!-- right arc -->
    <Clip name="a_loco_singleStep_0_0_L" move_side="right" mirror="true" move_angle="-0.00001" />
    <Clip name="a_loco_singleStep_0_90_R" move_side="right" move_angle="-0.00001" />
    <Clip name="a_loco_singleStep_0_270_R" move_side="right" move_angle="-0.00001" />
    <Clip name="a_loco_singleStep_0_180_R" move_side="right" move_angle="-0.00001" />
    <Clip name="a_loco_singleStep_0_180_L" move_side="right" move_angle="-0.00001" mirror="true" turn_angle="-180.0" />

    <Clip name="a_loco_singleStep_45_0_L" move_side="right" mirror="true" />
    <Clip name="a_loco_singleStep_45_90_R" move_side="right" />
    <Clip name="a_loco_singleStep_45_270_R" move_side="right" />
    <Clip name="a_loco_singleStep_45_180_R" move_side="right" />
    <Clip name="a_loco_singleStep_45_180_L" move_side="right" mirror="true" turn_angle="-180.0"/>

    <Clip name="a_loco_singleStep_90_0_L" move_side="right" mirror="true" />
    <Clip name="a_loco_singleStep_90_90_R" move_side="right" />
    <Clip name="a_loco_singleStep_90_270_R" move_side="right" />
    <Clip name="a_loco_singleStep_90_180_R" move_side="right" />
    <Clip name="a_loco_singleStep_90_180_L" move_side="right" mirror="true" turn_angle="-180.0"/>

    <Clip name="a_loco_singleStep_135_0_L" move_side="right" mirror="true" />
    <Clip name="a_loco_singleStep_135_90_R" move_side="right" />
    <Clip name="a_loco_singleStep_135_270_R" move_side="right" />
    <Clip name="a_loco_singleStep_135_180_R" move_side="right" />
    <Clip name="a_loco_singleStep_135_180_L" move_side="right" mirror="true" turn_angle="-180.0"/>

    <Clip name="a_loco_singleStep_180_0_L" move_side="right" mirror="true" />
    <Clip name="a_loco_singleStep_180_90_R" move_side="right" />
    <Clip name="a_loco_singleStep_180_270_R" move_side="right" />
    <Clip name="a_loco_singleStep_180_180_R" move_side="right" />
    <Clip name="a_loco_singleStep_180_180_L" move_side="right" mirror="true" turn_angle="-180.0"/>
    
    <!-- short -->
    <Clip name="a_loco_stepInPlace_0_L"  move_side="left" is_pivot="true" move_angle="0" />
    <Clip name="a_loco_stepInPlace_90_L" move_side="left" move_angle="0"  />
    <Clip name="a_loco_stepInPlace_270_L" move_side="left" move_angle="0" />
    <Clip name="a_loco_stepInPlace_180_L" move_side="left" move_angle="0" />
    <Clip name="a_loco_stepInPlace_180_R" move_side="left" move_angle="0" mirror="true" turn_angle="-180.0" />

    <Clip name="a_loco_stepInPlace_0_L"  move_side="right" mirror="true" move_angle="-0.00001" />
    <Clip name="a_loco_stepInPlace_90_R" move_side="right" move_angle="-0.00001" />
    <Clip name="a_loco_stepInPlace_270_R" move_side="right" move_angle="-0.00001" />
    <Clip name="a_loco_stepInPlace_180_R" move_side="right" move_angle="-0.00001" />
    <Clip name="a_loco_stepInPlace_180_L" move_side="right" move_angle="-0.00001" mirror="true" turn_angle="-180.0" />
  </MoveController>

  <MoveController name="child_single_step" rig="uuRig" classifiers="dmt" clone="adult_single_step" overrideprefix="c" >
  </MoveController>

  <MoveController name="adult_default_walk_r" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
   <Clip name="a_loco_default_walk_RFoot_short_x" /> 
    <Clip name="a_loco_default_walk_RFoot_medium_x" is_pivot="true" />
     <Clip name="a_loco_default_walk_RFoot_long_x" />  
  </MoveController>

  <MoveController name="adult_default_walk_l" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
     <Clip name="a_loco_default_walk_LFoot_short_x" /> 
    <Clip name="a_loco_default_walk_LFoot_medium_x" is_pivot="true" />
     <Clip name="a_loco_default_walk_LFoot_long_x" /> 
  </MoveController>
  
  <MoveController name="adult_male_walk_r" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_male_walk_RFoot_short_x" />
    <Clip name="a_loco_male_walk_RFoot_medium_x" is_pivot="true" />
    <Clip name="a_loco_male_walk_RFoot_long_x" />
    <Clip name="a_loco_male_walk_RFoot_max_x" />
  </MoveController>

  <MoveController name="adult_male_walk_l" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_male_walk_LFoot_short_x" />
    <Clip name="a_loco_male_walk_LFoot_medium_x" is_pivot="true" />
    <Clip name="a_loco_male_walk_LFoot_long_x" />
    <Clip name="a_loco_male_walk_LFoot_max_x" />
  </MoveController>
  
  <MoveController name="adult_female_walk_r" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_female_walk_RFoot_short_x" />
    <Clip name="a_loco_female_walk_RFoot_x" is_pivot="true" />
    <Clip name="a_loco_female_walk_RFoot_long_x" />
  </MoveController>

  <MoveController name="adult_female_walk_l" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_female_walk_LFoot_short_x" />
    <Clip name="a_loco_female_walk_LFoot_x" is_pivot="true" />
    <Clip name="a_loco_female_walk_LFoot_long_x" />
  </MoveController>
  
    <MoveController name="elder_walk_r" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="e_loco_elder_walk_RFoot_short_x" />
     <Clip name="e_loco_elder_walk_RFoot_medium_x" is_pivot="true" />
  </MoveController>

  <MoveController name="elder_walk_l" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="e_loco_elder_walk_LFoot_short_x" />
    <Clip name="e_loco_elder_walk_LFoot_medium_x" is_pivot="true" />
  </MoveController>

  <MoveController name="child_male_walk_r" rig="uuRig" classifiers="d" >
    <Clip name="c_stand_posture_x" />
    <Clip name="c_loco_kid_walk_RFoot_short_x" />
    <Clip name="c_loco_kid_walk_RFoot_x" is_pivot="true" />
    <Clip name="c_loco_run_RFoot_x" />
  </MoveController>

  <MoveController name="child_male_walk_l" rig="uuRig" classifiers="d" >
    <Clip name="c_stand_posture_x" />
    <Clip name="c_loco_kid_walk_LFoot_short_x" />
    <Clip name="c_loco_kid_walk_LFoot_x" is_pivot="true" />
    <Clip name="c_loco_run_LFoot_x" />
  </MoveController>

  <MoveController name="adult_walk_sad_r" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_walk_sad_RFoot_short_x" />
    <Clip name="a_loco_walk_sad_RFoot_medium_x" is_pivot="true" />
    <Clip name="a_loco_walk_sad_RFoot_long_x" />
  </MoveController>

  <MoveController name="child_walk_sad_r" rig="uuRig" classifiers="d" clone="adult_walk_sad_r" overrideprefix="c" >
  </MoveController>
  
  <MoveController name="adult_walk_sad_l" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_walk_sad_LFoot_short_x" />
    <Clip name="a_loco_walk_sad_LFoot_medium_x" is_pivot="true" />
    <Clip name="a_loco_walk_sad_LFoot_long_x" />
  </MoveController>  
  
  <MoveController name="child_walk_sad_l" rig="uuRig" classifiers="d" clone="adult_walk_sad_l" overrideprefix="c" >
  </MoveController>
  
  <MoveController name="adult_walk_angry_r" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_walk_angry_RFoot_short_x" />
    <Clip name="a_loco_walk_angry_RFoot_medium_x" is_pivot="true" />
    <Clip name="a_loco_walk_angry_RFoot_long_x" />
  </MoveController>
  
  <MoveController name="child_walk_angry_r" rig="uuRig" classifiers="d" clone="adult_walk_angry_r" overrideprefix="c" >
  </MoveController>

  <MoveController name="adult_walk_angry_l" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_walk_angry_LFoot_short_x" />
    <Clip name="a_loco_walk_angry_LFoot_medium_x" is_pivot="true" />
    <Clip name="a_loco_walk_angry_LFoot_long_x" />
  </MoveController>  
  
   <MoveController name="child_walk_angry_l" rig="uuRig" classifiers="d" clone="adult_walk_angry_l" overrideprefix="c" >
  </MoveController>

  <MoveController name="adult_walk_pregnant_r" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_walk_pregnant_RFoot_short_x" />
    <Clip name="a_loco_walk_pregnant_RFoot_medium_x" is_pivot="true" />
    <Clip name="a_loco_walk_pregnant_RFoot_long_x" />
  </MoveController>

  <MoveController name="adult_walk_pregnant_l" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_walk_pregnant_LFoot_short_x" />
    <Clip name="a_loco_walk_pregnant_LFoot_medium_x" is_pivot="true" />
    <Clip name="a_loco_walk_pregnant_LFoot_long_x" />
  </MoveController>  

  <MoveController name="adult_walk_perky_r" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_walk_perky_RFoot_short_x" />
    <Clip name="a_loco_walk_perky_RFoot_medium_x" is_pivot="true" />
    <Clip name="a_loco_walk_perky_RFoot_long_x" />
  </MoveController>

  <MoveController name="adult_walk_perky_l" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_walk_perky_LFoot_short_x" />
    <Clip name="a_loco_walk_perky_LFoot_medium_x" is_pivot="true" />
    <Clip name="a_loco_walk_perky_LFoot_long_x" />
  </MoveController>  
  
   <MoveController name="adult_walk_snooty_r" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_walk_snooty_RFoot_short_x" />
    <Clip name="a_loco_walk_snooty_RFoot_medium_x" is_pivot="true" />
    <Clip name="a_loco_walk_snooty_RFoot_long_x" />
  </MoveController>

  <MoveController name="adult_walk_snooty_l" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_walk_snooty_LFoot_short_x" />
    <Clip name="a_loco_walk_snooty_LFoot_medium_x" is_pivot="true" />
    <Clip name="a_loco_walk_snooty_LFoot_long_x" />
  </MoveController>  
  
   <MoveController name="adult_walk_swagger_r" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_walk_swagger_RFoot_short_x" />
    <Clip name="a_loco_walk_swagger_RFoot_medium_x" is_pivot="true" />
    <Clip name="a_loco_walk_swagger_RFoot_long_x" />
  </MoveController>

  <MoveController name="adult_walk_swagger_l" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_walk_swagger_LFoot_short_x" />
    <Clip name="a_loco_walk_swagger_LFoot_medium_x" is_pivot="true" />
    <Clip name="a_loco_walk_swagger_LFoot_long_x" />
  </MoveController>  

<MoveController name="adult_walk_confident_r" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_walk_confident_RFoot_short_x" />
    <Clip name="a_loco_walk_confident_RFoot_medium_x" is_pivot="true" />
    <Clip name="a_loco_walk_confident_RFoot_long_x" />
  </MoveController>
  
  <MoveController name="child_walk_confident_r" rig="uuRig" classifiers="d" clone="adult_walk_confident_r" overrideprefix="c" >
  </MoveController>

  <MoveController name="adult_walk_confident_l" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_walk_confident_LFoot_short_x" />
    <Clip name="a_loco_walk_confident_LFoot_medium_x" is_pivot="true" />
    <Clip name="a_loco_walk_confident_LFoot_long_x" />
  </MoveController> 
  
    <MoveController name="child_walk_confident_l" rig="uuRig" classifiers="d" clone="adult_walk_confident_l" overrideprefix="c" >
  </MoveController>
  
  <MoveController name="adult_walk_goofy_r" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_walk_goofy_RFoot_short_x" />
    <Clip name="a_loco_walk_goofy_RFoot_medium_x" is_pivot="true" />
    <Clip name="a_loco_walk_goofy_RFoot_long_x" />
  </MoveController>

  <MoveController name="adult_walk_goofy_l" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_walk_goofy_LFoot_short_x" />
    <Clip name="a_loco_walk_goofy_LFoot_medium_x" is_pivot="true" />
    <Clip name="a_loco_walk_goofy_LFoot_long_x" />
  </MoveController>
  
  <MoveController name="adult_walk_pee_r" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_pee_walk_RFoot_short_x" />
    <Clip name="a_loco_pee_walk_RFoot_medium_x" is_pivot="true" />
  </MoveController>
  
  <MoveController name="child_walk_pee_r" rig="uuRig" classifiers="d" clone="adult_walk_pee_r" overrideprefix="c" >
  </MoveController>

  <MoveController name="adult_walk_pee_l" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_pee_walk_LFoot_short_x" />
    <Clip name="a_loco_pee_walk_LFoot_medium_x" is_pivot="true" />
  </MoveController>
  
   <MoveController name="child_walk_pee_l" rig="uuRig" classifiers="d" clone="adult_walk_pee_l" overrideprefix="c" >
  </MoveController>
  
    <MoveController name="adult_walk_energetic_r" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_walk_energetic_RFoot_short_x" />
    <Clip name="a_loco_walk_energetic_RFoot_medium_x" is_pivot="true" />
    <Clip name="a_loco_walk_energetic_RFoot_long_x" />
  </MoveController>
  
  <MoveController name="child_walk_energetic_r" rig="uuRig" classifiers="d" clone="adult_walk_energetic_r" overrideprefix="c" >
  </MoveController>

  <MoveController name="adult_walk_energetic_l" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_walk_energetic_LFoot_short_x" />
    <Clip name="a_loco_walk_energetic_LFoot_medium_x" is_pivot="true" />
    <Clip name="a_loco_walk_energetic_LFoot_long_x" />
  </MoveController>
  
   <MoveController name="child_walk_energetic_l" rig="uuRig" classifiers="d" clone="adult_walk_energetic_l" overrideprefix="c" >
  </MoveController>
 
  <MoveController name="adult_walk_masculine_r" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_walk_masculine_RFoot_short_x" />
    <Clip name="a_loco_walk_masculine_RFoot_medium_x" is_pivot="true" />
    <Clip name="a_loco_walk_masculine_RFoot_long_x" />
  </MoveController>

  <MoveController name="adult_walk_masculine_l" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_walk_masculine_LFoot_short_x" />
    <Clip name="a_loco_walk_masculine_LFoot_medium_x" is_pivot="true" />
    <Clip name="a_loco_walk_masculine_LFoot_long_x" />
  </MoveController>
  
  <MoveController name="adult_walk_sleepy_r" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_walk_sleepy_RFoot_short_x" />
    <Clip name="a_loco_walk_sleepy_RFoot_medium_x" is_pivot="true" />
    <Clip name="a_loco_walk_sleepy_RFoot_long_x" />
  </MoveController>
  
  <MoveController name="child_walk_sleepy_r" rig="uuRig" classifiers="d" clone="adult_walk_sleepy_r" overrideprefix="c" >
  </MoveController>

  <MoveController name="adult_walk_sleepy_l" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_walk_sleepy_LFoot_short_x" />
    <Clip name="a_loco_walk_sleepy_LFoot_medium_x" is_pivot="true" />
    <Clip name="a_loco_walk_sleepy_LFoot_long_x" />
  </MoveController>  
  
    <MoveController name="child_walk_sleepy_l" rig="uuRig" classifiers="d" clone="adult_walk_sleepy_l" overrideprefix="c" >
  </MoveController>
  
   <MoveController name="adult_walk_feminine_r" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_walk_feminine_RFoot_short_x" /> 
    <Clip name="a_loco_walk_feminine_RFoot_medium_x" is_pivot="true" />
    <Clip name="a_loco_walk_feminine_RFoot_long_x" />  
  </MoveController>

  <MoveController name="adult_walk_feminine_l" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_walk_feminine_LFoot_short_x" /> 
    <Clip name="a_loco_walk_feminine_LFoot_medium_x" is_pivot="true" />
    <Clip name="a_loco_walk_feminine_LFoot_long_x" /> 
  </MoveController>
  
  <MoveController name="adult_walk_reaper_r" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_walk_reaper_RFoot_short_x" />
    <Clip name="a_loco_walk_reaper_RFoot_medium_x" is_pivot="true" />
    <Clip name="a_loco_walk_reaper_RFoot_long_x" />
  </MoveController>

  <MoveController name="adult_walk_reaper_l" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_walk_reaper_LFoot_short_x" />
    <Clip name="a_loco_walk_reaper_LFoot_medium_x" is_pivot="true" />
    <Clip name="a_loco_walk_reaper_LFoot_long_x" />
  </MoveController>  
  
  <MoveController name="adult_run_r" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_run_RFoot_x" is_pivot="true" />
    <Clip name="a_loco_male_walk_RFoot_medium_x" />
    <Clip name="a_loco_jog_RFoot_x" />
  </MoveController>

  <MoveController name="adult_run_l" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_run_LFoot_x" is_pivot="true" />
    <Clip name="a_loco_male_walk_LFoot_medium_x" />
    <Clip name="a_loco_jog_LFoot_x" />
  </MoveController>
  
  <MoveController name="adult_run_panic_r" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_run_panic_RFoot_short_x" />
    <Clip name="a_loco_run_panic_RFoot_x" is_pivot="true" />
  </MoveController>
    
  <MoveController name="adult_run_panic_l" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_run_panic_LFoot_short_x" />
    <Clip name="a_loco_run_panic_LFoot_x" is_pivot="true" />
  </MoveController>
  
  <MoveController name="child_run_panic_r" rig="uuRig" classifiers="d" >
    <Clip name="c_stand_posture_x" />
    <Clip name="c_loco_run_panic_RFoot_short_x" />
    <Clip name="c_loco_run_panic_RFoot_x" is_pivot="true" />
  </MoveController>
  
  <MoveController name="child_run_panic_l" rig="uuRig" classifiers="d" >
    <Clip name="c_stand_posture_x" />
    <Clip name="c_loco_run_panic_LFoot_x" is_pivot="true" />
    <Clip name="c_loco_run_panic_LFoot_short_x" />
  </MoveController>

  <MoveController name="adult_jog_r" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_jog_RFoot_x" is_pivot="true" />
    <Clip name="a_loco_male_walk_RFoot_medium_x" />
     </MoveController>

  <MoveController name="adult_jog_l" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
    <Clip name="a_loco_jog_LFoot_x" is_pivot="true" />
    <Clip name="a_loco_male_walk_LFoot_medium_x" />
    </MoveController>
  
  <MoveController name="adult_male_jog_r" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
	<Clip name="a_loco_jog_male_RFoot_short_x" />
    <Clip name="a_loco_jog_male_RFoot_x" is_pivot="true" />
    <Clip name="a_loco_male_walk_RFoot_medium_x" />
    </MoveController>

  <MoveController name="adult_male_jog_l" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
	<Clip name="a_loco_jog_male_LFoot_short_x" />
    <Clip name="a_loco_jog_male_LFoot_x" is_pivot="true" />
    <Clip name="a_loco_male_walk_LFoot_medium_x" />
 
  </MoveController>
  
    <MoveController name="adult_female_jog_r" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
	<Clip name="a_loco_jog_female_RFoot_short_x" />
    <Clip name="a_loco_jog_female_RFoot_x" is_pivot="true" />
    <Clip name="a_loco_male_walk_RFoot_medium_x" />
  </MoveController>

  <MoveController name="adult_female_jog_l" rig="uuRig" classifiers="d" >
    <Clip name="a_stand_posture_x" />
	<Clip name="a_loco_jog_female_LFoot_short_x" />
    <Clip name="a_loco_jog_female_LFoot_x" is_pivot="true" />
    <Clip name="a_loco_male_walk_LFoot_medium_x" />
  </MoveController>
	
  <MoveController name="child_jog_r" rig="uuRig" classifiers="d" >
    <Clip name="c_stand_posture_x" />
	<Clip name="c_loco_jog_RFoot_short_x" />
    <Clip name="c_loco_jog_RFoot_x" is_pivot="true" />
    <Clip name="c_loco_kid_walk_RFoot_x" />
  </MoveController>

  <MoveController name="child_jog_l" rig="uuRig" classifiers="d" >
    <Clip name="c_stand_posture_x" />
	<Clip name="c_loco_jog_LFoot_short_x" />
    <Clip name="c_loco_jog_LFoot_x" is_pivot="true" />
    <Clip name="c_loco_kid_walk_LFoot_x" />
  </MoveController>

  <!-- Stairs -->

  <MoveController name="adult_male_stairs_up_start" rig="uuRig" classifiers="d" >
    <Clip name="a_loco_stairs_startUp_walk_x" is_pivot="true" />
  </MoveController>

  <MoveController name="adult_male_stairs_up_cycle" rig="uuRig" classifiers="d" >
    <Clip name="a_loco_stairs_stepUp_x" is_pivot="true" />
  </MoveController>

  <MoveController name="adult_male_stairs_up_stop" rig="uuRig" classifiers="td" >
    <Clip name="a_loco_stairs_stopUp_walk_x" is_pivot="true" />
    <Clip name="a_loco_stairs_stopUp_90_walk_x"  turn_angle="90" />
    <Clip name="a_loco_stairs_stopUp_270_walk_x"  turn_angle="-90" />  
  </MoveController>

  <MoveController name="adult_male_stairs_down_start" rig="uuRig" classifiers="d" >
    <Clip name="a_loco_stairs_startDown_walk_x" is_pivot="true" />
  </MoveController>

  <MoveController name="adult_male_stairs_down_cycle" rig="uuRig" classifiers="d" >
    <Clip name="a_loco_stairs_stepDown_x" is_pivot="true" />
  </MoveController>

  <MoveController name="adult_male_stairs_down_stop" rig="uuRig" classifiers="td" >
    <Clip name="a_loco_stairs_stopDown_walk_x" is_pivot="true" />
    <Clip name="a_loco_stairs_stopDown_90_walk_x"  turn_angle="90" />
    <Clip name="a_loco_stairs_stopDown_270_walk_x"  turn_angle="-90" />
  </MoveController>
  
  <MoveController name="child_male_stairs_up_start" rig="uuRig" classifiers="d" >
    <Clip name="c_loco_stairs_startUp_walk_x" is_pivot="true" />
  </MoveController>

  <MoveController name="child_male_stairs_up_cycle" rig="uuRig" classifiers="d" >
    <Clip name="c_loco_stairs_stepUp_x" is_pivot="true" />
  </MoveController>

  <MoveController name="child_male_stairs_up_stop" rig="uuRig" classifiers="td" >
    <Clip name="c_loco_stairs_stopUp_walk_x" is_pivot="true" />
	<Clip name="c_loco_stairs_stopUp_90_walk_x" turn_angle="90" />
	<Clip name="c_loco_stairs_stopUp_270_walk_x" turn_angle="-90" />
  </MoveController>

  <MoveController name="child_male_stairs_down_start" rig="uuRig" classifiers="d" >
    <Clip name="c_loco_stairs_startDown_walk_x" is_pivot="true" />
  </MoveController>

  <MoveController name="child_male_stairs_down_cycle" rig="uuRig" classifiers="d" >
    <Clip name="c_loco_stairs_stepDown_x" is_pivot="true" />
  </MoveController>

  <MoveController name="child_male_stairs_down_stop" rig="uuRig" classifiers="td" >
    <Clip name="c_loco_stairs_stopDown_walk_x" is_pivot="true" />
	<Clip name="c_loco_stairs_stopDown_90_walk_x"  turn_angle="90" />
    <Clip name="c_loco_stairs_stopDown_270_walk_x"  turn_angle="-90" />
  </MoveController>
  
  <MoveController name="reaper_stairs_up_start" rig="uuRig" classifiers="d" >
    <Clip name="a_loco_reaper_stairs_startUp_walk_x" is_pivot="true" />
  </MoveController>

  <MoveController name="reaper_stairs_up_cycle" rig="uuRig" classifiers="d" >
    <Clip name="a_loco_reaper_stairs_stepUp_x" is_pivot="true" />
  </MoveController>

  <MoveController name="reaper_stairs_up_stop" rig="uuRig" classifiers="d" >
    <Clip name="a_loco_reaper_stairs_stopUp_walk_x" is_pivot="true" />
  </MoveController>

  <MoveController name="reaper_stairs_down_start" rig="uuRig" classifiers="d" >
    <Clip name="a_loco_reaper_stairs_startDown_walk_x" is_pivot="true" />
  </MoveController>

  <MoveController name="reaper_stairs_down_cycle" rig="uuRig" classifiers="d" >
    <Clip name="a_loco_reaper_stairs_stepDown_x" is_pivot="true" />
  </MoveController>

  <MoveController name="reaper_stairs_down_stop" rig="uuRig" classifiers="d" >
    <Clip name="a_loco_reaper_stairs_stopDown_walk_x" is_pivot="true" />
  </MoveController>
  


  <!-- Walk Style Definitions -->

  <Style name="Walk">
    <Variant age="adult"   gender="male"   start="adult_turn_and_go" cycle_r="adult_default_walk_r" cycle_l="adult_default_walk_l" cycle_fade_r="adult_male_walk_r" cycle_fade_l="adult_male_walk_l" fadeBlendIn="0.8" fadeBlendOut="0.8" fadeStart="0" fadeEnd="1" stop="adult_turn_and_stop" stop_with_transition="adult_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="180.0" minMultiplier="0.5" maxMultiplier="2" maxMultiplierIncrease="0.5" maxMultiplierDecrease="0.5" logictype="walk" />
    <Variant age="adult"   gender="female"   start="adult_turn_and_go" cycle_r="adult_default_walk_r" cycle_l="adult_default_walk_l" cycle_fade_r="adult_female_walk_r" cycle_fade_l="adult_female_walk_l" fadeBlendIn="0.8" fadeBlendOut="0.8" fadeStart="0" fadeEnd="1" stop="adult_turn_and_stop" stop_with_transition="adult_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="180.0" minMultiplier="0.5" maxMultiplier="2" maxMultiplierIncrease="0.5" maxMultiplierDecrease="0.5" logictype="walk" />
	<Variant age="elder"   gender="male"   start="adult_turn_and_go" cycle_r="adult_default_walk_r" cycle_l="adult_default_walk_l" cycle_fade_r="elder_walk_r" cycle_fade_l="elder_walk_l" fadeBlendIn="0.8" fadeBlendOut="0.8" fadeStart="0" fadeEnd="1" stop="adult_turn_and_stop" stop_with_transition="adult_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="180.0" minMultiplier="0.5" maxMultiplier="2" maxMultiplierIncrease="0.5" maxMultiplierDecrease="0.5" logictype="walk" />
	<Variant age="elder"   gender="female"   start="adult_turn_and_go" cycle_r="adult_default_walk_r" cycle_l="adult_default_walk_l" cycle_fade_r="elder_walk_r" cycle_fade_l="elder_walk_l" fadeBlendIn="0.8" fadeBlendOut="0.8" fadeStart="0" fadeEnd="1" stop="adult_turn_and_stop" stop_with_transition="adult_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="180.0" minMultiplier="0.5" maxMultiplier="2" maxMultiplierIncrease="0.5" maxMultiplierDecrease="0.5" logictype="walk" />
	<Variant age="child"   gender="male"   start="child_turn_and_go" cycle_r="child_male_walk_r" cycle_l="child_male_walk_l"  stop="child_turn_and_stop" stop_with_transition="child_turn_and_stop_to_transition" turn="child_turn_in_place" steeringSpeed="180.0" minMultiplier="0.5" maxMultiplier="2" maxMultiplierIncrease="0.5" maxMultiplierDecrease="0.5" logictype="walk" />
  </Style>

  <Style name="WalkSlow">
    <Variant age="adult"   gender="male"   start="adult_turn_and_go" cycle_r="adult_default_walk_r" cycle_l="adult_default_walk_l" cycle_fade_r="adult_male_walk_r" cycle_fade_l="adult_male_walk_l" fadeBlendIn="0.8" fadeBlendOut="0.8" fadeStart="0" fadeEnd="1" stop="adult_turn_and_stop" stop_with_transition="adult_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="180.0" timeScale="1.2" logictype="walk" />
    <Variant age="adult"   gender="female"   start="adult_turn_and_go" cycle_r="adult_default_walk_r" cycle_l="adult_default_walk_l" cycle_fade_r="adult_female_walk_r" cycle_fade_l="adult_female_walk_l" fadeBlendIn="0.8" fadeBlendOut="0.8" fadeStart="0" fadeEnd="1" stop="adult_turn_and_stop" stop_with_transition="adult_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="180.0" timeScale="1.2" logictype="walk" />
    <Variant age="child"   gender="male"   start="child_turn_and_go" cycle_r="child_male_walk_r" cycle_l="child_male_walk_l"  stop="child_turn_and_stop" stop_with_transition="child_turn_and_stop_to_transition" turn="child_turn_in_place" steeringSpeed="180.0" timeScale="1.0" logictype="walk" />
  </Style>

  <Style name="WalkFast">
    <Variant age="adult"   gender="male"   start="adult_turn_and_go" cycle_r="adult_default_walk_r" cycle_l="adult_default_walk_l" cycle_fade_r="adult_male_walk_r" cycle_fade_l="adult_male_walk_l" fadeBlendIn="0.8" fadeBlendOut="0.8" fadeStart="0" fadeEnd="1" stop="adult_turn_and_stop" stop_with_transition="adult_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="180.0" timeScale="0.8" logictype="walk" />
    <Variant age="adult"   gender="female"   start="adult_turn_and_go" cycle_r="adult_default_walk_r" cycle_l="adult_default_walk_l" cycle_fade_r="adult_female_walk_r" cycle_fade_l="adult_female_walk_l" fadeBlendIn="0.8" fadeBlendOut="0.8" fadeStart="0" fadeEnd="1" stop="adult_turn_and_stop" stop_with_transition="adult_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="180.0" timeScale="0.8" logictype="walk" />
    <Variant age="child"   gender="male"   start="child_turn_and_go" cycle_r="child_male_walk_r" cycle_l="child_male_walk_l"  stop="child_turn_and_stop" stop_with_transition="child_turn_and_stop_to_transition" turn="child_turn_in_place" steeringSpeed="180.0" timeScale="0.5" logictype="walk" />
  </Style>

  <Style name="WalkSad">
    <Variant age="adult"   gender="male"   start="adult_turn_and_go" cycle_r="adult_default_walk_r" cycle_l="adult_default_walk_l" cycle_fade_r="adult_walk_sad_r" cycle_fade_l="adult_walk_sad_l" fadeBlendIn="1.0" fadeBlendOut="1.0" fadeStart="0" fadeEnd="1" stop="adult_turn_and_stop" stop_with_transition="adult_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="200.0" timeScale="1.3" allowFocus="false" logictype="walk" />
    <Variant age="adult"   gender="female"   start="adult_turn_and_go" cycle_r="adult_default_walk_r" cycle_l="adult_default_walk_l" cycle_fade_r="adult_walk_sad_r" cycle_fade_l="adult_walk_sad_l" fadeBlendIn="1.0" fadeBlendOut="1.0" fadeStart="0" fadeEnd="1" stop="adult_turn_and_stop" stop_with_transition="adult_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="200.0" timeScale="1.3" allowFocus="false" logictype="walk" />
    <Variant age="child"   gender="male"   start="child_turn_and_go" cycle_r="child_male_walk_r" cycle_l="child_male_walk_l"  cycle_fade_r="child_walk_sad_r" cycle_fade_l="child_walk_sad_l" fadeBlendIn="1.0" fadeBlendOut="1.0" fadeStart="0" fadeEnd="1"  stop="child_turn_and_stop" stop_with_transition="child_turn_and_stop_to_transition" turn="child_turn_in_place" steeringSpeed="200.0" timeScale="1.0" allowFocus="false" logictype="walk" />
  </Style> 

  <Style name="WalkAngry">
    <Variant age="adult"   gender="male"   start="adult_turn_and_go" cycle_r="adult_default_walk_r" cycle_l="adult_default_walk_l" cycle_fade_r="adult_walk_angry_r" cycle_fade_l="adult_walk_angry_l" fadeBlendIn="1.0" fadeBlendOut="1.0" fadeStart="0" fadeEnd="1" stop="adult_turn_and_stop" stop_with_transition="adult_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="180.0" timeScale="1.0" logictype="walk" />
    <Variant age="adult"   gender="female"   start="adult_turn_and_go" cycle_r="adult_default_walk_r" cycle_l="adult_default_walk_l" cycle_fade_r="adult_walk_angry_r" cycle_fade_l="adult_walk_angry_l" fadeBlendIn="1.0" fadeBlendOut="1.0" fadeStart="0" fadeEnd="1" stop="adult_turn_and_stop" stop_with_transition="adult_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="180.0" timeScale="1.0" logictype="walk" />
    <Variant age="child"   gender="male"   start="child_turn_and_go" cycle_r="child_male_walk_r" cycle_l="child_male_walk_l"  cycle_fade_r="child_walk_angry_r" cycle_fade_l="child_walk_angry_l" fadeBlendIn="1.0" fadeBlendOut="1.0" fadeStart="0" fadeEnd="1"  stop="child_turn_and_stop" stop_with_transition="child_turn_and_stop_to_transition" turn="child_turn_in_place" steeringSpeed="180.0" timeScale="1.0" logictype="walk" />
  </Style> 
  
<Style name="WalkPregnant">
    <Variant age="adult"   gender="female"   start="adult_turn_and_go" cycle_r="adult_default_walk_r" cycle_l="adult_default_walk_l" cycle_fade_r="adult_walk_pregnant_r" cycle_fade_l="adult_walk_pregnant_l" fadeBlendIn="1.0" fadeBlendOut="1.0" fadeStart="0" fadeEnd="1" stop="adult_turn_and_stop" stop_with_transition="adult_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="180.0" timeScale="1.0" logictype="walk" />
  </Style>  

<Style name="WalkReaper">
    <Variant age="adult"   gender="female"   start="reaper_turn_and_go" cycle_r="adult_walk_reaper_r" cycle_l="adult_walk_reaper_l" cycle_fade_r="adult_walk_reaper_r" cycle_fade_l="adult_walk_reaper_l" fadeBlendIn="1.0" fadeBlendOut="1.0" fadeStart="0" fadeEnd="1" stop="reaper_turn_and_stop" stop_with_transition="reaper_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="180.0" logictype="walk" />
    <Variant age="adult"   gender="male"   start="reaper_turn_and_go" cycle_r="adult_walk_reaper_r" cycle_l="adult_walk_reaper_l" cycle_fade_r="adult_walk_reaper_r" cycle_fade_l="adult_walk_reaper_l" fadeBlendIn="1.0" fadeBlendOut="1.0" fadeStart="0" fadeEnd="1" stop="reaper_turn_and_stop" stop_with_transition="reaper_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="180.0" logictype="walk" />
 </Style>  
  
  <Style name="WalkSwagger">
    <Variant age="adult"   gender="male"   start="adult_turn_and_go" cycle_r="adult_default_walk_r" cycle_l="adult_default_walk_l" cycle_fade_r="adult_walk_swagger_r" cycle_fade_l="adult_walk_swagger_l" fadeBlendIn="0.8" fadeBlendOut="0.8" fadeStart="0" fadeEnd="1" stop="adult_turn_and_stop" stop_with_transition="adult_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="180.0" minMultiplier="0.5" maxMultiplier="2" maxMultiplierIncrease="0.5" maxMultiplierDecrease="0.5" logictype="walk" />
    <Variant age="adult"   gender="female"   start="adult_turn_and_go" cycle_r="adult_default_walk_r" cycle_l="adult_default_walk_l" cycle_fade_r="adult_walk_swagger_r" cycle_fade_l="adult_walk_swagger_l" fadeBlendIn="0.8" fadeBlendOut="0.8" fadeStart="0" fadeEnd="1" stop="adult_turn_and_stop" stop_with_transition="adult_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="180.0" minMultiplier="0.5" maxMultiplier="2" maxMultiplierIncrease="0.5" maxMultiplierDecrease="0.5" logictype="walk" />
	<Variant age="child"   gender="male"   start="child_turn_and_go" cycle_r="child_male_walk_r" cycle_l="child_male_walk_l"  stop="child_turn_and_stop" stop_with_transition="child_turn_and_stop_to_transition" turn="child_turn_in_place" steeringSpeed="180.0" minMultiplier="0.5" maxMultiplier="2" maxMultiplierIncrease="0.5" maxMultiplierDecrease="0.5" logictype="walk" />
  </Style>
  
 <Style name="WalkSnooty">
    <Variant age="adult"   gender="male"   start="adult_turn_and_go" cycle_r="adult_default_walk_r" cycle_l="adult_default_walk_l" cycle_fade_r="adult_walk_snooty_r" cycle_fade_l="adult_walk_snooty_l" fadeBlendIn="0.8" fadeBlendOut="0.8" fadeStart="0" fadeEnd="1" stop="adult_turn_and_stop" stop_with_transition="adult_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="180.0" minMultiplier="0.5" maxMultiplier="2" maxMultiplierIncrease="0.5" maxMultiplierDecrease="0.5" logictype="walk" />
    <Variant age="adult"   gender="female"   start="adult_turn_and_go" cycle_r="adult_default_walk_r" cycle_l="adult_default_walk_l" cycle_fade_r="adult_walk_snooty_r" cycle_fade_l="adult_walk_snooty_l" fadeBlendIn="0.8" fadeBlendOut="0.8" fadeStart="0" fadeEnd="1" stop="adult_turn_and_stop" stop_with_transition="adult_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="180.0" minMultiplier="0.5" maxMultiplier="2" maxMultiplierIncrease="0.5" maxMultiplierDecrease="0.5" logictype="walk" />
	<Variant age="child"   gender="male"   start="child_turn_and_go" cycle_r="child_male_walk_r" cycle_l="child_male_walk_l"  stop="child_turn_and_stop" stop_with_transition="child_turn_and_stop_to_transition" turn="child_turn_in_place" steeringSpeed="180.0" minMultiplier="0.5" maxMultiplier="2" maxMultiplierIncrease="0.5" maxMultiplierDecrease="0.5" logictype="walk" />
  </Style>
  
 <Style name="WalkPerky">
    <Variant age="adult"   gender="male"   start="adult_turn_and_go" cycle_r="adult_default_walk_r" cycle_l="adult_default_walk_l" cycle_fade_r="adult_walk_perky_r" cycle_fade_l="adult_walk_perky_l" fadeBlendIn="0.8" fadeBlendOut="0.8" fadeStart="0" fadeEnd="1" stop="adult_turn_and_stop" stop_with_transition="adult_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="180.0" minMultiplier="0.5" maxMultiplier="2" maxMultiplierIncrease="0.5" maxMultiplierDecrease="0.5" logictype="walk" />
    <Variant age="adult"   gender="female"   start="adult_turn_and_go" cycle_r="adult_default_walk_r" cycle_l="adult_default_walk_l" cycle_fade_r="adult_walk_perky_r" cycle_fade_l="adult_walk_perky_l" fadeBlendIn="0.8" fadeBlendOut="0.8" fadeStart="0" fadeEnd="1" stop="adult_turn_and_stop" stop_with_transition="adult_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="180.0" minMultiplier="0.5" maxMultiplier="2" maxMultiplierIncrease="0.5" maxMultiplierDecrease="0.5" logictype="walk" />
	<Variant age="child"   gender="male"   start="child_turn_and_go" cycle_r="child_male_walk_r" cycle_l="child_male_walk_l"  stop="child_turn_and_stop" stop_with_transition="child_turn_and_stop_to_transition" turn="child_turn_in_place" steeringSpeed="180.0" minMultiplier="0.5" maxMultiplier="2" maxMultiplierIncrease="0.5" maxMultiplierDecrease="0.5" logictype="walk" />
  </Style>
  
  <Style name="WalkConfident">
    <Variant age="adult"   gender="male"   start="adult_turn_and_go" cycle_r="adult_default_walk_r" cycle_l="adult_default_walk_l" cycle_fade_r="adult_walk_confident_r" cycle_fade_l="adult_walk_confident_l" fadeBlendIn="1.0" fadeBlendOut="1.0" fadeStart="0" fadeEnd="1" stop="adult_turn_and_stop" stop_with_transition="adult_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="200.0" timeScale="1" logictype="walk" />
    <Variant age="adult"   gender="female"   start="adult_turn_and_go" cycle_r="adult_default_walk_r" cycle_l="adult_default_walk_l" cycle_fade_r="adult_walk_confident_r" cycle_fade_l="adult_walk_confident_l" fadeBlendIn="1.0" fadeBlendOut="1.0" fadeStart="0" fadeEnd="1" stop="adult_turn_and_stop" stop_with_transition="adult_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="200.0" timeScale="1" logictype="walk" />
    <Variant age="child"   gender="male"   start="child_turn_and_go" cycle_r="child_male_walk_r" cycle_l="child_male_walk_l"  cycle_fade_r="child_walk_confident_r" cycle_fade_l="child_walk_confident_l" fadeBlendIn="1.0" fadeBlendOut="1.0" fadeStart="0" fadeEnd="1"  stop="child_turn_and_stop" stop_with_transition="child_turn_and_stop_to_transition" turn="child_turn_in_place" steeringSpeed="200.0" timeScale="1" logictype="walk" />
  </Style> 
  
  <Style name="WalkGoofy">
    <Variant age="adult"   gender="male"   start="adult_turn_and_go" cycle_r="adult_default_walk_r" cycle_l="adult_default_walk_l" cycle_fade_r="adult_walk_goofy_r" cycle_fade_l="adult_walk_goofy_l" fadeBlendIn="1.0" fadeBlendOut="1.0" fadeStart="0" fadeEnd="1" stop="adult_turn_and_stop" stop_with_transition="adult_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="180.0" timeScale="1.0" logictype="walk" />
    <Variant age="adult"   gender="female"   start="adult_turn_and_go" cycle_r="adult_default_walk_r" cycle_l="adult_default_walk_l" cycle_fade_r="adult_walk_goofy_r" cycle_fade_l="adult_walk_goofy_l" fadeBlendIn="1.0" fadeBlendOut="1.0" fadeStart="0" fadeEnd="1" stop="adult_turn_and_stop" stop_with_transition="adult_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="180.0" timeScale="1.0" logictype="walk" />
    <Variant age="child"   gender="male"   start="child_turn_and_go" cycle_r="child_male_walk_r" cycle_l="child_male_walk_l"  stop="child_turn_and_stop" stop_with_transition="child_turn_and_stop_to_transition" turn="child_turn_in_place" steeringSpeed="180.0" timeScale="0.5" logictype="walk" />
  </Style>

  <Style name="WalkPee">
    <Variant age="adult"   gender="male"   start="adult_turn_and_go" cycle_r="adult_default_walk_r" cycle_l="adult_default_walk_l" cycle_fade_r="adult_walk_pee_r" cycle_fade_l="adult_walk_pee_l" fadeBlendIn="1.0" fadeBlendOut="1.0" fadeStart="0" fadeEnd="1" stop="adult_turn_and_stop" stop_with_transition="adult_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="180.0" timeScale="0.75" logictype="walk" />
    <Variant age="adult"   gender="female"   start="adult_turn_and_go" cycle_r="adult_default_walk_r" cycle_l="adult_default_walk_l" cycle_fade_r="adult_walk_pee_r" cycle_fade_l="adult_walk_pee_l" fadeBlendIn="1.0" fadeBlendOut="1.0" fadeStart="0" fadeEnd="1" stop="adult_turn_and_stop" stop_with_transition="adult_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="180.0" timeScale="0.75" logictype="walk" />
    <Variant age="child"   gender="male"   start="child_turn_and_go" cycle_r="child_male_walk_r" cycle_l="child_male_walk_l" cycle_fade_r="child_walk_pee_r" cycle_fade_l="child_walk_pee_l" fadeBlendIn="1.0" fadeBlendOut="1.0" fadeStart="0" fadeEnd="1" stop="child_turn_and_stop" stop_with_transition="child_turn_and_stop_to_transition" turn="child_turn_in_place" steeringSpeed="180.0" timeScale="0.65" logictype="walk" />
  </Style>
  
  <Style name="WalkEnergetic">
    <Variant age="adult"   gender="male"   start="adult_turn_and_go" cycle_r="adult_default_walk_r" cycle_l="adult_default_walk_l" cycle_fade_r="adult_walk_energetic_r" cycle_fade_l="adult_walk_energetic_l" fadeBlendIn="0.8" fadeBlendOut="0.8" fadeStart="0" fadeEnd="0.6" stop="adult_turn_and_stop" stop_with_transition="adult_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="180.0" timeScale="1.0" logictype="walk" />
    <Variant age="adult"   gender="female"   start="adult_turn_and_go" cycle_r="adult_default_walk_r" cycle_l="adult_default_walk_l" cycle_fade_r="adult_walk_energetic_r" cycle_fade_l="adult_walk_energetic_l" fadeBlendIn="0.8" fadeBlendOut="0.8" fadeStart="0" fadeEnd="0.6" stop="adult_turn_and_stop" stop_with_transition="adult_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="180.0" timeScale="1.0" logictype="walk" />
    <Variant age="child"   gender="male"   start="child_turn_and_go" cycle_r="child_male_walk_r" cycle_l="child_male_walk_l" cycle_fade_r="child_walk_energetic_r" cycle_fade_l="child_walk_energetic_l" fadeBlendIn="0.8" fadeBlendOut="0.8" fadeStart="0" fadeEnd="0.6" stop="child_turn_and_stop" stop_with_transition="child_turn_and_stop_to_transition" turn="child_turn_in_place" steeringSpeed="180.0" timeScale="1.0" logictype="walk" />
  </Style>
  
    <Style name="WalkTough">
    <Variant age="adult"   gender="male"   start="adult_turn_and_go" cycle_r="adult_default_walk_r" cycle_l="adult_default_walk_l" cycle_fade_r="adult_walk_masculine_r" cycle_fade_l="adult_walk_masculine_l" fadeBlendIn="0.8" fadeBlendOut="0.8" fadeStart="0" fadeEnd="1" stop="adult_turn_and_stop" stop_with_transition="adult_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="180.0" timeScale="1.0" logictype="walk" />
    <Variant age="adult"   gender="female"   start="adult_turn_and_go" cycle_r="adult_default_walk_r" cycle_l="adult_default_walk_l" cycle_fade_r="adult_walk_masculine_r" cycle_fade_l="adult_walk_masculine_l" fadeBlendIn="0.8" fadeBlendOut="0.8" fadeStart="0" fadeEnd="1" stop="adult_turn_and_stop" stop_with_transition="adult_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="180.0" timeScale="1.0" logictype="walk" />
    <Variant age="child"   gender="male"   start="child_turn_and_go" cycle_r="child_male_walk_r" cycle_l="child_male_walk_l"  stop="child_turn_and_stop" stop_with_transition="child_turn_and_stop_to_transition" turn="child_turn_in_place" steeringSpeed="180.0" timeScale="0.5" logictype="walk" />
  </Style>
  
  <Style name="WalkFeminine">
    <Variant age="adult"   gender="male"   start="adult_turn_and_go" cycle_r="adult_default_walk_r" cycle_l="adult_default_walk_l" cycle_fade_r="adult_walk_feminine_r" cycle_fade_l="adult_walk_feminine_l" fadeBlendIn="0.8" fadeBlendOut="0.8" fadeStart="0" fadeEnd="1" stop="adult_turn_and_stop" stop_with_transition="adult_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="180.0" minMultiplier="0.5" maxMultiplier="2" maxMultiplierIncrease="0.5" maxMultiplierDecrease="0.5" logictype="walk" />
    <Variant age="adult"   gender="female"   start="adult_turn_and_go" cycle_r="adult_default_walk_r" cycle_l="adult_default_walk_l" cycle_fade_r="adult_walk_feminine_r" cycle_fade_l="adult_walk_feminine_l" fadeBlendIn="0.8" fadeBlendOut="0.8" fadeStart="0" fadeEnd="1" stop="adult_turn_and_stop" stop_with_transition="adult_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="180.0" minMultiplier="0.5" maxMultiplier="2" maxMultiplierIncrease="0.5" maxMultiplierDecrease="0.5" logictype="walk" />
	<Variant age="child"   gender="male"   start="child_turn_and_go" cycle_r="child_male_walk_r" cycle_l="child_male_walk_l"  stop="child_turn_and_stop" stop_with_transition="child_turn_and_stop_to_transition" turn="child_turn_in_place" steeringSpeed="180.0" minMultiplier="0.5" maxMultiplier="2" maxMultiplierIncrease="0.5" maxMultiplierDecrease="0.5" logictype="walk" />
  </Style>

  <Style name="WalkFeminineSlow">
    <Variant age="adult"   gender="male"   start="adult_turn_and_go" cycle_r="adult_default_walk_r" cycle_l="adult_default_walk_l" cycle_fade_r="adult_walk_feminine_r" cycle_fade_l="adult_walk_feminine_l" fadeBlendIn="0.8" fadeBlendOut="0.8" fadeStart="0" fadeEnd="1" stop="adult_turn_and_stop" stop_with_transition="adult_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="180.0" timeScale="1.2" logictype="walk" />
    <Variant age="adult"   gender="female"   start="adult_turn_and_go" cycle_r="adult_default_walk_r" cycle_l="adult_default_walk_l" cycle_fade_r="adult_walk_feminine_r" cycle_fade_l="adult_walk_feminine_l" fadeBlendIn="0.8" fadeBlendOut="0.8" fadeStart="0" fadeEnd="1" stop="adult_turn_and_stop" stop_with_transition="adult_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="180.0" timeScale="1.2" logictype="walk" />
    <Variant age="child"   gender="male"   start="child_turn_and_go" cycle_r="child_male_walk_r" cycle_l="child_male_walk_l"  stop="child_turn_and_stop" stop_with_transition="child_turn_and_stop_to_transition" turn="child_turn_in_place" steeringSpeed="180.0" timeScale="1.5" logictype="walk" />
  </Style>
  
  <Style name="WalkSleepy">
    <Variant age="adult"   gender="male"   start="adult_turn_and_go" cycle_r="adult_default_walk_r" cycle_l="adult_default_walk_l" cycle_fade_r="adult_walk_sleepy_r" cycle_fade_l="adult_walk_sleepy_l" fadeBlendIn="1.0" fadeBlendOut=".5" fadeStart="0" fadeEnd=".5" stop="adult_turn_and_stop" stop_with_transition="adult_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="200.0" timeScale="1.3" logictype="walk" />
    <Variant age="adult"   gender="female"   start="adult_turn_and_go" cycle_r="adult_default_walk_r" cycle_l="adult_default_walk_l" cycle_fade_r="adult_walk_sleepy_r" cycle_fade_l="adult_walk_sleepy_l" fadeBlendIn="1.0" fadeBlendOut=".5" fadeStart="0" fadeEnd=".5" stop="adult_turn_and_stop" stop_with_transition="adult_turn_and_stop_to_transition" turn="adult_turn_in_place" steeringSpeed="200.0" timeScale="1.3" logictype="walk" />
    <Variant age="child"   gender="male"   start="child_turn_and_go" cycle_r="child_male_walk_r" cycle_l="child_male_walk_l" cycle_fade_r="child_walk_sleepy_r" cycle_fade_l="child_walk_sleepy_l" fadeBlendIn="1.0" fadeBlendOut=".5" fadeStart="0" fadeEnd=".5" stop="child_turn_and_stop" stop_with_transition="child_turn_and_stop_to_transition" turn="child_turn_in_place" steeringSpeed="200.0" timeScale="1.3" logictype="walk" />
  </Style> 
  
  <Style name="RunSlow">
    <Variant age="adult"   gender="male"   start="adult_turn_and_go" cycle_r="adult_run_r" cycle_l="adult_run_l" stop="adult_turn_and_stop" turn="adult_turn_in_place" steeringSpeed="700.0" minMultiplier="0.5" maxMultiplier="1.5" maxMultiplierIncrease="0.5" maxMultiplierDecrease="0.5" timeScale="0.8" />
  </Style>

  <Style name="Run">
    <Variant age="adult"   gender="male"   start="adult_turn_and_go" cycle_r="adult_run_r" cycle_l="adult_run_l" stop="adult_turn_and_stop" turn="adult_turn_in_place" steeringSpeed="700.0" minMultiplier="0.5" maxMultiplier="1.5" maxMultiplierIncrease="0.5" maxMultiplierDecrease="0.5" />
  </Style>
  
  <Style name="Jog">
    <Variant age="adult"   gender="male"   start="adult_turn_and_go" cycle_r="adult_male_jog_r" cycle_l="adult_male_jog_l" stop="adult_turn_and_stop" turn="adult_turn_in_place" steeringSpeed="500.0" minMultiplier="0.5" maxMultiplier="1.5" maxMultiplierIncrease="0.5" maxMultiplierDecrease="0.5" />
    <Variant age="adult"   gender="female" start="adult_turn_and_go" cycle_r="adult_female_jog_r" cycle_l="adult_female_jog_l" stop="adult_turn_and_stop" turn="adult_turn_in_place" steeringSpeed="500.0" />
	<Variant age="child"   gender="male"   start="child_turn_and_go" cycle_r="child_jog_r" cycle_l="child_jog_l" stop="child_turn_and_stop" turn="child_turn_in_place" steeringSpeed="500.0" minMultiplier="0.5" maxMultiplier="1.5" maxMultiplierIncrease="0.5" maxMultiplierDecrease="0.5" />  
  </Style>
  
  <Style name="RunPanic">
    <Variant age="adult"   gender="male"   start="adult_turn_and_go" cycle_r="adult_run_panic_r" cycle_l="adult_run_panic_l" stop="adult_turn_and_stop" turn="adult_turn_in_place" steeringSpeed="500.0" minMultiplier="0.5" maxMultiplier="1.5" maxMultiplierIncrease="0.5" maxMultiplierDecrease="0.5" timeScale="0.75" />
    <Variant age="child"   gender="male"   start="child_turn_and_go" cycle_r="child_run_panic_r" cycle_l="child_run_panic_l" stop="child_turn_and_stop" turn="child_turn_in_place" steeringSpeed="500.0" minMultiplier="0.5" maxMultiplier="1.5" maxMultiplierIncrease="0.5" maxMultiplierDecrease="0.5" timeScale="0.75" />  
  </Style>
  
  <Style name="StairsUp">
    <Variant age="adult"   gender="male"   start="adult_male_stairs_up_start" cycle="adult_male_stairs_up_cycle" stop="adult_male_stairs_up_stop" minMultiplier="0.5" maxMultiplier="2" maxMultiplierIncrease="0.5" maxMultiplierDecrease="0.5" logictype="stairs" />
    <Variant age="child"   gender="male"   start="child_male_stairs_up_start" cycle="child_male_stairs_up_cycle" stop="child_male_stairs_up_stop" minMultiplier="0.5" maxMultiplier="2" maxMultiplierIncrease="0.5" maxMultiplierDecrease="0.5" logictype="stairs" />
  </Style>

  <Style name="StairsDown">
    <Variant age="adult"   gender="male"   start="adult_male_stairs_down_start" cycle="adult_male_stairs_down_cycle" stop="adult_male_stairs_down_stop" minMultiplier="0.5" maxMultiplier="2" maxMultiplierIncrease="0.5" maxMultiplierDecrease="0.5" logictype="stairs" />
    <Variant age="child"   gender="male"   start="child_male_stairs_down_start" cycle="child_male_stairs_down_cycle" stop="child_male_stairs_down_stop" minMultiplier="0.5" maxMultiplier="2" maxMultiplierIncrease="0.5" maxMultiplierDecrease="0.5" logictype="stairs" />
  </Style>
  
  <Style name="ReaperStairsUp">
    <Variant age="adult"   gender="male"   start="reaper_stairs_up_start" cycle="reaper_stairs_up_cycle" stop="reaper_stairs_up_stop" minMultiplier="0.5" maxMultiplier="2" maxMultiplierIncrease="0.5" maxMultiplierDecrease="0.5" logictype="stairs" />
  </Style>

  <Style name="ReaperStairsDown">
    <Variant age="adult"   gender="male"   start="reaper_stairs_down_start" cycle="reaper_stairs_down_cycle" stop="reaper_stairs_down_stop" minMultiplier="0.5" maxMultiplier="2" maxMultiplierIncrease="0.5" maxMultiplierDecrease="0.5" logictype="stairs" />
   </Style>

  <Style name="RunStairsUp">
    <Variant timeScale="0.5" age="adult"   gender="male"   start="adult_male_stairs_up_start" cycle="adult_male_stairs_up_cycle" stop="adult_male_stairs_up_stop" minMultiplier="0.5" maxMultiplier="2" maxMultiplierIncrease="0.5" maxMultiplierDecrease="0.5" logictype="stairs" />
    <Variant timeScale="0.5" age="child"   gender="male"   start="child_male_stairs_up_start" cycle="child_male_stairs_up_cycle" stop="child_male_stairs_up_stop" minMultiplier="0.5" maxMultiplier="2" maxMultiplierIncrease="0.5" maxMultiplierDecrease="0.5" logictype="stairs" />
  </Style>

  <Style name="RunStairsDown">
    <Variant timeScale="0.5" age="adult"   gender="male"   start="adult_male_stairs_down_start" cycle="adult_male_stairs_down_cycle" stop="adult_male_stairs_down_stop" minMultiplier="0.5" maxMultiplier="2" maxMultiplierIncrease="0.5" maxMultiplierDecrease="0.5" logictype="stairs" />
    <Variant timeScale="0.5" age="child"   gender="male"   start="child_male_stairs_down_start" cycle="child_male_stairs_down_cycle" stop="child_male_stairs_down_stop" minMultiplier="0.5" maxMultiplier="2" maxMultiplierIncrease="0.5" maxMultiplierDecrease="0.5" logictype="stairs" />
  </Style>
  
  <!-- Default style declarations -->
  <Defaults>
    <Variant age="adult"   gender="male"   start="adult_turn_and_go" cycle_r="adult_male_walk_r" cycle_l="adult_male_walk_l" stop="adult_turn_and_stop" step="adult_single_step" turn="adult_turn_in_place"  logictype="walk"/>
    <Variant age="adult"   gender="female" start="adult_turn_and_go" cycle_r="adult_male_walk_r" cycle_l="adult_male_walk_l" stop="adult_turn_and_stop" step="adult_single_step" turn="adult_turn_in_place"  logictype="walk"/>
    <Variant age="elder"   gender="male"   start="adult_turn_and_go" cycle_r="elder_walk_r" cycle_l="elder_walk_l" stop="adult_turn_and_stop" step="adult_single_step" turn="adult_turn_in_place"  logictype="walk"/>
    <Variant age="elder"   gender="female" start="adult_turn_and_go" cycle_r="elder_walk_r" cycle_l="elder_walk_r" stop="adult_turn_and_stop" step="adult_single_step" turn="adult_turn_in_place"  logictype="walk"/>
    <Variant age="teen"    gender="male"   start="adult_turn_and_go" cycle_r="adult_male_walk_r" cycle_l="adult_male_walk_l" stop="adult_turn_and_stop" step="adult_single_step" turn="adult_turn_in_place"  logictype="walk"/>
    <Variant age="child"   gender="male"   start="child_turn_and_go" cycle_r="child_male_walk_r" cycle_l="child_male_walk_l" stop="child_turn_and_stop" step="child_single_step" turn="child_turn_in_place"  logictype="walk"/>
  </Defaults>

</LocomotionConfig>

 

 

 

Thank you. 

I think that i'm going to see something and then i will tell you if the problem don't come with a blender file.

We lost some data with type of file..

When i override just clip with blend my sims don't walk. She stay in same place like a sprite sheet on 2D game. The animation work but not the sims

Link to comment

Archived

This topic is now archived and is closed to further replies.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. For more information, see our Privacy Policy & Terms of Use