50 lines
1.7 KiB
GDScript
50 lines
1.7 KiB
GDScript
@tool
|
|
extends Button
|
|
class_name ControllerButton
|
|
## Controller icon for Button nodes.
|
|
##
|
|
## [b]Deprecated[/b]: Use the new [ControllerIconTexture] texture resource and set it
|
|
## directly in [member Button.icon].
|
|
##
|
|
## @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 Button's icon property."]
|
|
|
|
@export var path : String = "":
|
|
set(_path):
|
|
path = _path
|
|
if is_inside_tree():
|
|
if force_type > 0:
|
|
icon = ControllerIcons.parse_path(path, force_type - 1)
|
|
else:
|
|
icon = 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)
|
|
|
|
func _ready():
|
|
ControllerIcons.input_type_changed.connect(_on_input_type_changed)
|
|
self.path = path
|
|
|
|
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):
|
|
self.path = path
|
|
else:
|
|
icon = null
|
|
|
|
func get_tts_string() -> String:
|
|
if force_type:
|
|
return ControllerIcons.parse_path_to_tts(path, force_type - 1, ControllerIcons._last_controller)
|
|
else:
|
|
return ControllerIcons.parse_path_to_tts(path)
|