Skip to content

Instantly share code, notes, and snippets.

View moppius's full-sized avatar
🐵

Paul Greveson moppius

🐵
View GitHub Profile
@moppius
moppius / ExtractTextureReportFromMemreport.ps1
Last active April 16, 2023 16:50 — forked from JonasReich/ExtractTextureReportFromMemreport.ps1
Extract Texture Report csv from UE5 Memreport
# Copyright: Jonas Reich 2021
# Extracts the texture report table from UE5 .memreport files and stores them as separate csv files.
# Uses comma delimiters and opens the extracted file with its default application
[CmdletBinding()]
param(
[Parameter(Mandatory=$true,ValueFromPipeline = $true)]
[String]
$SourceFile
)
@moppius
moppius / rr_wrap.py
Last active February 14, 2017 21:16 — forked from mclavan/rr_wrap.py
Ryan Roberts - Wrap Deformer
'''
Ryan Roberts - Wrap Deformer
rr_wrap.py
Description:
Ryan Roberts created a simple function to create a wrap deformer.
The wrap deformer needs a little more than the deform command to get working.
Michael Clavan:
I wanted to have the function also return the deformer to the user. So, my contributions are pretty minor.
I converted the wrap deformer into a pynode object type pm.nt.Wrap.