Home

Awesome

NGUI Additions

A collection of scripts that add some additional functionality to the NGUI framework

It includes:

To use UINavigationController you will need to:

  1. Attach the UINavigationController component to your UIRoot.
  2. Create a prefab for every panel in your game (essentially every screen).
  3. Optionally add a UIPanelController sub-class to every panel.
  4. Pass the list of panel prefabs to the UINavigationController component.

In a UIPanelController you can transition to a new panel by calling:

this.navigationController.PushPanel("InGamePanel", optionalPayload);