Skip to content

Commit

Permalink
Updated parser json code to use latest sdk (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
zaucy authored Aug 5, 2022
1 parent e407da0 commit 611d5a8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Editor/Importer/EcsactImporter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@ public override void OnImportAsset(AssetImportContext ctx) {
codegen.StartInfo.CreateNoWindow = true;
codegen.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
codegen.EnableRaisingEvents = true;
codegen.StartInfo.Arguments = ctx.assetPath + " --ignore_unknown_imports";
codegen.StartInfo.Arguments =
ctx.assetPath +
" --ignore_unknown_imports" +
" --stdout";
codegen.StartInfo.RedirectStandardError = true;
codegen.StartInfo.RedirectStandardOutput = true;
codegen.StartInfo.UseShellExecute = false;
Expand Down

0 comments on commit 611d5a8

Please sign in to comment.