Tanoda
DisableDropCondition.cs
Go to the documentation of this file.
1using System.Collections;
2using System.Collections.Generic;
3using UnityEngine;
4
5//Condition used to disable the drop action. Check method will always return false, regardless of the draggable
7{
8 public override bool Check(MouseDragBehaviour draggable)
9 {
10 return false;
11 }
12}
override bool Check(MouseDragBehaviour draggable)