Gojiberry AI
AI agents that find and contact high-intent leads for you
Try Gojiberry free →
Hermes Agent
Run your Hermes agent, fully managed
Launch on Hostinger →
Hostinger VPS
Spin up a VPS in one click, 20% off
Launch on Hostinger →
Firecrawl
Crawl and scrape any site into clean data
Try Firecrawl free →
CodeRabbit
AI code reviews for every PR
Try CodeRabbit free →
Context.dev
One API to scrape, enrich, and extract the web
Start building free →
Jotform
Forms, workflows, and AI Agents for your team
Try Jotform free →
Gojiberry AI
AI agents that find and contact high-intent leads for you
Try Gojiberry free →
OpenClaw
Deploy a managed OpenClaw agent in 60 seconds
Launch on Hostinger →
Sponsor here
9/10 sponsor slots taken — 1 left
Claim it →
Claude Market
Menu
SkillsMCPPluginsMarketplacesNewsletterSubmit MCPSkillPluginMCPMCP, plugin, or skillAdvertise
Claude Market
SkillsMCPPluginsMarketplacesNewsletterSubmit MCPSkillPluginMCPMCP, plugin, or skillAdvertise
Skills/gamedev-skills/awesome-gamedev-agent-skills/unreal-blueprints
unreal-blueprints logo

unreal-blueprints

gamedev-skills/awesome-gamedev-agent-skills
822 installs474 stars
Run it on Hostinger, 20% off →Your friend gets 20% off too, using this linkFree API →|View on GitHub|Create your own skill →

Installation

npx skills add https://github.com/gamedev-skills/awesome-gamedev-agent-skills --skill unreal-blueprints

Summary

>

SKILL.md

Unreal Blueprints (Visual Scripting)

Structure gameplay logic in Unreal Engine 5 Blueprints: pick the right graph, expose data cleanly, and choose a communication method that doesn't create hard-reference spaghetti. Targets UE 5.8. (Blueprints are node graphs; the snippets below describe node flows.)

When to use

  • Use when authoring a Blueprint Class, wiring the Event Graph (BeginPlay/Tick/overlap),

using the Construction Script, creating variables/functions/macros, or choosing how two Blueprints communicate (Cast, Interface, or Event Dispatcher).

  • Use when the project has .uproject and Blueprint .uasset files, and the user works

visually rather than in C++.

*When not to use:* performance-critical systems, large data structures, or anything that benefits from source control diffs and unit tests → unreal-cpp-gameplay. Player input mapping → unreal-enhanced-input. AI logic → unreal-behavior-trees.

Core workflow

  1. Choose the Blueprint type. A Blueprint Class (derived from Actor/Pawn/Character/

ActorComponent) defines a reusable object. The Level Blueprint is a per-level graph for level-specific scripting only — don't put reusable logic there.

  1. Use the Construction Script for editor-time setup (procedural placement, configuring

components from variables) — it runs when the actor is placed or edited, not during play.

  1. Use the Event Graph for runtime logic. Event BeginPlay for init, input/overlap events

for reactions. Avoid Event Tick unless you truly need per-frame work.

  1. Expose data with variables; click the eye icon to make a variable Instance Editable, and

group related ones with categories. Mark pure functions (no exec pin) for getters.

  1. Pick a communication method by coupling (see Patterns): direct Cast for things you

own, Blueprint Interface to call across types without hard references, Event Dispatcher to broadcast one-to-many.

  1. Verify with the Blueprint debugger: drop breakpoints on nodes, watch variable values,

and use Print String to confirm execution paths during Play In Editor (PIE).

Patterns

1. Reactive Event Graph (no Tick)

Event BeginPlay
  -> Set 'StartLocation' = GetActorLocation
  -> Bind Event to OnComponentBeginOverlap (TriggerVolume) [calls custom event OnEnterZone]

OnEnterZone (Other Actor)
  -> Branch: Other Actor == Player?
       True  -> Open Door (Timeline drives the rotation)   // event-driven, runs once

Prefer events (overlaps, timers, dispatchers) and Timelines over polling in Tick.

2. Direct reference + Cast (tight coupling, use sparingly)

Overlapped Actor (Actor ref)
  -> Cast To BP_Player
       Cast Failed -> (do nothing)
       Success     -> call BP_Player.ApplyDamage(10)

Cast To creates a hard reference to that class (it loads with this Blueprint). Fine when the caller genuinely depends on that type; otherwise prefer an Interface.

3. Blueprint Interface (decoupled call)

// 1. Create BPI_Interactable with function 'Interact(Instigator)'.
// 2. Add the interface to BP_Door, BP_Chest, BP_Lever and implement 'Interact' in each.
// 3. Caller, with any Actor ref:
Player presses Use
  -> Does Object Implement Interface (BPI_Interactable)?  // safe check, no Cast/hard ref
       True -> Interact (Message) on Target Actor

4. Event Dispatcher (one-to-many broadcast)

// In BP_Player: declare Event Dispatcher 'OnHealthChanged (float NewHealth)'.
TakeDamage -> Set Health -> Call 'OnHealthChanged' (Health)   // broadcast

// In WBP_HUD BeginPlay: Bind Event to 'OnHealthChanged' -> update health bar.
// Many listeners can bind; the player never references them.

Pitfalls

  • Cast spaghetti / long load times — chains of Cast To create hard references that pull

whole asset trees into memory. Decouple with Interfaces or Dispatchers.

  • Logic in the Level Blueprint that should be reusable — it can't be reused across levels.

