Unity3D Script KeynoteII

Unity3D Script KeynoteIIide

一、使用代碼操做Particle。ui

 1     //粒子對象
 2     GameObject particle = null;
 3     //粒子X軸方向速度
 4     float velocity_x = 0.0f;
 5     //粒子Y軸方向速度
 6     float velocity_y = 0.0f;
 7     //粒子Z軸方向速度
 8     float velocity_z = 0.0f;
 9     
10     void Start () 
11     {
12         //得到粒子對象
13         particle = GameObject.Find("ParticleSystem");
14         
15     }
16     
17     void OnGUI()
18     {
19         //拖動設置粒子的最大尺寸
20         GUILayout.Label("粒子最大尺寸");
21         particle.particleEmitter.maxSize = GUILayout.HorizontalSlider (particle.particleEmitter.maxSize, 0.0f, 10.0f,GUILayout.Width(150));
22         
23         //拖動設置粒子的最大消失時間
24         GUILayout.Label("粒子消失時間");
25         particle.particleEmitter.maxEnergy = GUILayout.HorizontalSlider (particle.particleEmitter.maxEnergy, 0.0f, 10.0f,GUILayout.Width(150));
26         
27         //拖動設置粒子的最大生成數量
28         GUILayout.Label("粒子的最大生成數量");
29         particle.particleEmitter.maxEmission = GUILayout.HorizontalSlider (particle.particleEmitter.maxEmission, 0.0f, 100.0f,GUILayout.Width(150));
30         
31         //拖動設置粒子X軸的移動速度
32         GUILayout.Label("粒子x軸的移動速度");
33         velocity_x= GUILayout.HorizontalSlider (velocity_x, 0.0f, 10.0f,GUILayout.Width(150));
34         particle.particleEmitter.worldVelocity = new Vector3(velocity_x, particle.particleEmitter.worldVelocity.y, particle.particleEmitter.worldVelocity.z);
35         
36         //拖動設置粒子Y軸的移動速度
37         GUILayout.Label("粒子y軸的移動速度");
38         velocity_y= GUILayout.HorizontalSlider (velocity_y, 0.0f, 10.0f,GUILayout.Width(150));
39         particle.particleEmitter.worldVelocity = new Vector3( particle.particleEmitter.worldVelocity.x,velocity_y, particle.particleEmitter.worldVelocity.z);
40         
41         //拖動設置粒子Z軸的移動速度
42         GUILayout.Label("粒子z軸的移動速度");
43         velocity_z= GUILayout.HorizontalSlider (velocity_z, 0.0f, 10.0f,GUILayout.Width(150));
44         particle.particleEmitter.worldVelocity = new Vector3( particle.particleEmitter.worldVelocity.x, particle.particleEmitter.worldVelocity.y,velocity_z);
45     
46     
47     }
View Code

二、布料是Unity3.x引入的特點組件,是柔軟的,能夠變成任意形狀,好比隨風飄揚的旗子呈窗戶上的窗簾。spa

三、Trail Renderer3d

  The Trail Renderer is used to make trails behind objects in the scene as they move about.code

  能夠經過如下相似代碼來操做TrailRender:對象

 1     //路徑渲染對象
 2     private TrailRenderer trialRender;
 3     
 4     void Start () 
 5     {
 6         //獲取路徑渲染對象
 7         trialRender = gameObject.GetComponent<TrailRenderer>();
 8     }
 9 
10     void OnGUI()
11     {
12         
13         if(GUILayout.Button("增長寬度",GUILayout.Height(50)))
14         {
15             trialRender.startWidth +=1;
16             trialRender.endWidth   +=1;
17         }
18         
19         if(GUILayout.Button("顯示路徑",GUILayout.Height(50)))
20         {
21             trialRender.enabled = true;
22         }
23         
24         if(GUILayout.Button("隱藏路徑",GUILayout.Height(50)))
25         {
26             trialRender.enabled = false;
27         }
28     }
View Code

Inputblog

一、判斷按鍵是否按下。遊戲

 1         if (Input.GetKeyDown (KeyCode.W))
 2         {
 3             Debug.Log("您按下了W鍵");
 4         }
 5         
 6         if (Input.GetKeyDown (KeyCode.S))
 7         {
 8             Debug.Log("您按下了S鍵");
 9         }
10         
11         if (Input.GetKeyDown (KeyCode.A))
12         {
13             Debug.Log("您按下了A鍵");
14         }
15         
16         if (Input.GetKeyDown (KeyCode.D))
17         {
18             Debug.Log("您按下了D鍵");
19         }
20         
21         if (Input.GetKeyDown (KeyCode.Space))
22         {
23             Debug.Log("您按下了空格鍵");
24         }
View Code

