Exemple #1
0
 public static Keyframe[] KeyframeArrayFromJson(string json)
 {
     return(JsonUtilityExtensions.FromJson <KeyframeEx[]>(json).ExKeyframeArray2KeyframeArray());
 }
Exemple #2
0
 public static AnimationCurve[] AnimationCurveArrayFromJson(string json)
 {
     return(JsonUtilityExtensions.FromJson <AnimationCurveEx[]>(json).ExAnimationCurveArray2AnimationCurveArray());
 }
Exemple #3
0
 public static Keyframe KeyframeFromJson(string json)
 {
     return(JsonUtilityExtensions.FromJson <KeyframeEx>(json));
 }
Exemple #4
0
 public static AnimationCurve AnimationCurveFromJson(string json)
 {
     return(JsonUtilityExtensions.FromJson <AnimationCurveEx>(json));
 }