Exemple #1
0
        public static JAnimatedProperty Create(string name, string displayName, JCurveOrGradient curveOrGradient)
        {
            JAnimatedProperty props = new JAnimatedProperty();

            props.name            = name;
            props.displayName     = displayName;
            props.curveOrGradient = curveOrGradient;
            return(props);
        }
 public JAnimatableAttribute(string displayName, JCurveOrGradient curveOrGradient)
 {
     DisplayName     = displayName;
     CurveOrGradient = curveOrGradient;
 }