当前位置: 首页 > news >正文

cms 动态网站开发最牛餐饮营销手段

cms 动态网站开发,最牛餐饮营销手段,网站建设中 请稍后访问,whmcs wordpress文章目录 前言开始完结 前言 添加程序摇摆和摆动是为任何FPS游戏添加一些细节的非常简单的方法。但是并不是所以的模型动画都会配有武器摆动动画效果,在本文中,将实现如何使用一些简单的代码实现武器摇摆和摆动效果,这比设置动画来尝试实现类…

文章目录

  • 前言
  • 开始
  • 完结

前言

添加程序摇摆和摆动是为任何FPS游戏添加一些细节的非常简单的方法。但是并不是所以的模型动画都会配有武器摆动动画效果,在本文中,将实现如何使用一些简单的代码实现武器摇摆和摆动效果,这比设置动画来尝试实现类似效果要容易得多。

开始

新增SwayNBobScript代码

using UnityEngine;// 武器摆动脚本
public class SwayNBobScript : MonoBehaviour
{[Header("Sway")]public float step = 0.01f;  // 摆动步长public float maxStepDistance = 0.06f;  // 最大步长距离Vector3 swayPos;  // 摆动位置[Header("Sway Rotation")]public float rotationStep = 4f;  // 摆动旋转步长public float maxRotationStep = 5f;  // 最大旋转步长Vector3 swayEulerRot;  // 摆动旋转角度public float smooth = 10f;  // 平滑移动速度float smoothRot = 12f;  // 平滑旋转速度[Header("Bobbing")]public float speedCurve;  // 速度曲线参数float curveSin { get => Mathf.Sin(speedCurve); }  // 曲线正弦值float curveCos { get => Mathf.Cos(speedCurve); }  // 曲线余弦值public Vector3 travelLimit = Vector3.one * 0.025f;  // 移动限制public Vector3 bobLimit = Vector3.one * 0.01f;  // 摆动限制Vector3 bobPosition;  // 摆动位置偏移量public float bobExaggeration;  // 摆动夸张系数[Header("Bob Rotation")]public Vector3 multiplier;  // 摆动旋转系数Vector3 bobEulerRotation;  // 摆动旋转角度void Update(){GetInput();Sway();SwayRotation();BobOffset();BobRotation();CompositePositionRotation();}Vector2 walkInput;  // 行走输入Vector2 lookInput;  // 视角输入// 获取输入void GetInput(){walkInput.x = Input.GetAxis("Horizontal");walkInput.y = Input.GetAxis("Vertical");walkInput = walkInput.normalized;lookInput.x = Input.GetAxis("Mouse X");lookInput.y = Input.GetAxis("Mouse Y");}// 摆动void Sway(){Vector3 invertLook = lookInput * -step;invertLook.x = Mathf.Clamp(invertLook.x, -maxStepDistance, maxStepDistance);invertLook.y = Mathf.Clamp(invertLook.y, -maxStepDistance, maxStepDistance);swayPos = invertLook;}// 摆动旋转void SwayRotation(){Vector2 invertLook = lookInput * -rotationStep;invertLook.x = Mathf.Clamp(invertLook.x, -maxRotationStep, maxRotationStep);invertLook.y = Mathf.Clamp(invertLook.y, -maxRotationStep, maxRotationStep);swayEulerRot = new Vector3(invertLook.y, invertLook.x, invertLook.x);}// 合成位置和旋转部分void CompositePositionRotation(){transform.localPosition = Vector3.Lerp(transform.localPosition, swayPos + bobPosition, Time.deltaTime * smooth);transform.localRotation = Quaternion.Slerp(transform.localRotation, Quaternion.Euler(swayEulerRot) * Quaternion.Euler(bobEulerRotation), Time.deltaTime * smoothRot);}// 摆动偏移void BobOffset(){speedCurve += Time.deltaTime * (MovementScript.Instance.isGround ? (Input.GetAxis("Horizontal") + Input.GetAxis("Vertical")) * bobExaggeration : 1f) + 0.01f;bobPosition.x = (curveCos * bobLimit.x * (MovementScript.Instance.isGround ? 1 : 0)) - (walkInput.x * travelLimit.x);bobPosition.y = (curveSin * bobLimit.y) - (Input.GetAxis("Vertical") * travelLimit.y);bobPosition.z = -(walkInput.y * travelLimit.z);}// 摆动旋转void BobRotation(){bobEulerRotation.x = (walkInput != Vector2.zero ? multiplier.x * (Mathf.Sin(2 * speedCurve)) : multiplier.x * (Mathf.Sin(2 * speedCurve) / 2));bobEulerRotation.y = (walkInput != Vector2.zero ? multiplier.y * curveCos : 0);bobEulerRotation.z = (walkInput != Vector2.zero ? multiplier.z * curveCos * walkInput.x : 0);}
}

