blob: 6a423446af17f4c703d5b5a6dea7ca9737a714dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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;
}
}
|