유니티(Unity) 모바일(안드로이드, iOS) 구글 애드몹 광고가 표시되지않는 문제 문서 모음구글 애드몹 광고가 게재되지 않는 일반적인 문제 유형 https://support.google.com/admob/answer/9469204?hl=ko구글 애드몹 광고 오류 코드 설명(AdMob Error Codes & Logs) https://support.google.com/admob/thread/3494603?sjid=13233876566105748727-AP광고 표시되지않는 문제 해결도구 사이트 https://support.google.com/admob/workflow/14373595?visit_id=638624071805318020-587276607&rd=3해결방법 문서 모음 https://support..
유니티 안드로이드 빌드 앱 크래시(App Crash) 문제 해결방법 문서 모음프로젝트에 새로운 SDK를 추가하거나 유니티 버전 및 안드로이드 API 수준을 업데이트하고난 이후 발생하는 경우 안드로이드 앱 비정상 종료 https://developer.android.com/topic/performance/vitals/crash?hl=ko 유니티 안드로이드 개발 문제해결 https://docs.unity3d.com/kr/2020.3/Manual/TroubleShootingAndroid.html유니티 안드로이드 API 수준 34에서 앱 크래시 https://discussions.unity.com/t/android-14-api-level-34-in-unity-2020-lts-and-2021-lts/933479..
유니티(Unity) 트랜스폼(Transform) 위치 및 방향 변환 함수 모음TransformPoint(Vector3 localPosition)객체의 로컬 공간 좌표를 월드 공간 좌표로 변환 Vector3 localPos = new Vector3(1, 0, 0); Vector3 worldPos = transform.TransformPoint(localPos); https://docs.unity3d.com/ScriptReference/Transform.TransformPoint.htmlInverseTransformPoint(Vector3 worldPosition)객체의 월드 공간 좌표를 로컬 공간 좌표로 변환 Vector3 worldPos = new Vector3(10, 0, 5); Vector3 lo..
게임 개발(Game Development) 해외 도서 모음(프로그래밍, 디자인패턴 ,게임엔진, AI,기타)Game Programming Patterns By Robert Nystromhttps://gameprogrammingpatterns.com/https://www.amazon.com/dp/0990582906 The Art of Game Design: A Book of Lenses By Jesse Schell https://www.amazon.com/Art-Game-Design-Book-Lenses/dp/0123694965 Level Up! The Guide to Great Video Game Design By Scott Rogers https://www.amazon.com/Level-Guide-G..
유니티(Unity)에서 partial 클래스 사용(클래스명과 파일명, MonoBehaviour)일반적으로 C#에서 클래스 이름과 .cs 파일 이름이 동일하지않아도 문제 없이 컴파일되며 정상적으로 동작합니다. 유니티(Unity)에서는 클래스 이름과 파일 이름이 일치하지 않으면 오류가 발생할 수 있습니다. 특히 유니티의 컴포넌트 시스템을 사용하고 게임오브젝트에 추가하기위해(MonoBehaviour를 상속받는 스크립트) 파일 이름과 클래스 이름이 일치해야합니다. // MyScript.cs using UnityEngine; public class MyScript : MonoBehaviour { void Start() { Debug.Log("Hello, Unity!"); } }..
유니티(Unity) 오브젝트 다중 콜라이더 충돌 판별 몇가지 방법한 오브젝트의 계층에 여러개의 콜라이더가 존재할때 충돌 콜라이더 구별방법 void OnCollisionEnter(Collision collision) { Collider hitCollider = collision.contacts[0].thisCollider; if (hitCollider.name == "Collider1") { Debug.Log("Collider1과 충돌"); } else if (hitCollider.name == "Collider2") { ..
유니티(Unity)에서 렌더텍스처(RenderTexture) 활성화 및 해제(active, release) 사용예시렌더 텍스처(RenderTexture)는 렌더링할수있는 텍스처(textures that can be rendered to)로써 3D 장면을 텍스처로 렌더링할 수 있는 특별한 종류의 텍스처입니다. 주로 3D 장면을 특정 렌더 텍스처로 렌더링하고 결과를 텍스처로 저장하는데 사용합니다. https://docs.unity3d.com/ScriptReference/RenderTexture.html렌더텍스처(RenderTexture) 활성화 및 해제//RenderTexture 생성 RenderTexture rt = new RenderTexture(256, 256, 24); rt.Create(); //..
유니티 코리아 E-book 시리즈 무료 다운로드(한국어 번역본)아래 웹사이트(Unity Square)에서 유니티에서 제공하는 다양한 리소스 자료(백서, 케이스 스터디, e-book, 기타)를 다운로드할수있습니다.https://www.unitysquare.co.kr/growwith/resource 게임 프로그래밍 패턴으로 코딩 스킬 업그레이드 https://www.unitysquare.co.kr/growwith/resource/form?id=520&utm_source=youtube&utm_medium=social&utm_campaign=kr_bestebookcardnews_2408 Unity Square게임 프로그래밍 패턴으로 코딩 스킬 업그레이드unitysquare.co.kr Unity 게임 프로파..
유니티(Unity) 인앱결제(IAP, In-App Purchasing) 사용법 문서모음유니티 인앱 구매 https://unity.com/kr/features/iap유니티 인앱결제 세팅(Setting up Unity IAP) https://docs.unity3d.com/Manual/UnityIAPSettingUp.htmlIAP 리스너, 구매 이행(IAP Listeners, Purchase fulfillment) https://docs.unity3d.com/Packages/com.unity.purchasing@4.12/manual/IAPListener.html코드리스 IAP(Codeless IAP) https://docs.unity3d.com/Manual/UnityIAPCodelessIAP.htmlIAP B..
콘텐츠 생성형 인공지능(AI) 도구 다양한 종류(텍스트, 이미지, 동영상, 기타)텍스트 생성형 AIGPT(Open AI)https://openai.com/index/chatgpt/ https://youtu.be/DQacCB9tDaw 이미지 생성형 AIdall-e-3 https://openai.com/index/dall-e-3/https://youtu.be/sqQrN0iZBs0 Midjourney https://www.midjourney.com/home Night Cafe https://creator.nightcafe.studio/ Art breeder https://www.artbreeder.com/ ArtbreederA collaborative tool for creating im..
3D 맥스 캐릭터 리깅 튜토리얼(Autodesk 3ds Max Learning Channel)오토데스크 3D 맥스 유튜브 공식 채널에서 제공하는 3D 캐릭터 리깅 튜토리얼 시리즈입니다. 시리즈를 구성하는 주요 세가지 내용은 아래와 같습니다 -캐릭터 스켈레톤 구축하는 방법( build the bone skeleton) -캐릭터의 지오메트리를 스켈레톤에 스키닝하는 방법(skin the character's geometry to that skeleton) -캐릭터 스켈레톤 리깅(rig the skeleton) Rigging a Character for Gameshttps://youtu.be/_gm_g8do32k?list=PLnKw1txyYzRlxh1-BT4CifPXC5TBg2vUd 캐릭터 본 스켈리톤 구축..
유니티(Unity) 증강현실 튜토리얼 및 사용예시 모음(AR Core, XR Foundation)AR 평면 감지 비활성화 https://vionixstudio.com/2022/08/08/disabling-ar-plane-detection/ Disabling AR plane detection and Changing AR plane texture in Unity - VionixStudioThis tutorial is the continuation of our getting started with AR foundation tutorials. In this tutorial, we will learn how to disable AR plane detection and change the default AR pla..