Game Development
  • Home
  • Data Oriented Design
  • GODOT
  • Unity
    • Introduction
      • Working in Unity
      • Asset workflow
        • AssetBundles
    • Graphics
      • Render Pipeline
    • Scripting
      • Unity Architecture
    • User Interface (UI)
    • Resources
      • Made With Unity
    • Data-Oriented Technology Stack
  • Unreal Engine
    • Resources
  • Extended Reality
    • Introduction
    • Augumented Reality
      • Resources
      • Glossary
Powered by GitBook
On this page

Was this helpful?

  1. Unity

User Interface (UI)

UI Toolkit (Recommended)

UI Toolkit can create both Runtime and Editor UI.

Unity UI
Immediate Mode GUI

a.k.a. uGUI

a.k.a. IMGUI

a runtime-only UI system

a editor-only UI system

uGUI is a GameObject-based UI system that uses Components and the Game View to arrange, position, and style user interfaces.

IMGUI is a code-driven GUI system, and is driven by calls to the OnGUI() function on any script which implements it.

PreviousUnity ArchitectureNextResources

Last updated 2 months ago

Was this helpful?