“Jika dapatkan Key Down Unity” Kode Jawaban

Deteksi Kunci Persatuan

if (Input.GetKeyDown(KeyCode.Space))
        {
            print("space key was pressed");
        }
RyanGar46

Jika dapatkan Key Down Unity

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour
{
    void Update()
    {
        if (Input.GetKeyDown("space"))
        {
            print("space key was pressed");
        }
    }
}
Xenophobic Xenomorph

Debug.log (input.getkey)

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;
        }
    }
}
Agreeable Addax

Jawaban yang mirip dengan “Jika dapatkan Key Down Unity”

Pertanyaan yang mirip dengan “Jika dapatkan Key Down Unity”

Lebih banyak jawaban terkait untuk “Jika dapatkan Key Down Unity” di C#

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya