Advertisement
dmitrysenkovich

Untitled

Aug 25th, 2014
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. public override bool RunImp(Task task, AppEnv appEnv, bool withChildren)
  2.         {
  3.             string tempDir = appEnv.TempDir + @"export-lsa4-with-vector-data-5\";
  4.  
  5.             Command command = null;
  6.             command = new Command();
  7.             command.Type = Command.CommandType.EDTU4;
  8.             command.EdtuCommand = "build-navigation-mesh";
  9.             string surfaceL0filename = tempDir + "surfaceL0.ofsh";
  10.             string navMeshfilename = //todo
  11.             command.Args = surfaceL0filename + " " + navMeshfilename;                
  12.             command.ErrorsFile = tempDir + @"export-vector-data_errors.ofsh";
  13.             task.AddCommand(command);
  14.  
  15.             return true;
  16.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement