Gruhlum
Gruhlum
CC#
Created by esportsman on 5/11/2025 in #help
i need help me C# I need the camera to work at 360 degrees like in shooters
You might want to head over to the Unity discord
7 replies
CC#
Created by vanille. on 1/15/2024 in #help
Change function behavior depending on class' generic type.
sounds like a job for extensions.
public static class Extensions
{
public static Color Lerp(this Color color)
{
return color;
}
}
public static class Extensions
{
public static Color Lerp(this Color color)
{
return color;
}
}
15 replies