mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-30 04:15:31 +00:00
Merge branch '0.8.0-vr' of https://github.com/TES3MP/TES3MP into 0.8.0-vr
This commit is contained in:
commit
246e6701f2
3 changed files with 8 additions and 3 deletions
|
@ -270,7 +270,7 @@ class Refraction : public SceneUtil::RTTNode
|
|||
{
|
||||
public:
|
||||
Refraction(uint32_t rttSize)
|
||||
: RTTNode(rttSize, rttSize, 1, false)
|
||||
: RTTNode(rttSize, rttSize, 1, true)
|
||||
{
|
||||
mClipCullNode = new ClipCullNode;
|
||||
}
|
||||
|
@ -337,7 +337,7 @@ class Reflection : public SceneUtil::RTTNode
|
|||
{
|
||||
public:
|
||||
Reflection(uint32_t rttSize, bool isInterior)
|
||||
: RTTNode(rttSize, rttSize, 0, false)
|
||||
: RTTNode(rttSize, rttSize, 0, true)
|
||||
{
|
||||
setInterior(isInterior);
|
||||
mClipCullNode = new ClipCullNode;
|
||||
|
|
|
@ -515,7 +515,7 @@ namespace MWVR
|
|||
|
||||
LayerConfig defaultConfig = createDefaultConfig(1);
|
||||
LayerConfig loadingScreenConfig = createDefaultConfig(1, true, SizingMode::Fixed, "Menu");
|
||||
LayerConfig mainMenuConfig = createDefaultConfig(1, true);
|
||||
LayerConfig mainMenuConfig = createDefaultConfig(5, true);
|
||||
LayerConfig journalBooksConfig = createDefaultConfig(2, false, SizingMode::Fixed);
|
||||
LayerConfig defaultWindowsConfig = createDefaultConfig(3, true);
|
||||
LayerConfig videoPlayerConfig = createDefaultConfig(4, true, SizingMode::Fixed);
|
||||
|
|
|
@ -16,6 +16,11 @@
|
|||
<Property key="Caption" value="Recenter"/>
|
||||
<Property key="FontHeight" value="32"/>
|
||||
</Widget>
|
||||
|
||||
<Widget type="AutoSizedButton" skin="MW_Button" name="chat" align="HCenter">
|
||||
<Property key="Caption" value="Chat"/>
|
||||
<Property key="FontHeight" value="32"/>
|
||||
</Widget>
|
||||
|
||||
<Widget type="Spacer"/>
|
||||
<Widget type="Widget" skin="IB_T" align="HCenter" position="0 0 125 4">
|
||||
|
|
Loading…
Reference in a new issue