Ejemplo n.º 1
0
    public static void Open()
    {
        Rect wr = new Rect(0, 0, 500, 500);
        AnimationCurveEditor myWindow = (AnimationCurveEditor)EditorWindow.GetWindowWithRect(typeof(AnimationCurveEditor), wr, true, "AnimationCurve Editor");

        myWindow.Init();
        myWindow.Show();
    }
Ejemplo n.º 2
0
    static void Init()
    {
        AnimationCurveEditor window = (AnimationCurveEditor)EditorWindow.GetWindow(typeof(AnimationCurveEditor));

        window.Show();
    }