Esempio n. 1
0
        protected override EffectTypeModuleData CreateInstanceForClone()
        {
            TreeData result = new TreeData
            {
                Colors               = Colors.ToList(),
                BackgroundColor      = BackgroundColor,
                ColorType            = ColorType,
                Speed                = Speed,
                BranchDirection      = BranchDirection,
                Branches             = Branches,
                ToggleBlend          = ToggleBlend,
                Orientation          = Orientation,
                BlendCurve           = new Curve(BlendCurve),
                LevelCurve           = new Curve(LevelCurve),
                BackgroundLevelCurve = new Curve(BackgroundLevelCurve)
            };

            return(result);
        }
Esempio n. 2
0
 public Tree()
 {
     _data = new TreeData();
 }
Esempio n. 3
0
 public Tree()
 {
     _data = new TreeData();
 }
Esempio n. 4
0
 protected override EffectTypeModuleData CreateInstanceForClone()
 {
     TreeData result = new TreeData
     {
         Colors = Colors.ToList(),
         BackgroundColor = BackgroundColor,
         ColorType = ColorType,
         Speed = Speed,
         BranchDirection = BranchDirection,
         Branches = Branches,
         ToggleBlend = ToggleBlend,
         Orientation = Orientation,
         BlendCurve = new Curve(BlendCurve),
         LevelCurve = new Curve(LevelCurve),
         BackgroundLevelCurve = new Curve(BackgroundLevelCurve)
     };
     return result;
 }