创建ScrollPane
(Actor actor, Color bg)
| 2281 | * 创建ScrollPane |
| 2282 | */ |
| 2283 | public UI<ScrollPane> getScrollPane(Actor actor, Color bg) { |
| 2284 | ScrollPaneStyle style = new ScrollPaneStyle(); |
| 2285 | style.background = getRectColorDrawable(2, 2, bg); |
| 2286 | return getScrollPane(actor, style); |
| 2287 | } |
| 2288 | |
| 2289 | /** |
| 2290 | * 创建ScrollPane |
nothing calls this directly
no test coverage detected