목록2023/08/23 (1)
아카이브
Hero Shooter 조이스틱 이동, 포탈생성
1. 조이스틱을 통해 플레이어 캐릭터 이동 2. 포탈 생성 후 플레이어 캐릭터가 포탈위로 이동하면 메세지 생성 TutorialMain using System.Collections; using System.Collections.Generic; using UnityEngine; public class TutorialMain : MonoBehaviour { [SerializeField] private VariableJoystick joystick; [SerializeField] private Player player; [SerializeField] private Portal portal; private void Start() { this.portal.onReachPortal = () => { Debug.Log..
유니티 심화
2023. 8. 23. 18:21