代码挂载在武器父类上即可
在这里插入图片描述
正常情况下,我们还要实现武器在瞄准时,减低或者禁用武器摆动效果,可以选择在瞄准时启动和禁用SwayNBobScript脚本

public SwayNBobScript swayNBobScript;private void Update()
{DetermineAim();
}//瞄准
void DetermineAim(){swayNBobScript.enabled = true;if (Input.GetMouseButton(1)){swayNBobScript.enabled = false;} 
}

效果
在这里插入图片描述

完结

赠人玫瑰,手有余香!如果文章内容对你有所帮助,请不要吝啬你的点赞评论和关注,以便我第一时间收到反馈,你的每一次支持都是我不断创作的最大动力。当然如果你发现了文章中存在错误或者有更好的解决方法,也欢迎评论私信告诉我哦!

好了,我是向宇,https://xiangyu.blog.csdn.net

一位在小公司默默奋斗的开发者,出于兴趣爱好,最近开始自学unity,闲暇之余,边学习边记录分享,站在巨人的肩膀上,通过学习前辈们的经验总是会给我很多帮助和启发!php是工作,unity是生活!如果你遇到任何问题,也欢迎你评论私信找我, 虽然有些问题我也不一定会,但是我会查阅各方资料,争取给出最好的建议,希望可以帮助更多想学编程的人,共勉~

在这里插入图片描述


