Skip to content

Commit a192de5

Browse files
committed
Merge branch 'beta'
2 parents edcdec2 + f1375c0 commit a192de5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Assets/MapEditor/Scripts/ToolTips.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,15 @@ namespace RustMapEditor.Variables
44
{
55
public static class ToolTips
66
{
7+
public const string EditorVersion = "v0.1.6";
78
public static GUIContent cancel = new GUIContent("Cancel", "Cancels the current operation");
89
public static GUIContent optionsLabel = new GUIContent("Options");
910

1011
public static GUIContent editorInfoLabel = new GUIContent("Editor Info", "Info about the current editor, when reporting bugs make sure to include a copy of these values.");
1112
public static GUIContent systemOS = new GUIContent("OS: " + SystemInfo.operatingSystem);
1213
public static GUIContent systemRAM = new GUIContent("RAM: " + SystemInfo.systemMemorySize / 1000 + "GB");
1314
public static GUIContent unityVersion = new GUIContent("Unity Version: " + Application.unityVersion);
14-
public static GUIContent editorVersion = new GUIContent("Editor Version: v0.1.5");
15+
public static GUIContent editorVersion = new GUIContent("Editor Version: " + EditorVersion);
1516

1617
public static GUIContent runPreset = new GUIContent("Run Preset", "Run this preset with all it's current nodes.");
1718
public static GUIContent deletePreset = new GUIContent("Delete Preset", "Delete this preset from Unity.");

0 commit comments

Comments
 (0)