예제 #1
0
        public object Clone()
        {
            GridPixel c = new GridPixel();

            c.ChangingColor = (ChangingValue <Color>)ChangingColor.Clone();
            c.Position      = Position;
            c.Size          = Size;
            return(c);
        }
예제 #2
0
 public void Update(float step)
 {
     ChangingColor.Update(step);
 }
예제 #3
0
 protected virtual void ColorIsChanging(DisciplineChange args)
 {
     ChangingColor?.Invoke(this, args);
 }