public CompilationResult Compile(AssemblyType assemblyType, ITranslator translator, CompilationOptions compilationOptions, IEnumerable <IPluginHandler> pluginHandlers = null) { Stencil.PreProcessGraph(this); CompilationResult result; try { result = translator.TranslateAndCompile(this, assemblyType, compilationOptions); if (result.status == CompilationStatus.Failed) { Stencil.OnCompilationFailed(this, result); } else { Stencil.OnCompilationSucceeded(this, result); } } catch (Exception e) { result = null; Debug.LogException(e); } return(result); }