Skip to main content
itch.io
Browse Games
Game Jams
Upload Game
Halloween Sale 2024
Developer Logs
Community
Log in
Register
On Sale:
Games
Assets
Tools
Tabletop
Comics
Indie game store
Free games
Fun games
Horror games
Game development
Assets
Comics
Sales
Bundles
Jobs
Tags
Game Engines
UIToolkitWithAttributes
By
CatyboyStudio
Add to collection
asset pack
Community
Devlog
UIToolkitWithAttributes community
Attributes
Search
45
Topics
Note:
only moderators are allowed to create new topics, but anyone can reply.
45 topics
·
Next page
·
Previous page
·
First page
Topic
Last post
Sticky
Attributes Index
AnimationParamAttribute BoxGroupAttribute ButtonAttribute ConditionAndAttribute ConditionOrAttribute ConditionEqualsAttr...
started by
CatyboyStudio
Oct 13, 2022
90
views
No replies yet
OnValueChangedAttribute
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
MinValueAttribute
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
MinMaxSliderAttribute
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
MaxValueAttribute
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
MaskAttribute
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
LayerMaskAttribute
Use UIElements LayerMaskField to select data [LayerMask] public int IntValue;
started by
CatyboyStudio
Oct 14, 2022
72
views
No replies yet
LayerAttribute
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
LabelAttribute
Modify the label of the property display [Label("Label1")] public int Value1;
started by
CatyboyStudio
Oct 14, 2022
70
views
No replies yet
InfoBoxAttribute
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
HideIfAttribute
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
FoldoutGroupAttribute
Use UIElements Foldout to organize the properties [FoldoutGroup("Group2", ScopeType = GroupScopeType.ScopeBegin)] public...
started by
CatyboyStudio
Oct 14, 2022
101
views
No replies yet
FolderPathAttribute
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
FilePathAttribute
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
EnableIfAttribute
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
DropdownAttribute
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
DisableIfAttribute
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
ConditionCompareAttribute
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
ConditionHasFlagAttribute
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
ConditionEqualsAttribute
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
ConditionOrAttribute
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