Skip to content

Instantly share code, notes, and snippets.

View DevJamesC's full-sized avatar

JamesC DevJamesC

View GitHub Profile
@yasirkula
yasirkula / BatchExtractMaterials.cs
Last active September 5, 2024 13:26
Batch extract materials from 3D model assets in Unity
using UnityEngine;
using UnityEditor;
using System.Collections.Generic;
using System.IO;
public class BatchExtractMaterials : EditorWindow
{
private enum ExtractMode { Extract = 0, Remap = 1, Ignore = 2 };
[System.Serializable]