인프런 영문 브랜드 로고
인프런 영문 브랜드 로고

인프런 커뮤니티 질문&답변

Jiro TV님의 프로필 이미지
Jiro TV

작성한 질문수

[유니티 3D] FPS 서바이벌 디펜스

기본 캐릭터 움직임

처음 playerscript 어디가 틀렸나요?

작성

·

253

1

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class PlayerController : MonoBehaviour{

[SerializeField]
private float walkSpeed;



private Rigidbody myRigid;
    
    
    // Start is called before the first frame update
    void Start()
    {
     myRigid = GetComponent<Rigidbody>();
}

    
    
    
    // Update is called once per frame
    void Update(){
    
    Move();
        
    }

    private void Move()
    {

        float _moveDirX = input.GetAxisRaw("Horizontal");
        float _moveDirZ = input.GetAxisRaw("Vertical");

        Vector3 _moveHorizontal = transfrom.right * _moveDirX;
        Vector3 _moveVertical = transfrom.forward * _moveDirZ;

        Vector3 _velocity = (_moveHorizontal + _moveVertical).normalized * walkSpeed;

        myRigid.MovePosition(transfrom.position + _velocity * Time.deltaTime);
    }

}

답변 1

0

Jiro TV님의 프로필 이미지
Jiro TV
질문자

transform의 철자는 고쳤습니다

Jiro TV님의 프로필 이미지
Jiro TV

작성한 질문수

질문하기