diff --git a/Source/Engine/Scripting/Attributes/SerializeAttribute.cs b/Source/Engine/Scripting/Attributes/SerializeAttribute.cs index 5a557902d..da7f8c308 100644 --- a/Source/Engine/Scripting/Attributes/SerializeAttribute.cs +++ b/Source/Engine/Scripting/Attributes/SerializeAttribute.cs @@ -5,7 +5,8 @@ using System; namespace FlaxEngine { /// - /// Indicates that a field or a property of a serializable class should be serialized. This class cannot be inherited. + /// Indicates that a field or a property of a serializable class should be serialized. + /// The attribute is required to show hidden fields in the editor. /// [AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)] public sealed class SerializeAttribute : Attribute