thegrb93
thegrb93
This function should probably be restricted to the HUD. It's impossible to do a rhomboid shape with it for the 3D screen context.
I guess then the scissor func will draw a quad with writemask 2 and then set testmask to 2 for following render operations, then switch back writemask and testmask to...
The screen uses https://github.com/thegrb93/StarfallEx/blob/master/lua/entities/starfall_screen/cl_init.lua#L126-L132
Should be fixed by https://github.com/Skyrat-SS13/Skyrat-tg/pull/28639
No those formats are very good at crashing clients. I don't think you can even load models from the data directory
If someone wants to write a checker to sanitize the model data, then I think we can have this. pac3 and outfitter would also benefit from a model sanitizer. Right...
I marked help wanted because I'm not really interested in dissecting the model format again and making a validator anytime soon, although it is a really simple format.
2^31-1 is the highest safe value. Anything larger freezes.
No, that's not how gmod works. Explain why greater than 2^31-1 values freeze rather than 2^32-1 on x64 and not x86. If you know anything about integers, you'd know the...
>I'm not even sure why this works on x86, to be honest. Perhaps Lua has built in functionality to stop it from breaking? Yeah, and the signedness bug is most...