Skip to content

Instantly share code, notes, and snippets.

View jawa0's full-sized avatar

Jabavu "Jaba" Adams jawa0

View GitHub Profile
@rje
rje / SelectPrefabsOfType.cs
Last active February 28, 2023 23:47
Small unity utility to find all prefab objects that have a given component on them
using UnityEngine;
using UnityEditor;
using System.Collections;
using System.Collections.Generic;
using System;
using System.Reflection;
public class SelectPrefabsOfType : EditorWindow {
[MenuItem("Window/Prefab Finder")]