Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在为 Facebook 即时游戏使用 UNITY Tiny 做一个小项目,但我不知道如何使用 api 休息,因为 unity tiny 的理念是新的并且没有太多文档?你能帮助我吗 ?
由于 Unity Tiny 项目在浏览器中运行,因此您可以使用常规浏览器 JavaScript(XMLHttpRequest或fetch)来使用 API。
XMLHttpRequest
fetch
示例:
if (ut.Runtime.Input.getKeyDown(ut.Core2D.KeyCode.Space)) { fetch("http://www.google.com") .then(x => console.log(x)) .catch(err => console.error(err)); }