From 1bc7ad5e9dc8668210f4ce2c871334238ae3be81 Mon Sep 17 00:00:00 2001 From: stefnotch Date: Tue, 26 Sep 2023 10:30:57 +0200 Subject: [PATCH] Update SerializeAttribute.cs --- Source/Engine/Scripting/Attributes/SerializeAttribute.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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