Browse Source

Fixed warning in Usfxr editor window

master
chrisgregan 10 years ago
parent
commit
58f57907db
  1. 3
      Assets/Fungus/Thirdparty/Usfxr/Editor/SfxrGenerator.cs

3
Assets/Fungus/Thirdparty/Usfxr/Editor/SfxrGenerator.cs vendored

@ -66,7 +66,8 @@ public class SfxrGenerator : EditorWindow {
[MenuItem("Tools/Fungus/Utilities/Generate usfxr Sound Effects")]
public static void Initialize() {
var window = ScriptableObject.CreateInstance<SfxrGenerator>();
window.title = window.name = "Sound Effects";
window.name = "Sound Effects";
window.titleContent = new GUIContent(window.name);
window.Show();
}

Loading…
Cancel
Save