Unity 9

[Unity] AdMob 광고 달기 - 3. 베너 광고 띄우기

코드 복붙해서 게임 오브젝트에 넣어서 베너 광고 생성한 id 인스펙터에 넣고 실행 ㄱㄱusing GoogleMobileAds.Api;using System;using UnityEngine;public class AdManager : MonoBehaviour{ [Header("Ad Unit IDs")] [SerializeField] private string androidBannerAdUnitId; [SerializeField] private string iosBannerAdUnitId; [SerializeField] private string androidInterstitialAdUnitId; [SerializeField] private string iosInterstitial..

Unity/admob 2024.07.04

[Unity] AdMob 광고 달기 - 2. SDK 적용하기

편하게 유니티 패키지가 따로 있더라 https://github.com/googleads/googleads-mobile-unity/releases/tag/v9.1.0 Release Google Mobile Ads Unity Plugin v9.1.0 · googleads/googleads-mobile-unityPlugin : Removed the app measurement feature as Android/iOS SDKs no longer initialize App measurement. Fixed [#3290] by calling static putPublisherFirstPartyIdEnabled with boolean return type. Fix...github.com 다운받고 유니티프로젝트에 끌어..

Unity/admob 2024.07.03

[Unity] AdMob 광고 달기 - 1. 계정 생성

https://apps.admob.com  AdMob이메일 또는 휴대전화accounts.google.com 계정생성은 구글이메일 연동 되서 쉬운듯  구글 플레이에 테스트 앱 먼저 올려보고 해야할것 같은데 일단 하는 방법 궁금해서 계속 눌러봄 앱 이름 쓰고 넘기면 안드로이드 앱으로 선택했으니까안드로이드 앱에서 "광고단위추가" 눌러서 "베너" 일단 해봤음  완료 누르니까 광고 단위 추가된거 볼 수 있음  받은 id로 유니티에 적용 해보고 이어서 포스팅 하겠음

Unity/admob 2024.07.03

[Unity] TextMeshPro 한글 Font 만들기 / ttf 파일 변환 / 굵게, 가늘게 등등 Bold,Thin

구글 무료 폰트 받는 곳 https://fonts.google.com/?subset=korean&noto.script=Kore Browse Fonts - Google FontsMaking the web more beautiful, fast, and open through great typographyfonts.google.com 그 외에도 무료폰트 사이트들 있으니.. 필요한건 알아서 검색원하는 폰트 다운받아서 압축 풀면종류별로 있음 유니티에 TextMeshPro 임포트 하고Window > TextMeshPro > Font Asset Creator   1. 압축푼 ttf 파일 하나 넣고2. 위 그림이랑 똑같이 하고3. 칸에 32-126,44032-55203,12593-12643,9200-9900 라고 씀4..

Unity 2024.06.26

[Unity] Facepunch.Steamworks Setup

steamworks를 unity에서 더 쉽게 사용할수 있도록 만들어진 라이브러리https://github.com/Facepunch/Facepunch.Steamworks GitHub - Facepunch/Facepunch.Steamworks: Another fucking c# Steamworks implementationAnother fucking c# Steamworks implementation. Contribute to Facepunch/Facepunch.Steamworks development by creating an account on GitHub.github.comgit clone visual studio에서 솔루션 열기솔루션 빌드 \Facepunch.Steamworks\Facepunch.St..

Unity/steamworks 2024.04.26