12.创建平台逻辑类
12.1 知识点
要点分析
创建PlatformLogic平台逻辑处理类
希望的是每个玩家都有自己的平台逻辑处理类。定义平台逻辑处理类关联的游戏对象,游戏对象当前平台和所有平台数据,构造函数中赋值。给外部提供一个用于每帧检测玩家平台变化的函数,给关联的游戏对象使用。
/// <summary>
/// 平台逻辑处理类
/// </summary>
public class PlatformLogic
{
//对应游戏对象
private RoleObj obj;
//游戏对象当前所在平台
private Platform nowPlatform;
//游戏中所有平台数据
private List<Platform> platformData;
public PlatformLogic(RoleObj obj)
{
this.obj = obj;
nowPlatform = null;
platformData = PlatformDataMgr.Instance.platformList;
}
/// <summary>
/// 用于每帧检测玩家平台变化的函数
/// </summary>
public void UpdateCheck()
{
}
}
玩家脚本中定义一个平台逻辑处理类对象
在玩家脚本中定义一个平台逻辑处理类对象,初始化传入自己。每一帧调用平台逻辑处理类的检测玩家平台变化的函数。
public class RoleObj : MonoBehaviour
{
//用于处理上下平台的逻辑对象
PlatformLogic platformLogic;
void Start()
{
platformLogic = new PlatformLogic(this);
}
void Update()
{
#region 平台切换相关逻辑
platformLogic.UpdateCheck();
#endregion
}
}
12.2 知识点代码
PlatformLogic
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
/// <summary>
/// 平台逻辑处理类
/// </summary>
public class PlatformLogic
{
//对应游戏对象
private RoleObj obj;
//游戏对象当前所在平台
private Platform nowPlatform;
//游戏中所有平台数据
private List<Platform> platformData;
public PlatformLogic(RoleObj obj)
{
this.obj = obj;
nowPlatform = null;
platformData = PlatformDataMgr.Instance.platformList;
}
/// <summary>
/// 用于每帧检测玩家平台变化的函数
/// </summary>
public void UpdateCheck()
{
}
}
RoleObj
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class RoleObj : MonoBehaviour
{
//移动速度
public float moveSpeed = 5;
//初始跳跃时的 竖直上抛速度
public float initYSpeed = 10;
//重力加速度
public float G = 9.8f;
//影子对象
public GameObject shadowObj;
//当人跳这么高时 影子缩放为0 消失
public float jumpMaxH = 5;
//影子的位置
private Vector3 shadowPos;
//跳跃当中 实时的速度是多少
private float nowYSpeed;
//当前平台的 Y 值
private float nowPlatformY;
//二段跳计数
private int jumpIndex;
//动画控制相关组件
private Animator roleAnimator;
//输入移动相关的系数
private float horizontalMove;
//用于处理上下平台的逻辑对象
PlatformLogic platformLogic;
void Start()
{
roleAnimator = this.GetComponent<Animator>();
shadowPos = shadowObj.transform.position;//避免影子挡住脚
platformLogic = new PlatformLogic(this);
}
void Update()
{
#region 移动相关逻辑
//得到水平方向的输入 一般就是左右键输入
//-1 0 1 三个值
horizontalMove = Input.GetAxisRaw("Horizontal");
//面朝左
if (horizontalMove < 0)
this.transform.rotation = Quaternion.Euler(0, -90, 0);
else if (horizontalMove > 0)
this.transform.rotation = Quaternion.Euler(0, 90, 0);
//当有输入时,直接朝面朝向移动即可
if (horizontalMove != 0)
this.transform.Translate(Vector3.forward * moveSpeed * Time.deltaTime);
//跑步动画的切换
roleAnimator.SetBool("isRun", horizontalMove != 0);
#endregion
#region 跳跃逻辑
if(Input.GetKeyDown(KeyCode.Space) && jumpIndex != 2)
{
//跳跃
roleAnimator.SetBool("isJump", true);
//当前Y速度 = 竖直上抛的初始速度
nowYSpeed = initYSpeed;
//二段跳计数 只能连续跳两次
++jumpIndex;
}
//跳跃状态时 Y 坐标的变化
if(roleAnimator.GetBool("isJump"))
{
//位移逻辑
this.transform.Translate(Vector3.up * nowYSpeed * Time.deltaTime);
//收到重力加速度的影响 每一帧 都去改变当前的移动速度
nowYSpeed -= G * Time.deltaTime;
//当竖直方向的速度小于等于0 就应该播放 下落的动画
roleAnimator.SetBool("isFall", nowYSpeed <= 0);
//判断是否落在了对应平台上
if( this.transform.position.y <= nowPlatformY)
{
//停止跳跃动画
roleAnimator.SetBool("isJump", false);
roleAnimator.SetBool("isFall", false);
//避免下落时 落到"平台里" 把它拉回来
Vector3 pos = this.transform.position;
pos.y = nowPlatformY;
this.transform.position = pos;
//落地时才去清楚二段跳计数
jumpIndex = 0;
}
}
#endregion
#region 影子相关逻辑
//移动相关
shadowPos.x = this.transform.position.x;//跟随玩家动
shadowPos.y = nowPlatformY;//影子的y的位置 一定是和平台一致的
shadowObj.transform.position = shadowPos;
//缩放相关
shadowObj.transform.localScale = 1.5f * Vector3.one * Mathf.Max(0, (jumpMaxH - (this.transform.position.y - nowPlatformY))) / jumpMaxH;
#endregion
#region 平台切换相关逻辑
platformLogic.UpdateCheck();
#endregion
}
}
转载请注明来源,欢迎对文章中的引用来源进行考证,欢迎指出任何有错误或不够清晰的表达。可以在下面评论区评论,也可以邮件至 785293209@qq.com