feat: expand progression and multiplayer systems
Add named save slots, progression import/export, and a unified play flow. Add live friend requests, presence, invitations, and relationship controls without durable discovery-server social storage. Advance the network protocol with isolated channels, movement reconciliation, late-join recovery, fishing replication, and animation synchronization. Preserve per-species catch totals, refine generated-world startup and water recovery, and complete the related input and interface improvements.
This commit is contained in:
parent
1db1a5b754
commit
3b84bfe3a0
97 changed files with 7869 additions and 982 deletions
|
|
@ -177,6 +177,17 @@ func get_active_bindings() -> Dictionary:
|
|||
return _default_bindings.duplicate(true)
|
||||
|
||||
|
||||
func get_binding(role: StringName) -> Dictionary:
|
||||
var binding: Variant = get_active_bindings().get(str(role), {})
|
||||
if typeof(binding) != TYPE_DICTIONARY:
|
||||
return {}
|
||||
return (binding as Dictionary).duplicate(true)
|
||||
|
||||
|
||||
func get_binding_label(role: StringName) -> String:
|
||||
return binding_label(get_binding(role))
|
||||
|
||||
|
||||
func get_role_label(role: StringName) -> String:
|
||||
return str(ROLE_LABELS.get(role, str(role).replace("_", " ")))
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue