Reference Verse compiles

Tuples group a fixed set of values into one: `Pos : tuple(float, float) = (1.0,

Updated Examples verified on the live UEFN compiler

A tuple bundles a fixed set of values into one.

SpawnPoint : tuple(float, float) = (100.0, 250.0)
SpawnX : float = SpawnPoint(0)
SpawnY : float = SpawnPoint(1)
Print("Spawn at {SpawnX}, {SpawnY}")

Takeaway — Tuple = a fixed bundle, read by slot index.

Guides & scripts that use tuples

Step-by-step tutorials that put this object to work.

Build your own lesson with tuples

Generate a personalized, step-by-step lesson plan built around this object — grounded in this exact reference and our compile-verified knowledge base.

Build a lesson →