You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
490 B

  1. // Amplify Shader Editor - Visual Shader Editing Tool
  2. // Copyright (c) Amplify Creations, Lda <info@amplify.pt>
  3. using UnityEngine;
  4. namespace AmplifyShaderEditor
  5. {
  6. public class DrawInfo
  7. {
  8. public Rect TransformedCameraArea;
  9. public Rect CameraArea;
  10. public Vector2 MousePosition;
  11. public Vector2 CameraOffset;
  12. public float InvertedZoom;
  13. public bool LeftMouseButtonPressed;
  14. public EventType CurrentEventType;
  15. public Vector2 TransformedMousePos;
  16. public bool ZoomChanged;
  17. }
  18. }