UI improvements

This commit is contained in:
2026-06-14 10:19:31 -05:00
parent 8ffde98fdd
commit 0cf1f92eaa
16 changed files with 263 additions and 114 deletions
+5 -1
View File
@@ -43,7 +43,11 @@ var _mouseDelta:Vector2 = Vector2.ZERO
var _rightMouseHeld:bool = false
func _canOrbit() -> bool:
return not UI.activeConversation
if UI.activeConversation:
return false
if UI.FOCUS_STACK.top() != null:
return false
return true
func _input(event:InputEvent) -> void:
if not _canOrbit():