분류 전체보기 159

OnPointerClick 관련 이것저것.

public UICharRoom : MonoBehaviour, IPointerClickHandler { public void OnPointerClick(PointerEventData eventData) { } } OnPointerClick 이 호출이 안되는 경우 1. 오브젝트가 2D 라면 카메라에 Physice 2D Raychaster, 3D 라면 카메라에 Physice Raychaster 2. Physice 2D Raychaster, Physice Raychaster에서 Event Mask 가 해당 오프젝트의 Layer 를 포함하는지 확인. 3. EventSystem 이 있나 확인. 없으면 추가. 4. BoxCollider 혹은 BoxCollider2D가 있어야 한다. Size를 확인해자. OnPoin..

Unity/기타 2021.05.12

글로벌용 글자 좌표 수정

각 언어별 폰트의 좌표가 미묘하게 다른 경우가 발생해서 인스펙터 창에서 조정가능하게 작업. 가장 좋은 방법은 폰트마다 달라지는 원인을 해결하면 최고지만 안되면 이렇게 해결 using System.Collections; using System.Collections.Generic; using UnityEngine; public enum EGlobalLanguage { Korean, Japanese, English, ChineseTraditional, } [System.Serializable] public class GlobalLanguageData { public EGlobalLanguage eGlobalLanguage; public Vector3 move; // 자간등등 추가 필요 } public clas..

페이스북 시뮬레이터 빌드

https://developers.facebook.com/docs/ios/getting-started/advanced#sim_build 고급 주제 - iOS SDK - 문서 - Facebook for Developers developers.facebook.com Unity 에서 옵션에 시뮬레이터 SDK를 선택하고 빌드 빌드 후 Xcode 로 열어서 시뮬레이터 설정시 실행 시뮬레이터로 실행후 빌드된 데이터가 뽑혀 나온다. 시뮬레이터로 실행후 빌드된 곳을 찾지 못하면 xcode / Preferences / Locations / Derived Data 로 확인 뽑혀진 파일에 위 페이스북 링크데로 하면 됨 이때 위 링크에 적혀 있드시 Command-line App Launcher for Simulator.이 없..

개발 기타/IOS 2021.04.29

ios Appsflyer와 facebook 충돌 버그

앱스플라이어와 페이스북 충돌 버그 ios 사파리에서 페이스북이 로그아웃 상태에서 앱에서 페이스북 로그인시 실패 현상. github.com/AppsFlyerSDK/appsflyer-unity-plugin/blob/master/docs/iOS-Swizzling-Guide.md AppsFlyerSDK/appsflyer-unity-plugin AppsFlyer Unity Plugin. Contribute to AppsFlyerSDK/appsflyer-unity-plugin development by creating an account on GitHub. github.com iOS Swizzling Guide AppsFlyer Unity Plugin uses the iOS life cycle events for ..

개발 기타/IOS 2021.04.27