Delayed Property Attribute:此特性会延迟在editor中的序列化操作
即时性(非延迟)序列化
[OnValueChanged("ValueChangeCallBack")]
public int field;
//但是,正如名称所示,DelayedProperty应用于属性。
[ShowInInspector]
[OnValueChanged("ValueChangeCallBack")]
public string property { get; set; }