我正在尝试设置操纵杆控件,但是它不起作用。
以下是我在“轴输入”中设置的按钮:
我的代码:
function httpGet(url, callback) {
// this function gets the contents of the URL. Once the
// content is present it runs the callback function.
var xmlhttp=new XMLHttpRequest();
xmlhttp.onreadystatechange=function() {
if (xmlhttp.readyState==4 && xmlhttp.status==200) {
callback(xmlhttp.responseText);
}
}
xmlhttp.open("GET", url, false );
xmlhttp.send();
}
httpGet("url-of-your-file", function(textFile){
// this calls the httpGet function with the URL of your text
// file. It then runs a function that turns the file into an
// array.
var array = textFile.slice(1, -1).split("],[");
console.log(array);
});
但是它不起作用,播放器只能移动到一个位置。而且我不能让操纵杆的动作与键盘的动作相同。我在做什么错了?