📜  if get key down unity - C# 代码示例

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

代码示例3
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;
        }
    }
}