Search Unity

Not working input button spacebar, if press and hold buttons arrow!

Discussion in 'Editor & General Support' started by IShol, Jan 22, 2017.

  1. IShol

    IShol

    Joined:
    Jun 26, 2015
    Posts:
    17
    Not working press spacebar, if press and hold buttons arrow!

    1. Press and hold the button right arrow + up arrow, and press the spacebar. Console to write a "Space"
    2. Press and hold the button left arrow + up arrow, and press the spacebar. Console NOT write a "Space"
    3. Press and hold the button left arrow + bottom arrow, and press the spacebar. Console NOT write a "Space"
    3. Press and hold the button right arrow + bottom arrow, and press the spacebar. Console NOT write a "Space"

    Unity 5.5.0p4

    script c#
    ...
    void Update () {

    if (Input.GetKeyDown(KeyCode.Space))
    {
    print("Space");
    }
    }
     
  2. Murgilod

    Murgilod

    Joined:
    Nov 12, 2013
    Posts:
    10,156
  3. IShol

    IShol

    Joined:
    Jun 26, 2015
    Posts:
    17
    Other keys work! On the other keyboard the same problem!
     
  4. IShol

    IShol

    Joined:
    Jun 26, 2015
    Posts:
    17