📜  Debug.Log(Input.GetKey) - 任何代码示例

📅  最后修改于: 2022-03-11 14:55:50.607000             🧑  作者: Mango

代码示例1
void Update()
{
    //get the input
    var input = Input.inputString;

    //ignore null input to avoid unnecessary computation
    if (!string.IsNullOrEmpty(input))
    {
        switch(input)
        {
            case 'a': break;
            case 'b': break;
        }
    }
}