浏览代码

fix dash timer

/develop/dodgeball-tests
HH 4 年前
当前提交
4c0c1ea6
共有 1 个文件被更改,包括 3 次插入2 次删除
  1. 5
      Project/Assets/ML-Agents/Examples/Dodgeball/Scripts/AgentCubeMovement.cs

5
Project/Assets/ML-Agents/Examples/Dodgeball/Scripts/AgentCubeMovement.cs


public float standingForcePositionOffset = .5f;
void FixedUpdate()
{
strafeCoolDownTimer += Time.fixedDeltaTime;
dashCoolDownTimer += Time.fixedDeltaTime;
if (!allowHumanInput)
{
return;

// print("AddFallingForce");
}
strafeCoolDownTimer += Time.fixedDeltaTime;
dashCoolDownTimer += Time.fixedDeltaTime;
if (applyStandingForce)
{

正在加载...
取消
保存