diff options
Diffstat (limited to 'Assets/ThirdParty/AmplifyShaderEditor/Plugins/Editor/Nodes/DrawInfo.cs')
-rw-r--r-- | Assets/ThirdParty/AmplifyShaderEditor/Plugins/Editor/Nodes/DrawInfo.cs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Assets/ThirdParty/AmplifyShaderEditor/Plugins/Editor/Nodes/DrawInfo.cs b/Assets/ThirdParty/AmplifyShaderEditor/Plugins/Editor/Nodes/DrawInfo.cs new file mode 100644 index 00000000..6a423446 --- /dev/null +++ b/Assets/ThirdParty/AmplifyShaderEditor/Plugins/Editor/Nodes/DrawInfo.cs @@ -0,0 +1,19 @@ +// Amplify Shader Editor - Visual Shader Editing Tool +// Copyright (c) Amplify Creations, Lda <info@amplify.pt> + +using UnityEngine; +namespace AmplifyShaderEditor +{ + public class DrawInfo + { + public Rect TransformedCameraArea; + public Rect CameraArea; + public Vector2 MousePosition; + public Vector2 CameraOffset; + public float InvertedZoom; + public bool LeftMouseButtonPressed; + public EventType CurrentEventType; + public Vector2 TransformedMousePos; + public bool ZoomChanged; + } +} |