Skip to content

Commit

Permalink
Version #
Browse files Browse the repository at this point in the history
  • Loading branch information
OrangeSpork committed Nov 2, 2021
1 parent 99ab09e commit 81ad2eb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion HS2VR/CameraTool.cs
Expand Up @@ -157,7 +157,7 @@ protected override void OnUpdate()
}
else if (Controller.GetPressUp(Valve.VR.EVRButtonId.k_EButton_SteamVR_Trigger) && Time.unscaledTime - triggerStartTime <= .5f && !rewindCamera)
{
if (currentCamera == 9)
if (currentCamera == Studio.Studio.Instance.sceneInfo.cameraData.Length - 1)
currentCamera = 0;
else
currentCamera++;
Expand Down
4 changes: 2 additions & 2 deletions HS2VR/VRPlugin.cs
Expand Up @@ -15,7 +15,7 @@ namespace HS2VR
/// <summary>
/// This is an example for a VR plugin. At the same time, it also functions as a generic one.
/// </summary>
[BepInPlugin(GUID: "HS2VR.unofficial", Name: "HS2VR", Version: "0.7.7.0")]
[BepInPlugin(GUID: "HS2VR.unofficial", Name: "HS2VR", Version: "0.9.1.0")]
[BepInProcess("HoneySelect2")]
[BepInProcess("StudioNEOV2")]
public class VRPlugin : BaseUnityPlugin
Expand All @@ -41,7 +41,7 @@ public string Version
{
get
{
return "0.0.9.0";
return "0.9.1.0";
}
}

Expand Down

0 comments on commit 81ad2eb

Please sign in to comment.