private void Update() { if (Input.GetMouseButtonDown((int)controllButton) && Utils.GetUIElement(Input.mousePosition) == null) { isCapturing = true; } if (isCapturing) { UpdateRotation(); } if (Input.GetMouseButtonUp((int)controllButton)) { isCapturing = false; } }
void Update() { var scroll = Input.mouseScrollDelta.y; if (scroll != 0) { if (Utils.GetUIElement(Input.mousePosition) == null) { UpdateZoom(Input.mouseScrollDelta.y); } } UpdatePosition(); if (Input.GetKeyDown(navigationReset)) { ResetPosition(); } }