public class PlayerController : MonoBehaviour
{
public float speed;
void FixedUpdate ()
{
float moveH = Input.GetAxis ("Horizontal");
float moveV = Input.GetAxis ("Vertical");
//動かす処理
Vector3 nowP = new Vector3(moveH,0,moveV);
GetComponent<Rigidbody>().velocity = nowP * speed;
//傾きの処理
GetComponent<Rigidbody>().MoveRotation(Quaternion.Euler (0.0f, 0.0f, moveH * -50.0f));
//移動範囲の制限する処理
GetComponent<Rigidbody>().position = new Vector3(
Mathf.Clamp(GetComponent<Rigidbody>().position.x, -7, 7),
0.0f,
Mathf.Clamp(GetComponent<Rigidbody>().position.z, -4, 14)
);
}
}
public class PlayerController : MonoBehaviour
{
public float speed;
Rigidbody rb = GetComponent<Rigidbody>();
void FixedUpdate ()
{
//省略
}
}
public class PlayerController : MonoBehaviour
{
public float speed;
void Start(){
Rigidbody rb = GetComponent<Rigidbody>();
}
void FixedUpdate ()
{
//省略
}
}
public class PlayerController : MonoBehaviour
{
public float speed;
void Start(){
Rigidbody rb = GetComponent<Rigidbody>();
}
void FixedUpdate ()
{
float moveH = Input.GetAxis ("Horizontal");
float moveV = Input.GetAxis ("Vertical");
Vector3 nowP = new Vector3(moveH,0,moveV);
rb.velocity = nowP * speed;
rb.MoveRotation(Quaternion.Euler (0.0f, 0.0f, moveH * -50.0f));
rb.position = new Vector3(
Mathf.Clamp(rb.position.x, -7, 7),
0.0f,
Mathf.Clamp(rb.position.z, -4, 14)
);
}
}
ヒエラルキービューが、この画像のようになればOK。