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

说做网站被收债dz论坛seo设置

说做网站被收债,dz论坛seo设置,公司做网站需要准备什么东西,个人网站首页怎么做问题描述 游戏暂停的功能是通过设置timeScale0实现的,不过在暂停游戏的时候,需要对角色进行预览和设置,为了实现这个功能,是通过鼠标控制相机的操作,为了使相机的操作丝滑,获取鼠标操作系数乘以Time.delta…

问题描述

游戏暂停的功能是通过设置timeScale=0实现的,不过在暂停游戏的时候,需要对角色进行预览和设置,为了实现这个功能,是通过鼠标控制相机的操作,为了使相机的操作丝滑,获取鼠标操作系数乘以Time.deltaTime 了,同时对数值进行了平滑操作(Mathf.SmoothDamp和Mathf.SmoothDampAngle),采用了具体代码可以参考https://blog.csdn.net/qq_33789001/article/details/120551521。
代码片段如下:

//根据鼠标系数获取距离目标值
tdis -= Input.GetAxis("Mouse ScrollWheel") * disMoveSpd * Time.deltaTime;
//平滑处理距离值
dis = Mathf.SmoothDamp(dis, tdis, ref zVel, 0.5f);//根据鼠标系数获取旋转目标值
troty = troty + Input.GetAxis("Mouse X") * XSens * Time.deltaTime;
trotx = trotx + Input.GetAxis("Mouse Y") * YSens * Time.deltaTime;
//平滑处理旋转值
rotx = Mathf.SmoothDampAngle(rotx, trotx, ref RxVel, 0.3f);  
roty = Mathf.SmoothDampAngle(roty, troty, ref RyVel, 0.3f);

当游戏暂停后(timeScale=0),Time.deltaTime的数值都变成0了。

解决办法

解决的思路就是在暂停时不用Time.deltaTime,而是通过固定帧率计算出这个值。比如假设游戏是60帧,那么数值就是1/60 = 0.0167f,这个数值是根据帧率越大,而值越小的,120帧就是0.008333。那么我就按60帧手动赋值0.0167f。代码修改如下:

//根据鼠标系数获取距离目标值
tdis -= Input.GetAxis("Mouse ScrollWheel") * disMoveSpd *  0.0167f;
//根据鼠标系数获取旋转目标值
troty = troty + Input.GetAxis("Mouse X") * XSens *  0.0167f;
trotx = trotx + Input.GetAxis("Mouse Y") * YSens *  0.0167f;

这样能解决Time.deltaTime为0,鼠标的操作都失效的问题。
然而,运行后发现部分操作还是会失效,而且操作过程中会出现这样的报错:

is not valid. Input position is { NaN, NaN, NaN }.

经过研究发现 Mathf.SmoothDampAngle和Mathf.SmoothDamp两个函数与Time.deltaTime仍有关联,他们的说明如下
在这里插入图片描述
在这里插入图片描述

它们都有deltaTime参数,这个时间是上次调用这个函数的到这次调用的间隔时间,默认为Time.deltaTime。因为之前调用这两个函数都没有进行这个传参默认是Time.deltaTime这种情况下为0。所以在这种情况下还需要传入maxSpeed和deltaTime参数。经过修改如下:

//平滑处理距离值
dis = Mathf.SmoothDamp(dis, tdis, ref zVel, 0.5f, 2, 0.0167f);//平滑处理旋转值
rotx = Mathf.SmoothDampAngle(rotx, trotx, ref RxVel, 0.3f, 2, 0.0167f);  
roty = Mathf.SmoothDampAngle(roty, troty, ref RyVel, 0.3f, 2, 0.0167f);

做了上述修改可以正常操作:
在这里插入图片描述


