Add starter RV progression and fishing feedback
This commit is contained in:
parent
eed361681a
commit
d8bf59bca0
47 changed files with 2268 additions and 467 deletions
|
|
@ -105,7 +105,7 @@ func _open_storage(
|
|||
):
|
||||
return false
|
||||
_home_access = home_access
|
||||
_title.text = "RV storage" if home_access else "private storage"
|
||||
_title.text = "home storage" if home_access else "private storage"
|
||||
_decorate_button.visible = home_access and allow_decorating
|
||||
_prior_movement_enabled = _player.is_movement_enabled()
|
||||
_prior_camera_enabled = _player.is_camera_input_enabled()
|
||||
|
|
@ -290,8 +290,8 @@ func _build_ui() -> void:
|
|||
_title.size_flags_horizontal = Control.SIZE_EXPAND_FILL
|
||||
header.add_child(_title)
|
||||
_decorate_button = Button.new()
|
||||
_decorate_button.text = "decorate RV"
|
||||
_decorate_button.tooltip_text = "Place decor inside your RV"
|
||||
_decorate_button.text = "decorate home"
|
||||
_decorate_button.tooltip_text = "Place decor inside your home"
|
||||
_decorate_button.custom_minimum_size = Vector2(160.0, 48.0)
|
||||
UtilityPageStyle.apply_ocean_button(_decorate_button)
|
||||
_decorate_button.hide()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue