chore: storing version and changelog

This commit is contained in:
StraToN
2022-03-07 16:28:18 +00:00
parent ac2e7ba20e
commit 58476828c6
7 changed files with 26 additions and 22 deletions

View File

@@ -140,7 +140,7 @@ func left_click_on_inventory_item(inventory_item_global_id: String, event: Input
$mouse_layer/verbs_menu.set_tool_texture(
item.inventory_item.texture_normal
)
func right_click_on_inventory_item(inventory_item_global_id: String, event: InputEvent) -> void:
mousewheel_action(1)

View File

@@ -17,7 +17,7 @@ func _on_inventory_button_pressed():
hide_inventory()
else:
show_inventory()
func show_inventory():
$FloatingInventory/InventoryTween.stop_all()

View File

@@ -29,7 +29,7 @@ func iterate_actions_cursor(direction: int):
current_cursor_id = 0
elif current_cursor_id < 0:
current_cursor_id = cursors.size() - 1
Input.set_custom_mouse_cursor(cursors[current_cursor_id].texture)
escoria.action_manager.set_current_action(cursors[current_cursor_id].name)
if $mouse_position/tool.texture != null:
@@ -40,7 +40,7 @@ func set_by_name(name: String) -> void:
if cursors[i].name == name:
current_cursor_id = i
break
Input.set_custom_mouse_cursor(cursors[current_cursor_id].texture)
escoria.action_manager.set_current_action(cursors[current_cursor_id].name)