mirror of
https://github.com/AnnulusGames/Alchemy.git
synced 2025-01-23 08:48:24 -05:00
20 lines
592 B
Markdown
20 lines
592 B
Markdown
# Show In Inspector Attribute
|
|
|
|
シリアライズされていないフィールドやプロパティをInspectorから編集可能にします。これらの値はシリアライズされず、変更は保存されないことに留意してください。
|
|
|
|
![img](../../../images/img-attribute-show-in-inspector.png)
|
|
|
|
```cs
|
|
[NonSerialized, ShowInInspector]
|
|
public int field;
|
|
|
|
[NonSerialized, ShowInInspector]
|
|
public SampleClass classField = new();
|
|
|
|
[ShowInInspector]
|
|
public int Getter => 10;
|
|
|
|
[field: NonSerialized, ShowInInspector]
|
|
public string Property { get; set; } = string.Empty;
|
|
```
|