Skip to content

Commit

Permalink
Disable undo recording on compile
Browse files Browse the repository at this point in the history
  • Loading branch information
MerlinVR committed Feb 8, 2020
1 parent 114194d commit 0321ad5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Assets/UdonSharp/Editor/UdonSharpProgramAsset.cs
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ protected override void DoRefreshProgramActions()

public void AssembleCsProgram()
{
Undo.RecordObject(this, "Compile C# program");
//Undo.RecordObject(this, "Compile C# program");

UdonSharpCompiler compiler = new UdonSharpCompiler(sourceCsScript);
udonAssembly = compiler.Compile();
Expand Down

0 comments on commit 0321ad5

Please sign in to comment.