コード例 #1
0
 // Update is called once per frame
 void Update()
 {
     if (Input.GetMouseButtonDown(0))
     {
         Ray        ray = Camera.main.ScreenPointToRay(Input.mousePosition);
         RaycastHit hit;
         if (Physics.Raycast(ray, out hit, 1000f))
         {
             PlaygroundC.Paint(particles, hit.point, hit.normal, hit.transform, color);
         }
     }
 }