プレーヤーを歩かせる
歩く機能の実装
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
// (ポイント)
// この2行のコードでコンポーネントが自動的に追加されます。
[RequireComponent(typeof(CharacterController))]
[RequireComponent(typeof(AudioSource))]
public class PlayerController : MonoBehaviour
{
public float walkSpeed;
private Vector3 movement;
private CharacterController characterController;
private AudioSource audioSource;
private void Start()
{
characterController = GetComponent<CharacterController>();
audioSource = GetComponent<AudioSource>();
}
private void Update()
{
PlayerMove();
}
void PlayerMove()
{
float moveH = Input.GetAxis("Horizontal");
float moveV = Input.GetAxis("Vertical");
movement = new Vector3(moveH, 0, moveV);
characterController.Move(movement * Time.deltaTime * walkSpeed);
}
}
【2019版】X_Mission(基礎/全51回)
他のコースを見る歩く機能の実装
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
// (ポイント)
// この2行のコードでコンポーネントが自動的に追加されます。
[RequireComponent(typeof(CharacterController))]
[RequireComponent(typeof(AudioSource))]
public class PlayerController : MonoBehaviour
{
public float walkSpeed;
private Vector3 movement;
private CharacterController characterController;
private AudioSource audioSource;
private void Start()
{
characterController = GetComponent<CharacterController>();
audioSource = GetComponent<AudioSource>();
}
private void Update()
{
PlayerMove();
}
void PlayerMove()
{
float moveH = Input.GetAxis("Horizontal");
float moveV = Input.GetAxis("Vertical");
movement = new Vector3(moveH, 0, moveV);
characterController.Move(movement * Time.deltaTime * walkSpeed);
}
}
プレーヤーを歩かせる