Unity3D学习 ① 创建一个可移动,跳跃的物体

1.创建一个地面(plane)

点击unity导航栏上的GameObeject,选择3D Obejct,再选择plane就可以创建一个地面。

2.创建一个立方体(cube)用来代替玩家(player)

2.1 创建立方体

点击unity导航栏上的GameObeject,选择3D Obejct,再选择cube就可以创建一个立方体。

 2.2  赋予立方体属性

赋予立方体刚体(rigidbody)属性,使得立方体具有重力、碰撞等一般物理特性。

点击Hierarchy中之前创建的cube,再点击inspector中的Add component 搜索 Rigidbody即可添加成功。

其默认有重力。

 

 2.3 通过脚本使得立方体移动

unity中控制物体移动的原理为通过代码(脚本),改变物体的Transform属性

Position代表物体的三维位置,Rotation代表物体的旋转角度,Scale代表物体的缩放程度

2.3.1 创建脚本文件

在Assets中新建一个文件夹Scripts。(在Assets中点击鼠标右键,点击create,再点击folder)

 

 在Scripts中点击鼠标右键,点击create,再点击C# Scripts

2.3.2 脚本文件实现

点击创建好的move文件。

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
// 注意此处Move需要与你的脚本名称对应
public class Move : MonoBehaviour
{
    // 控制物体的移动速度
    public float moveSpeed = 5f;
    Vector3 moveAmount;
    // 刚体属性
    Rigidbody rb;
    // 在开始的一帧执行的函数
    void Start()
    {
        // 获取当前物体的刚体属性
        rb = GetComponent<Rigidbody>();
    }
    // 刷新的每一帧执行的函数
    void Update()
    {
        // 监听鼠标事件
        Vector3 moveDir = new Vector3(Input.GetAxis("Horizontal"), 0, Input.GetAxis("Vertical")).normalized;
        // 移动距离 = 移动方向 * 移动速度 * 每一帧时间
        moveAmount = moveDir * moveSpeed * Time.deltaTime;
        
    }
    private void FixedUpdate()
    {
        // 物体移动
        rb.MovePosition(rb.position + moveAmount);
    }
}

Horizontal 和 Vertical 的设置地点:Edit下的ProjectSetting

2.3.3 脚本文件的挂载

点击cube,再点击Add Component,搜素脚本名称Move即可。

 

 2.4 物体的旋转与跳跃

脚本文件如下:

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class Move : MonoBehaviour
{
    public float moveSpeed = 5f;
    // 控制旋转速度
    public float rotateSpeed = 5f;
    // 控制跳跃高度
    public float jumpSpeed = 8f;
    Vector3 moveAmount;
    Rigidbody rb;
    void Start()
    {
        rb = GetComponent<Rigidbody>();
    }

    void Update()
    {
        Vector3 moveDir = new Vector3(Input.GetAxis("Horizontal"), 0, Input.GetAxis("Vertical")).normalized;
        moveAmount = moveDir * moveSpeed * Time.deltaTime;
        // 获取旋转方向
        Vector3 targetDir = Vector3.Slerp(transform.forward, moveDir, rotateSpeed * Time.deltaTime);
        // 实现旋转
        transform.rotation = Quaternion.LookRotation(targetDir);
        // 实现按键跳跃
        if (Input.GetButton("Jump"))
        {
            transform.Translate(Vector3.up * Time.deltaTime * jumpSpeed);
        }
        
    }
    private void FixedUpdate()
    {
        rb.MovePosition(rb.position + moveAmount);
    }
}

Unity创建一个移动的第三人称角色并实现基本的移动跳跃功能通常涉及以下几个步骤: 1. 创建角色模型:首先,你需要在Unity Asset Store或其他资源库下载或制作一个人物模型(包括骨架动画),作为你的角色基础。 2. 设置空物体(Character Controller):在Hierarchy面板中右键点击,选择“3D Object” > “Empty”,然后选中它,在Inspector中添加"Character Controller"组件,这将赋予角色自动行走的基础。 3. 骨架绑定:将角色模型拖放到Character Controller下方,然后调整"Root Motion"设置为"None",因为我们需要手动控制角色的移动。 4. 添加脚本:在Assets下新建一个C#脚本,比如`PlayerController.cs`,编写用于移动跳跃的逻辑。这部分主要包括键盘监听和速度计算(例如使用`Input.GetAxis("Vertical")`获取输入的垂直方向)以及控制角色的Move()函数,同时处理跳跃动作(如检查是否按住跳跃按钮并且满足一定的高度差)。 5. 脚本实例化:在Unity编辑器中,将这个脚本分配给角色的Rigidbody组件,确保其挂载到正确的游戏对象上。 6. 测试与调试:在Scene中测试角色,通过键盘或者鼠标控制角色移动跳跃,如果需要,可以调整控制灵敏度等参数,并对代码进行必要的优化和错误排查。 ```csharp using UnityEngine; public class PlayerController : MonoBehaviour { public float speed = 5.0f; private CharacterController cc; private Rigidbody rb; void Start() { cc = GetComponent<CharacterController>(); rb = GetComponent<Rigidbody>(); } void Update() { Vector3 moveDirection = new Vector3(Input.GetAxisRaw("Horizontal"), 0, Input.GetAxisRaw("Vertical")); moveDirection = transform.TransformDirection(moveDirection); moveDirection *= speed * Time.deltaTime; if (Input.GetKeyDown(KeyCode.Space) && cc.IsGrounded()) { rb.AddForce(Vector3.up * jumpForce, ForceMode.Impulse); } else { cc.SimpleMove(moveDirection); } } [SerializeField] private float jumpForce = 10.0f; } ```
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值