Removed redundant Point struct and SceneViewport improvements

- Keyboard shortcuts for Gizmo control
- Improved mousepick-blocking
This commit is contained in:
Simon Lübeß
2022-06-02 12:17:57 +02:00
parent e41645e12a
commit a80018e80c
10 changed files with 136 additions and 214 deletions
+1 -1
View File
@@ -157,7 +157,7 @@ namespace Sandbox
if(_moving)
{
Point movement = Input.GetMouseMovement();
Int2 movement = Input.GetMouseMovement();
_position.X += movement.X;
_position.Y += movement.Y;