Skip to content

Instantly share code, notes, and snippets.

View hsencan03's full-sized avatar
🎯
Focusing

Hüseyin Şencan hsencan03

🎯
Focusing
View GitHub Profile
@yasirkula
yasirkula / DuplicateAssetDetector.cs
Last active June 24, 2024 10:05
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;
@ditzel
ditzel / KdTree.cs
Last active June 14, 2024 19:13
k-d Tree
using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.Profiling;
public class KdTree<T> : IEnumerable<T>, IEnumerable where T : Component
{
protected KdNode _root;
protected KdNode _last;