Skip to content

Instantly share code, notes, and snippets.

@nonperforming
nonperforming / tools.md
Last active October 10, 2025 10:21
Useful tools for Unity modding
  • Viewing game assets
    • AnimeStudio - View and export game assets.
    • AssetRipper - YMMV. May work better than AnimeStudio. Does not appear to allow easily browsing all assets in the game without exporting everything.
    • APKTool - Unpack .apk to be used with other tools (and optionally repacked).
    • AssetBundles-Browser - View built asset bundles in the Unity Editor.
  • Viewing game code
    • dnSpyEx - Decompile and modify managed game dlls. Attach debugger to game (see here).
    • ILSpy - Another .NET decompiler, like dnSpyEx. Able to export to .csproj. Lets you find (Ctrl+F) methods/fields/properties/etc. across assemblies.
  • Cpp2IL - Get class and method
@nonperforming
nonperforming / shell-setup.ps1
Created April 30, 2023 06:58 — forked from mikepruett3/shell-setup.ps1
Packages to install via scoop, winget, choco, and other tools...
<#
.SYNOPSIS
Script to Initialize my custom powershell setup.
.DESCRIPTION
Script uses scoop
.NOTES
**NOTE** Will configure the Execution Policy for the "CurrentUser" to Unrestricted.
Author: Mike Pruett
Date: October 18th, 2018