Do you always get that 7fps framerate?
Just asking. If you were getting framerate issues you could have turned off the shadows but I think they're pretty optimised anyway.only in this part, when i play i have 55-62 fps , why?
Simple, if it's the only option. But I'm looking into how add the optional option on top of dynamic resolution scaling and windowed or full screen.Yeah, a really simple code change should do it.
ᶦ ʰᵃᵈ ᵗᵒ
Something likeSimple, if it's the only option. But I'm looking into how add the optional option on top of dynamic resolution scaling and windowed or full screen.
int i = 0;
if (args[i].StartsWith("-dl"))
{
// do stuff
}
i++;
Make sure you put it in a while loop:And once again, much thanks to you. Google wasn't providing much help.
while (i < args.Length)
{
// Code
}
I'm allergic to those. Because... reasons...There's this thing called a for loop. Not sure if you guys have heard of it.
Code:for (int i=0; i<args.Length; i++) { string cArg = args[i]; //do stuff }
#3mainstream5me#2mainstream2care