This game is so much fun, like, the dungeon management and battle parts - obv the adult features are fun too but I spend so much time just playing the game for it's own sake. Would it be possible to add a way to rotate the dungeon view? I'd like it to be free rotation with mouse right-click and drag but even just a 90deg rotation on Q and E would be great. It's not the most important thing but would be a nice QOL
Viewing post in Dungeon: Keep Her - Public Release - Alpha 0.19.1 comments
Was able to implement the idea pretty easily by adding this to Update of DungeonCameraControl, inside the if (this.overviewCamera.gameObject.activeInHierarchy && !DungeonManager.inMenu) using dnspy
```
if (Input.GetKeyDown(KeyCode.Q))
{
this.overviewCamera.RotateAround(this.overviewCamera.position, new Vector3(0f, 1f, 0f), 90f);
this.overviewFocusOffset = new Vector3(this.overviewFocusOffset.z, this.overviewFocusOffset.y, -this.overviewFocusOffset.x);
}
```
Seems to behave well through the different camera modes - doing the inverse with KeyCode E would allow rotating in both directions