コード例 #1
0
 public void OnDrag(PointerEventData eventData)
 {
     if (GameManager.Instance.gameState != GameManager.GameState.end)
     {
         beamEmitter.CreateReflectableBeam();
         Plane plane = new Plane(Vector3.up, transform.position);
         Ray   ray   = eventData.pressEventCamera.ScreenPointToRay(eventData.position);
         float distance;
         if (plane.Raycast(ray, out distance))
         {
             transform.position = ray.origin + ray.direction * distance;
         }
     }
 }