GetAxis() public abstract method

public abstract GetAxis ( string name, bool raw ) : float
name string
raw bool
return float
Ejemplo n.º 1
0
 // private function handles both types of axis (raw and not raw)
 private static float GetAxis(string name, bool raw)
 {
     return(activeInput.GetAxis(name, raw));
 }