UnityEditor.AnimationUtility.GetEditorCurveValueType C# (CSharp) Method

GetEditorCurveValueType() public static method

public static GetEditorCurveValueType ( GameObject root, EditorCurveBinding binding ) : Type
root UnityEngine.GameObject
binding EditorCurveBinding
return System.Type
        public static Type GetEditorCurveValueType(GameObject root, EditorCurveBinding binding)
        {
            return INTERNAL_CALL_GetEditorCurveValueType(root, ref binding);
        }

Usage Example

 private bool CheckIfPropertyExists(EditorCurveBinding data)
 {
     return(AnimationUtility.GetEditorCurveValueType(this.animatedObject, data) != null);
 }
AnimationUtility