Fluffy
Fluffy
CC#
Created by Fluffy on 2/21/2024 in #help
Looking @ Open Source and want to debug
gotcha
18 replies
CC#
Created by Fluffy on 2/21/2024 in #help
Looking @ Open Source and want to debug
ill try printing something
18 replies
CC#
Created by Fluffy on 2/21/2024 in #help
Looking @ Open Source and want to debug
ooh i see
18 replies
CC#
Created by Fluffy on 2/21/2024 in #help
Looking @ Open Source and want to debug
18 replies
CC#
Created by Fluffy on 2/21/2024 in #help
Looking @ Open Source and want to debug
18 replies
CC#
Created by Fluffy on 2/21/2024 in #help
Looking @ Open Source and want to debug
Visual Studio Community
18 replies
CC#
Created by Fluffy on 2/21/2024 in #help
Looking @ Open Source and want to debug
I never see a console
18 replies
CC#
Created by Fluffy on 2/21/2024 in #help
Looking @ Open Source and want to debug
No description
18 replies
CC#
Created by Fluffy on 2/21/2024 in #help
Looking @ Open Source and want to debug
No description
18 replies
CC#
Created by Fluffy on 9/6/2023 in #help
I ethically borrowed some source code and it doesn't work
Ty for the help
17 replies
CC#
Created by Fluffy on 9/6/2023 in #help
I ethically borrowed some source code and it doesn't work
Yeah that was a dumb mistake It really looked like it was in the class
17 replies
CC#
Created by Fluffy on 9/6/2023 in #help
I ethically borrowed some source code and it doesn't work
ah shoot I think i did
17 replies
CC#
Created by Fluffy on 9/6/2023 in #help
I ethically borrowed some source code and it doesn't work
namespace and type declarations
17 replies
CC#
Created by Fluffy on 9/6/2023 in #help
I ethically borrowed some source code and it doesn't work
Top Level statements must precede
17 replies
CC#
Created by Fluffy on 9/6/2023 in #help
I ethically borrowed some source code and it doesn't work
Im trying to get them but my screenshot program is breaking on me
17 replies
CC#
Created by Fluffy on 9/6/2023 in #help
I ethically borrowed some source code and it doesn't work
public static float Min(params float[] values)
{
int num = values.Length;
if (num == 0)
{
return 0f;
}

float num2 = values[0];
for (int i = 1; i < num; i++)
{
if (values[i] < num2)
{
num2 = values[i];
}
}

return num2;
}
public static float Min(params float[] values)
{
int num = values.Length;
if (num == 0)
{
return 0f;
}

float num2 = values[0];
for (int i = 1; i < num; i++)
{
if (values[i] < num2)
{
num2 = values[i];
}
}

return num2;
}
17 replies
CC#
Created by Fluffy on 9/6/2023 in #help
I ethically borrowed some source code and it doesn't work
The original function was this:
17 replies
CC#
Created by Fluffy on 9/6/2023 in #help
I ethically borrowed some source code and it doesn't work
It's in Unity
17 replies