mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-04 06:28:28 +08:00
Made some code in ViewerWidget clearer.
This commit is contained in:
parent
89ea739c65
commit
276ffcb80b
@ -25,10 +25,12 @@ class ViewerWidget(
|
|||||||
className = "pw-viewer-viewer-content"
|
className = "pw-viewer-viewer-content"
|
||||||
|
|
||||||
addChild(SelectionWidget(
|
addChild(SelectionWidget(
|
||||||
ctrl.characterClasses,
|
items = ctrl.characterClasses,
|
||||||
ctrl.currentCharacterClass,
|
selected = ctrl.currentCharacterClass,
|
||||||
{ char -> scope.launch { ctrl.setCurrentCharacterClass(char) } },
|
onSelect = { char ->
|
||||||
{ it.uiName },
|
scope.launch { ctrl.setCurrentCharacterClass(char) }
|
||||||
|
},
|
||||||
|
itemToString = { it.uiName },
|
||||||
))
|
))
|
||||||
addChild(createCharacterClassOptionsWidget())
|
addChild(createCharacterClassOptionsWidget())
|
||||||
addChild(TabContainer(ctrl = ctrl, createWidget = { tab ->
|
addChild(TabContainer(ctrl = ctrl, createWidget = { tab ->
|
||||||
@ -38,10 +40,12 @@ class ViewerWidget(
|
|||||||
}
|
}
|
||||||
}))
|
}))
|
||||||
addChild(SelectionWidget(
|
addChild(SelectionWidget(
|
||||||
ctrl.animations,
|
items = ctrl.animations,
|
||||||
ctrl.currentAnimation,
|
selected = ctrl.currentAnimation,
|
||||||
{ animation -> scope.launch { ctrl.setCurrentAnimation(animation) } },
|
onSelect = { animation ->
|
||||||
{ it.name },
|
scope.launch { ctrl.setCurrentAnimation(animation) }
|
||||||
|
},
|
||||||
|
itemToString = { it.name },
|
||||||
borderLeft = true,
|
borderLeft = true,
|
||||||
))
|
))
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user