Exemplo n.º 1
0
        public RenderableList Clone()
        {
            var result = new RenderableList(Name + "_copy", LocalMatrix, this.Select(x => x.Clone()))
            {
                IsEnabled     = IsEnabled,
                IsReflectable = IsReflectable,
                ParentMatrix  = ParentMatrix,
                BoundingBox   = BoundingBox
            };

            _clones.Add(result);
            return(result);
        }
Exemplo n.º 2
0
 public void LookAt(RenderableList target)
 {
     _lookAt = target;
     UpdateLookAt();
 }