Method GenerateRandomWalk
GenerateRandomWalk(int, Color, float, float, bool)
Generates a sequence of colors where the next color is a random offset from the previous color.
public static List<Color> GenerateRandomWalk(int colorCount, Color startColor, float minOffset, float maxOffset, bool fixLightness)
Parameters
colorCountintThe number of colors to generate.
startColorColorThe first color in the sequence.
minOffsetfloatThe minimum offset for the random color generation.
maxOffsetfloatThe maximum offset for the random color generation.
fixLightnessboolIf true, the brightness of the start color is applied to all generated colors.