Exemplo n.º 1
0
 private void Update()
 {
     if (draggable && mouseDrag3D)
     {
         if (Input.GetMouseButton(0))
         {
             if (targeted)
             {
                 mouseDrag3D.StartDragging();
             }
         }
         else
         {
             mouseDrag3D.StopDragging();
         }
     }
 }
Exemplo n.º 2
0
 private void Update()
 {
     if (draggable && mouseDrag3D)
     {
         if (Input.GetMouseButton(0))
         {
             if (targeted)
             {
                 mouseDrag3D.StartDragging();
             }
         }
         else
         {
             if (mouseDrag3D.Dragging && !targeted)
             {
                 TargetOffForReal();
             }
             mouseDrag3D.StopDragging();
         }
     }
 }