Results 1 to 3 of 3

Thread: Diagnals & Stringing Motions

  1. #1
    Junior Member
    Join Date
    Jun 2010
    Posts
    16

    Question Diagnals & Stringing Motions

    i have it so that when i tilt the controller up it pushes "Up" arrow key.. and down generates "Down" arrow key.. and i did right and left as well..

    But how would i type a diagnal?
    is it like:
    <key>
    <which>down_left</which>
    </key>

    ??????

    also, i am trying to make a fireball-motion for streetfighter iv by moving/tilting the controller clockwise and i want it to do a macro movement of

    down arrow
    down-right
    right+0

    (0 = key used for medium punch)

    Is this possible?

  2. #2
    That's exactly what I wish to try (when I have my Razer Hydra). Could you check this and see if it works:

    Code:
    <name>Point Right</name>
          
        <conditions>
            
        <tilt_gesture>
              
        <controller>P1R</controller>
             
        <direction>right</direction>
            
         </tilt_gesture>
          
          </conditions>
          
          <actions>
            
           <key>
              
           <which>down</which>
           
           </key>
            
           <key>
             
           <delay_on>50</delay_on>
              
           <which>down</which>
            
            </key>
            
             <key>
             
           <delay_on>50</delay_on>
              
            <which>right</which>
           
             </key>
            
             <key>
              
           <delay_on>100</delay_on>
              
           <which>right</which>
            
            </key>
            
           <key>
             
          <delay_on>100</delay_on>
              
          <which>0</which>
        </key>
     
         </actions>
        
          </binding>
    I did what you said and bound it with the right controller tilted to the right.

  3. #3
    Quote Originally Posted by Leonard Callus View Post
    That's exactly what I wish to try (when I have my Razer Hydra). Could you check this and see if it works:

    Code:
    <name>Point Right</name>
          
        <conditions>
            
        <tilt_gesture>
              
        <controller>P1R</controller>
             
        <direction>right</direction>
            
         </tilt_gesture>
          
          </conditions>
          
          <actions>
            
           <key>
              
           <which>down</which>
           
           </key>
            
           <key>
             
           <delay_on>50</delay_on>
              
           <which>down</which>
            
            </key>
            
             <key>
             
           <delay_on>50</delay_on>
              
            <which>right</which>
           
             </key>
            
             <key>
              
           <delay_on>100</delay_on>
              
           <which>right</which>
            
            </key>
            
           <key>
             
          <delay_on>100</delay_on>
              
          <which>0</which>
        </key>
     
         </actions>
        
          </binding>
    I did what you said and bound it with the right controller tilted to the right.
    Brash, did you try this out?

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •