dump

fun dump(prefix: String = "", borders: Boolean = true, size: Boolean = true, filter: (Node) -> Boolean = { it.visible })

Dumps the scene graph to stdout starting at this Node, and walking through all descendants. Useful for debugging, and to give insights into the structure of controls.

See Scene.dump to dump starting at the scene's root.

Parameters

prefix

The prefix of each line. Used to build the tree graphics.

borders

If true, then an additional line is added for Regions showing border and padding data.

size

If true, then an additional line shows the min/pref/max width/height.

filter

Filters nodes. The default filters visible Nodes.