Also can't switch perspective with PreventMovement

This commit is contained in:
JappaWakka 2022-11-01 18:40:21 +01:00
parent 8f7c725b95
commit 39d8e1b59f
1 changed files with 1 additions and 1 deletions

View File

@ -320,7 +320,7 @@ Public Class OverworldCamera
Public Sub UpdateThirdPersonCamera()
If _isFixed = False Then
If KeyBoardHandler.KeyPressed(KeyBindings.PerspectiveSwitchKey) = True Or ControllerHandler.ButtonPressed(Buttons.LeftShoulder) = True Then
If KeyBoardHandler.KeyPressed(KeyBindings.PerspectiveSwitchKey) = True Or ControllerHandler.ButtonPressed(Buttons.LeftShoulder) = True AndAlso PreventMovement = False Then
Dim actionscriptReady As Boolean = True
If CurrentScreen.Identification = Screen.Identifications.OverworldScreen Then
actionscriptReady = CType(CurrentScreen, OverworldScreen).ActionScript.IsReady