mirror of
https://github.com/AssetRipper/AssetRipper.git
synced 2025-12-11 20:15:29 +01:00
13 lines
329 B
C#
13 lines
329 B
C#
namespace UnityEngine;
|
|
|
|
/// <summary>
|
|
/// Instruct Unity to serialize a non-public field.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// Unity does not follow the convention that attribute type names end with the "Attribute" suffix.
|
|
/// </remarks>
|
|
[AttributeUsage(AttributeTargets.Field)]
|
|
public sealed class SerializeField : Attribute
|
|
{
|
|
}
|