https://github.com/fuqunaga/labelnamepropertyattribute
https://github.com/fuqunaga/labelnamepropertyattribute
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/fuqunaga/labelnamepropertyattribute
- Owner: fuqunaga
- Created: 2015-12-07T10:17:51.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-08-09T06:07:31.000Z (almost 8 years ago)
- Last Synced: 2025-01-29T17:32:29.569Z (5 months ago)
- Language: C#
- Size: 88.9 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# LabelNamePropertyAttribute
```
public class SampleClass : MonoBehaviour
{
[System.Serializable]
public class Element
{
public GameObject prefab;
}public Element[] NoAttribute;
[LabelNameProperty("prefab")]
public Element[] HasAttribute;
}```
