mirror of
https://github.com/OpenMW/openmw.git
synced 2025-02-01 10:15:38 +00:00
27 lines
1.7 KiB
C++
27 lines
1.7 KiB
C++
|
|
#include "instanceselectionmode.hpp"
|
|
|
|
CSVRender::InstanceSelectionMode::InstanceSelectionMode (CSVWidget::SceneToolbar *parent)
|
|
: CSVWidget::SceneToolMode (parent, "Selection Mode")
|
|
{
|
|
addButton (":placeholder", "cube-centre",
|
|
"Centred cube"
|
|
"<ul><li>Drag with primary (make instances the selection) or secondary (invert selection state) select button from the centre of the selection cube outwards</li>"
|
|
"<li>The selection cube is aligned to the word space axis</li>"
|
|
"<li>If context selection mode is enabled, a drag with primary/secondary edit not starting on an instance will have the same effect</li>"
|
|
"</ul>"
|
|
"<font color=Red>Not implemented yet</font color>");
|
|
addButton (":placeholder", "cube-corner",
|
|
"Cube corner to corner"
|
|
"<ul><li>Drag with primary (make instances the selection) or secondary (invert selection state) select button from one corner of the selection cube to the opposite corner</li>"
|
|
"<li>The selection cube is aligned to the word space axis</li>"
|
|
"<li>If context selection mode is enabled, a drag with primary/secondary edit not starting on an instance will have the same effect</li>"
|
|
"</ul>"
|
|
"<font color=Red>Not implemented yet</font color>");
|
|
addButton (":placeholder", "sphere",
|
|
"Centred sphere"
|
|
"<ul><li>Drag with primary (make instances the selection) or secondary (invert selection state) select button from the centre of the selection sphere outwards</li>"
|
|
"<li>If context selection mode is enabled, a drag with primary/secondary edit not starting on an instance will have the same effect</li>"
|
|
"</ul>"
|
|
"<font color=Red>Not implemented yet</font color>");
|
|
}
|