A standard set of animal models and animations for robotics/AV simulators (esmini, MuJoCo, Isaac Sim, and CARLA) which today ship almost no animal assets. When animals are missing from the asset libraries, they tend to be left out of the algorithms engineers build and the scenarios regulators design, even though real-world deer-on-highway and dog-in-driveway interactions are common. AnimaSim ports an open animal pack into these platforms with a small, dockerized conversion pipeline plus a runnable example per platform.
pip install animasim ships the asset-locator API and CLI, with the generated assets
bundled in the wheel — resolve a path and hand it to your simulator:
from animasim import get_mjcf, get_usd, get_osgb, get_glb, list_animals
import mujoco
model = mujoco.MjModel.from_xml_path(str(get_mjcf("deer"))) # MuJoCo
# get_usd("deer") -> Isaac Sim/USD get_osgb("deer") -> esmini get_glb("deer") -> Blender/glTFFrom the shell: animasim path deer -f usd. The CARLA cooked package is distributed
separately as a release asset (see platforms/carla).
git lfs install && git lfs pull # fetch vendored + generated assets (Git LFS)
uv sync --extra pipeline # environment + conversion/validation toolchain
uv run animasim list # the animals and their rigs
uv run animasim validate deer # check the generated artifactsRegenerate the assets (needs Docker for the osgconv step):
uv run animasim convert deer # -> assets/generated/{glb,osgb,mjcf,metadata}/deer.*| Platform | Status | How it runs | Example |
|---|---|---|---|
| MuJoCo | ✅ verified (runs + renders) | uv (Python lib) | deer on a ground plane; animals as <include> models — platforms/mujoco |
| esmini | ✅ verified (headless run + offscreen recording) | esmini container | deer crosses a highway, ego brakes (OpenSCENARIO); animals in the catalog — platforms/esmini |
| Isaac Sim | ✅ verified (GPU: convert + spawn + pilot) | Isaac Sim container (NGC) | spawn + pilot the deer; animals as UsdSkel — platforms/isaacsim |
| CARLA | ✅ verified (GPU: drop-in cooked package + spawn) | prebuilt CARLA container | animals as static.prop.<animal> — platforms/carla |
Sim engines run in Docker (esmini, Isaac, CARLA); Python (the animasim CLI, validators, MuJoCo) runs in the uv environment.
| Simulator | Menagerie |
|---|---|
| Isaac Sim | ![]() |
| CARLA | ![]() |
| MuJoCo | ![]() |
| esmini | ![]() |
Each platform's README has the commands to reproduce its clip.
The source models share one skeleton and carry ~13 animation clips each (Idle, Walk, Gallop, Eating, …). Clips are preserved where the target supports skeletal animation:
| Target | Skinned animation | Clips |
|---|---|---|
glb (interchange) |
yes | all (native) |
| Isaac Sim / USD | yes (UsdSkel) | all — one SkelAnimation prim per clip, CI-validated |
esmini (.osgb) |
no (static scene-graph model) | n/a |
| MuJoCo (mesh) | no (physics engine) | n/a |
CARLA (.fbx prop) |
no (static prop) | n/a |
assets/source/ vendored source (glTF/OBJ/FBX, Git LFS)
assets/generated/ derived artifacts grouped by format (glb, osgb, usd, mjcf, fbx, carla, metadata)
src/animasim/ CLI + animal registry (config.py) + pipeline + validators
platforms/<name>/ per-platform assets, example scene, and runner
docker/ pipeline (osgconv) and esmini images
The pipeline is data-driven: add an entry to the registry in src/animasim/config.py (name, source file, height, bbox, rig variant) and run uv run animasim convert <animal>. No code changes required. Animals ship with their source files vendored; importing a new animal beyond them is the only step that needs the original pack — point ANIMASIM_SOURCE_PACK at it (or pass --source) and convert vendors its source on the way.
Project code: MIT (see LICENSE). The bundled animal models are from the Quaternius "Ultimate Animated Animals" pack, released under CC0 (public domain); they are vendored and redistributed here under those terms.



