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); }
public RenderEngine(UProject project, IResamplerDriver driver, RenderCache cache) { this.project = project; this.driver = driver; this.cache = cache; }