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.
我知道 libgdx 有这个Button看起来很容易使用的类,但我想知道为什么该draw方法设置为受保护?
Button
draw
在那种情况下,我应该如何绘制按钮?
Scene2d 按钮
Button也是一个Actor。所以你把它放在上面,Stage框架就会画出来。 这是有关如何组合在一起的更多文档。
Actor
Stage
我正在为初学者写一个 libgdx 教程。这篇文章可能对您有用:libgdx 教程:scene2d
Button 是一个 Actor,因此它与 Stage 一起使用。scene2d有官方文档。Button 在scene2d.ui 中,它是顶级Stage 上的一个UI 框架,它是一个通用的2D 场景图。目前还没有scene2d.ui 的官方文档。你可以看到UITest。