Put it in a Blueprint Class.

  • Event Tick overuse — every-frame nodes add up fast. Use events, Timers

(Set Timer by Event), and Timelines instead.

  • Construction Script doing gameplay — it runs in the editor on edit/placement; spawning

gameplay actors or starting logic there causes editor-only artifacts. Init in BeginPlay.

  • Variable not visible on the instance — toggle Instance Editable (the eye); to edit before

spawn via Spawn node, also mark "Expose on Spawn".

  • Interface call did nothing — the target doesn't implement the interface; use "Does

Implement Interface" before calling, or use the Message version which is safe on non-implementers.

References

  • For a decision guide on Cast vs Interface vs Event Dispatcher and step-by-step dispatcher

binding, read references/communication.md.

  • Primary docs: "Blueprints Visual Scripting"

(https://dev.epicgames.com/documentation/en-us/unreal-engine/overview-of-blueprints-visual-scripting-in-unreal-engine).

Related skills

  • unreal-cpp-gameplay — when to drop to C++; how BP and C++ classes interoperate.
  • unreal-enhanced-input — the modern way to feed input events into these graphs.
  • unreal-behavior-trees — AI decision logic that Blueprints trigger.

Score

0–100
55/ 100

Grade

C

Popularity15/30

822 installs — growing adoption.

Completeness19/30

Documented: full SKILL.md body, one-line install. Missing: description, category/license metadata.

Trust15/25

Community skill with a public GitHub source repository you can review.

Freshness6/15

No update timestamp is tracked for this skill in our catalog.

Scored automatically from popularity, completeness, trust, and freshness — computed only from data in our catalog, never fabricated.

Proud of your score? Add this badge to your README.

Paste a snippet into your GitHub README. The badge updates automatically and links back to this page.

Unreal Blueprints skill score badge previewScore badge

Markdown

[![Unreal Blueprints skill](https://www.claudemarket.ai/skills/gamedev-skills/awesome-gamedev-agent-skills/unreal-blueprints/badges/score.svg)](https://www.claudemarket.ai/skills/gamedev-skills/awesome-gamedev-agent-skills/unreal-blueprints)

HTML

<a href="https://www.claudemarket.ai/skills/gamedev-skills/awesome-gamedev-agent-skills/unreal-blueprints"><img src="https://www.claudemarket.ai/skills/gamedev-skills/awesome-gamedev-agent-skills/unreal-blueprints/badges/score.svg" alt="Unreal Blueprints skill"/></a>

Unreal Blueprints FAQ

How do I install the Unreal Blueprints skill?

Run “npx skills add https://github.com/gamedev-skills/awesome-gamedev-agent-skills --skill unreal-blueprints” in your terminal. The skill is added to your agent's skills directory and picked up automatically on the next run — no restart or extra configuration needed.

What does the Unreal Blueprints skill do?

> The full SKILL.md on this page shows the exact instructions the skill gives your agent.

Is the Unreal Blueprints skill free?

Yes. Unreal Blueprints is a free, open-source skill published from gamedev-skills/awesome-gamedev-agent-skills. As with any third-party skill, review the source repository before installing it into an agent with sensitive access.

Does Unreal Blueprints work with Claude Code and OpenClaw?

Yes. Skills use the portable SKILL.md format, so Unreal Blueprints works with Claude Code, OpenClaw, Codex, Hermes, and any other agent that reads SKILL.md skills.

Recommended skills

Browse all →
find-skills logo

find-skills

vercel-labs/skills

2.9M installsInstall
grill-me logo

grill-me

mattpocock/skills

827K installsInstall
frontend-design logo

frontend-design

anthropics/skills

765K installsInstall
grill-with-docs logo

grill-with-docs

mattpocock/skills

703K installsInstall
improve-codebase-architecture logo

improve-codebase-architecture

mattpocock/skills

678K installsInstall
agent-browser logo

agent-browser

vercel-labs/agent-browser

656K installsInstall

Related guides

Hand-picked reading to help you choose, install, and use agent skills.

GuideBest Openclaw Skills 2026GuideHow To Evaluate Openclaw Skill Before InstallingGuideOpenclaw Skills Complete Guide

Skills by category

FrontendBackend & APIsTesting & QASecurityDevOps & CI/CDMCP & ToolingAutomationData & Analysis+27 more

MCP servers by category

MCP & ToolingBackend & APIsData & AnalysisDevOps & CI/CDAutomationSecurityDocsTesting & QA+24 more

Plugins by category

AutomationDevOps & CI/CDData & AnalysisDesign & CreativeSecurityBackend & APIsFrontendTesting & QA+16 more

Marketplaces by category

AutomationData & AnalysisDevOps & CI/CDDesign & CreativeFrontendBackend & APIsTesting & QASecurity+21 more

The Agent Stack

Weekly Claude Code, Agent SDK, and MCP moves worth your time — free.

Claude Market

AI agent skills directory, marketplace, and workflow hub for OpenClaw, Hermes Agent, Claude Code, Codex, and MCP-powered operator stacks.

Independent project, not affiliated with Anthropic.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Plugins
  • Browse Marketplaces
  • Newsletter

More

  • Submit a Tool
  • Create a Skill
  • Advertise
  • Free Tools
  • API
  • Shipping
  • Contact
  • Terms
  • Privacy
© 2026 Claude Market · Not affiliated with Anthropic
Fazier badgeFeatured on Twelve ToolsFeatured on Wired BusinessRemote OpenClaw - Featured on AI Agents DirectoryListed on Turbo0Featured on Uneed