UNITY/Unity Study43 Sidequest 설치하기 1. 위에 링크에서 pc에 맞는 파일 다운 https://sidequestvr.com/setup-howto SideQuest: Oculus Quest Games & Apps including AppLab Games ( Oculus App Lab ) SideQuest is the early access layer for Virtual Reality. Get access to the latest Oculus Quest Games, Oculus App Lab games & lots of free apps on applab and sideload. sidequestvr.com 2. 파일 설치 3. 오큘러스랑 PC 연결하기 케이블로 연결하고 액세서리 허용 뜨면 허가하기 4. 메타퀘스트에서 개발자 계정 만들기 ht.. 2023. 7. 27. 해결 - 임포트했는데 분홍색으로 보임 메테리얼 Shader을 Dummy Pipline > Standard로 바꾸기 (안되면 VariantStrippingTestsShader 로 바꿔도 색이 원래대로 보입니다.) 2023. 7. 27. 유니티 시민강좌 4일차 Defalt Icon - 게임 이미지 splash Image - 처음에 뜨는 로고 소속 단체 애니메이션을 애니매이터가 사용하는거 인트로창에 새들 날아가는 앤메이션 추가하기 파티클 이펙트 오브젝트 날리기 형태 - Renderer에 material 2023. 7. 20. 유니티 시민강좌 3일 씬 이동 using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.SceneManagement; using UnityEngine.UI; public class UImanager : MonoBehaviour { private void Awake() { DontDestroyOnLoad(gameObject); } // Start is called before the first frame update void Start() { } // Update is called once per frame public void MoveScene(int num) { SceneManager.LoadScene(num.. 2023. 7. 19. 유니티 시민강좌 1,2일차 세로 게임 https://youtu.be/0LXF6L0DbiQ 2023. 7. 19. 유니티 시민강좌 2일차 배경화면 움직이기(플레이하는 동안 반복) using System.Collections; using System.Collections.Generic; using UnityEngine; public class BackgroundRepeat : MonoBehaviour { public float scrollSpeed = 0.9f; //스크롤할 속도를 상수로 지정해 줍니다. private Material thisMaterial; //Quad의 Material 데이터를 받아올 객체를 선언합니다. void Start() { //객체가 생성될때 최초 1회만 호출 되는 함수 입니다. thisMaterial = GetComponent().material; //현재 객체의 Component들을 참조해 Renderer라는 .. 2023. 7. 19. 이전 1 2 3 4 5 6 7 8 다음