mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-30 15:15:31 +00:00
added lighting mode toolbar icons
This commit is contained in:
parent
151ef14b67
commit
4421e7a5cc
2 changed files with 8 additions and 3 deletions
|
@ -64,19 +64,19 @@ namespace CSVRender
|
||||||
CSVWidget::SceneToolMode *tool = new CSVWidget::SceneToolMode (parent, "Lighting Mode");
|
CSVWidget::SceneToolMode *tool = new CSVWidget::SceneToolMode (parent, "Lighting Mode");
|
||||||
|
|
||||||
/// \todo replace icons
|
/// \todo replace icons
|
||||||
tool->addButton (":door.png", "day",
|
tool->addButton (":scenetoolbar/day", "day",
|
||||||
"Day"
|
"Day"
|
||||||
"<ul><li>Cell specific ambient in interiors</li>"
|
"<ul><li>Cell specific ambient in interiors</li>"
|
||||||
"<li>Low ambient in exteriors</li>"
|
"<li>Low ambient in exteriors</li>"
|
||||||
"<li>Strong directional light source/lir>"
|
"<li>Strong directional light source/lir>"
|
||||||
"<li>This mode closely resembles day time in-game</li></ul>");
|
"<li>This mode closely resembles day time in-game</li></ul>");
|
||||||
tool->addButton (":GMST.png", "night",
|
tool->addButton (":scenetoolbar/night", "night",
|
||||||
"Night"
|
"Night"
|
||||||
"<ul><li>Cell specific ambient in interiors</li>"
|
"<ul><li>Cell specific ambient in interiors</li>"
|
||||||
"<li>Low ambient in exteriors</li>"
|
"<li>Low ambient in exteriors</li>"
|
||||||
"<li>Weak directional light source</li>"
|
"<li>Weak directional light source</li>"
|
||||||
"<li>This mode closely resembles night time in-game</li></ul>");
|
"<li>This mode closely resembles night time in-game</li></ul>");
|
||||||
tool->addButton (":Info.png", "bright",
|
tool->addButton (":scenetoolbar/bright", "bright",
|
||||||
"Bright"
|
"Bright"
|
||||||
"<ul><li>Maximum ambient</li>"
|
"<ul><li>Maximum ambient</li>"
|
||||||
"<li>Strong directional light source</li></ul>");
|
"<li>Strong directional light source</li></ul>");
|
||||||
|
|
|
@ -71,4 +71,9 @@
|
||||||
<file alias="edit-content">raster/startup/big/edit-content.png</file>
|
<file alias="edit-content">raster/startup/big/edit-content.png</file>
|
||||||
<file alias="configure">raster/startup/small/configure.png</file>
|
<file alias="configure">raster/startup/small/configure.png</file>
|
||||||
</qresource>
|
</qresource>
|
||||||
|
<qresource prefix="/scenetoolbar">
|
||||||
|
<file alias="night">Moon-48.png</file>
|
||||||
|
<file alias="day">Sun-48.png</file>
|
||||||
|
<file alias="bright">Lightbulb-48.png</file>
|
||||||
|
</qresource>
|
||||||
</RCC>
|
</RCC>
|
||||||
|
|
Loading…
Reference in a new issue