first Prototype
This commit is contained in:
parent
e11825c698
commit
35ce267482
481 changed files with 17315 additions and 1 deletions
15
addons/ui_extensions/dropdown/DropdownItem.gd
Normal file
15
addons/ui_extensions/dropdown/DropdownItem.gd
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
# UI Extension Filter Dropdown Item : MIT License
|
||||
# @author Vladimir Petrenko
|
||||
extends Object
|
||||
class_name DropdownItem
|
||||
|
||||
var value
|
||||
var text: String
|
||||
var tooltip: String
|
||||
var icon: Texture2D
|
||||
|
||||
func _init(ivalue, itext: String, itooltip: String = "", iicon: Texture2D = null) -> void:
|
||||
self.value = ivalue
|
||||
self.text = itext
|
||||
self.tooltip = itooltip
|
||||
self.icon = iicon
|
||||
Loading…
Add table
Add a link
Reference in a new issue