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.
我用 Dart 编写了一个简单的游戏(伞兵)。玩了 2 分钟后,游戏变得太慢了。以下是一些观察:
任何建议都会有所帮助。
谢谢,乌代
没有代码很难说,但是尝试使用此功能而不是计时器,我一直在使用它,并且游戏不会滞后(在铬上)一次绘制 +100 个元素。
window.animationFrame.then(update); void update(){ //Your refresh code here, like clean the context, redraw visual elements. window.animationFrame.then(update); }