분류 전체보기173 유니티 미니맵 구현 개요 유니티 미니맵을 구현해 보았다. 참고한 출처 https://blog.theknightsofunity.com/implementing-minimap-unity/ [Tutorial] Implementing a Minimap in Unity - The Knights of Unity This tutorial will show developers how to create a depth mini-map in Unity. Implementing a minimap in Unity3D games is easier than you think! blog.theknightsofunity.com 조이스틱 구현은 밑의 링크 참고 https://xortl98.tistory.com/98?category=1069828 유니티 3인.. 2022. 4. 20. 3인칭 조이스틱 이력서?? 보호되어 있는 글 입니다. 2022. 4. 20. 유니티 캠퍼스바, 실시간 시간 구현 개요 배틀그라운드처럼 위에 캠퍼스바와 실시간 시간을 입력받는 것을 구현해보았다. 출처 캠퍼스바 참고 https://www.youtube.com/watch?v=aMEHOU6xpWA 스크립트 캠퍼스바 구현 더보기 유튜브에 나오는 캠퍼스바 이미지 파일로 하면 에러가 나서 따로 캠퍼스바 이미지를 다운받아 사용했다. using UnityEngine.UI; using UnityEngine; public class Compass : MonoBehaviour { public RawImage CompassImage; public Transform Player; public Text CompassDirectionText; public void Update() { //Get a handle on the Image's uvR.. 2022. 4. 20. 유니티 3인칭 조이스틱 구현 개요 유니티 3인칭 조이스틱을 구현해보았다. 출처 조이스틱은 베르님 유튜브를 참고하여 만들어 보았다. https://www.youtube.com/watch?v=MZHESbKQjpo 플레이 영상 패키지 스크립트 수정 더보기 우측으로 카메라를 회전시키면서 했었는데 더 효율적인 코드를 발견하였다. 우측 조이스틱을 OFF 시킨 후 패널에 드래그 할 공간을 넣어놓은 뒤 밑의 스크립트를 넣어주면 조이스틱 없이 패널 영역안에서 손가락을 드래그하면 회전이 된다. using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.EventSystems; public class CameraDragRotation : .. 2022. 4. 20. 이전 1 ··· 18 19 20 21 22 23 24 ··· 44 다음