gdx 1.10/lwjgl3 migration; removing old Lua stuffs

This commit is contained in:
minjaesong
2021-07-27 12:43:01 +09:00
parent f75b5da0e1
commit a91156ac21
323 changed files with 937 additions and 12100 deletions

View File

@@ -386,10 +386,10 @@ void main() {
return false
}
}
fun scrolled(uiItems: List<UIItem>, amount: Int): Boolean {
fun scrolled(uiItems: List<UIItem>, amountX: Float, amountY: Float): Boolean {
if (isVisible) {
uiItems.forEach { it.scrolled(amount) }
subUIs.forEach { it.scrolled(amount) }
uiItems.forEach { it.scrolled(amountX, amountY) }
subUIs.forEach { it.scrolled(amountX, amountY) }
return true
}
else {