二、判斷按鍵是否擡起。事件

 1         //擡起按鍵
 2         if (Input.GetKeyUp (KeyCode.W))
 3         {
 4             Debug.Log("您擡起了W鍵");
 5         }
 6         
 7         if (Input.GetKeyUp (KeyCode.S))
 8         {
 9             Debug.Log("您擡起了S鍵");
10         }
11         
12         if (Input.GetKeyUp (KeyCode.A))
13         {
14             Debug.Log("您擡起了A鍵");
15         }
16         
17         if (Input.GetKeyUp (KeyCode.D))
18         {
19             Debug.Log("您擡起了D鍵");
20         }
21         
22         if (Input.GetKeyUp (KeyCode.Space))
23         {
24             Debug.Log("您擡起了空格鍵");
25         }
View Code

 三、長按事件。使用Input.GetKey()方法判斷鍵盤中某個鍵是否一直處於按下狀態ip

 1         if (Input.GetKeyDown (KeyCode.A))
 2         {
 3             Debug.Log("A按下一次");
 4         }    
 5         if (Input.GetKey (KeyCode.A))
 6         {
 7             //記錄按下的幀數
 8             keyFrame++;
 9             Debug.Log("A連按:" + keyFrame+"");
10         }
11         if (Input.GetKeyUp (KeyCode.A))
12         {
13             //擡起後清空幀數
14             keyFrame=0;
15             Debug.Log("A按鍵擡起");
16         }    
View Code

 四、使用Input.anyKeyDown() 來判斷任意鍵是否按下,Input.anyKey()判斷任意鍵是否被長按。

 1     // Update is called once per frame
 2     void Update ()
 3     {
 4         if(Input.anyKeyDown)
 5         {
 6             //清空按下幀數
 7             keyFrame=0;
 8             Debug.Log("任意鍵被按下");
 9         }
10         
11         
12         if(Input.anyKey)
13         {
14             keyFrame++;
15             Debug.Log("任意鍵被長按"+keyFrame+"");
16         }
17     
18     }
View Code

五、鼠標按下事件。

 1     void Update ()
 2     {
 3         
 4         if (Input.GetMouseButtonDown(0))
 5         {
 6             Debug.Log("點擊鼠標左鍵的位置爲:" +Input.mousePosition);
 7         }
 8         if (Input.GetMouseButtonDown(1))
 9         {
10             Debug.Log("點擊鼠標右鍵的位置爲:" +Input.mousePosition);
11         }
12         if (Input.GetMouseButtonDown(2))
13         {
14             Debug.Log("點擊鼠標中鍵的位置爲:" +Input.mousePosition);
15         }
16         
17     }
View Code

六、使用Input.GetMouseButtonUp()方法能夠監聽鼠標擡起。

 1     void Update () 
 2     {
 3     
 4         if (Input.GetMouseButtonUp(0))
 5         {
 6             Debug.Log("鼠標擡起左鍵的位置爲:" +Input.mousePosition);
 7         }
 8         if (Input.GetMouseButtonUp(1))
 9         {
10             Debug.Log("鼠標擡起右鍵的位置爲:" +Input.mousePosition);
11         }
12         if (Input.GetMouseButtonUp(2))
13         {
14             Debug.Log("鼠標擡起中鍵的位置爲:" +Input.mousePosition);
15         }
16     
17     }
View Code

七、Input.GetMouseButton()用於監聽鼠標長按事件。

 1         //連按事件
 2         if(Input.GetMouseButton(0))
 3         {    
 4             MouseFrame++;
 5             Debug.Log("鼠標左鍵長按"+MouseFrame+"");
 6         }
 7         if(Input.GetMouseButton(1))
 8         {
 9             MouseFrame++;
10             Debug.Log("鼠標右鍵長按"+MouseFrame+"");        
11         }
12         if(Input.GetMouseButton(2))
13         {
14             MouseFrame++;
15             Debug.Log("鼠標中鍵長按"+MouseFrame+"");            
16         }
View Code

 八、使用Input.GetAxis()獲取某個自定義按鍵的軸值。

1     void Update () 
2     {
3         float value = Input.GetAxis ("test"); 
4         Debug.Log("按鍵軸的數值爲:"+value);
5     }
View Code

九、字符串轉換爲int。

  

Application

一、Application.LoadLevel()能夠切換場景。

  

二、Application.CaptureScreenShot()能夠截圖。

   

三、Application.OpenURL()能夠打開網頁。

四、Application.Quit()退出遊戲。

AssetDataBase

一、使用AssetDataBase.LoadAssetAtPath()能夠設置行爲。

  

二、使用AssetDataBase.CreateAsset()能夠建立資源。

  

三、AssetDataBase.CreateFolder()能夠建立目錄。 

四、AssetDataBase.CopyAsset()能夠移動資源,AssetDataBase.MoveAsset()能夠移動資源。

五、AssetDataBase.DeleteAsset()、AssetDataBase.Reresh()。

相關文章
相關標籤/搜索