├── Images ├── aspectratio.png ├── blur.webp ├── blur2.png ├── blur3.png ├── colorfield.webp ├── popup-edit.png ├── popup-msg.png └── tooltip.gif ├── README.md ├── Scripts ├── AspectRatioPadding │ ├── AspectRatioPadding.cs │ └── Sample.uxml ├── BlurOrGlassEffect │ ├── BlurPanel.cs │ └── Shaders │ │ ├── BlurRender.mat │ │ ├── BlurRender.mat.meta │ │ ├── BlurRenderFeature.cs │ │ ├── BlurRenderFeature.cs.meta │ │ ├── BlurRenderFeature.shader │ │ ├── BlurRenderFeature.shader.meta │ │ ├── UnlitGlassBlur.shadergraph │ │ └── UnlitGlassBlur.shadergraph.meta ├── ColorFieldAndPicker │ ├── ColorField.cs │ ├── ColorPopup.cs │ ├── DragManipulator.cs │ ├── Resources │ │ └── GameUI │ │ │ └── Styles │ │ │ ├── ColorFieldStyleSheet.uss │ │ │ ├── ColorPopupStyleSheet.uss │ │ │ └── Slider2DStyleSheet.uss │ └── Slider2D.cs ├── PupupPanel │ ├── PopupMessage.cs │ ├── PopupPanel.cs │ ├── PopupTextField.cs │ └── Resources │ │ └── GameUI │ │ └── Styles │ │ ├── PopupMessageStyleSheet.uss │ │ ├── PopupPanelStyleSheet.uss │ │ └── PopupTextFieldStyleSheet.uss ├── Tooltip │ ├── Resources │ │ └── GameUI │ │ │ └── Styles │ │ │ └── TooltipStyleSheet.uss │ ├── Tooltip.cs │ └── TooltipManipulator.cs └── _misc │ ├── UIElementsExtensions.cs │ └── stylesheets │ ├── BaseFieldStyleSheet.uss │ ├── ButtonsStyleSheet.uss │ ├── DefaultStyleSheet.uss │ ├── ListViewStyleSheet.uss │ ├── PanelsStyleSheet.uss │ ├── PopupStyleSheet.uss │ ├── ScrollViewStyleSheet.uss │ ├── SliderStyleSheet.uss │ ├── TextFieldStyleSheet.uss │ └── ToggleStyleSheet.uss └── UNLICENSE /Images/aspectratio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plyoung/UIElements/HEAD/Images/aspectratio.png -------------------------------------------------------------------------------- /Images/blur.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plyoung/UIElements/HEAD/Images/blur.webp -------------------------------------------------------------------------------- /Images/blur2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plyoung/UIElements/HEAD/Images/blur2.png -------------------------------------------------------------------------------- /Images/blur3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plyoung/UIElements/HEAD/Images/blur3.png -------------------------------------------------------------------------------- /Images/colorfield.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plyoung/UIElements/HEAD/Images/colorfield.webp -------------------------------------------------------------------------------- /Images/popup-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plyoung/UIElements/HEAD/Images/popup-edit.png -------------------------------------------------------------------------------- /Images/popup-msg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plyoung/UIElements/HEAD/Images/popup-msg.png -------------------------------------------------------------------------------- /Images/tooltip.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plyoung/UIElements/HEAD/Images/tooltip.gif -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plyoung/UIElements/HEAD/README.md -------------------------------------------------------------------------------- /Scripts/AspectRatioPadding/AspectRatioPadding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plyoung/UIElements/HEAD/Scripts/AspectRatioPadding/AspectRatioPadding.cs -------------------------------------------------------------------------------- /Scripts/AspectRatioPadding/Sample.uxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plyoung/UIElements/HEAD/Scripts/AspectRatioPadding/Sample.uxml -------------------------------------------------------------------------------- /Scripts/BlurOrGlassEffect/BlurPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plyoung/UIElements/HEAD/Scripts/BlurOrGlassEffect/BlurPanel.cs -------------------------------------------------------------------------------- /Scripts/BlurOrGlassEffect/Shaders/BlurRender.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plyoung/UIElements/HEAD/Scripts/BlurOrGlassEffect/Shaders/BlurRender.mat -------------------------------------------------------------------------------- /Scripts/BlurOrGlassEffect/Shaders/BlurRender.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plyoung/UIElements/HEAD/Scripts/BlurOrGlassEffect/Shaders/BlurRender.mat.meta -------------------------------------------------------------------------------- /Scripts/BlurOrGlassEffect/Shaders/BlurRenderFeature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plyoung/UIElements/HEAD/Scripts/BlurOrGlassEffect/Shaders/BlurRenderFeature.cs -------------------------------------------------------------------------------- /Scripts/BlurOrGlassEffect/Shaders/BlurRenderFeature.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plyoung/UIElements/HEAD/Scripts/BlurOrGlassEffect/Shaders/BlurRenderFeature.cs.meta -------------------------------------------------------------------------------- /Scripts/BlurOrGlassEffect/Shaders/BlurRenderFeature.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plyoung/UIElements/HEAD/Scripts/BlurOrGlassEffect/Shaders/BlurRenderFeature.shader -------------------------------------------------------------------------------- /Scripts/BlurOrGlassEffect/Shaders/BlurRenderFeature.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plyoung/UIElements/HEAD/Scripts/BlurOrGlassEffect/Shaders/BlurRenderFeature.shader.meta -------------------------------------------------------------------------------- /Scripts/BlurOrGlassEffect/Shaders/UnlitGlassBlur.shadergraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plyoung/UIElements/HEAD/Scripts/BlurOrGlassEffect/Shaders/UnlitGlassBlur.shadergraph -------------------------------------------------------------------------------- /Scripts/BlurOrGlassEffect/Shaders/UnlitGlassBlur.shadergraph.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plyoung/UIElements/HEAD/Scripts/BlurOrGlassEffect/Shaders/UnlitGlassBlur.shadergraph.meta -------------------------------------------------------------------------------- /Scripts/ColorFieldAndPicker/ColorField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plyoung/UIElements/HEAD/Scripts/ColorFieldAndPicker/ColorField.cs -------------------------------------------------------------------------------- /Scripts/ColorFieldAndPicker/ColorPopup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plyoung/UIElements/HEAD/Scripts/ColorFieldAndPicker/ColorPopup.cs -------------------------------------------------------------------------------- /Scripts/ColorFieldAndPicker/DragManipulator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plyoung/UIElements/HEAD/Scripts/ColorFieldAndPicker/DragManipulator.cs -------------------------------------------------------------------------------- /Scripts/ColorFieldAndPicker/Resources/GameUI/Styles/ColorFieldStyleSheet.uss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plyoung/UIElements/HEAD/Scripts/ColorFieldAndPicker/Resources/GameUI/Styles/ColorFieldStyleSheet.uss -------------------------------------------------------------------------------- /Scripts/ColorFieldAndPicker/Resources/GameUI/Styles/ColorPopupStyleSheet.uss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plyoung/UIElements/HEAD/Scripts/ColorFieldAndPicker/Resources/GameUI/Styles/ColorPopupStyleSheet.uss -------------------------------------------------------------------------------- /Scripts/ColorFieldAndPicker/Resources/GameUI/Styles/Slider2DStyleSheet.uss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plyoung/UIElements/HEAD/Scripts/ColorFieldAndPicker/Resources/GameUI/Styles/Slider2DStyleSheet.uss -------------------------------------------------------------------------------- /Scripts/ColorFieldAndPicker/Slider2D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plyoung/UIElements/HEAD/Scripts/ColorFieldAndPicker/Slider2D.cs -------------------------------------------------------------------------------- /Scripts/PupupPanel/PopupMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plyoung/UIElements/HEAD/Scripts/PupupPanel/PopupMessage.cs -------------------------------------------------------------------------------- /Scripts/PupupPanel/PopupPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plyoung/UIElements/HEAD/Scripts/PupupPanel/PopupPanel.cs -------------------------------------------------------------------------------- /Scripts/PupupPanel/PopupTextField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plyoung/UIElements/HEAD/Scripts/PupupPanel/PopupTextField.cs -------------------------------------------------------------------------------- /Scripts/PupupPanel/Resources/GameUI/Styles/PopupMessageStyleSheet.uss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plyoung/UIElements/HEAD/Scripts/PupupPanel/Resources/GameUI/Styles/PopupMessageStyleSheet.uss -------------------------------------------------------------------------------- /Scripts/PupupPanel/Resources/GameUI/Styles/PopupPanelStyleSheet.uss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plyoung/UIElements/HEAD/Scripts/PupupPanel/Resources/GameUI/Styles/PopupPanelStyleSheet.uss -------------------------------------------------------------------------------- /Scripts/PupupPanel/Resources/GameUI/Styles/PopupTextFieldStyleSheet.uss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plyoung/UIElements/HEAD/Scripts/PupupPanel/Resources/GameUI/Styles/PopupTextFieldStyleSheet.uss -------------------------------------------------------------------------------- /Scripts/Tooltip/Resources/GameUI/Styles/TooltipStyleSheet.uss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plyoung/UIElements/HEAD/Scripts/Tooltip/Resources/GameUI/Styles/TooltipStyleSheet.uss -------------------------------------------------------------------------------- /Scripts/Tooltip/Tooltip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plyoung/UIElements/HEAD/Scripts/Tooltip/Tooltip.cs -------------------------------------------------------------------------------- /Scripts/Tooltip/TooltipManipulator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plyoung/UIElements/HEAD/Scripts/Tooltip/TooltipManipulator.cs -------------------------------------------------------------------------------- /Scripts/_misc/UIElementsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plyoung/UIElements/HEAD/Scripts/_misc/UIElementsExtensions.cs -------------------------------------------------------------------------------- /Scripts/_misc/stylesheets/BaseFieldStyleSheet.uss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plyoung/UIElements/HEAD/Scripts/_misc/stylesheets/BaseFieldStyleSheet.uss -------------------------------------------------------------------------------- /Scripts/_misc/stylesheets/ButtonsStyleSheet.uss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plyoung/UIElements/HEAD/Scripts/_misc/stylesheets/ButtonsStyleSheet.uss -------------------------------------------------------------------------------- /Scripts/_misc/stylesheets/DefaultStyleSheet.uss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plyoung/UIElements/HEAD/Scripts/_misc/stylesheets/DefaultStyleSheet.uss -------------------------------------------------------------------------------- /Scripts/_misc/stylesheets/ListViewStyleSheet.uss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plyoung/UIElements/HEAD/Scripts/_misc/stylesheets/ListViewStyleSheet.uss -------------------------------------------------------------------------------- /Scripts/_misc/stylesheets/PanelsStyleSheet.uss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plyoung/UIElements/HEAD/Scripts/_misc/stylesheets/PanelsStyleSheet.uss -------------------------------------------------------------------------------- /Scripts/_misc/stylesheets/PopupStyleSheet.uss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plyoung/UIElements/HEAD/Scripts/_misc/stylesheets/PopupStyleSheet.uss -------------------------------------------------------------------------------- /Scripts/_misc/stylesheets/ScrollViewStyleSheet.uss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plyoung/UIElements/HEAD/Scripts/_misc/stylesheets/ScrollViewStyleSheet.uss -------------------------------------------------------------------------------- /Scripts/_misc/stylesheets/SliderStyleSheet.uss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plyoung/UIElements/HEAD/Scripts/_misc/stylesheets/SliderStyleSheet.uss -------------------------------------------------------------------------------- /Scripts/_misc/stylesheets/TextFieldStyleSheet.uss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plyoung/UIElements/HEAD/Scripts/_misc/stylesheets/TextFieldStyleSheet.uss -------------------------------------------------------------------------------- /Scripts/_misc/stylesheets/ToggleStyleSheet.uss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plyoung/UIElements/HEAD/Scripts/_misc/stylesheets/ToggleStyleSheet.uss -------------------------------------------------------------------------------- /UNLICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plyoung/UIElements/HEAD/UNLICENSE --------------------------------------------------------------------------------