Ejemplo n.º 1
0
 public RenderEngine(UProject project, IResamplerDriver driver, RenderCache cache, int startTick = 0)
 {
     this.project   = project;
     this.driver    = driver;
     this.cache     = cache;
     this.startTick = startTick;
     resamplers     = ResamplerDriver.ResamplerDriver
                      .Search(PathManager.Inst.GetEngineSearchPath())
                      .ToDictionary(resampler => resampler.GetInfo().Name, resampler => resampler);
 }
Ejemplo n.º 2
0
 public RenderEngine(UProject project, IResamplerDriver driver, RenderCache cache)
 {
     this.project = project;
     this.driver  = driver;
     this.cache   = cache;
 }