Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Attributes

45
Topics
Note: only moderators are allowed to create new topics, but anyone can reply.
45 topics · Next page
Topic
Last post
AnimationParamAttribute BoxGroupAttribute ButtonAttribute ConditionAndAttribute ConditionOrAttribute ConditionEqualsAttr...
started by CatyboyStudio Oct 13, 2022
80 views
No replies yet
Define a Test of validity condition [ConditionValid("Cond4", nameof(S1), "notempty")] Determine whether the property S1(...
started by CatyboyStudio Oct 24, 2022
60 views
No replies yet
Define how to handle the instantiation policy of the following situations the none-serializable property property mark w...
started by CatyboyStudio Oct 15, 2022
72 views
No replies yet
After the data changes, if the data is out of range, it is automatically corrected to the limited value [ValueLimit(...
started by CatyboyStudio Oct 14, 2022
73 views
No replies yet
After the data changes, the result is made by the Validator method and the reminder information is displayed [ValidateIn...
started by CatyboyStudio Oct 14, 2022
56 views
No replies yet
Let UnityEngine apply the plugin's Drawer on the properties associated with Attribute Often used in the following places...
started by CatyboyStudio Oct 14, 2022
69 views
No replies yet
A BoxGroup with Title [TitleGroup("Group1")] public int Value1; [TitleGroup("Group1")] public int Value2; For more infor...
started by CatyboyStudio Oct 14, 2022
65 views
No replies yet
After entering the keyword, use the Enter key to activate the selection box,then select to set the System.Type data [T...
started by CatyboyStudio Oct 14, 2022
75 views
No replies yet
Select the data using UIElements TreeView (Unity 2021.1 or later) [TreeView(nameof(Data), true)] public int TreeValue...
started by CatyboyStudio Oct 14, 2022
61 views
No replies yet
Use UIElements TagField to set data [Tag] public string Value1;
started by CatyboyStudio Oct 14, 2022
55 views
No replies yet
A label is drawn at the end of the property, can set the size through “Width” and the color through “Color” [Suf...
started by CatyboyStudio Oct 14, 2022
59 views
No replies yet
A Button is drawn at the end of the property, can set the size through “Width” [SuffixButton("DebugLog", nameof(Chec...
started by CatyboyStudio Oct 14, 2022
69 views
No replies yet
Select SortingLayer [SortingLayer] public int Value1;
started by CatyboyStudio Oct 14, 2022
64 views
No replies yet
Displays PropertyOrder next to the Label for debugging sorting use public int Value3; [ShowPropertyOrder] public int Val...
started by CatyboyStudio Oct 14, 2022
51 views
No replies yet
Enables a field or property that does not support serialization to be displayed on the Inspector. Other Attributes can a...
started by CatyboyStudio Oct 14, 2022
76 views
No replies yet
Show the property according to the specified conditions public bool Switch1; [ShowIf(nameof(Switch1))] public int Value...
started by CatyboyStudio Oct 14, 2022
63 views
No replies yet
A divider line is displayed above the control and color can set [Separator("red")] public int Value1; [Separator] public...
started by CatyboyStudio Oct 14, 2022
68 views
No replies yet
Scene data selection [Scene] public int Value1; Supports property type: int, string
started by CatyboyStudio Oct 14, 2022
61 views
No replies yet
If the property is not set, a message is displayed [Required] public string Value1; [Required] public int Value2; [Requi...
started by CatyboyStudio Oct 14, 2022
66 views
No replies yet
Makes the control unmodifiable (disabled) [ReadOnly] public int Value1;
started by CatyboyStudio Oct 14, 2022
73 views
No replies yet
Modify the sort order of the properties, the smaller the number, the earlier the arrangement public int Value1; [Propert...
started by CatyboyStudio Oct 14, 2022
67 views
No replies yet