← games
Unreal Engine 42021
Unreal Battle Royale Prototype
A single-player Blueprint systems prototype covering stance, pickups, drag-and-drop inventory, equipment, weapons, and scopes.
- Role
- Solo developer: gameplay architecture, Blueprint scripting, systems integration, and technical documentation.
- Platforms
- WindowsUnreal Editor
- Links
- Source

What it looks like
What it looks like
Blueprint logicThe public repository exposes the visual scripting behind item, inventory, and character behavior. Integration sceneA playable editor scene connects locomotion, world pickups, equipment, and weapon handling.
Design pillars
What this game is about
- 01Inventory and pickup flow
- 02Equipment, weapon handling, and scoped aiming
- 03Blueprint-first gameplay architecture
- 04Single-player PUBG-like systems study
Engineering
Engineering
- Process 01
Optimize for learning speed with Blueprints
- Context
- The project needed rapid iteration across inventory, stance, animation, and weapons more than production-scale runtime boundaries.
- Approach
- Build the systems primarily as documented Blueprint components.
- Outcome
- Behavior stays visible and editable, but graph ownership and readability become the scaling constraint.
- Process 02
Exclude multiplayer before it diluted the study
- Context
- Replication and authoritative match state would multiply scope before the single-player interactions were understood.
- Approach
- Stop at a PUBG-like inventory and weapon systems prototype and state that boundary explicitly.
- Outcome
- The result is a focused technical reference rather than a misleading claim of a complete battle royale.
Outcome
An archived but substantial Unreal Engine systems study whose public repository continues to attract developers exploring Blueprint-driven battle-royale mechanics.
Postmortem
Build notes
The biggest lesson was architectural: visual scripting is excellent for iteration, but large systems still need clear ownership, reusable components, and disciplined graph boundaries.
Design notes
Working notes
- Inventory and weapon systems are componentized so pickups, equipment, and player state do not collapse into one Blueprint graph.
- The prototype was built in Unreal Engine 4.26.2 and does not implement multiplayer, replication, or a complete battle-royale match.
- The repository has become a useful public reference, with 11 stars and 11 forks at the time of this case-study update.