Quote:
Originally Posted by LoneAngelIbesu
Hint: profile.transparency and profile.opaque are exact opposites. If something is opaque, you cannot see through it.
|
Incorrect. In Graal,
GuiControlProfile.opaque simply uses the fillColor instead of the bitmap background. The proper way to do it is:
PHP Code:
useOwnProfile = true;
profile.opaque = true;
profile.fillColor = {255, 255, 255, 100};
I haven't used
GuiControlProfile.transparency, but I don't recall it ever working.