v2.1.0 unnanounced hotfix

This commit is contained in:
Lyssa 2024-11-20 17:12:21 +04:00 committed by GitHub
parent a914e17fe9
commit a9328672ab
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 4 additions and 1 deletions

View File

@ -3,6 +3,7 @@ class_name ControllerManager extends Node
@export var dynamicallySwappingDevice : bool @export var dynamicallySwappingDevice : bool
@export var buttons : Array[ButtonClass] @export var buttons : Array[ButtonClass]
@export var brackets : Array[Control] @export var brackets : Array[Control]
@export var brackets_3d : Array[Node3D]
@export var cursor : CursorManager @export var cursor : CursorManager
@export var exitingButtons : bool @export var exitingButtons : bool
@export var settingVisibility : bool @export var settingVisibility : bool
@ -94,6 +95,7 @@ func SetPrevFocus(grabbing : bool):
func SetVisibility(): func SetVisibility():
for b in brackets: b.visible = cursor.controller_active for b in brackets: b.visible = cursor.controller_active
for b in brackets_3d: b.visible = cursor.controller_active
func ExitButtons(): func ExitButtons():
if (exitingButtons): if (exitingButtons):

View File

@ -1,7 +1,7 @@
extends Node extends Node
var currentVersion_nr = "v2.1.0" var currentVersion_nr = "v2.1.0"
var currentVersion_hotfix = 10 var currentVersion_hotfix = 11
var using_steam = true var using_steam = true
var currentVersion = "" var currentVersion = ""

View File

@ -70,6 +70,7 @@ func BeginLoop():
func Fly(): func Fly():
btn_door.visible = false btn_door.visible = false
bracket_door.visible = false bracket_door.visible = false
bracket_door.global_position = Vector3(0, 0, -100)
intbranch_heavendoor.interactionAllowed = false intbranch_heavendoor.interactionAllowed = false
cursor.SetCursor(false, false) cursor.SetCursor(false, false)
animator.play("move") animator.play("move")