如何使用自定义值获得键代码?

发布于 2025-02-10 10:19:09 字数 208 浏览 0 评论 0原文

例如:我有这类代码行:

private string customKey = "A";

我想通过使用code> customKeykeycode.customkey won'获取keycode.a won'工作。有人可以告诉我该怎么做吗?

For example: I have this line of code:

private string customKey = "A";

And I would like to get Keycode.A by using customKey, andKeycode.customKeywon't work. Could someone tell me how to do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

Smile简单爱 2025-02-17 10:19:09

如前所述,在这里,您可以使用enum。分析

    private string key = "A";
    private KeyCode customKeyCode;

    private void Start()
    {
        customKeyCode = (KeyCode) System.Enum.Parse(typeof(KeyCode), key);
    }

    private void Update()
    {
        if (Input.GetKeyDown(customKeyCode))
        {
            print(key);
        }
    }

As mentioned here, you can use Enum.Parse:

    private string key = "A";
    private KeyCode customKeyCode;

    private void Start()
    {
        customKeyCode = (KeyCode) System.Enum.Parse(typeof(KeyCode), key);
    }

    private void Update()
    {
        if (Input.GetKeyDown(customKeyCode))
        {
            print(key);
        }
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文