MultiplayerBasics/Assets/Scripts/ColorManipulation.cs

6 lines
152 B
C#

using UnityEngine;
public static class ColorManipulation
{
public static Color GetRandomColor() => new(Random.value, Random.value, Random.value);
}