Clarify hotbar zoom control labels
This commit is contained in:
parent
c65176b99f
commit
f1c952f5d6
4 changed files with 30 additions and 4 deletions
|
|
@ -14,6 +14,22 @@ func _init() -> void:
|
|||
|
||||
|
||||
func _run() -> void:
|
||||
if (
|
||||
ControllerMappingManagerType.ROLE_LABELS[
|
||||
ControllerMappingManagerType.ROLE_CAMERA_ZOOM
|
||||
] != "zoom modifier (+RT)"
|
||||
):
|
||||
push_error("controller zoom modifier label is misleading")
|
||||
quit(1)
|
||||
return
|
||||
if (
|
||||
ControllerMappingManagerType.ROLE_LABELS[
|
||||
ControllerMappingManagerType.ROLE_RIGHT_STICK_Y
|
||||
] != "camera up / down (+RT to zoom)"
|
||||
):
|
||||
push_error("controller vertical camera label omits the RT zoom chord")
|
||||
quit(1)
|
||||
return
|
||||
var manager := ControllerMappingManagerType.new()
|
||||
root.add_child(manager)
|
||||
await process_frame
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue