Beispiel #1
0
 public ColorSequence(Color3 color) : this(new [] { new ColorSequenceKeypoint(0, color), new ColorSequenceKeypoint(1, color) })
 {
 }
Beispiel #2
0
 public ColorSequenceKeypoint(float time, Color3 value)
 {
     Time  = time;
     Value = value;
 }
Beispiel #3
0
 public ColorSequence(Color3 c0, Color3 c1) : this(new[] { new ColorSequenceKeypoint(0, c0), new ColorSequenceKeypoint(1, c1) })
 {
 }