Ejemplo n.º 1
0
        protected BaseLayerProperty(Layer layer, BaseLayerProperty parent, string id, string name, string description, Type type)
        {
            Layer           = layer;
            Parent          = parent;
            Id              = id;
            Name            = name;
            Description     = description;
            Type            = type;
            CanUseKeyframes = true;

            Children      = new List <BaseLayerProperty>();
            BaseKeyframes = new List <BaseKeyframe>();
        }
Ejemplo n.º 2
0
 public LayerProperty(Layer layer, BaseLayerProperty parent, string id, string name, string description) : base(layer, parent, id, name, description, typeof(T))
 {
 }
Ejemplo n.º 3
0
 protected BaseKeyframe(Layer layer, BaseLayerProperty property)
 {
     Layer        = layer;
     BaseProperty = property;
 }