구글 서비스 계정 일시적 정지와 재활성화 사이트구글 계정이 일시적으로 정지되어 일부 구글 서비스를 이용할수없는 경우 아래 사이트에서 정보를 입력하고 및 문서를 제공하여 계정 확인 및 재활성화를 요청할수있습니다. 필수 정보 입력과 제출 문서 성과 이름, 이메일(정지된 계정의 이메일), 이용 정지된 구글 서비스, 결제 프로필 ID, 기타정부 발급 신분증 사본(신분증, 운전면허증, 여권 정보페이지, 기타) https://support.google.com/googlepay/contact/account_verification?visit_id=638579325104877505-1688547448&rd=1 계정 확인 - Google Pay 고객센터 support.google.com
C# 프로그래밍 - 클래스 유형(sealed, partial, nested, 기타)sealed 클래스sealed 클래스는 더 이상 상속될 수 없는 클래스를 의미합니다. sealed 키워드를 사용하여 선언한 클래스는 다른 클래스가 상속할 수없습니다. sealed 클래스는 상속 계층의 끝을 나타내며 이 클래스를 기반으로 새로운 클래스를 만들 수 없습니다(더 이상 확장할 필요가 없는 최종 구현 클래스에 사용) 특정 클래스가 상속되지 않아야 함을 명시적으로 나타낼 수 있으며 중요한 클래스가 의도치 않게 상속되어 수정되는 것을 방지할 수 있습니다. sealed 클래스 사용 예시public sealed class SealedClass { } 아래 스크립트는 컴파일 오류를 발생시킵니다. public cl..
유니티(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..