67 lines
2.1 KiB
GDScript
67 lines
2.1 KiB
GDScript
@tool
|
|
extends TextureRect
|
|
class_name ControllerTextureRect
|
|
## Controller icon for TextureRect nodes.
|
|
##
|
|
## [b]Deprecated[/b]: Use the new [ControllerIconTexture] texture resource and set it
|
|
## directly in [member TextureRect.texture].
|
|
##
|
|
## @deprecated
|
|
|
|
func _get_configuration_warnings():
|
|
return ["This node is deprecated, and will be removed in a future version.\n\nRemove this script and use the new ControllerIconTexture resource\nby setting it directly in TextureRect's texture property."]
|
|
|
|
|
|
@export var path : String = "":
|
|
set(_path):
|
|
path = _path
|
|
if is_inside_tree():
|
|
if force_type > 0:
|
|
texture = ControllerIcons.parse_path(path, force_type - 1)
|
|
else:
|
|
texture = ControllerIcons.parse_path(path)
|
|
|
|
@export_enum("Both", "Keyboard/Mouse", "Controller") var show_only : int = 0:
|
|
set(_show_only):
|
|
show_only = _show_only
|
|
_on_input_type_changed(ControllerIcons._last_input_type, ControllerIcons._last_controller)
|
|
|
|
@export_enum("None", "Keyboard/Mouse", "Controller") var force_type : int = 0:
|
|
set(_force_type):
|
|
force_type = _force_type
|
|
_on_input_type_changed(ControllerIcons._last_input_type, ControllerIcons._last_controller)
|
|
|
|
@export var max_width : int = 40:
|
|
set(_max_width):
|
|
max_width = _max_width
|
|
if is_inside_tree():
|
|
if max_width < 0:
|
|
expand_mode = TextureRect.EXPAND_KEEP_SIZE
|
|
else:
|
|
expand_mode = TextureRect.EXPAND_IGNORE_SIZE
|
|
custom_minimum_size.x = max_width
|
|
if texture:
|
|
custom_minimum_size.y = texture.get_height() * max_width / texture.get_width()
|
|
else:
|
|
custom_minimum_size.y = custom_minimum_size.x
|
|
|
|
func _ready():
|
|
ControllerIcons.input_type_changed.connect(_on_input_type_changed)
|
|
self.path = path
|
|
self.max_width = max_width
|
|
|
|
func _on_input_type_changed(input_type, controller):
|
|
if show_only == 0 or \
|
|
(show_only == 1 and input_type == ControllerIcons.InputType.KEYBOARD_MOUSE) or \
|
|
(show_only == 2 and input_type == ControllerIcons.InputType.CONTROLLER):
|
|
visible = true
|
|
self.path = path
|
|
else:
|
|
visible = false
|
|
|
|
func get_tts_string() -> String:
|
|
if force_type:
|
|
return ControllerIcons.parse_path_to_tts(path, force_type - 1)
|
|
else:
|
|
return ControllerIcons.parse_path_to_tts(path)
|