Post: Remove shaders from menu so its just text
06-13-2015, 08:40 AM #1
(adsbygoogle = window.adsbygoogle || []).push({}); I wanna edit my menu so it's just the text no background so it looks cleaner any help?
(adsbygoogle = window.adsbygoogle || []).push({});
06-13-2015, 09:27 AM #2
HiddenHour
I defeated!
Originally posted by sad
I wanna edit my menu so it's just the text no background so it looks cleaner any help?


Just remove drawShader(background) or whatever function your menu base uses and nullify every time it is called.
06-13-2015, 09:16 PM #3
Originally posted by TheHiddenHour View Post
Just remove drawShader(background) or whatever function your menu base uses and nullify every time it is called.


i removed something witht hat and it made my game freeze when i started it
06-13-2015, 10:02 PM #4
FRINZ
I’m too L33T
lol bro OpenMenu() which is located mostly in main.gsc
self.menu.background FadeOverTime(0.30);
self.menu.background.alpha = 0.55;

That You Will Delete off OpenMenu()

No In CloseMenu()
self.menu.background FadeOverTime(0.3);
self.menu.background.alpha = 0;

Delete That

almost done ....
Now in destroyMenu()
Delete player.menu.background destroy();

Now Finally in StoreShaders()
Delete
self.menu.background = self drawShader("white", 235, -100, 200, 1000, (0, 0, 0), 0, 0);


And by now you should have no backgroung Just Text

But You Can Just Make Your Background invisable by Going To
OpenMenu()
And makeing
self.menu.background.alpha = 0.55; to 0 example

self.menu.background.alpha = 0;

thats another way to do it. so you dont hv to delete anything.

The following user thanked FRINZ for this useful post:

HiddenHour
06-14-2015, 02:01 AM #5
HiddenHour
I defeated!
Originally posted by FRlNZ View Post
lol bro OpenMenu() which is located mostly in main.gsc
self.menu.background FadeOverTime(0.30);
self.menu.background.alpha = 0.55;

That You Will Delete off OpenMenu()

No In CloseMenu()
self.menu.background FadeOverTime(0.3);
self.menu.background.alpha = 0;

Delete That

almost done ....
Now in destroyMenu()
Delete player.menu.background destroy();

Now Finally in StoreShaders()
Delete
self.menu.background = self drawShader("white", 235, -100, 200, 1000, (0, 0, 0), 0, 0);


And by now you should have no backgroung Just Text

But You Can Just Make Your Background invisable by Going To
OpenMenu()
And makeing
self.menu.background.alpha = 0.55; to 0 example

self.menu.background.alpha = 0;

thats another way to do it. so you dont hv to delete anything.


There you go.

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo