Getting Started¶
The fastest way to understand Arepy is:
- install the project
- create an
ArepyEngine - create a
World - spawn entities with
world.create_entity()andEntityBuilder - add systems to a
SystemPipeline - set the current world and call
run()
In this section¶
- Installation covers package installation and local setup with
uv - Quickstart walks through a minimal movement example
If you want a larger sample project after the quickstart, check examples/bunnymark.py in the repository.
The goal of this section is to get you from “installed” to “I have a world running” as quickly as possible.