GetPreview() public static method

public static GetPreview ( int previewWidth, int previewHeight, AnimationCurve curve, AnimationCurve curve2, Color color ) : Texture2D
previewWidth int
previewHeight int
curve UnityEngine.AnimationCurve
curve2 UnityEngine.AnimationCurve
color Color
return UnityEngine.Texture2D
 public static Texture2D GetPreview(int previewWidth, int previewHeight, SerializedProperty property, SerializedProperty property2, Color color, Rect curveRanges)
 {
     return(AnimationCurvePreviewCache.GetPreview(previewWidth, previewHeight, property, property2, color, Color.clear, Color.clear));
 }
 public static Texture2D GetPreview(int previewWidth, int previewHeight, AnimationCurve curve, Color color, Rect curveRanges)
 {
     return(AnimationCurvePreviewCache.GetPreview(previewWidth, previewHeight, curve, color, Color.clear, Color.clear, curveRanges));
 }
 public static Texture2D GetPreview(int previewWidth, int previewHeight, AnimationCurve curve, Color color)
 {
     return(AnimationCurvePreviewCache.GetPreview(previewWidth, previewHeight, curve, color, Color.clear, Color.clear, default(Rect)));
 }
 public static Texture2D GetPreview(int previewWidth, int previewHeight, SerializedProperty property, Color color)
 {
     return(AnimationCurvePreviewCache.GetPreview(previewWidth, previewHeight, property, color, Color.clear, Color.clear, default(Rect)));
 }