/// <summary> /// Adds 2 Nubs to the window title that inspects the fps and draw calls. /// </summary> public void Inspect() { Nubs.Add(FpsNub); Nubs.Add(DrawCallNub); }
public void Add(IRenderable component) { _components.Add(component); AddToRenderLayerList(component, component.RenderLayer); }
protected void AddDefaultSystems() { UpdateSystems.Add(DefaultUpdateStack()); RenderSystems.Add(DefaultRenderStack()); }