csharp refactor.cs
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp refactor.cs相关的知识,希望对你有一定的参考价值。
float dx = Input.GetAxis("Horizontal");
float dy = Input.GetAxis("Vertical");
direction = new Vector3(dx, dy, 0);
/*
if (Input.GetButton(inputUp))
{
direction.y = 1;
}
else if (Input.GetButton(inputDown))
{
direction.y = -1;
}
else
{
direction.y = 0;
}
if (Input.GetButton(inputForward))
{
direction.x = 1;
}
else if (Input.GetButton(inputBack))
{
direction.x = -1;
}
else
{
direction.x = 0;
}
if (Input.GetButton(inputUp))
{
direction.z = 1;
}
else if (Input.GetButton(inputDown))
{
direction.z = -1;
}
else
{
direction.z = 0;
}
*/
以上是关于csharp refactor.cs的主要内容,如果未能解决你的问题,请参考以下文章