Unity-角色控制器

角色控制器是什么?

角色控制器是让角色可以受制于碰撞 但是不会被刚体所牵制

如果我们对角色使用刚体判断碰撞,可能会出现一些奇怪的表现

比如:

  1. 在斜坡上往下滑动

  2. 不加约束的情况碰撞可能让自己被撞飞

    等等

    而角色控制器会让角色表现的更加稳定

    Unity 提供了角色控制器脚本专门用于控制角色

注意:

添加角色控制器后,不用再添加刚体

能检测碰撞函数

能检测触发器函数

能被射线检测

Slope Limit坡度度数限制,大于该值的斜坡上不去

Step Offset:台阶偏移值,单位为米,低于这个值的台阶才能上去,该值不能大于角色控制器的高度

Skin Width:皮肤的宽度,两个碰撞体可以穿透彼此最大的皮肤宽度,较大的值可以减少抖动,较小的值可能导致角色卡住,建议设置为半径的 10%

MinMoveDistance:最小移动距离,大多数情况下为 0,可以用来减少抖动

cs 复制代码
using System.Collections;
using System.Collections.Generic;
using System.Runtime.CompilerServices;
using UnityEngine;

public class lesson19 : MonoBehaviour
{

    private Animator animator;
    private CharacterController cc;
    private float h;
    private float v;
    // Start is called before the first frame update
    void Start()
    {
        animator = GetComponent<Animator>();
        cc = GetComponent<CharacterController>();
    }

    // Update is called once per frame
    void Update()
    {
        h = Input.GetAxis("Horizontal");
        v = Input.GetAxis("Vertical");
        //判断是否接触地面
          if (cc.isGrounded)
          {
        print("接触地面");
          }
        animator.SetFloat("x", h);
        animator.SetFloat("y", v);

        if (Input.GetKeyDown(KeyCode.Space))
        {
            animator.SetTrigger("New Trigger");
        }
        //受重力作用的移动
        //cc.SimpleMove(transform.forward * v * 180 * Time.deltaTime);
        cc.SimpleMove(new Vector3(h, 0, v) * 3);
        //不受重力影响的移动
        //cc.Move();
    }
    //碰撞到其他对象触发
    private void OnControllerColliderHit(ControllerColliderHit hit)
    {
        print(hit.collider.gameObject.name);
    }

    private void OnTriggerEnter(Collider other)
    {
        print("触发器触发");
    }
}
相关推荐
唐宋元明清218819 小时前
.NET 磁盘管理-技术方案选型
windows·c#·存储
故事不长丨19 小时前
C#正则表达式完全攻略:从基础到实战的全场景应用指南
开发语言·正则表达式·c#·regex
bugcome_com1 天前
C# 字符串拼接全面指南
c#·.net·wpf
孟无岐1 天前
【Laya】Component 使用说明
typescript·游戏引擎·游戏程序·laya
weixin_409383121 天前
cocos shader三角流光
游戏引擎·cocos2d
xb11321 天前
C#委托详解
开发语言·c#
Mars-xq1 天前
godot 毛玻璃效果着色器shader
游戏引擎·godot·着色器
绀目澄清1 天前
unity3d AI Navigation 中文文档
游戏·unity
全栈小精灵1 天前
Winform入门
开发语言·机器学习·c#
用户298698530141 天前
C#: 如何自动化创建Word可填写表单,告别手动填写时代
后端·c#·.net