Update for OW 1.1.13

This commit is contained in:
Jacopo Libè 2022-09-15 21:47:44 +02:00
parent efe84ab1fa
commit 2c9c19c1e2
No known key found for this signature in database
GPG Key ID: 7E80BE15A2B25C60
5 changed files with 11 additions and 3 deletions

View File

@ -120,7 +120,7 @@
<EmbeddedResource Remove="Input\Bindings\**" /> <EmbeddedResource Remove="Input\Bindings\**" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<PackageReference Include="OuterWildsGameLibs" Version="1.1.12.125" /> <PackageReference Include="OuterWildsGameLibs" Version="1.1.13.393" />
<PackageReference Include="OWML" Version="2.1.0"> <PackageReference Include="OWML" Version="2.1.0">
</PackageReference> </PackageReference>
</ItemGroup> </ItemGroup>

View File

@ -174,6 +174,10 @@ namespace NomaiVR.UI
{ {
var titleMenu = GameObject.Find("TitleMenu").transform; var titleMenu = GameObject.Find("TitleMenu").transform;
var titleCanvas = titleMenu.Find("TitleCanvas"); var titleCanvas = titleMenu.Find("TitleCanvas");
var disconnectedCanvas = titleMenu.Find("DisconnectedCanvas");
disconnectedCanvas.gameObject.SetActive(false);
Destroy(disconnectedCanvas.gameObject);
// Hide the main menu while other menus are open, // Hide the main menu while other menus are open,
// to prevent selecting with laser. // to prevent selecting with laser.

View File

@ -8,7 +8,7 @@
"title": "Before playing NomaiVR, some information:", "title": "Before playing NomaiVR, some information:",
"body": "- Click the NomaiVR readme button in the Mod Manager for information about troubleshooting, requirements, performance, how to uninstall, etc.\n\n- Some VR controllers will have missing icons. Message us if you want to help us add icons for these devices.\n\n- If you have the game on Steam:\n--- Right-click Outer Wilds on your Steam library\n--- Select 'Properties...'\n--- Disable 'Use Desktop Game Theatre.'" "body": "- Click the NomaiVR readme button in the Mod Manager for information about troubleshooting, requirements, performance, how to uninstall, etc.\n\n- Some VR controllers will have missing icons. Message us if you want to help us add icons for these devices.\n\n- If you have the game on Steam:\n--- Right-click Outer Wilds on your Steam library\n--- Select 'Properties...'\n--- Disable 'Use Desktop Game Theatre.'"
}, },
"version": "2.7.2", "version": "2.8.0",
"owmlVersion": "2.3.0", "owmlVersion": "2.3.0",
"requireVR": true "requireVR": true
} }

View File

@ -6,11 +6,15 @@
<ApplicationIcon /> <ApplicationIcon />
<OutputType>WinExe</OutputType> <OutputType>WinExe</OutputType>
<StartupObject /> <StartupObject />
<Configurations>Debug;Release</Configurations>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DefineConstants>UNITYEXPLORER</DefineConstants> <DefineConstants>UNITYEXPLORER</DefineConstants>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<PackageReference Include="AssetsTools.NET" Version="2.0.9" /> <PackageReference Include="AssetsTools.NET" Version="2.0.12" />
</ItemGroup> </ItemGroup>
<Target Name="PostBuild" BeforeTargets="PostBuildEvent"> <Target Name="PostBuild" BeforeTargets="PostBuildEvent">