Skip to content
Snippets Groups Projects
Commit 81a68513 authored by Tobias Schöner's avatar Tobias Schöner
Browse files

fix: hide DragHandling 'dragged' variable in Inspector

parent 03fda674
No related branches found
No related tags found
No related merge requests found
......@@ -5,7 +5,7 @@ public class DragHandling : MonoBehaviour, IDragHandler, IEndDragHandler
{
private Vector3 StartingPosition;
private Transform StartingParent;
public bool dragged = false;
[HideInInspector] public bool dragged = false;
public void OnDrag(PointerEventData eventData)
{
if (!dragged)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment