Exemplo n.º 1
0
        public IRenderableProduction Clone()
        {
            var clone = new SelectProduction(ParentProduction)
            {
                Faces               = Faces,
                FaceBreadth         = FaceBreadth,
                IsAbsolute          = IsAbsolute,
                SelectandProduction = (RegistrarProduction)SelectandProduction.Clone(),
                Name       = Name,
                IsOccluder = IsOccluder
            };

            return(clone);
        }
Exemplo n.º 2
0
 public RegistrarProduction Select(SelectProduction selectProduction)
 {
     ChildProductions.Add(selectProduction);
     return(this);
 }