Unity3D游戏开发之射线角色控制器.docxVIP

  • 1
  • 0
  • 约2.04千字
  • 约 4页
  • 2017-06-07 发布于重庆
  • 举报
Unity3D游戏开发之射线角色控制器

Unity3D游戏开发之射线、角色控制器角色控制器(character ?controller)? ? ? ? ?角色控制器允许你在受制于碰撞的情况下很容易的进行运动,而不用处理刚体。角色控制器不受力的影响,仅仅当你调用Move函数时才运动。然后它将执行运动,但是受制于碰撞。? ? ? ? ?Unity3D封装了一个非常好用的组件来实现第一人称视角与第三人称视角游戏开发,我们称他为角色控制器组件,【狗刨学习网】几乎不用写一行代码就可以完成一切的操作----?Charactr Controller(角色控制器).? ? ? ? ? ? 1、调用的方法是simplemove()使物体移动;? ? ? ? ? ? ? ? ? 首先为物体添加charactercontroller(角色控制器);? ? ? ? ? ??2、角色控制器对象:private charactercontroller controller=null;? ? ? ? ? ? ? ?? ? ? ? ? ? 3、角色移动的速度:private float movespeed=30.0f;给游戏对象添加角色控制器过程:举例:using UnityEngine;using System.Collections;public class Player2 : MonoBehaviour {? ? ? ? //如果用CharacterController(角色控制器),需要添加碰撞器? ? ? ? CharacterController controller;? ? ? ? public float speed=10;? ? ? ? void Start () {? ? ? ? ? ? ? ? controller=this.GetComponentCharacterController();? ? ? ? }? ? ? ? void Update () {? ? ? ? ? ? ? ? controller.SimpleMove (new Vector3(Input.GetAxis(Horizontal)*speed,0,Input.GetAxis(Vertical)*speed));? ? ? ? }}射线? ? ? ? ?射线,类比的理解就是游戏中的子弹。是在3D世界里中一个点向一个方向发射的一条无终点的线。在发射的过程中,一旦与其他对象发生碰撞,就停止发射。射线包括两个元素:ray.origin(射线起点);ray.direction(射线的方向)创建一个射线的方法:ray(origin : vector3,direction : vector3)?定义一个光线投射碰撞:raycasthit hit;发射射线长度为:physics.raycast(ray,out hit,100);打印射线:debug.drawline(ray.origin,jit.point);举例:using UnityEngine;using System.Collections;public class RayTest : MonoBehaviour {? ? // Use this for initialization? ? void Start () {? ??? ? }? ??? ? // Update is called once per frame? ? void Update ()?? ? {? ?? ???if(Input.GetMouseButton(0))? ?? ???{? ?? ?? ?? ?Ray ray = Camera.main.ScreenPointToRay(Input.mousePosition);//从摄像机发出到点击坐标的射线? ?? ?? ?? ?RaycastHithitInfo;? ?? ?? ?? ?if(Physics.Raycast(ray,outhitInfo))? ?? ?? ?? ?{? ?? ?? ?? ?? ? Debug.DrawLine(ray.origin,hitInfo.point);//划出射线,只有在scene视图中才能看到? ?? ?? ?? ?? ? GameObjectgameObj = hitInfo.collider.gameObject;? ?? ?? ?? ?? ? Debug.Log(click object name is + gameObj.name);? ?? ?? ?? ?? ? if(gameObj.tag == boot)//当射线碰撞目标为boot类型的物品 ,执行拾取操作? ?? ?? ?? ?? ? {? ?? ?? ?? ?? ?? ???Debug.Log(pick up!);? ?

文档评论(0)

1亿VIP精品文档

相关文档