Skip to content

Commit 1e0a0a1

Browse files
Fix draw gun (last commit of 6.6.0)
1 parent db75169 commit 1e0a0a1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Mods/Buttons.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -589,7 +589,7 @@ public class Buttons
589589

590590
new ButtonInfo { buttonText = "Custom Skybox Color", enableMethod =() => Visuals.DoCustomSkyboxColor(), method =() => Visuals.CustomSkyboxColor(), disableMethod =() => Visuals.UnCustomSkyboxColor(), toolTip = "Changes the skybox color to match the menu."},
591591

592-
new ButtonInfo { buttonText = "Draw Gun", method =() => Visuals.DrawGun(), toolTip = "Lets you draw on whatever your hand desires." },
592+
new ButtonInfo { buttonText = "Draw Gun", method =() => Visuals.DrawGun(), disableMethod =() => Visuals.DisableDrawGun(), toolTip = "Lets you draw on whatever your hand desires." },
593593

594594
new ButtonInfo { buttonText = "Velocity Label", method =() => Visuals.VelocityLabel(), toolTip = "Puts text on your right hand, showing your velocity."},
595595
new ButtonInfo { buttonText = "Nearby Label", method =() => Visuals.NearbyTaggerLabel(), toolTip = "Puts text on your left hand, showing you the distance of the nearest tagger."},

Mods/Visuals.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ public static void DrawGun()
153153

154154
trailRenderer.minVertexDistance = 0.05f;
155155

156-
trailRenderer.material.shader = Shader.Find("Sprites/Default");
156+
trailRenderer.material.shader = Shader.Find("GUI/Text Shader");
157157
trailRenderer.time = float.PositiveInfinity;
158158

159159
trailRenderer.startColor = Color.black;

PluginInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ public class PluginInfo
55
public const string GUID = "org.iidk.gorillatag.iimenu";
66
public const string Name = "ii's Stupid Menu";
77
public const string Description = "Created by @goldentrophy with love <3";
8-
public const string BuildTimestamp = "2025-07-08T22:06:07Z";
8+
public const string BuildTimestamp = "2025-07-08T22:12:46Z";
99
public const string Version = "6.6.0";
1010

1111
public const string BaseDirectory = "iisStupidMenu";

0 commit comments

Comments
 (0)