Unity(13)
-
유니티 IL2CPP 에러 - NullReferenceException: Object reference not set to an instance of an object
유니티 NullReferenceException: Object reference not set to an instance of an object - System.Linq.Expressions.Interpreter.LightLambda.MakeRunDelegateCtor 유니티 IL2CPP 빌드 실행에서 나는 이 정체 불명의 에러의 정체는 ?! System.Linq.Expressions.Interpreter.LightLambda.MakeRunDelegateCtor -> dynamic 키워드 때문이다. il2cpp에서는 dynamic 키워드를 쓰지 못한다. 당장 지워 NullReferenceException: Object reference not set to an instance of an object. a..
2023.04.02 -
유니티 CSV 라이브러리 성능 분석 (CSV Parsing Performance Test in Unity)
유니티 CSV 라이브러리 성능 분석 (CSV Parsing Performance Test in Unity) 유니티 parser 종류 with Regex 1 with split 2 with split 3 루멘 regex 매칭 유니티 벤치마크 공식 문서 2.0 공식문서 1.0 벤치 마크 테스트 Open /YourProject/Packages/manifest.json "com.unity.test-framework.performance": "2.1.0", "testables": [ "com.unity.test-framework.performance" ] Create a new folder Assets/Tests Create an assembly definition - Unity.PerformanceTesting..
2023.03.29 -
유니티 iOS file system sandbox blocked open() 에러 (Unity) 및 Facebook SDK FBAEMKit 에러
유니티 iOS file system sandbox blocked open() 에러 (Unity) 및 Facebook SDK FBAEMKit 에러 유니티 iOS file system sandbox blocked open() 1번 - 애플 권한 System Preferences > Security & Privacy > Privacy > Full Disk Access > "add your app such as Xcode" System Preferences > Security & Privacy > Privacy > Files and Folders > "add your app such as Xcode" 2번 Link binary with UnityFramework 1.1. Build iOS app and open..
2023.03.29 -
유니티 iOS CocoaPods requires your terminal to be using UTF-8 encoding (Unity) 에러
유니티 iOS CocoaPods requires your terminal to be using UTF-8 encoding (Unity) 에러 WARNING: CocoaPods requires your terminal to be using UTF-8 encoding. Consider adding the following to ~/.profile: export LANG=en_US.UTF-8 export LANGUAGE=en_US.UTF-8 export LC_ALL=en_US.UTF-8 시키는 대로 해라!
2023.03.29 -
유니티 iOS Xcode Swift 버전 디팬던시 에러: Failed to build module FBAEMKit Apple Swift version
유니티 iOS Xcode Swift 버전 디팬던시 에러: Failed to build module FBAEMKit Apple Swift version :0: error: module compiled with Swift 5.2.4 cannot be imported by the Swift 5.3 compiler: /Users/zs/Documents/CJ/branches/CJ-400/SimpleList/Carthage/Build/iOS/PhoneNumberKit.framework/Modules/PhoneNumberKit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule → Xcode 업그레이드 필요 Xcode 버전이 안 맞아서 생기는 문제이다. Xcode를 OS 최대치..
2023.03.29 -
유니티 iOS CocoaPods Facebook SDK pods intall 에러
유니티 CocoaPods Facebook SDK pods intall 에러 - 원인 1 CocoaPods 버전 문제 버전을 변경해야함 gem uninstall cocoapods gem install cocoapods - 원인 2 The Facebook SDK for Unity only supports iOS version 8.0 and above. In order to prevent issues any issues on older devices, ensure the 'Target minimum iOS Version' is set to 8.0 or higher. 프로젝트 타겟을 ios 10이상으로 해야한다고 나와있다. → 13이상만 성공 나는 PROJECT, Targets의 모든 Deployment Tar..
2023.03.29