Re: minisphere 1.0.10
Reply #356 –
Apparently the copy of Sir Boingers I have doesn't have this effect? I have the one from the Downloads repo, and the lines in question look like this:
while (AreKeysLeft()) key = GetKey();
if (key != undefined)
{
if (key == KEY_BACKSPACE)
playername = playername.slice(0, playername.length-1);
else if (key == KEY_ENTER && !lastpressed && playername != "")
break;
else if (playername.length <= 20)
playername += GetKeyString(key, shift);
}
key = "";
if (IsAnyKeyPressed()) lastpressed = true;
else lastpressed = false;
if (IsKeyPressed(KEY_SHIFT)) shift = true;
Input code. I did a search for all Rectangle() calls in start.js too, they all used a constant color. No ApplyColorMask() calls either. This effect must be a recent addition.
That said, drawing a full-screen translucent rectangle should definitely work, short of a regression in the primitives code, which I don't think I've touched in quite a while...