Skip to content

Commit 369223f

Browse files
committed
Version 0.6
1 parent 9d471ca commit 369223f

File tree

10 files changed

+4
-220
lines changed

10 files changed

+4
-220
lines changed

EnableFullScreenToggleIL2CPP_netFm/EnableFullScreenToggleIL2CPP_netFm.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
using System;
44
using UnhollowerRuntimeLib;
55
using UnityEngine;
6-
using Input = UnityEngine.Input;
7-
using KeyCode = UnityEngine.KeyCode;
86

97
namespace EnableFullScreenToggleIL2CPP_netFm
108
{
@@ -16,7 +14,7 @@ public class EnableFullScreenToggle : BasePlugin
1614
{
1715
internal const string GUID = "SpockBauru.EnableFullScreenToggleIL2CPP_netFm";
1816
internal const string PluginName = "Enable Full Screen Toggle";
19-
internal const string PluginVersion = "0.5";
17+
internal const string PluginVersion = "0.6";
2018

2119
//Game Object shared between all SpockPlugins_BepInEx plugins
2220
public GameObject SpockBauru;

EnableResizeIL2CPP_netFm/EnableResize.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,6 @@ private void Initialize()
131131
StartCoroutine(TestScreen().WrapToIl2Cpp());
132132
}
133133

134-
135134
private IEnumerator TestScreen()
136135
{
137136
while (true)

EnableResizeMono/EnableResizeMono.cs

Lines changed: 0 additions & 121 deletions
This file was deleted.

EnableResizeMono/EnableResizeMono.csproj

Lines changed: 0 additions & 60 deletions
This file was deleted.

EnableResizeMono/Properties/AssemblyInfo.cs

Lines changed: 0 additions & 8 deletions
This file was deleted.

GraphicsSettingsIL2CPP_netFm/GraphicsSettings.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public class GraphicsSettings : BasePlugin
1515
{
1616
internal const string GUID = "SpockBauru.GraphicsSettingsIL2CPP_NetFm";
1717
internal const string PluginName = "Graphics Settings";
18-
internal const string PluginVersion = "0.5";
18+
internal const string PluginVersion = "0.6";
1919

2020
private static ConfigEntry<int> Width;
2121
private static ConfigEntry<int> Height;

MessageCenterIL2CPP_netFm/MessageCenter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public partial class MessageCenter : BasePlugin
1919
{
2020
internal const string GUID = "SpockBauru.MessageCenterIL2CPP_netFm";
2121
internal const string PluginName = "Message Center";
22-
internal const string PluginVersion = "0.5";
22+
internal const string PluginVersion = "0.6";
2323

2424
//Game Object shared between all SpockPlugins_BepInEx plugins
2525
public GameObject SpockBauru;

MessageCenterIL2CPP_netFm/ShadowAndOutline.cs

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -77,23 +77,5 @@ public static void DrawShadow(Rect rect, GUIContent content, GUIStyle style, Col
7777
style.normal.textColor = backupColor;
7878
}
7979
public static void DrawLayoutShadow(GUIContent content, GUIStyle style, Color txtColor, Color shadowColor, Vector2 direction, params GUILayoutOption[] options) => DrawShadow(GUILayoutUtility.GetRect(content, style, options), content, style, txtColor, shadowColor, direction);
80-
81-
public static bool DrawButtonWithShadow(Rect r, GUIContent content, GUIStyle style, float shadowAlpha, Vector2 direction)
82-
{
83-
GUIStyle letters = style;
84-
letters.normal.background = null;
85-
letters.hover.background = null;
86-
letters.active.background = null;
87-
88-
bool result = GUI.Button(r, content, style);
89-
90-
Color color = r.Contains(Event.current.mousePosition) ? letters.hover.textColor : letters.normal.textColor;
91-
92-
DrawShadow(r, content, letters, color, new Color(0f, 0f, 0f, shadowAlpha), direction);
93-
94-
return result;
95-
}
96-
97-
public static bool DrawLayoutButtonWithShadow(GUIContent content, GUIStyle style, float shadowAlpha, Vector2 direction, params GUILayoutOption[] options) => DrawButtonWithShadow(GUILayoutUtility.GetRect(content, style, options), content, style, shadowAlpha, direction);
9880
}
9981
}

MuteInBackgroundIL2CPP_NetFm/MuteInBackground.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public class MuteInBackground : BasePlugin
1515
{
1616
internal const string GUID = "SpockBauru.MuteInBackgroundIL2CPP_netFm";
1717
internal const string PluginName = "Mute In Background";
18-
internal const string PluginVersion = "0.5";
18+
internal const string PluginVersion = "0.6";
1919

2020
//Game Object shared between all SpockPlugins_BepInEx plugins
2121
public GameObject SpockBauru;

SpockPlugins_BepInEx.sln

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio Version 17
44
VisualStudioVersion = 17.3.32825.248
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EnableResizeMono", "EnableResizeMono\EnableResizeMono.csproj", "{6E835981-EEB7-4E65-B7C0-9F71AE92E4FB}"
7-
EndProject
86
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EnableResizeIL2CPP_netFm", "EnableResizeIL2CPP_netFm\EnableResizeIL2CPP_netFm.csproj", "{9921DE3B-DEF2-4470-BD8F-23F207128844}"
97
EndProject
108
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EnableFullScreenToggleIL2CPP_netFm", "EnableFullScreenToggleIL2CPP_netFm\EnableFullScreenToggleIL2CPP_netFm.csproj", "{F37EF379-2D98-469F-8CBF-EC995F54D7DF}"
@@ -21,10 +19,6 @@ Global
2119
Release|Any CPU = Release|Any CPU
2220
EndGlobalSection
2321
GlobalSection(ProjectConfigurationPlatforms) = postSolution
24-
{6E835981-EEB7-4E65-B7C0-9F71AE92E4FB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
25-
{6E835981-EEB7-4E65-B7C0-9F71AE92E4FB}.Debug|Any CPU.Build.0 = Debug|Any CPU
26-
{6E835981-EEB7-4E65-B7C0-9F71AE92E4FB}.Release|Any CPU.ActiveCfg = Release|Any CPU
27-
{6E835981-EEB7-4E65-B7C0-9F71AE92E4FB}.Release|Any CPU.Build.0 = Release|Any CPU
2822
{9921DE3B-DEF2-4470-BD8F-23F207128844}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
2923
{9921DE3B-DEF2-4470-BD8F-23F207128844}.Debug|Any CPU.Build.0 = Debug|Any CPU
3024
{9921DE3B-DEF2-4470-BD8F-23F207128844}.Release|Any CPU.ActiveCfg = Release|Any CPU

0 commit comments

Comments
 (0)