8 lines
287 B
C#
8 lines
287 B
C#
using System;
|
|
|
|
///<summary>
|
|
/// Indicates a variable should only be assigned to in the inspector. Also allowed are field initializers and assignment in unity's Reset method.
|
|
/// Requires Boxfriend.Analyzers to function.
|
|
///</summary>
|
|
public class InspectorOnlyAttribute : Attribute { }
|