Browse Source

small cleanup

Eideren 2 years ago
parent
commit
07e099cb13
1 changed files with 1 additions and 5 deletions
  1. 1 5
      en/manual/scripts/serialization.md

+ 1 - 5
en/manual/scripts/serialization.md

@@ -3,7 +3,7 @@
 <span class="label label-doc-level">Beginner</span>
 <span class="label label-doc-audience">Programmer</span>
 
-The editor and serialization system uses three attributes to determine what is serialized and visible in the editor.
+The editor and serialization system uses four attributes to determine what is serialized and visible in the editor.
 
 ### [DataContractAttribute](xref:Stride.Core.DataContractAttribute)
 Adding this attribute to your `class` or `struct` notifies the serializer and the editor that it should
@@ -38,10 +38,6 @@ public class MySerializedClass
 {
     [Stride.Core.DataMember]
     internal float MyValue;
-    
-    
-    [DataMember("Item1")]
-    public string ItemRenamed1 { get; set; }
 }
 ```