mirror of
https://github.com/NotAKidoS/NAK_CVR_Mods.git
synced 2025-09-02 14:29:25 +00:00
a
This commit is contained in:
parent
51df8434b2
commit
9dc1e00a6c
4 changed files with 17 additions and 7 deletions
|
@ -21,6 +21,9 @@
|
||||||
<Reference Include="Assembly-CSharp">
|
<Reference Include="Assembly-CSharp">
|
||||||
<HintPath>C:\Program Files (x86)\Steam\steamapps\common\ChilloutVR\ChilloutVR_Data\Managed\Assembly-CSharp.dll</HintPath>
|
<HintPath>C:\Program Files (x86)\Steam\steamapps\common\ChilloutVR\ChilloutVR_Data\Managed\Assembly-CSharp.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
|
<Reference Include="Assembly-CSharp-firstpass">
|
||||||
|
<HintPath>..\..\..\..\..\..\..\Program Files (x86)\Steam\steamapps\common\ChilloutVR\ChilloutVR_Data\Managed\Assembly-CSharp-firstpass.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
<Reference Include="BTKUILib">
|
<Reference Include="BTKUILib">
|
||||||
<HintPath>..\..\..\..\..\..\..\Program Files (x86)\Steam\steamapps\common\ChilloutVR\Mods\BTKUILib.dll</HintPath>
|
<HintPath>..\..\..\..\..\..\..\Program Files (x86)\Steam\steamapps\common\ChilloutVR\Mods\BTKUILib.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
|
@ -45,6 +48,9 @@
|
||||||
<Reference Include="UnityEngine.CoreModule">
|
<Reference Include="UnityEngine.CoreModule">
|
||||||
<HintPath>C:\Program Files (x86)\Steam\steamapps\common\ChilloutVR\ChilloutVR_Data\Managed\UnityEngine.CoreModule.dll</HintPath>
|
<HintPath>C:\Program Files (x86)\Steam\steamapps\common\ChilloutVR\ChilloutVR_Data\Managed\UnityEngine.CoreModule.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
|
<Reference Include="UnityEngine.ImageConversionModule">
|
||||||
|
<HintPath>..\..\..\..\..\..\..\Program Files (x86)\Steam\steamapps\common\ChilloutVR\ChilloutVR_Data\Managed\UnityEngine.ImageConversionModule.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
<Reference Include="UnityEngine.InputLegacyModule">
|
<Reference Include="UnityEngine.InputLegacyModule">
|
||||||
<HintPath>C:\Program Files (x86)\Steam\steamapps\common\ChilloutVR\ChilloutVR_Data\Managed\UnityEngine.InputLegacyModule.dll</HintPath>
|
<HintPath>C:\Program Files (x86)\Steam\steamapps\common\ChilloutVR\ChilloutVR_Data\Managed\UnityEngine.InputLegacyModule.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
|
|
|
@ -25,6 +25,6 @@ using System.Reflection;
|
||||||
namespace NAK.Melons.PortableCameraAdditions.Properties;
|
namespace NAK.Melons.PortableCameraAdditions.Properties;
|
||||||
internal static class AssemblyInfoParams
|
internal static class AssemblyInfoParams
|
||||||
{
|
{
|
||||||
public const string Version = "1.0.0";
|
public const string Version = "1.0.1";
|
||||||
public const string Author = "NotAKidoS";
|
public const string Author = "NotAKidoS";
|
||||||
}
|
}
|
|
@ -11,8 +11,8 @@ public class AdditionalSettings
|
||||||
public bool orthographicMode;
|
public bool orthographicMode;
|
||||||
|
|
||||||
//Should I move these to MelonPrefs?
|
//Should I move these to MelonPrefs?
|
||||||
public bool CopyWorldNearClip;
|
public bool CopyWorldNearClip = true;
|
||||||
public bool CopyWorldFarClip;
|
public bool CopyWorldFarClip = true;
|
||||||
|
|
||||||
private PortableCameraSetting setting_NearClip;
|
private PortableCameraSetting setting_NearClip;
|
||||||
private PortableCameraSetting setting_FarClip;
|
private PortableCameraSetting setting_FarClip;
|
||||||
|
@ -125,9 +125,13 @@ public class AdditionalSettings
|
||||||
if (referenceCamera != null)
|
if (referenceCamera != null)
|
||||||
{
|
{
|
||||||
if (CopyWorldNearClip)
|
if (CopyWorldNearClip)
|
||||||
|
{
|
||||||
setting_NearClip.Set(referenceCamera.nearClipPlane);
|
setting_NearClip.Set(referenceCamera.nearClipPlane);
|
||||||
|
}
|
||||||
if (CopyWorldFarClip)
|
if (CopyWorldFarClip)
|
||||||
|
{
|
||||||
setting_FarClip.Set(referenceCamera.farClipPlane);
|
setting_FarClip.Set(referenceCamera.farClipPlane);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"_id": -1,
|
"_id": 123,
|
||||||
"name": "PortableCameraAdditions",
|
"name": "PortableCameraAdditions",
|
||||||
"modversion": "1.0.0",
|
"modversion": "1.0.1",
|
||||||
"gameversion": "2022r170",
|
"gameversion": "2022r170",
|
||||||
"loaderversion": "0.5.7",
|
"loaderversion": "0.5.7",
|
||||||
"modtype": "Mod",
|
"modtype": "Mod",
|
||||||
|
@ -18,8 +18,8 @@
|
||||||
"requirements": [
|
"requirements": [
|
||||||
"None"
|
"None"
|
||||||
],
|
],
|
||||||
"downloadlink": "https://github.com/NotAKidOnSteam/PortableCameraAdditions/releases/download/v1.0.0/PortableCameraAdditions.dll",
|
"downloadlink": "https://github.com/NotAKidOnSteam/PortableCameraAdditions/releases/download/v1.0.1/PortableCameraAdditions.dll",
|
||||||
"sourcelink": "https://github.com/NotAKidOnSteam/PortableCameraAdditions/",
|
"sourcelink": "https://github.com/NotAKidOnSteam/PortableCameraAdditions/",
|
||||||
"changelog": "Initial Release",
|
"changelog": "Imagine not actually setting stuff on world load.",
|
||||||
"embedcolor": "9b59b6"
|
"embedcolor": "9b59b6"
|
||||||
}
|
}
|
Loading…
Add table
Add a link
Reference in a new issue