Skip to content

Instantly share code, notes, and snippets.

View GameDevTeacher's full-sized avatar

Markus Lange GameDevTeacher

View GitHub Profile
@GameDevTeacher
GameDevTeacher / DuplicateAssetDetector.cs
Created February 8, 2024 11:03 — forked from yasirkula/DuplicateAssetDetector.cs
Find duplicate assets in Unity
using System;
using System.Collections.Generic;
using System.Globalization;
using System.IO;
using System.Reflection;
using System.Security.Cryptography;
using UnityEditor;
using UnityEditor.IMGUI.Controls;
using UnityEngine;
using Object = UnityEngine.Object;