diff options
| author | tpart <tpart120@proton.me> | 2026-03-01 21:14:11 +0100 |
|---|---|---|
| committer | tpart <tpart120@proton.me> | 2026-03-01 21:14:11 +0100 |
| commit | 4e17ada3d54352fcfd013b6bdb6e92950d802135 (patch) | |
| tree | 4873874442b1462b12b1e4445595e5cbb2b61186 /client/map/tiles/deep_fryer.gd | |
| parent | 453684af1095c1fd90aaa56c069184b921c02448 (diff) | |
| download | hurrycurry-4e17ada3d54352fcfd013b6bdb6e92950d802135.tar hurrycurry-4e17ada3d54352fcfd013b6bdb6e92950d802135.tar.bz2 hurrycurry-4e17ada3d54352fcfd013b6bdb6e92950d802135.tar.zst | |
Add weighted tools function in main menu background; Fix #561
Diffstat (limited to 'client/map/tiles/deep_fryer.gd')
| -rw-r--r-- | client/map/tiles/deep_fryer.gd | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/client/map/tiles/deep_fryer.gd b/client/map/tiles/deep_fryer.gd deleted file mode 100644 index 229028e7..00000000 --- a/client/map/tiles/deep_fryer.gd +++ /dev/null @@ -1,30 +0,0 @@ -# Hurry Curry! - a game about cooking -# Copyright (C) 2025 Hurry Curry! contributors -# -# 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 DeepFryer -extends CounterBase - -var deep_fryer = preload("res://map/tiles/deep_fryer.tscn") - -func _init(ctx: TileFactory.TileCC): - super(ctx, deep_fryer) - -func set_item(i: Item): - super(i) - if i != null: - i.rotation_target = item_base.global_rotation.y + PI - -static func interact_target() -> Vector3: - return Vector3(0., 0.55, 0.) |