<@UBMKY46Q4> you'll really be able to take advanta...
# tornadofx
a
@S you'll really be able to take advantage of the framework once you kind of get how manipulating a node can be implemented. There's a little bit of a curve but once you start seeing the pattern, you can apply both Node properties (
Circle.setFill(Color.BLACK)
->
circle { fill = Color.BLACK }
) and Node functions(
Gridpane.setAlignment(Pos.CENTER)
->
gridpane { alignment = Pos.CENTER }
) as extensions for a
Node