Na FreeHostingu Endora běží desítky tisíc webů. Přidejte se ještě dnes!
Vytvořit web zdarmaNa FreeHostingu Endora běží desítky tisíc webů. Přidejte se ještě dnes!
Vytvořit web zdarmaif (Input.GetKeyDown(KeyCode.Escape)) { Application.Quit(); }
void Update () { float xPos = transform.position.x + (Input.GetAxis("Horizontal") * paddleSpeed); playerPos = new Vector3 (Mathf.Clamp (xPos, -13f, 13), -9.5f, 0f); transform.position = playerPos; }
if (Input.GetMouseButtonDown(0)) { Application.LoadLevel(1); } if (Input.GetButtonDown("Fire1")) { Application.LoadLevel(1); }
void Update ()
{
float xPos = transform.position.x + (Input.GetAxis("Mouse X") * paddleSpeed);
playerPos = new Vector3 (Mathf.Clamp (xPos, -13f, 13), -9.5f, 0f);
transform.position = playerPos;
}
if (Input.touches.Length > 0) { vel = Flap(vel); }