Browse Source

Merge pull request #686 from stevehalliwell/EditorResourcesOSX

Fixed stray \\ that were not being stripped on Mac OS, when importing…
master
Chris Gregan 7 years ago committed by GitHub
parent
commit
843e10f560
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  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 FungusEditorResources instance;
private static readonly string editorResourcesFolderName = "\"EditorResources\""; 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; [SerializeField] [HideInInspector] private bool updateOnReloadScripts = false;
internal static FungusEditorResources Instance internal static FungusEditorResources Instance

Loading…
Cancel
Save