UE5 assets with Git LFS storage on DO Spaces
Go to file
jamestagg bce52109f8 Add African Animals asset pack
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-22 13:45:33 -07:00
Config Add Matrix city maps, effects, first person, external actors/objects 2026-03-12 15:11:05 -07:00
Content Add African Animals asset pack 2026-03-22 13:45:33 -07:00
Extra Add misc files: cinematics, screenshots, catalogue variants, extras 2026-03-11 11:45:06 -07:00
GeneratedAssets Add new maps, Fab assets, WaterMill, Street, Starship, training sets, benchmarks 2026-03-20 13:09:23 -07:00
Plugins Add Cesium for Unreal plugin and settings 2026-03-11 11:44:42 -07:00
RalphaData Add new maps, Fab assets, WaterMill, Street, Starship, training sets, benchmarks 2026-03-20 13:09:23 -07:00
benchmark/references Add new maps, Fab assets, WaterMill, Street, Starship, training sets, benchmarks 2026-03-20 13:09:23 -07:00
scripts Add droplet sync and startup scripts 2026-01-20 17:27:30 -08:00
training_sets Add new maps, Fab assets, WaterMill, Street, Starship, training sets, benchmarks 2026-03-20 13:09:23 -07:00
.gitattributes Add rope bridge, new maps, imported meshes, training sets, benchmark 2026-03-17 10:27:40 -07:00
.gitignore Restructure project and expand RalphaData content 2026-01-27 13:36:50 -08:00
ASSET_SOURCING_CHECKLIST.md Restructure project and expand RalphaData content 2026-01-27 13:36:50 -08:00
All My asset Packs.docx Add misc files: cinematics, screenshots, catalogue variants, extras 2026-03-11 11:45:06 -07:00
Cat.png Add misc files: cinematics, screenshots, catalogue variants, extras 2026-03-11 11:45:06 -07:00
Kitchen_VOL1.png Add misc files: cinematics, screenshots, catalogue variants, extras 2026-03-11 11:45:06 -07:00
Kitchen_VOL2.png Add misc files: cinematics, screenshots, catalogue variants, extras 2026-03-11 11:45:06 -07:00
Kitchen_VOL3.png Add misc files: cinematics, screenshots, catalogue variants, extras 2026-03-11 11:45:06 -07:00
Kitchen_VOL4.png Add misc files: cinematics, screenshots, catalogue variants, extras 2026-03-11 11:45:06 -07:00
Kitchen_VOL5.png Add misc files: cinematics, screenshots, catalogue variants, extras 2026-03-11 11:45:06 -07:00
Kitchen_VOL6.png Add misc files: cinematics, screenshots, catalogue variants, extras 2026-03-11 11:45:06 -07:00
Kitchen_VOL7.png Add misc files: cinematics, screenshots, catalogue variants, extras 2026-03-11 11:45:06 -07:00
LICENSE_POLICY.md Add kitchen sink structure with catalogue, recipes, and presets 2026-01-20 15:34:14 -08:00
README.md Restructure project and expand RalphaData content 2026-01-27 13:36:50 -08:00
Ralpha.uproject Update project config, engine settings, and asset catalogue 2026-03-11 11:40:33 -07:00
Tropical_Jungle_Pack.png Add Brushify tropical, location levels, HDRIs, and RalphaWorld 2026-02-02 18:45:49 -08:00
cesium-request-cache.sqlite misc buildings 2026-03-13 10:07:36 -07:00
repomix-output.txt Add migrated content from Valley, ArchVis, and WesterTown 2026-01-27 19:13:35 -08:00

README.md

ralpha-ue5

Kitchen Sink Starter Project - Comprehensive UE5 asset library for AI-controlled rendering.

Repository Architecture

This project is split across two repositories:

Repository Purpose Storage
ralpha Code: plugin, API, website, Redis, Supabase Regular Git
ralpha-ue5 Assets: UE5 maps, meshes, textures, MetaHumans Git LFS

The split keeps the code repository fast and lean (~50MB) while the asset repository can grow to 50-100GB with full LFS support.

Design Philosophy

"Any missing element takes hours to find, build, and refine."

This project prioritizes breadth over perfection. Every common object, environment, and scenario should have a ready-to-use representation. Speed of iteration matters more than photorealism of any single asset.

When matching a reference image, Claude should be able to:

  1. Identify what's needed
  2. Find it in the catalogue
  3. Place and configure it
  4. Capture screenshot

All within seconds, not minutes or hours.

Structure

ralpha-ue5/
├── RalphaData/                 # Text files (NOT in LFS)
│   ├── catalogue.json          # Machine-readable asset index
│   ├── thumbnails/             # Small preview images
│   ├── recipes/                # Scene composition recipes
│   ├── presets/                # Lighting, post, scene presets
│   └── scripts/                # Asset management tools
│
├── Content/Ralpha/             # UE5 assets (IN LFS)
│   ├── Maps/                   # Template levels
│   ├── Assets/                 # Props, furniture, vehicles
│   ├── Materials/              # PBR materials
│   ├── HDRI/                   # Environment maps
│   └── LUTs/                   # Color grading
│
├── Plugins/                    # Symlink to ralpha/plugin
└── RalphaProject.uproject

Template Maps

Map Purpose
Template_Empty Bare minimum scene (sky, floor)
Template_Studio Lighting rig, backdrop, camera
Template_Outdoor Sky atmosphere, terrain base
Template_Interior Room shell, interior lighting

Setup

  1. Clone with LFS:

    git lfs install
    git clone https://github.com/yourusername/ralpha-ue5.git
    
  2. Link the plugin:

    # macOS
    ln -s /path/to/ralpha/plugin Plugins/RalphaPlugin
    
    # Windows (as admin)
    mklink /J Plugins\RalphaPlugin E:\Github\ralpha\plugin
    
  3. Open RalphaProject.uproject in UE5.4+

MCP Commands

This project extends the Ralpha MCP protocol with:

{"type":"get_version"}
{"type":"load_template","parameters":{"template":"Studio"}}
{"type":"drop_to_floor","parameters":{"actor_id":"Chair_01"}}
{"type":"snap_to_surface","parameters":{"actor_id":"Painting","surface":"wall"}}
{"type":"place_on","parameters":{"actor_id":"Vase","target":"Table_01"}}
{"type":"spawn_recipe","parameters":{"recipe":"living_room_modern"}}
{"type":"search_catalogue","parameters":{"query":"red chair"}}

Asset Quality Standards

  • Game-ready poly counts
  • PBR materials (albedo, normal, roughness, metallic)
  • Consistent scale (1 unit = 1 cm)
  • Pivots at bottom center
  • LODs for complex assets
  • Collision for interactive items

Contributing

See CONTRIBUTING.md for asset import guidelines and naming conventions.