Unity2D-Dash && SpeedUp
Introduction
原理:
角色位置改变时,每隔一段时间记录角色的位置,然后在记录的位置上放置一个图片,在图片出现之后过一段时间就让图片渐渐消失
简述实现步骤:
1.在Unity中Create Empty(空物体),在其下面放置角色的图片
编辑
2.写代码
3.测试,修复Bug
最终效果:
Dash and SpeedUp
PlayerDash.cs(脚本挂在player上面)
变量声明
[Header("Player")]
private SpriteRenderer playerSr;
private Rigidbody2D rb;
private Vector2 movement = Vector2.zero;
public float spriteRate = 0.02f;
[Header("UpgradeSpeed")]
public float upSpeed = 5f;
public float upSpeedTime = 5f;
public float spriteUpSpeedRate = 0.25f;
private bool isUpSpeeding = false;
private GameObject[] spritePoolSpeedUp;
private float upCounter = 0;
[Header("Dash")]
public float dashTime = 0.1f;
public float dashSpeed = 20f;
public float dashRate = 2f;
private Vector2 dir= Vector2.zero;
private bool isDashing = false;
private float dashRateCounter = 0f;
private GameObject[] spritePoolDash;
private float couter = 0f;
Awake()
private void Awake()
{
rb = GetComponent<Rigidbody2D>();
playerSr = GetComponent<SpriteRenderer>();
//找到Hierarchy面板中放置Dash图片的空物体
Transform dashPool = GameObject.Find("SpritePoolDash").transform;
spritePoolDash = new GameObject[dashPool.childCount];
for (int i = 0; i < spritePoolDash.Length; i++)
{
spritePoolDash[i] = dashPool.GetChild(i).gameObject;
}
//找到Hierarchy面板中放置SpeedUp图片的空物体
Transform speedUpPool = GameObject.Find("SpritePoolSpeedUp").transform;
spritePoolSpeedUp = new GameObject[speedUpPool.childCount];
for (int i = 0; i < spritePoolSpeedUp.Length; i++)
{
spritePoolSpeedUp[i] = speedUpPool.GetChild(i).gameObject;
}
}
Update()
private void Update()
{
movement.x = Input.GetAxisRaw("Horizontal");
movement.y = Input.GetAxisRaw("Vertical");
//如果冷却时间 > 0,开始冷却倒计时
if (dashRateCounter > 0)
{
dashRateCounter -= Time.deltaTime;
}
//按下空格键,并且角色正在移动,Dash
if (Input.GetKeyDown(KeyCode.Space) && movement != Vector2.zero)
{
//如果正在Dash 或 SpeedUp 或 Dash技能的冷却时间 > 0,则不执行Dash方法
if (isDashing || isUpSpeeding || dashRateCounter > 0)
return;
dir = movement.normalized * 5;
StartCoroutine(Dash());
}
//按下“B”键,SpeedUp
if (Input.GetKeyDown(KeyCode.B))
{
if (isDashing || isUpSpeeding)
return;
StartCoroutine(UpGradeSpeed());
}
}
Dash部分
private IEnumerator Dash()
{
//重置冷却计时器
dashRateCounter = dashRate;
//图片出现时间间隔
spriteRate = 0.02f;
//
StartCoroutine(DashSprites());
couter = 0;
//记录player当前的状态,正在冲刺,不可以进行其他技能的操作
isDashing = true;
while (couter <= dashTime)
{
couter += Time.deltaTime;
//角色朝着按键方向Dash
rb.position = Vector2.MoveTowards(rb.position, rb.position + dir, dashSpeed * Time.deltaTime);
if (couter > dashTime)
{
isDashing = false;
}
yield return null;
}
}
//放置图片
private IEnumerator DashSprites()
{
for (int i = 0; i < spritePool.Length; i++)
{
//将图片设为可见
spritePool[i].SetActive(true);
//重置图片的颜色(其实是重置其透明度,重置alpha为255)
spritePool[i].GetComponent<SpriteRenderer>().color = Color.white;
//设置图片的朝向,与角色图片的朝向一致
spritePool[i].GetComponent<SpriteRenderer>().flipX = playerSr.flipX;
//在角色当前的位置上放置一张图片
spritePool[i].transform.position = transform.position;
//相隔0.02秒放置一张
yield return new WaitForSeconds(spriteRate);
}
}
SpeedUp部分
private IEnumerator UpGradeSpeed()
{
//修改图片出现的时间间隔
spriteRate = 0.25f;
isUpSpeeding = true;
StartCoroutine(UpSpeedSprites());
//设置一个计时器
upCounter = upSpeedTime;
while (upCounter >= 0f)
{
//计时器>=0就让其倒计时
upCounter -= Time.deltaTime;
rb.position = Vector2.MoveTowards(rb.position, rb.position + movement, upSpeed * Time.deltaTime);
//SpeedUp结束
if (upCounter <= 0)
{
isUpSpeeding = false;
}
yield return null;
}
}
private IEnumerator UpSpeedSprites()
{
for (int i = 0; i < spritePoolUpSpeed.Length; i++)
{
spritePoolUpSpeed[i].SetActive(true);
spritePoolUpSpeed[i].GetComponent<SpriteRenderer>().color = Color.white;
spritePoolUpSpeed[i].GetComponent<SpriteRenderer>().flipX = playerSr.flipX;
spritePoolUpSpeed[i].transform.position = transform.position;
yield return new WaitForSeconds(spriteRate);
}
}
SpriteFade.cs(脚本挂在以下物体上面)
编辑
using System.Collections;
using UnityEngine;
public class SpriteFade : MonoBehaviour
{
//图片从 不透明 到 透明 的速率
public float spriteFadeTime = 0.01f;
//获取脚本所挂在的物体的图片的SpriteRenderer,用来改变其颜色
private SpriteRenderer sr;
private void Awake()
{
sr = GetComponent<SpriteRenderer>();
}
private void Update()
{
//如果图片在Hierarchy面板上面显示(表示触发了Dash技能,图片出现了)
if (gameObject.activeInHierarchy)
{
StartCoroutine(FadeSprite());
}
}
private IEnumerator FadeSprite()
{
while (gameObject.activeInHierarchy)
{
//渐渐消失
sr.color = Color.Lerp(sr.color, Color.clear, spriteFadeTime * Time.deltaTime);
//消失之后,将图片隐藏
if(sr.color == Color.clear)
{
gameObject.SetActive(false);
}
//每帧执行
yield return null;
}
}
}
Unity2D-Dash && SpeedUp的更多相关文章
- Dash文档制作教程
前言 什么是Dash 面向程序员的文档库(Mac) 代码片段管理工具 这是强烈推荐给每天在各种API文档中摸爬滚打的程序员们的神器. 为什么要自己制作文档 官方的源中没有相关文档 文档在离线下体验更好 ...
- Unity2D 里的场景缩放实现
闲时以 Unity2D 练手时想实现端游里的场景缩放功能,而网上的代码几乎全是 3D 场景缩放相关,所以我自己编写了个 2D 场景缩放脚本(C#). 代码如下: using UnityEngine; ...
- Android开发工具之Dash
作为一名死coder,每天最常见的动作就是查看各种API文档,你一定也有过同时打开N个窗口(HTML.PDF.CHM),不停的在编辑器与文档之间切换的感受吧?怎么说呢,其实我很讨厌这种枯燥无味的动作, ...
- 时光煮雨 Unity3D实现2D人物动画② Unity2D 动画系统&资源效率
系列目录 [Unity3D基础]让物体动起来①--基于UGUI的鼠标点击移动 [Unity3D基础]让物体动起来②--UGUI鼠标点击逐帧移动 时光煮雨 Unity3D让物体动起来③—UGUI DoT ...
- Unity2D多分辨率屏幕适配方案(转载)
一下内容转自:http://imgtec.eetrend.com/forum/3992 此文将阐述一种简单有效的Unity2D多分辨率屏幕适配方案,该方案适用于基于原生开发的Unity2D游戏,即没有 ...
- Ubuntu下shell脚本运行异常:bash和dash的区别
Ubuntu下我用bash到语法写了一个shell脚本(准确的说是把书上的脚本敲进电脑),在ubuntu下,用sh test.sh来运行,但是出现了意料之外到结果,比如echo -e "\n ...
- Dash
作为一名死coder,每天最常见的动作就是查看各种API文档,你一定也有过同时打开N个窗口(HTML.PDF.CHM),不停的在编辑器与文档之间切换的感受吧?怎么说呢,其实我很讨厌这种枯燥无味的动作, ...
- debian和ubuntu的sh dash bash
Ubuntu和debian 的 shell 默认安装的是 dash,而不是 bash.运行以下命令查看 sh 的详细信息,确认 shell 对应的程序是哪个:$ls -al /bin/sh dash ...
- Unity2D之让土豆人动起来
Unity2D功能 Unity3D最新的4.3版本,其中最大的新功能就是这个2D工具了.我这里简单介绍一下这个2D工具是怎样使用的. 首先,在我们创建项目的时候,面板上面多了一个2d和3d的选择,这两 ...
随机推荐
- UiPath程序设计文档
1. [RPA之家]添加数据列UiPath.Core.Activities.AddDataColumn 链接: https://pan.baidu.com/s/1RRMw4voqJru-fJSoC3W ...
- 疫情在校学生之——用python对某校园热水服务app进行测试,实现自动免费用水(仅供参考)
写在前面的过场话: 本文只是对某校园热水服务app做个测试,其实本人并没有做大坏事,并未传播相关技术,文章以下内容的敏感部分会打码,并且相关厂商已经正在进行漏洞修复,大家看看就好.文章后会提供&quo ...
- 对象映射 - Mapping.Mapster
前言 在项目中我们会经常遇到对象的映射,比如像Model和Dto之间的映射,或者是对象的深拷贝,这些都是需要我们自己实现的.此时,项目中会出现很多初始化对象的代码,这些代码写起来相当的枯燥乏味,那么有 ...
- Halcon 模板匹配实战代码(一)
模板图片:目标是获取图像左上角位置的数字 直接想法,直接用一个框将数字框出来,然后对图片进行模板匹配(不可行,因为图像中的数字不是固定的) 所以需要选择图像中的固定不变的区域来作为模板,然后根据模板区 ...
- 爬虫(14) - Scrapy-Redis分布式爬虫(1) | 详解
1.什么是Scrapy-Redis Scrapy-Redis是scrapy框架基于redis的分布式组件,是scrapy的扩展:分布式爬虫将多台主机组合起来,共同完成一个爬取任务,快速高效地提高爬取效 ...
- 解决linuxdeployqt报错——系统版本过新的问题
参考文章:https://icode.best/i/45016240865860 目前测试有效 大概你会跳转到这个议题 issues#340 显示这样类似的报错 linuxdeployqt 5 (co ...
- Zend Studio,php 生成报错
Zend Studio Description Resource Path Location Type Undefined CSS file ("../red-treeview.css&q ...
- HCNP Routing&Switching之BFD
BFD技术背景 什么是BFD?它的主要作用是做什么的,这是我们学习BFD需要搞清楚的地方: BFD是Bidirectional Forwarding Detection的缩写,翻译成中文就是双向转发检 ...
- SQL基本概念和SQL通用语法
SQL 1.什么是SQL? Structured Query Language:结构化查询语句 其实就是定义了操作所有关系型数据库的规则.每一种数据库操作的方式存在不一样的地方称为"方言&q ...
- 性能浪费的日志案例和使用Lambda优化日志案例
有些场景的代码执行后,结果不一定会被使用,从而造成性能浪费.而Lambda表达式是延迟执行的,这正好可以作为解决方案,提升性能 性能浪费的日志案例 日志可以帮助我们快速的定位问题,记录程序运行过程中的 ...