我想在游戏周围显示一个细的圆角边框。我可以利用RoundedRect做到这一点,还是必须做其他事情?我看到它不是本地生成的,所以我想知道它是如何完成的。
谢谢。
最佳答案
您可以将整个游戏放入lime.RoundedRect并为其添加边框。
// requirements
goog.require('lime.RoundedRect');
// in your main function
var gameContainer = new lime.RoundedRect();
gameContainer.setStroke(12,'#000000');
gameContainer.appendChild(/* the rest of your code here */);