본문 바로가기

Unity9

[ARCore] Unity(2019.3 ~ 2019.4) Gradle 해결 https://developers.google.com/ar/develop/unity/android-11-build Unity로 Android 11 용으로 빌드 | ARCore | Google Developers Android 11 (API 레벨 30)을 지원하기 위해 AR Foundation 용 ARCore 확장 및 Unity 용 ARCore SDK (1.19 이상)에 패키지 가시성 요소가 추가되었습니다. Unity 2018.4 이상에서 이러한 버전의 ARCore를 사용하는 경우 요 developers.google.com ※ 위의 문서에 설명이 잘 되어있지만 조금 더 사용자 편의에 맞춰 설명하고자 작성한 글이다. 1. https://gradle.org/releases/ 해당 링크에 접속해서 gradle .. 2021. 7. 16.
[Vuforia] Add Traget Image Condition 충족시키는법 https://www.picturetopeople.org/image_utilities/image_converter.html Image Converter Sending your request to Picture to People server ... It can take a minute to calculate, so please wait. If you receive a file to download, after saving it, refresh this page pressing F5. www.picturetopeople.org ※ 주의사항 1. 크롬에서 사용하는 것이 좋다. 2. jpg파일이라면 그림판을 이용하여 png 파일로 새로 만들어준다. 3. 이미지 크기는 1MB를 넘으면 convert를 할 수 없기.. 2021. 7. 15.
Google VR SDK - Android https://developers.google.com/vr/develop/unity/get-started-android Quickstart for Google VR SDK for Unity with Android This guide shows you how to set up Google VR development with Unity and build a demo Daydream or Cardboard app for Android. Set up your development environment Hardware requirements: Software requirements: Install Unity: Recommended version: LTS release 20 developers.google.com 2021. 7. 14.
[Animator] 애니메이션 using System.Collections; using System.Collections.Generic; using UnityEngine; public class Fighter : MonoBehaviour { Animator mAvatar; void Start() { mAvatar = GetComponent(); } void Update() { if (Input.GetKeyDown(KeyCode.Space)) { mAvatar.SetTrigger("ATTACK"); } } } using System.Collections; using System.Collections.Generic; using UnityEngine; public class Fighter : MonoBehaviour { // Compone.. 2021. 7. 14.