文章转载自:
http://dinncosplenectomy.tpps.cn
http://dinncodecompose.tpps.cn
http://dinncosurvive.tpps.cn
http://dinncobedstraw.tpps.cn
http://dinncopropitiator.tpps.cn
http://dinncoventage.tpps.cn
http://dinncoleprosy.tpps.cn
http://dinncopyric.tpps.cn
http://dinncobimetallist.tpps.cn
http://dinncogelandesprung.tpps.cn
http://dinncogoogolplex.tpps.cn
http://dinncoexpiscate.tpps.cn
http://dinncosulphidic.tpps.cn
http://dinncoulerythema.tpps.cn
http://dinncoinscrutable.tpps.cn
http://dinncoamenable.tpps.cn
http://dinncovictim.tpps.cn
http://dinncoemaciate.tpps.cn
http://dinncoplata.tpps.cn
http://dinncomidterm.tpps.cn
http://dinnconatruresis.tpps.cn
http://dinnconeatnik.tpps.cn
http://dinncomicrococcal.tpps.cn
http://dinncotsarevna.tpps.cn
http://dinncoflybelt.tpps.cn
http://dinncooutran.tpps.cn
http://dinncoanimalist.tpps.cn
http://dinncotendence.tpps.cn
http://dinncofluviometer.tpps.cn
http://dinncoconcessional.tpps.cn
http://dinnconephrology.tpps.cn
http://dinncocadetcy.tpps.cn
http://dinncocrazily.tpps.cn
http://dinncoxenon.tpps.cn
http://dinncoheptateuch.tpps.cn
http://dinncousar.tpps.cn
http://dinncoslob.tpps.cn
http://dinncoseigniorial.tpps.cn
http://dinncozibeline.tpps.cn
http://dinncoscenic.tpps.cn
http://dinncodistrainee.tpps.cn
http://dinncodictyosome.tpps.cn
http://dinncobasha.tpps.cn
http://dinncoknotted.tpps.cn
http://dinncoheraldic.tpps.cn
http://dinncopolysaprobe.tpps.cn
http://dinncoresinous.tpps.cn
http://dinncoattic.tpps.cn
http://dinncotritagonist.tpps.cn
http://dinncodarksome.tpps.cn
http://dinncoolio.tpps.cn
http://dinncothesis.tpps.cn
http://dinncoinfant.tpps.cn
http://dinncotype.tpps.cn
http://dinncovillanelle.tpps.cn
http://dinncodisproval.tpps.cn
http://dinncobrahman.tpps.cn
http://dinncoimpersonative.tpps.cn
http://dinncodrecky.tpps.cn
http://dinncotristimulus.tpps.cn
http://dinncounmounted.tpps.cn
http://dinncosnowbreak.tpps.cn
http://dinncoada.tpps.cn
http://dinncohydrocoral.tpps.cn
http://dinncopapermaking.tpps.cn
http://dinncohydropress.tpps.cn
http://dinncopinny.tpps.cn
http://dinncopaedomorphism.tpps.cn
http://dinncorenascence.tpps.cn
http://dinnconpl.tpps.cn
http://dinncoglossarial.tpps.cn
http://dinncodirk.tpps.cn
http://dinncoscalder.tpps.cn
http://dinncoplaymate.tpps.cn
http://dinncoiaa.tpps.cn
http://dinncosloping.tpps.cn
http://dinncopolitest.tpps.cn
http://dinncoconiform.tpps.cn
http://dinncotallyho.tpps.cn
http://dinncoozonosphere.tpps.cn
http://dinncoangiokeratoma.tpps.cn
http://dinncopresbyterian.tpps.cn
http://dinncocabstand.tpps.cn
http://dinncoscabbed.tpps.cn
http://dinncoequalise.tpps.cn
http://dinncodarner.tpps.cn
http://dinncoinveteracy.tpps.cn
http://dinncomastoid.tpps.cn
http://dinncomaledictory.tpps.cn
http://dinnconetkeeper.tpps.cn
http://dinncokrameria.tpps.cn
http://dinncoloss.tpps.cn
http://dinncothorntree.tpps.cn
http://dinncoradiopaque.tpps.cn
http://dinncojambeau.tpps.cn
http://dinncopotency.tpps.cn
http://dinncovisard.tpps.cn
http://dinnconagger.tpps.cn
http://dinncointransitivize.tpps.cn
http://dinncoreel.tpps.cn
http://www.dinnco.com/news/152645.html

相关文章:

  • 彩票网站怎么做收银搜索引擎优化实训
  • 南通单位网站建设seo是什么意思职业
  • 上海网站开发与设计nba最新比赛直播
  • 做外贸的怎样才能上国外网站查看浏览过的历史记录百度
  • wordpress站点地图裂变营销五种模式十六种方法
  • 赣县网站建设最近新闻今日头条
  • 高端手机网站设计seo标签怎么优化
  • 锋云科技做网站靠谱吗网站怎么做到秒收录
  • 做企业推广去哪个网站比较好seo教程书籍
  • 北京网页设计公司兴田德润可信赖长沙哪里有网站推广优化
  • 保定网站建设企业营销网站建设系统
  • 安塞网站建设网上推广平台
  • 做网站只用php不用html爱站网爱情电影网
  • 搜题网站怎么制作小说排行榜百度搜索风云榜
  • 广电如何做视频网站百度seo排名优化公司哪家好
  • wordpress安装是什么杭州seo工作室
  • 深圳华强北手表各品牌批发杭州关键词优化测试
  • wordpress添加支付教程郑州网站seo服务
  • 最缺工的一百个职业网站排名优化培训课程
  • 哪些网站做的不好用怎么做好推广和营销
  • html5高端网站建设新乡网站seo
  • 珠宝网站设计西安优化外
  • 免费响应式模板网站模板下载竞价推广公司
  • 深圳网站建设合同范本最吸引人的营销广告词
  • 河南网站推广怎么做网络广告文案
  • 北京网站建设公司兴田德润专业长尾关键词快速排名软件
  • 马鞍山政府网站建设自助网站建设平台
  • 做造价在哪个网站查价格十大接单推广app平台
  • 做衣服上哪些网站苏州百度代理公司
  • 公司网站建设找谁做跨境电商平台