SkillHub

ue-asset-finder

v1.0.0

Find Unreal Engine assets (.uasset, .umap, .uby, .udata). Use when: (1) Finding specific assets, (2) Locating maps/levels, (3) Finding UI widgets, (4) Finding blueprints, (5) Finding audio files, (6) Searching asset references, (7) Finding DataTable/CSV files

Sourced from ClawHub, Authored by Vincent

Installation

Please help me install the skill `ue-asset-finder` from SkillHub official store. npx skills add vincentwilliam/ue-asset-finder

UE Asset Finder

Common Asset Types

Extension Type
.uasset General asset
.umap Map/Level
.uby Blueprint
.udata Data table
.uslot Slot data
.uuip UI preview

Search Locations

SilverPalace Assets

  • ProjectContent - Main content
  • ProjectContentArtRes - Art resources
  • ProjectContentLogicRes - Logic resources
  • ProjectContentMaps - Maps
  • ProjectContentAudio - Audio files

Saved Game Data

  • ProjectSaved - Saved games, logs, configs
  • ProjectSavedSaveGames - Save files

Common Searches

Find Maps

Get-ChildItem -Path "Content" -Recurse -Filter "*.umap"

Find Blueprints

Get-ChildItem -Path "Content" -Recurse -Filter "*.uby"

Find DataTables

Get-ChildItem -Path "Content" -Recurse -Filter "*.udata"

Find by Name Pattern

Get-ChildItem -Path "Content" -Recurse | Where-Object {$_.Name -like "*Login*"}

Find UI Assets

Get-ChildItem -Path "ContentUI" -Recurse -Filter "*.uasset"

SilverPalace Specific Paths

UI Assets

  • ContentUI - General UI
  • ContentStartUpDev - Startup/loading UI

Maps

  • ContentMapsWP - World partition maps
  • ContentMapsWC - World composition

Audio

  • ContentAudioWwiseAudio - Wwise audio
  • ContentAudioGeneratedSoundBanks - Cooked audio

Configuration

  • ContentTableData - Data tables
  • ContentScript - Lua scripts (not UE asset but important)

Asset Info

When found, provide: - Full path - File size - Last modified date - Dependencies (if checking references)