Example #1
0
        protected override EffectTypeModuleData CreateInstanceForClone()
        {
            BarsData result = new BarsData
            {
                Colors              = Colors.ToList(),
                Direction           = Direction,
                Speed               = Speed,
                Repeat              = Repeat,
                Orientation         = Orientation,
                Show3D              = Show3D,
                MovementType        = MovementType,
                Highlight           = Highlight,
                LevelCurve          = new Curve(LevelCurve),
                SpeedCurve          = new Curve(SpeedCurve),
                ZigZagAmplitude     = ZigZagAmplitude,
                BarType             = BarType,
                ZigZagBarThickness  = ZigZagBarThickness,
                ZigZagSpacing       = ZigZagSpacing,
                ZigZagPeriod        = ZigZagPeriod,
                RotationAngle       = RotationAngle,
                HighlightPercentage = HighlightPercentage,
            };

            return(result);
        }
Example #2
0
		public override IModuleDataModel Clone()
		{
			BarsData result = new BarsData
			{
				Colors = Colors.ToList(),
				Direction = Direction,
				Speed = Speed,
				Repeat = Repeat,
				Orientation = Orientation,
				Show3D = Show3D,
				Highlight = Highlight,
				LevelCurve = new Curve(LevelCurve)
			};
			return result;
		}
Example #3
0
        protected override EffectTypeModuleData CreateInstanceForClone()
        {
            BarsData result = new BarsData
            {
                Colors      = Colors.ToList(),
                Direction   = Direction,
                Speed       = Speed,
                Repeat      = Repeat,
                Orientation = Orientation,
                Show3D      = Show3D,
                Highlight   = Highlight,
                LevelCurve  = new Curve(LevelCurve)
            };

            return(result);
        }
Example #4
0
        public override IModuleDataModel Clone()
        {
            BarsData result = new BarsData
            {
                Colors      = Colors.ToList(),
                Direction   = Direction,
                Speed       = Speed,
                Repeat      = Repeat,
                Orientation = Orientation,
                Show3D      = Show3D,
                Highlight   = Highlight,
                LevelCurve  = new Curve(LevelCurve)
            };

            return(result);
        }
Example #5
0
 public Bars()
 {
     _data = new BarsData();
     EnableTargetPositioning(true, true);
     InitAllAttributes();
 }
Example #6
0
File: Bars.cs Project: thorhs/vixen
 public Bars()
 {
     _data = new BarsData();
 }
Example #7
0
File: Bars.cs Project: stewmc/vixen
		public Bars()
		{
			_data = new BarsData();
		}
Example #8
0
 protected override EffectTypeModuleData CreateInstanceForClone()
 {
     BarsData result = new BarsData
     {
         Colors = Colors.ToList(),
         Direction = Direction,
         Speed = Speed,
         Repeat = Repeat,
         Orientation = Orientation,
         Show3D = Show3D,
         Highlight = Highlight,
         LevelCurve = new Curve(LevelCurve)
     };
     return result;
 }
Example #9
0
 public Bars()
 {
     _data = new BarsData();
     EnableTargetPositioning(true, true);
     InitAllAttributes();
 }