Skip to content
This repository has been archived by the owner on Jan 24, 2023. It is now read-only.

Commit

Permalink
bruh, compile your mod before pushing it .,.
Browse files Browse the repository at this point in the history
  • Loading branch information
Rafacasari committed May 15, 2021
1 parent 9a9f264 commit 7364f60
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
15 changes: 7 additions & 8 deletions Main.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ namespace PlayspaceMover
{
public static class ModInfo
{
public static readonly string Name = "OculusPlayspaceMover";
public static readonly string Description = "A SteamVR's Playspace clone for VRChat from Oculus Store";
public static readonly string Author = "Rafa";
public static readonly string Company = "RBX";
public static readonly string Version = "1.1.3";
public static readonly string DownloadLink = null;
public const string Name = "OculusPlayspaceMover";
public const string Description = "A SteamVR's Playspace clone for VRChat from Oculus Store";
public const string Author = "Rafa";
public const string Company = "RBX";
public const string Version = "1.1.4";
public const string DownloadLink = "https://github.com/Rafacasari/Playerspace-Mover/releases/latest/download/PlayspaceMover.dll";
}

public class Main : MelonMod
Expand Down Expand Up @@ -57,7 +57,6 @@ private void ApplySettings()
public override void OnPreferencesSaved() => ApplySettings();

private OVRCameraRig Camera;
//private bool isLeftPressed, isRightPressed = false;
private OVRInput.Controller LastPressed;
private Vector3 startingOffset;
private Vector3 StartPosition;
Expand Down Expand Up @@ -131,7 +130,7 @@ public override void OnUpdate()
}
}

private static readonly Dictionary<OVRInput.Button, bool> PreviousStates = new Dictionary<OVRInput.Button, bool>()
private static readonly Dictionary<OVRInput.Button, bool> PreviousStates = new Dictionary<OVRInput.Button, bool>
{
{ OVRInput.Button.Three, false }, { OVRInput.Button.One, false }
};
Expand Down
2 changes: 1 addition & 1 deletion Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
[assembly: AssemblyFileVersion(ModInfo.Version)]
[assembly: MelonInfo(typeof(PlayspaceMover.Main), ModInfo.Name, ModInfo.Version, ModInfo.Author, ModInfo.DownloadLink)]

[assembly: MelonGame("VRChat", "VRChat")]
[assembly: MelonGame("VRChat", "VRChat")]

0 comments on commit 7364f60

Please sign in to comment.