歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux編程 >> Linux編程

Unity3D搖桿

本章博文的目的是利用上一章介紹的游戲搖桿來控制人物模型的移動(見 http://www.linuxidc.com/Linux/2012-04/59394.htm ),與行走動畫的播放。

如上圖所示Create中的文件夾male中存放著模型動畫與貼圖等,這個應該是美術提供給我們的。然後將整個male用鼠標拖動到左側3D世界中,通過移動,旋轉,縮放將人物模型放置在一個理想的位置。右側紅框內設置模型動畫的屬性。

Animation

idle1  該模型默認動畫名稱為idle1

Animations

size   該模型動畫的數量

Element 該模型的動畫名稱

Play Automatically 是否自動播放

Animation Physics 是否設置該模型物理碰撞

Animation Only if Visable 是否設置該模型僅自己顯示

給該模型綁定一個腳本Controller.cs 用來接收搖桿返回的信息更新模型動畫。

Controller.cs

  1. using UnityEngine;  
  2. using System.Collections;  
  3.   
  4.   
  5.   
  6. public class Controller : MonoBehaviour {  
  7.       
  8.     //人物的行走方向狀態  
  9.     public const int HERO_UP= 0;  
  10.     public const int HERO_RIGHT= 1;  
  11.     public const int HERO_DOWN= 2;  
  12.     public const int HERO_LEFT= 3;  
  13.       
  14.     //人物當前行走方向狀態  
  15.     public int state = 0;  
  16.       
  17.     //備份上一次人物當前行走方向狀態  
  18.     //這裡暫時沒有用到  
  19.     public int backState = 0;  
  20.       
  21.     //游戲搖桿對象  
  22.     public MPJoystick moveJoystick;    
  23.       
  24.     //這個方法只調用一次,在Start方法之前調用  
  25.     public void Awake() {  
  26.           
  27.     }  
  28.       
  29.     //這個方法只調用一次,在Awake方法之後調用  
  30.     void Start () {  
  31.         state = HERO_DOWN;  
  32.     }  
  33.       
  34.       
  35.     void Update () {  
  36.       
  37.     //獲取搖桿控制的方向數據 上一章有詳細介紹    
  38.     float touchKey_x =  moveJoystick.position.x;    
  39.     float touchKey_y =  moveJoystick.position.y;    
  40.           
  41.         
  42.        
  43.     if(touchKey_x == -1){    
  44.        setHeroState(HERO_LEFT);  
  45.             
  46.     }else if(touchKey_x == 1){    
  47.        setHeroState(HERO_RIGHT);  
  48.             
  49.     }    
  50.        
  51.     if(touchKey_y == -1){    
  52.         setHeroState(HERO_DOWN);  
  53.    
  54.     }else if(touchKey_y == 1){    
  55.         setHeroState(HERO_UP);           
  56.     }    
  57.       
  58.     if(touchKey_x == 0 && touchKey_y ==0){  
  59.         //松開搖桿後播放默認動畫,  
  60.         //不穿參數為播放默認動畫。  
  61.         animation.Play();  
  62.     }  
  63.       
  64.           
  65.     }  
  66.       
  67.     public void setHeroState(int newState)  
  68.     {  
  69.           
  70.         //根據當前人物方向 與上一次備份方向計算出模型旋轉的角度  
  71.         int rotateValue = (newState - state) * 90;  
  72.         Vector3 transformValue = new Vector3();  
  73.           
  74.         //播放行走動畫  
  75.         animation.Play("walk");  
  76.           
  77.         //模型移動的位移的數值  
  78.         switch(newState){  
  79.             case HERO_UP:  
  80.                 transformValue = Vector3.forward * Time.deltaTime;  
  81.             break;    
  82.             case HERO_DOWN:  
  83.                 transformValue = -Vector3.forward * Time.deltaTime;  
  84.             break;    
  85.             case HERO_LEFT:  
  86.                 transformValue = Vector3.left * Time.deltaTime;  
  87.                   
  88.             break;    
  89.             case HERO_RIGHT:  
  90.                 transformValue = -Vector3.left * Time.deltaTime;  
  91.             break;                
  92.         }  
  93.           
  94.           
  95.         //模型旋轉  
  96.         transform.Rotate(Vector3.up, rotateValue);  
  97.           
  98.         //模型移動  
  99.         transform.Translate(transformValue, Space.World);  
  100.           
  101.         backState = state;  
  102.         state = newState;  
  103.           
  104.     }  
  105.       
  106. }  
Copyright © Linux教程網 All Rights Reserved