diff --git a/2.5DHero/2.5DHero/Overworld/OverworldCamera.vb b/2.5DHero/2.5DHero/Overworld/OverworldCamera.vb index 33d7fead1..b0200ddb9 100644 --- a/2.5DHero/2.5DHero/Overworld/OverworldCamera.vb +++ b/2.5DHero/2.5DHero/Overworld/OverworldCamera.vb @@ -860,6 +860,21 @@ Public Class OverworldCamera End If End Select + 'DebugFeature: + If GameController.IS_DEBUG_ACTIVE = True Or Core.Player.SandBoxMode = True Then + If KeyBoardHandler.KeyDown(Keys.LeftAlt) Then + If KeyBoardHandler.KeyDown(KeyBindings.ForwardMoveKey) Then + v.X = 0F + v.Y = 1.0F + v.Z = 0F + ElseIf KeyBoardHandler.KeyDown(KeyBindings.BackwardMoveKey) Then + v.X = 0F + v.Y = -1.0F + v.Z = 0F + End If + End If + End If + Return v End Function