Update for OW 1.1.13 (#522)

This commit is contained in:
artum 2022-09-15 21:57:00 +02:00 committed by GitHub
parent efe84ab1fa
commit f671ff6232
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 11 additions and 3 deletions

View File

@ -120,7 +120,7 @@
<EmbeddedResource Remove="Input\Bindings\**" />
</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>
</ItemGroup>

View File

@ -174,6 +174,10 @@ namespace NomaiVR.UI
{
var titleMenu = GameObject.Find("TitleMenu").transform;
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,
// to prevent selecting with laser.

View File

@ -8,7 +8,7 @@
"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.'"
},
"version": "2.7.2",
"version": "2.8.0",
"owmlVersion": "2.3.0",
"requireVR": true
}

View File

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