Skip to main content

On Sale: GamesAssetsToolsTabletopComics
Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

Attributes

45
Topics
Note: only moderators are allowed to create new topics, but anyone can reply.
Topic
Last post
AnimationParamAttribute BoxGroupAttribute ButtonAttribute ConditionAndAttribute ConditionOrAttribute ConditionEqualsAttr...
started by CatyboyStudio Oct 13, 2022
90 views
No replies yet
When the property changes, the specified method is called [OnValueChanged(nameof(OnValueChanged1))] public int Value1; p...
started by CatyboyStudio Oct 14, 2022
76 views
No replies yet
After the data changes, if the data is out of range, it is automatically corrected to the limited min value [MinValue(0)...
started by CatyboyStudio Oct 14, 2022
87 views
No replies yet
Use UIElements MinMaxSliderField to set data [MinMaxSlider(0.0f, 10.0f)] public Vector2 Value1; Supports property type...
started by CatyboyStudio Oct 14, 2022
74 views
No replies yet
After the data changes, if the data is out of range, it is automatically corrected to the limited max value [MaxValue(...
started by CatyboyStudio Oct 14, 2022
102 views
No replies yet
Use UIElements MaskField to select data [Mask(nameof(DataSource))] public int IntValue; private static DropdownList Data...
started by CatyboyStudio Oct 14, 2022
85 views
No replies yet
Use UIElements LayerMaskField to select data [LayerMask] public int IntValue;
started by CatyboyStudio Oct 14, 2022
72 views
No replies yet
Use UIElements LayerField to select data [Layer] public int IntValue; Supports property type: int, string
started by CatyboyStudio Oct 14, 2022
78 views
No replies yet
Modify the label of the property display [Label("Label1")] public int Value1;
started by CatyboyStudio Oct 14, 2022
70 views
No replies yet
Displays an information box above the control [InfoBox("Message1", Type = MessageType.Info)] public int Value1; Can spec...
started by CatyboyStudio Oct 14, 2022
84 views
No replies yet
Hide the property according to the specified conditions public bool Switch1; [HideIf(nameof(Switch1))] public int Value...
started by CatyboyStudio Oct 14, 2022
64 views
No replies yet
Use UIElements Foldout to organize the properties [FoldoutGroup("Group2", ScopeType = GroupScopeType.ScopeBegin)] public...
started by CatyboyStudio Oct 14, 2022
101 views
No replies yet
Used for string fields, provides a selection dialog box for directory paths, and supports drag-and-drop [FolderPath] pub...
started by CatyboyStudio Oct 14, 2022
111 views
No replies yet
Used for string fields, provides a selection dialog box for file paths, and supports drag-and-drop [FilePath] public str...
started by CatyboyStudio Oct 14, 2022
77 views
No replies yet
Enables the control according to the specified conditions public bool Switch1; [EnableIf(nameof(Switch1))] public int Va...
started by CatyboyStudio Oct 14, 2022
69 views
No replies yet
Select the data using UIElements PopupField [Dropdown(nameof(FieldDS), refreshButton: true)] public int Value1; public i...
started by CatyboyStudio Oct 14, 2022
72 views
No replies yet
Disables the control according to the specified conditions public bool Switch1; [DisableIf(nameof(Switch1))] public int...
started by CatyboyStudio Oct 14, 2022
64 views
No replies yet
Define a Data Compare condition [ConditionCompare("Cond4", nameof(S1), ">", 2)] Determine whether the property S1 is gre...
started by CatyboyStudio Oct 14, 2022
85 views
No replies yet
Define a Enum.HasFlag condition [ConditionHasFlag("F1", nameof(Switch4), EnumFlags.Flag1)] Determine whether the propert...
started by CatyboyStudio Oct 14, 2022
64 views
No replies yet
Define a equals condition [ConditionEquals("Cond3", nameof(Switch3), 123)] Determine whether the property Switch3 is equ...
started by CatyboyStudio Oct 14, 2022
44 views
No replies yet
Define a logical OR condition [ConditionOr("Cond1", nameof(Switch1), nameof(Switch2))] The properties Switch1 and Switch...
started by CatyboyStudio Oct 14, 2022
60 views
No replies yet