Possible screen cast fix

This commit is contained in:
Aragas 2016-12-04 17:52:38 +03:00
parent ffd3329a5c
commit dc1e3e6dd8
1 changed files with 13 additions and 11 deletions

View File

@ -363,25 +363,27 @@
Dim CPosition As Vector3 = Screen.Camera.Position
Dim ActionScriptActive As Boolean = False
If Not Core.CurrentScreen Is Nothing Then
If Screen.Camera.Name.ToLower() = "overworld" Then
CPosition = CType(Screen.Camera, OverworldCamera).CPosition
SyncLock Screen.Camera
If Not Core.CurrentScreen Is Nothing Then
If Screen.Camera.Name.ToLower() = "overworld" Then
CPosition = CType(Screen.Camera, OverworldCamera).CPosition
End If
If Screen.Camera.Name.ToLower() = "battlev2" Then
CPosition = CType(Screen.Camera, BattleSystem.BattleCamera).CPosition
End If
If Core.CurrentScreen.Identification = Screen.Identifications.OverworldScreen Then
ActionScriptActive = Not CType(Core.CurrentScreen, OverworldScreen).ActionScript.IsReady
End If
End If
If Screen.Camera.Name.ToLower() = "battlev2" Then
CPosition = CType(Screen.Camera, BattleSystem.BattleCamera).CPosition
End If
If Core.CurrentScreen.Identification = Screen.Identifications.OverworldScreen Then
ActionScriptActive = Not CType(Core.CurrentScreen, OverworldScreen).ActionScript.IsReady
End If
End If
End SyncLock
CameraDistance = CalculateCameraDistance(CPosition)
If Me.DropUpdateUnlessDrawn = True And Me.DrawnLastFrame = False And Me.Visible = True And ActionScriptActive = False Then
Exit Sub
End If
If Me.Moved > 0.0F And Me.CanMove = True Then
Me.Moved -= Me.Speed