mirror of
https://github.com/AnnulusGames/Alchemy.git
synced 2025-01-23 08:48:24 -05:00
18 lines
353 B
Markdown
18 lines
353 B
Markdown
# Required Attribute
|
|
|
|
Displays a warning if the field does not have an object reference assigned.
|
|
|
|
![img](../../../images/img-attribute-required.png)
|
|
|
|
```cs
|
|
[Required]
|
|
public GameObject requiredField1;
|
|
|
|
[Required("Custom message")]
|
|
public Material requiredField2;
|
|
```
|
|
|
|
| Parameter | Description |
|
|
| - | - |
|
|
| Message | Text to display in the warning |
|