SelectionPanel main title

Is it possible to define a main title for SelectionPanel? I tried with https://www.babylonjs-playground.com/#9M6M2I#23 but couldn’t make it work well.

There’s no title property for the SelectionPanel but what you did does work.

You can add some top padding by accessing the internal property _panel to improve the layout:
https://www.babylonjs-playground.com/#9M6M2I#24

As _panel is private you should not really use it, so here’s a PR that will make SelectionPanel.panel visible to the outside:

1 Like

Thanks a lot.