first Prototype

This commit is contained in:
Exobyt 2025-08-28 01:55:38 +02:00
parent e11825c698
commit 35ce267482
481 changed files with 17315 additions and 1 deletions

View 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