지도에 경계 코드 설정

5872 단어
 1  //      :1:       Boundary(  )
 2     public class Boundary
 3     {
 4         public float xMin;
 5         public float xMax;
 6         public float zMin;
 7         public float zMax;
 8     }
 9     public Transform m_Transform;
10     private Rigidbody m_Rigidbody;
11     public Boundary boundary;
12     void Start () {
13         m_Transform = gameObject.GetComponent();
14         m_Rigidbody = gameObject.GetComponent();
15         //     Bundary   ,        ;
16         boundary = new Boundary()  {  xMin = -3f, xMax = 3f, zMin = -3f, zMax = 3f  };
19     }
20     
21     void Update () {
22       
23         float fmh = Input.GetAxis("Horizontal");//      
24         float fmv = Input.GetAxis("Vertical");  //      
25         Vector3 move = new Vector3(fmh,0,fmv);  //      
26       
27 
28         if (m_Rigidbody!=null)
29         {
30             m_Rigidbody.velocity = move *10;    //       
31 
32             //            Mathf.Clamp       
33             float fx = Mathf.Clamp(m_Rigidbody.position.x,boundary.xMin,boundary.xMax);
34             float fz = Mathf.Clamp(m_Rigidbody.position.z,boundary.zMin,boundary.zMax);
35             
36            m_Rigidbody.position = new Vector3(fx,0.0F,fz);
37 
38 
39             ///       
40             m_Rigidbody.rotation = Quaternion.Euler(0.0F,0.0F,m_Rigidbody.velocity.x*5f);
41 
42 
43         }
44 
45 
46     }
47 }

 
전재 대상:https://www.cnblogs.com/fxy-588/p/6957447.html

좋은 웹페이지 즐겨찾기