We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4a68e8 commit b184cb5Copy full SHA for b184cb5
Editor/History.cs
@@ -12,7 +12,7 @@ public class History{
12
public History(string path = null){
13
this.path = path;
14
this.frames = new List<Frame>();
15
- if(path != null) File.Delete(path);
+ if(path != null){ File.Delete(path); File.Delete(path + ".meta"); }
16
}
17
18
public History(Filter filter){
0 commit comments