Browse Source

Fixed stray \\ that were not being stripped on Mac OS, when importing a fresh. Resulted in incomplete generation of editor resources

master
desktop-maesty/steve 7 years ago
parent
commit
7ee3a0b0ee
  1. 2
      Assets/Fungus/Scripts/Editor/FungusEditorResources.cs

2
Assets/Fungus/Scripts/Editor/FungusEditorResources.cs

@ -78,7 +78,7 @@ namespace Fungus.EditorUtils
private static FungusEditorResources instance;
private static readonly string editorResourcesFolderName = "\"EditorResources\"";
private static readonly string PartialEditorResourcesPath = System.IO.Path.Combine("Fungus\\", "EditorResources");
private static readonly string PartialEditorResourcesPath = System.IO.Path.Combine("Fungus", "EditorResources");
[SerializeField] [HideInInspector] private bool updateOnReloadScripts = false;
internal static FungusEditorResources Instance

Loading…
Cancel
Save