Skip to content

Commit

Permalink
Fixed a dependancy issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Morichalion committed Jun 5, 2021
1 parent 14925dd commit f46692f
Show file tree
Hide file tree
Showing 13 changed files with 23 additions and 6 deletions.
Binary file modified .vs/MoriBScam/v16/.suo
Binary file not shown.
Binary file added .vs/MoriBeatSaberCamera/v16/.suo
Binary file not shown.
2 changes: 1 addition & 1 deletion .vs/VSWorkspaceState.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"ExpandedNodes": [
""
],
"SelectedNode": "\\MonoBehaviors.cs",
"SelectedNode": "\\settings.cs",
"PreviewInSolutionExplorer": false
}
Binary file modified .vs/slnx.sqlite
Binary file not shown.
3 changes: 2 additions & 1 deletion BeatSaberAutoCamera.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public partial class MoriBeatSaberCamera : IPluginCameraBehaviour
public string ID => "MoriBeatSaberKam";
public string name => "Mori's Beat Saber Cam";
public string author => "Morichalion";
public string version => "0.1.3";
public string version => "0.2.0";

public IPluginSettings settings => _settings;

Expand Down Expand Up @@ -53,6 +53,7 @@ public void OnActivate(PluginCameraHelper helper) {
//men.WorldCam = helper.manager.camera.worldCamera.transform;
men.WorldCam = helper.behaviour.manager.camera.transform;


CheckSettings();
if (overlayactive==true)
{
Expand Down
6 changes: 5 additions & 1 deletion BeatSaberStatus.cs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,11 @@ public BeatSaberStatus()
menu = false;
ScoreUpdate(received["status"]["performance"]);
}
if (received["event"].ToString() == "menu")
if (
received["event"].ToString() == "finished"
||
received["event"].ToString() == "failed"
)
{
menu = true;
}
Expand Down
4 changes: 2 additions & 2 deletions Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.1.3")]
[assembly: AssemblyFileVersion("0.1.3")]
[assembly: AssemblyVersion("0.2.0")]
[assembly: AssemblyFileVersion("0.2.0")]
Binary file added bin/MoriBScam.dll
Binary file not shown.
Binary file modified bin/Newtonsoft.Json.dll
Binary file not shown.
12 changes: 12 additions & 0 deletions obj/x64/Plugin/MoriBScam.csproj.FileListAbsolute.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,15 @@ C:\Users\thelr\OneDrive\Documents\Vis Studio projects\MoriBeatSaberCamera-0.1.1\
C:\Users\thelr\OneDrive\Documents\Vis Studio projects\MoriBeatSaberCamera-0.1.1\obj\x64\Plugin\MoriBScam.csproj.CoreCompileInputs.cache
C:\Users\thelr\OneDrive\Documents\Vis Studio projects\MoriBeatSaberCamera-0.1.1\obj\x64\Plugin\MoriBScam.csproj.CopyComplete
C:\Users\thelr\OneDrive\Documents\Vis Studio projects\MoriBeatSaberCamera-0.1.1\obj\x64\Plugin\MoriBScam.dll
C:\Users\thelr\Source\Repos\Morichalion\MoriBeatSaberCamera\bin\MoriBScam.dll
C:\Users\thelr\Source\Repos\Morichalion\MoriBeatSaberCamera\bin\Newtonsoft.Json.dll
C:\Users\thelr\Source\Repos\Morichalion\MoriBeatSaberCamera\bin\UnityEngine.AnimationModule.dll
C:\Users\thelr\Source\Repos\Morichalion\MoriBeatSaberCamera\bin\UnityEngine.AssetBundleModule.dll
C:\Users\thelr\Source\Repos\Morichalion\MoriBeatSaberCamera\bin\UnityEngine.ImageConversionModule.dll
C:\Users\thelr\Source\Repos\Morichalion\MoriBeatSaberCamera\bin\UnityEngine.Networking.dll
C:\Users\thelr\Source\Repos\Morichalion\MoriBeatSaberCamera\bin\UnityEngine.TextRenderingModule.dll
C:\Users\thelr\Source\Repos\Morichalion\MoriBeatSaberCamera\bin\websocket-sharp.dll
C:\Users\thelr\Source\Repos\Morichalion\MoriBeatSaberCamera\obj\x64\Plugin\MoriBScam.csprojAssemblyReference.cache
C:\Users\thelr\Source\Repos\Morichalion\MoriBeatSaberCamera\obj\x64\Plugin\MoriBScam.csproj.CoreCompileInputs.cache
C:\Users\thelr\Source\Repos\Morichalion\MoriBeatSaberCamera\obj\x64\Plugin\MoriBScam.csproj.CopyComplete
C:\Users\thelr\Source\Repos\Morichalion\MoriBeatSaberCamera\obj\x64\Plugin\MoriBScam.dll
Binary file modified obj/x64/Plugin/MoriBScam.csprojAssemblyReference.cache
Binary file not shown.
Binary file modified obj/x64/Plugin/MoriBScam.dll
Binary file not shown.
2 changes: 1 addition & 1 deletion settings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ public void CheckSettings()
if (line.Contains("Debug ="))
{
string[] blah = line.Split('=');
debugLogging = blah[1];
//debugLogging = blah[1];
}

if(line.Contains("RigLook ="))
Expand Down

0 comments on commit f46692f

Please sign in to comment.