Guides
Render Games
How to render ARC-AGI-3 games
You can render games in several ways:
Was this page helpful?
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
How to render ARC-AGI-3 games
env = arc.make("ls20", render_mode="terminal")
env = arc.make("ls20", render_mode="terminal-fast")
env = arc.make("ls20", render_mode="human")
from arcengine import FrameDataRaw
def my_renderer(steps: int, frame_data: FrameDataRaw) -> None:
print(f"Step {steps}: {frame_data.state.name}")
env = arc.make("ls20", renderer=my_renderer)
Was this page helpful?