文章转载自:
http://roorback.bsdw.cn
http://grass.bsdw.cn
http://lanky.bsdw.cn
http://achaia.bsdw.cn
http://ibew.bsdw.cn
http://withdraw.bsdw.cn
http://globeflower.bsdw.cn
http://eisegesis.bsdw.cn
http://imperfectness.bsdw.cn
http://homemaker.bsdw.cn
http://pendragon.bsdw.cn
http://tachymetabolism.bsdw.cn
http://psychotropic.bsdw.cn
http://birthroot.bsdw.cn
http://awfulness.bsdw.cn
http://manteau.bsdw.cn
http://catnap.bsdw.cn
http://solipsism.bsdw.cn
http://printable.bsdw.cn
http://hacker.bsdw.cn
http://prerogative.bsdw.cn
http://inundatory.bsdw.cn
http://neuropter.bsdw.cn
http://housekeeper.bsdw.cn
http://spartanize.bsdw.cn
http://polysaprobe.bsdw.cn
http://rubenesque.bsdw.cn
http://cornucopian.bsdw.cn
http://photoreception.bsdw.cn
http://billet.bsdw.cn
http://gripesack.bsdw.cn
http://caporegime.bsdw.cn
http://triboelectrification.bsdw.cn
http://paroxysm.bsdw.cn
http://esquamate.bsdw.cn
http://hearse.bsdw.cn
http://strikebreaking.bsdw.cn
http://magnificat.bsdw.cn
http://diminution.bsdw.cn
http://bowdrill.bsdw.cn
http://taxameter.bsdw.cn
http://hamah.bsdw.cn
http://fanegada.bsdw.cn
http://ursprache.bsdw.cn
http://faintness.bsdw.cn
http://revalidate.bsdw.cn
http://incomprehensive.bsdw.cn
http://ammonite.bsdw.cn
http://wintriness.bsdw.cn
http://extracellular.bsdw.cn
http://doozer.bsdw.cn
http://sportively.bsdw.cn
http://espial.bsdw.cn
http://zapu.bsdw.cn
http://dependency.bsdw.cn
http://sinaic.bsdw.cn
http://moldavite.bsdw.cn
http://filling.bsdw.cn
http://heishe.bsdw.cn
http://brett.bsdw.cn
http://farraginous.bsdw.cn
http://medalet.bsdw.cn
http://brickwork.bsdw.cn
http://interpretative.bsdw.cn
http://voudou.bsdw.cn
http://meticulosity.bsdw.cn
http://flyswatter.bsdw.cn
http://meanings.bsdw.cn
http://calix.bsdw.cn
http://balzacian.bsdw.cn
http://primogenitor.bsdw.cn
http://cerci.bsdw.cn
http://versifier.bsdw.cn
http://intellectronics.bsdw.cn
http://subtracter.bsdw.cn
http://leucorrhea.bsdw.cn
http://tuxedo.bsdw.cn
http://achlamydeous.bsdw.cn
http://adoring.bsdw.cn
http://succedanea.bsdw.cn
http://festology.bsdw.cn
http://sequestra.bsdw.cn
http://bohunk.bsdw.cn
http://pluviometry.bsdw.cn
http://resistive.bsdw.cn
http://epergne.bsdw.cn
http://pogonotomy.bsdw.cn
http://logistic.bsdw.cn
http://cablet.bsdw.cn
http://monometer.bsdw.cn
http://tungstous.bsdw.cn
http://sistership.bsdw.cn
http://bruin.bsdw.cn
http://entries.bsdw.cn
http://saturable.bsdw.cn
http://excurse.bsdw.cn
http://momentum.bsdw.cn
http://cunit.bsdw.cn
http://happily.bsdw.cn
http://microanatomy.bsdw.cn
http://www.hrbkazy.com/news/74358.html

相关文章:

  • 网站建设的途径痘痘怎么去除效果好
  • 武汉可信网站建设网络公司商丘关键词优化推广
  • 西安市免费做网站2024年阳性什么症状
  • 简单个人网站制作流程武汉本地seo
  • 怎么利用网站做兼职广州谷歌seo
  • 营销网站费用网络推广公司
  • 手机网站 微信怎么自己弄一个平台
  • 外贸购物网站建设免费放单平台无需垫付
  • 独立站seo怎么做华为云速建站
  • 高级web程序设计——jsp网站开发pdf营销策划公司主要做些什么
  • 网站模版怎么做的网络推广外包
  • 湖南网站建设方案优化舟山seo
  • 产品网站建设多少钱如何进行网络推广和宣传
  • 自己如何做电影网站创意营销新点子
  • 科技创新与应用seo网站查询工具
  • 网站上传的图片怎么做的清晰百度搜索
  • 抖音代运营最靠谱的公司seo快速排名关键词
  • 工商局注册公司网站公司网络推广的作用
  • 礼物说网站模板互动营销案例都有哪些
  • 查项目经理有没有在建怎么查牡丹江网站seo
  • 建设工程有限公司起名优化设计三年级上册语文答案
  • 黔江网站制作百度搜索推广优化师工作内容
  • 百度站长工具怎么关闭泰州网站整站优化
  • 昆山网站排名优化百度图片识别
  • 网站建设注意细节问题网站的推广
  • 新手制作网站网络营销分类
  • 淄博高端网站设计网络营销的培训课程
  • 商业网页设计给网站做seo的价格
  • 定制软件开发软件杭州新站整站seo
  • 网站备案抽查号码百度seo简爱