티스토리 뷰
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class PlayerBall : MonoBehaviour
{
public float jumpPower = 10;
Rigidbody rigid;
private void Awake()
{
rigid = GetComponent<Rigidbody>();
}
private void Update()
{
if (Input.GetButtonDown("Jump"))
{
rigid.AddForce(new Vector3(0, jumpPower, 0), ForceMode.Impulse);
}
}
private void FixedUpdate()
{
float h = Input.GetAxisRaw("Horizontal");
float v = Input.GetAxisRaw("Vertical");
rigid.AddForce(new Vector3(h,0,v),ForceMode.Impulse);
}
}
'프로그래밍 > 유니티' 카테고리의 다른 글
유니티 GPGS 플레이 콘솔 연동 방법 (7) | 2022.09.30 |
---|---|
유니티 GPGS 연동 (전체) (0) | 2022.09.26 |
유니티 게임 앱 광고 넣기 (0) | 2022.05.30 |
유니티 게임앱 구글 플레이 스토어 등록 방법 (0) | 2022.05.30 |
유니티 애드몹 광고 달기 (0) | 2022.05.18 |
댓글