skills/dammianmiller/unreal-engine-developer/SKILL.md
Expert Unreal Engine 5 developer and technical artist for complete game development via agentic coding. Enables AI-driven control of Unreal Editor through MCP, Python scripting, Blueprints, and C++ for level design, asset management, gameplay programming, and visual development.
npx skillsauth add aiskillstore/marketplace unreal-engine-developerInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
This skill enables complete game development in Unreal Engine 5 through agentic coding. It provides expertise in:
Uses Unreal's built-in Python Remote Execution. Supports full Unreal Python API.
Prerequisites:
Unreal Editor Setup:
MCP Client Config:
{
"mcpServers": {
"unreal": {
"command": "npx",
"args": ["-y", "@runreal/unreal-mcp"]
}
}
}
Available Tools:
| Tool | Description |
|------|-------------|
| editor_run_python | Execute any Python within Unreal Editor |
| editor_list_assets | List all Unreal assets |
| editor_export_asset | Export asset to text |
| editor_get_asset_info | Get asset info including LOD levels |
| editor_search_assets | Search assets by name/path/class |
| editor_get_world_outliner | Get all actors with properties |
| editor_create_object | Create new actor in world |
| editor_update_object | Update existing actor |
| editor_delete_object | Delete actor from world |
| editor_console_command | Run console command |
| editor_take_screenshot | Capture viewport screenshot |
| editor_move_camera | Position viewport camera |
Provides deeper Blueprint and node graph control via C++ plugin.
Prerequisites:
Installation:
MCPGameProject/Plugins/UnrealMCP to your project's Plugins folderMCP Client Config:
{
"mcpServers": {
"unrealMCP": {
"command": "uv",
"args": [
"--directory",
"<path/to/Python>",
"run",
"unreal_mcp_server.py"
]
}
}
}
Additional Capabilities:
Unreal embeds Python 3.11.8 - no separate installation needed.
import unreal
# Asset Registry
asset_registry = unreal.AssetRegistryHelpers.get_asset_registry()
assets = asset_registry.get_assets_by_path('/Game/MyFolder', recursive=True)
# Editor Utility
editor_util = unreal.EditorUtilityLibrary()
selected_assets = editor_util.get_selected_assets()
# Actor Operations
world = unreal.EditorLevelLibrary.get_editor_world()
actors = unreal.EditorLevelLibrary.get_all_level_actors()
# Spawn Actor
location = unreal.Vector(0, 0, 100)
rotation = unreal.Rotator(0, 0, 0)
actor = unreal.EditorLevelLibrary.spawn_actor_from_class(
unreal.StaticMeshActor, location, rotation
)
# Set Properties
actor.set_actor_label('MyActor')
actor.set_actor_location(unreal.Vector(100, 200, 300), False, False)
actor.set_actor_rotation(unreal.Rotator(0, 45, 0), False)
# Static Mesh Component
mesh_component = actor.static_mesh_component
mesh_component.set_static_mesh(
unreal.load_asset('/Game/Meshes/MyMesh')
)
# Material Assignment
material = unreal.load_asset('/Game/Materials/MyMaterial')
mesh_component.set_material(0, material)
# Create Asset
factory = unreal.MaterialFactoryNew()
asset_tools = unreal.AssetToolsHelpers.get_asset_tools()
new_material = asset_tools.create_asset(
'M_NewMaterial',
'/Game/Materials',
unreal.Material,
factory
)
# Import Asset
import_task = unreal.AssetImportTask()
import_task.filename = 'C:/path/to/texture.png'
import_task.destination_path = '/Game/Textures'
import_task.automated = True
import_task.save = True
unreal.AssetToolsHelpers.get_asset_tools().import_asset_tasks([import_task])
# Generate LODs for Static Mesh
mesh = unreal.load_asset('/Game/Meshes/MyMesh')
options = unreal.EditorStaticMeshLibrary.generate_lod(mesh, 3)
# Save All
unreal.EditorAssetLibrary.save_loaded_assets([new_material])
# Load Level
unreal.EditorLevelLibrary.load_level('/Game/Maps/MyLevel')
# Save Current Level
unreal.EditorLevelLibrary.save_current_level()
# Get Level Actors by Class
lights = unreal.EditorFilterLibrary.by_class(
unreal.EditorLevelLibrary.get_all_level_actors(),
unreal.PointLight
)
# Duplicate Actors
duplicates = unreal.EditorLevelLibrary.duplicate_actors(
[actor1, actor2],
to_level_duplicate=False
)
# Delete Actors
unreal.EditorLevelLibrary.destroy_actors([actor])
# Create Blueprint
factory = unreal.BlueprintFactory()
factory.set_editor_property('parent_class', unreal.Actor)
asset_tools = unreal.AssetToolsHelpers.get_asset_tools()
blueprint = asset_tools.create_asset(
'BP_MyActor',
'/Game/Blueprints',
unreal.Blueprint,
factory
)
# Add Component
unreal.BlueprintEditorLibrary.add_component(
blueprint,
unreal.StaticMeshComponent
)
# Compile Blueprint
unreal.BlueprintEditorLibrary.compile_blueprint(blueprint)
# Spawn Blueprint Actor
bp_class = unreal.load_class(None, '/Game/Blueprints/BP_MyActor.BP_MyActor_C')
actor = unreal.EditorLevelLibrary.spawn_actor_from_class(
bp_class, unreal.Vector(0,0,0), unreal.Rotator(0,0,0)
)
Create custom Editor tools with Python + Blueprints:
# Execute Python from Editor Utility Widget
# Use "Execute Python Command" node in Blueprint
# Example: Batch rename selected assets
import unreal
assets = unreal.EditorUtilityLibrary.get_selected_assets()
for asset in assets:
old_name = asset.get_name()
new_name = 'SM_' + old_name # Add prefix
unreal.EditorAssetLibrary.rename_asset(
asset.get_path_name(),
asset.get_path_name().replace(old_name, new_name)
)
| Axis | Direction | Notes | |------|-----------|-------| | X | Forward (Red) | Positive = Forward | | Y | Right (Green) | Positive = Right | | Z | Up (Blue) | Positive = Up |
Units: 1 Unreal Unit = 1 centimeter
Rotation: Pitch (Y), Yaw (Z), Roll (X) in degrees
import unreal
import random
def spawn_grid(mesh_path, rows, cols, spacing):
mesh = unreal.load_asset(mesh_path)
for x in range(rows):
for y in range(cols):
loc = unreal.Vector(x * spacing, y * spacing, 0)
actor = unreal.EditorLevelLibrary.spawn_actor_from_class(
unreal.StaticMeshActor, loc, unreal.Rotator(0,0,0)
)
actor.static_mesh_component.set_static_mesh(mesh)
# Random rotation
actor.set_actor_rotation(
unreal.Rotator(0, random.uniform(0, 360), 0), False
)
import unreal
def assign_material_to_selection(material_path):
material = unreal.load_asset(material_path)
actors = unreal.EditorLevelLibrary.get_selected_level_actors()
for actor in actors:
components = actor.get_components_by_class(unreal.StaticMeshComponent)
for comp in components:
for i in range(comp.get_num_materials()):
comp.set_material(i, material)
import unreal
import json
def export_level_to_json(output_path):
actors = unreal.EditorLevelLibrary.get_all_level_actors()
data = []
for actor in actors:
actor_data = {
'name': actor.get_actor_label(),
'class': actor.get_class().get_name(),
'location': [
actor.get_actor_location().x,
actor.get_actor_location().y,
actor.get_actor_location().z
],
'rotation': [
actor.get_actor_rotation().pitch,
actor.get_actor_rotation().yaw,
actor.get_actor_rotation().roll
]
}
data.append(actor_data)
with open(output_path, 'w') as f:
json.dump(data, f, indent=2)
Before completing any task:
0.0.0.0 instead of 127.0.0.1/Game/ prefixunreal.load_asset() or unreal.load_class() as neededdevelopment
Apple Human Interface Guidelines for content display components. Use this skill when the user asks about charts component, collection view, image view, web view, color well, image well, activity view, lockup, data visualization, content display, displaying images, rendering web content, color pickers, or presenting collections of items in Apple apps. Also use when the user says how should I display charts, what's the best way to show images, should I use a web view, how do I build a grid of items, what component shows media, or how do I present a share sheet. Cross-references: hig-foundations for color/typography/accessibility, hig-patterns for data visualization patterns, hig-components-layout for structural containers, hig-platforms for platform-specific component behavior.
tools
Automate HelpDesk tasks via Rube MCP (Composio): list tickets, manage views, use canned responses, and configure custom fields. Always search tools first for current schemas.
testing
Expert Haskell engineer specializing in advanced type systems, pure functional design, and high-reliability software. Use PROACTIVELY for type-level programming, concurrency, and architecture guidance.
tools
GraphQL gives clients exactly the data they need - no more, no less. One endpoint, typed schema, introspection. But the flexibility that makes it powerful also makes it dangerous. Without proper controls, clients can craft queries that bring down your server. This skill covers schema design, resolvers, DataLoader for N+1 prevention, federation for microservices, and client integration with Apollo/urql. Key insight: GraphQL is a contract. The schema is the API documentation. Design it carefully.