Skip to content

Instantly share code, notes, and snippets.

View moppius's full-sized avatar
🐵

Paul Greveson moppius

🐵
View GitHub Profile
@JonasReich
JonasReich / ExtractTextureReportFromMemreport.ps1
Last active June 3, 2024 13:57
Extract Texture Report csv from UE4 Memreport
# Copyright: Jonas Reich 2021
# Extracts the texture report table from UE4 .memreport files and stores them as separte csv files.
# Uses semicolon delimiters and opens the extracted file with its default application (for me: Excel)
[CmdletBinding()]
param(
[Parameter(Mandatory=$true,ValueFromPipeline = $true)]
[String]
$SourceFile
)