Skip to content

Commit e58c1c1

Browse files
committed
asset store 0f2
1 parent 20d8bb1 commit e58c1c1

File tree

2 files changed

+13
-5
lines changed

2 files changed

+13
-5
lines changed

source/FrameRecorder/Core/Editor/AboutBox.cs

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ namespace UnityEditor.FrameRecorder
55
{
66
public class AboutBox : EditorWindow
77
{
8-
[MenuItem("Tools/Recorder/About...", false, Int32.MinValue)]
8+
[MenuItem("Tools/Recorder/About...", false, Int32.MaxValue)]
99
public static void ShowAboutBox()
1010
{
11-
EditorWindow.GetWindowWithRect<AboutBox>(new Rect(100, 100, 550, 310), true, "About Recorder");
11+
EditorWindow.GetWindowWithRect<AboutBox>(new Rect(100, 100, 550, 330), true, "About Recorder");
1212
}
1313

1414
GUIContent s_Header;
@@ -20,7 +20,7 @@ void OnEnable()
2020

2121
public void OnGUI()
2222
{
23-
GUILayout.Space(10);
23+
GUILayout.Space(10);
2424
GUILayout.BeginHorizontal();
2525
GUILayout.Space(5);
2626
GUILayout.BeginVertical();
@@ -62,6 +62,14 @@ public void OnGUI()
6262
this.Close();
6363
}
6464
GUILayout.EndHorizontal();
65+
GUILayout.Space(5);
66+
GUILayout.BeginHorizontal();
67+
if (GUILayout.Button("Unity's User forum"))
68+
{
69+
Application.OpenURL("https://forum.unity.com/categories/betas-experimental-features.86/");
70+
this.Close();
71+
}
72+
GUILayout.EndHorizontal();
6573

6674
}
6775
}

source/FrameRecorder/Core/Engine/RecorderVersion.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ namespace UnityEditor.FrameRecorder
66
{
77
public class RecorderVersion : ScriptableObject
88
{
9-
public const string Version = "0.1.170912-10";
10-
public const string Stage = "(Beta)";
9+
public const string Version = "0.1.170913-02";
10+
public const string Stage = "(Experimental)";
1111
}
1212
}

0 commit comments

Comments
 (0)