【发布时间】:2015-02-10 22:41:17
【问题描述】:
我正在统一创建游戏,但在将速度重置为 0 时遇到了问题。
游戏使用多个油门级别:-2 -1 0 1 2。当设置为油门级别时,对象意味着加速到设定的速度。这可行,但是当我将其重置为 0 时,即使设置了 0,速度也会将其自身设置为 0.0999999。
我该如何解决这个问题?
using UnityEngine;
using System.Collections;
using System;
public class Script_Control : MonoBehaviour {
public static float speedLvL;
public static float speed;
public static float health;
public static float manoverablity;
public static float tarSpeed;
public static float curSpeed;
// Use this for initialization
void Start () {
//setting per ship stats
speedLvL = 0F;
speed = .25F;
health = 25F;
manoverablity = .25F;
//General Stats
tarSpeed = 0F;
curSpeed = 0F;
}
// FixedUpdate is called once per Time
void FixedUpdate () {
Debug.Log(curSpeed);
//setting speed
if (speedLvL == 0F){
tarSpeed = 0.00000F;
}
if (speedLvL == 1F) {
tarSpeed = speed/2F;
}
if (speedLvL == 2F) {
tarSpeed = speed;
}
if (speedLvL == -1F) {
tarSpeed = -speed/5F;
}
if (speedLvL == -2F) {
tarSpeed = -speed/2.5F;
}
if (curSpeed < tarSpeed){
curSpeed += .1F;
}
if (curSpeed > tarSpeed){
curSpeed -= .1F;
}
transform.Translate(curSpeed, 0, 0);
}
void Update(){
if (Input.GetAxis("Throttle") > 0 && speedLvL <= 1 && speedLvL >= -2){
speedLvL = speedLvL+1;
DateTime t = DateTime.Now;
DateTime tf = DateTime.Now.AddSeconds(.25);
while (t < tf)
{
t = DateTime.Now;
}
}
if (Input.GetAxis("Throttle") < 0 && speedLvL <= 2 && speedLvL >= -1){
speedLvL = speedLvL-1;
DateTime t = DateTime.Now;
DateTime tf = DateTime.Now.AddSeconds(.25);
while (t < tf)
{
t = DateTime.Now;
}
}
if (Input.GetAxis("Stearing") < 0){
transform.Rotate(Vector3.forward* Time.deltaTime, manoverablity );
}
if (Input.GetAxis("Stearing") > 0){
transform.Rotate(Vector3.forward* Time.deltaTime, -manoverablity);
}
}
}
`
【问题讨论】: