protected virtual void ConfigureRendering(RenderingConfiguration.IBuilder builder) { builder .WithScreenWidth(1280) .WithScreenHeight(720) .WithEnableVSync(false) .WithSortingLayersOrder(new[] { RenderingConfiguration.DefaultSortingLayerName }); }
protected override void ConfigureRendering(RenderingConfiguration.IBuilder builder) { base.ConfigureRendering(builder); builder .WithScreenWidth(200) .WithScreenHeight(200) .WithSortingLayersOrder(new[] { Background, RenderingConfiguration.DefaultSortingLayerName, Foreground }); }