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
Project\Content\- Main contentProject\Content\ArtRes\- Art resourcesProject\Content\LogicRes\- Logic resourcesProject\Content\Maps\- MapsProject\Content\Audio\- Audio files
Saved Game Data
Project\Saved\- Saved games, logs, configsProject\Saved\SaveGames\- 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 "Content\UI" -Recurse -Filter "*.uasset"
SilverPalace Specific Paths
UI Assets
Content\UI\- General UIContent\StartUpDev\- Startup/loading UI
Maps
Content\Maps\WP\- World partition mapsContent\Maps\WC\- World composition
Audio
Content\Audio\WwiseAudio\- Wwise audioContent\Audio\GeneratedSoundBanks\- Cooked audio
Configuration
Content\TableData\- Data tablesContent\Script\- Lua scripts (not UE asset but important)
Asset Info
When found, provide:
- Full path
- File size
- Last modified date
- Dependencies (if checking references)