Skip to content

Commit

Permalink
[#D3D-3070] Fixes errors from GetString() calls in scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
AurL committed Apr 6, 2017
1 parent f8b0753 commit 491365c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions GlTF_ExporterWindow.cs
Expand Up @@ -11,8 +11,8 @@ public class GlTFExporterWindow : EditorWindow
const string KEY_PATH = "GlTFPath";
const string KEY_FILE = "GlTFFile";
static public string path = "?";
static string savedPath = EditorPrefs.GetString(KEY_PATH, "/");
static string savedFile = EditorPrefs.GetString(KEY_FILE, "test.gltf");
static string savedPath;
static string savedFile;
static XmlDocument xdoc;

static Preset preset = new Preset();
Expand Down

0 comments on commit 491365c

Please sign in to comment.