Skip to content

Instantly share code, notes, and snippets.

View DevJamesC's full-sized avatar

JamesC DevJamesC

View GitHub Profile
@DevJamesC
DevJamesC / BatchExtractMaterials.cs
Last active November 13, 2022 01:09 — forked from yasirkula/BatchExtractMaterials.cs
Batch extract materials from 3D model assets in Unity
using UnityEngine;
using UnityEditor;
using System.Collections.Generic;
using System.IO;
using System;
using System.Reflection;
public class BatchExtractMaterials : EditorWindow
{
private enum ExtractMode { Extract = 0, Remap = 1, Ignore = 2 };