gpt4 book ai didi

google-chrome - 在 Google Dart 中使用 handle

转载 作者:行者123 更新时间:2023-12-01 11:39:45 25 4
gpt4 key购买 nike

我正在寻找 Gamepad API for Google Dart 的代码示例.

我试过直接依赖 API 文档并尝试为它编写一个实例。

//Gamepad Example:

Gamepad g = new Gamepad();
g.id.toString(); // This doesn't seem to return anything...

如果有人对此有任何代码示例,那就太棒了!

最佳答案

我试过了,它对我有用:

import "dart:html";

main(){
window.animationFrame.then(runAnimation);
}

runAnimation(timestamp){

var gamepads = window.navigator.getGamepads();

for (var pad in gamepads)
{
if(pad != null){
querySelector("#buttons").setInnerHtml("${pad.buttons.join(" ")}</br>${pad.axes.join(" ")}");
}
}

window.requestAnimationFrame(runAnimation);
}

关于google-chrome - 在 Google Dart 中使用 handle ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22395329/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com