blob: 0619ccec42168cc4115ebaa750df6df71f7192af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
using UnityEngine;
using System;
using System.Collections;
namespace AdvancedInspector
{
/// <summary>
/// Removes the object picking field from a selectable object.
/// Useful when the object is set internally, should be edited but not changed.
/// </summary>
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)]
public class NoPicker : Attribute, IListAttribute { }
}
|