- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
问题:有时,当我的战斗机朝一个方向奔跑时(因为我按住方向按钮,如 A、D、左或右),我迅速松开该方向的按钮并按下按钮对于相反的方向,战斗机继续朝第一个提到的方向奔跑。这不会一直发生,它是“随机的”。此外,这与跳跃/坠落无关,因为战斗机是否在空中并不重要。
我有 4 个类,其中战斗机运动在更新方法中受到监管:
输入类,只是一些函数
public static void UpdateNew(GameTime gt)
{
// fires before any other update is called (before player/level/fighter update...)
frameTime = (float)gt.ElapsedGameTime.TotalSeconds;
ksNew = Keyboard.GetState();
msNew = Mouse.GetState();
}
public static void UpdateOld()
{
// fires after every other update is called (after player/level/fighter update...)
ksOld = ksNew;
msOld = msNew;
scrollValue = msOld.ScrollWheelValue;
}
public static bool Down(Keys k)
{ return ksNew.IsKeyDown(k); }
播放器类:
Fighter fighter; //set in constructor, it's not null
public void Update()
{
fighter.RunDirection = Input.Down(rightK).ToInt() - Input.Down(leftK).ToInt();
fighter.Jump = Input.Down(jumpK);
fighter.Punch = Input.Clicked(punchK);
}
// where .ToInt() converts bool to 1 if it's true, and to 0 if it's not true
战斗机类
public int RunDirection
{ set { runMultiplier = MathHelper.Clamp(value, -1, 1); } }
public override void Update (float elTime, List<Entity> entities)
{
// region: checks for jump, works fine
AddForce(
// X - Horizontal Force
((Math.Abs(Force.X) < runSpeed) ? runMultiplier * runSpeed * 5 * elTime : 0) // movement controls
+ ((runMultiplier == 0) ? -Force.X.Sign() * runSpeed * 5 * elTime : 0) // traction when not moving
,
// Y - Vertical Force
((!canJump) ? 900 * elTime : 0) // gravity
- jumpDecreasingSpeed * elTime // jump
);
// region: Check collision and puts force.X or force.Y to 0 when it's colliding with other
// entities and put's player next to that entity
//set bool that stores last direction of looking (left/right)
if (runMultiplier != 0) lookingRight = runMultiplier > 0;
//checks if animation should be changed (idle, running, jumping or falling)
CheckAnimation();
//update currently playing animation
currentAnim.Update(elTime);
//stop fighters horisontal movement if it's small enough
if (Math.Abs(Force.X) < 1) AddForce(-Force.X, 0);
// after all calculations, move fighter by the force that is currently imacting him.
Position += Force * elTime;
}
级别类
public void Update (float elTime)
{
// PLAYERS
p1.Update(); // updates only controls, as mentioned above, not the fighter itself.
p2.Update();
// update ENTITIES, player's fighters, and walls (their update method is empty)
// player's fighters are added to maps "entities" list.
for (int i = 0; i < map.entities.Count; i++)
map.entities[i].Update(elTime, map.entities.Where(q => q != map.entities[i]).ToList());
}
每一帧的简要更新顺序
游戏主要更新
---输入.UpdateNew
---关卡更新
------播放器更新
------斗士.更新
----------检查玩家是否想让你移动,并增加力量(速度)
----------检查碰撞,如果碰撞则设置力为0移动
--------所有计算完成后,对当前位置加力
---输入.UpdateOld
问题:为什么会这样?为什么它如此“随机”?我知道这是有原因的,但我无法确定。
最佳答案
导致它的一种可能情况是当 Math.Abs(Force.X) >= runSpeed
然后你添加 0 力。
如果 Force.X >= runSpeed 那么 0
runMultiplier == 0 (false 由于立即切换) 然后 0
加力(0+0)
// X - Horizontal Force
((Math.Abs(Force.X) < runSpeed) ? runMultiplier * runSpeed * 5 * elTime : 0) // movement controls
+ ((runMultiplier == 0) ? -Force.X.Sign() * runSpeed * 5 * elTime : 0) // traction when not moving
那么这将永远不会被执行,因为 Math.Abs(Force.X) >= 1
(我假设 runspeed >= 1)。
//stop fighters horisontal movement if it's small enough
if (Math.Abs(Force.X) < 1) AddForce(-Force.X, 0);
这可能是为什么在一个方向立即被另一个方向替换的 1 帧缓冲区中切换键可以使您的力为 0 的一个可能原因;这将导致战斗机继续沿先前的方向前进。
关于c# - 播放器移动的具体而简单的代码无法按预期工作(XNA),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37943910/
我是 Robert,我在使用 JavaScript 时遇到了一些问题。 我得到了一个 (这是隐藏的)。我唯一想问你的是:我想检查日期是否在 中已通过。如果通过了我想改变CSS中容器的背景颜色。不幸的
所以我的问题是我想要求输入使用扫描仪的信息,但它根本不打印出来。当它显示跳过的扫描仪的值时,Scanner CheeseType = new Scanner(System.in);,我得到 null。
Fe_Order_Items fe_order_items_id fe_order_specification_id fe_users_id fe_menu_items_id fe_order_ite
人们普遍提到 - “Celery 是一个基于分布式消息传递的异步任务队列/作业队列”。虽然我知道如何使用 Celery 工作人员等。但内心深处我不明白分布式消息传递的真正重要性和意义以及任务队列在其中
我试图理解下面的代码,但有一些我以前从未见过的东西,那就是:“\&\&” 这是代码: int main() { fork() \&\& (fork() || fork()); exit(EXIT_SU
您好,我是论坛新手。 我有很多使用 python 的经验,但没有使用 tkinter 的经验。 这是我的代码: from tkinter import * def Done(): celEn
在 C# 中,假设我们有一个通用类和一个具体类 [Serializable] public class GenericUser { ... [Serializable] public class Co
我尝试使用的库有一个通用抽象类,其中有两个实现该基础的子类。我想编写一个类,它将根据构造函数参数的参数类型自动创建其中一个子级的实例。 基类没有默认构造函数 基类的构造函数也需要其他通用类的实例 代码
我是 Angular 的新手,我一直在尝试了解它的工作原理。我正在制作一个简单的应用程序,其中有人可以通过简单的 html 界面添加用户并使用 SQLite 将其存储在数据库中,然后他们可以编辑或删除
我想创建一个用于存储数据的对象,限制读/写访问。 例如: OBJ obj1; OBJ obj2; // DataOBJ has 2 methods : read() and write() DataO
注入(inject)/隔离密封在 dll 中且不实现接口(interface)的类的首选方法是什么? 我们使用 Ninject。 假设我们有一个类“Server”,我们想要注入(inject)/隔离“
在花费了至少 10 个小时的时间浏览在线资源、视频和教程之后,我有两个关于将我的 Android 应用程序与 mySQL 数据库连接的问题。 保存文件 1) 所有教程都将 php 文件保存在 C/WA
许多有经验的开发人员建议不要使用 Django multi-table inheritance因为它的性能不佳: Django gotcha: concrete inheritance通过 Jacob
我知道我冒着挨揍的风险,但我觉得我在这件事上要绕圈子。为了让模型可用于多个项目,我们已将模型移出到一个单独的项目(一个 DLL)中,作为一系列要实现的接口(interface)。我们的界面上有这一行:
按照目前的情况,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我遇到了一个特定 mac 的问题,它没有显示我正确构建的某个网站。我测试过的所有其他 mac 和 pc 都能正确显示网站,但是在所有浏览器中这个特定的 mac 显示不正确就像提到的那样,这在其他每台计
给定这段代码 public override void Serialize(BaseContentObject obj) { string file = ObjectDataStoreFold
我已经搜索了网络和我的服务器,但我无法找到我网站的 php.ini。我的网站出现以下错误。 Class 'finfo' not found Details G:\inetpub\wwwroot\lan
SQL 爱好者: 我正在尝试通过玩以下用例来挖掘我一些生疏的 sql 技能: 假设我们有一家有线电视公司,并且有跟踪的数据库表: 电视节目, 观看我们节目的客户,以及 观看事件(特定客户观看特定节目的
我正在设计一个使用 HTML5 网络组件(HTML 导入、影子 DOM、模板和自定义 HTML 元素)的网络应用程序,这些组件是通过普通 JavaScript(无框架)实现的。 Web 应用程序相当简
我是一名优秀的程序员,十分优秀!