Visual Audit Protocol

The Avionics Interface

Return to Hangar
203A

The Glass Cockpit

The Concept: UI Toolkit (UXML)

Canvas (Heavy)
GO
GO
GO
Toolkit (Light)
<UXML>
<Box>
<Label />
</UXML>
203B

The Visual Query

The Concept: Querying (Q)

Scanning World...
Root
.Q<Label>("Name")
Instant Lookup
// Corrected: Cached Reference Label scoreLbl; void OnEnable() { scoreLbl = root.Q<Label>("Score"); } void UpdateScore() => scoreLbl.text = "100";
203C

The View Controller

The Concept: MVC (Model-View-Controller)

Data
Event
100%
UI
203D

The Event Dial

The Concept: RegisterCallback

CLICK
RegisterCallback
Fire() { ... }
203E

The Flexbox Hull

The Concept: Flexbox (USS)

4K / Mobile
50%
50%
FlexGrow & AlignItems
203F

The Custom Gauge

The Concept: Custom Controls

painter.Stroke()
CAPSTONE EXAM

The Avionics Exam

The cockpit displays are glitching. The HUD is misaligned on different screens, the weapon buttons are exposing private logic, and the fuel gauge is crashing the engine script. Identify the three critical interface failures.

Verify Capacity
Check Scope
Audit Efficiency