diff options
| author | tpart <tpart120@proton.me> | 2024-09-02 00:34:06 +0200 |
|---|---|---|
| committer | tpart <tpart120@proton.me> | 2024-09-02 00:34:13 +0200 |
| commit | e864abcf6469c877087e53525de632b89546659d (patch) | |
| tree | 87039b2e5556c64e0b2da95f23152dcc49dbd790 /client/menu/settings/input/input_setting.gd | |
| parent | eb7fa5392997ac5c165d1ae011e57a1b7fcac084 (diff) | |
| download | hurrycurry-e864abcf6469c877087e53525de632b89546659d.tar hurrycurry-e864abcf6469c877087e53525de632b89546659d.tar.bz2 hurrycurry-e864abcf6469c877087e53525de632b89546659d.tar.zst | |
Add input settings UI
Diffstat (limited to 'client/menu/settings/input/input_setting.gd')
| -rw-r--r-- | client/menu/settings/input/input_setting.gd | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/client/menu/settings/input/input_setting.gd b/client/menu/settings/input/input_setting.gd new file mode 100644 index 00000000..eec68bdc --- /dev/null +++ b/client/menu/settings/input/input_setting.gd @@ -0,0 +1,34 @@ +# Hurry Curry! - a game about cooking +# Copyright 2024 tpart +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, version 3 of the License only. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see <https://www.gnu.org/licenses/>. +# +class_name InputSetting +extends GameSetting + +const INPUT_VALUE_NODE_SCENE = preload("res://menu/settings/input/input_value_node.tscn") + +func _update_row(): + super() + row.value_node = INPUT_VALUE_NODE_SCENE.instantiate() + row.value_node.value = _value + +func fetch_setting(): + if row != null: + _value = row.value_node.value + +func set_value(v): + super(v) + if row != null: + row.value_node.value = _value + row.value_node.update() |