본문 바로가기

3Dsoftware/Unity 3D56

Anti-Cheat Toolkit 2.2.4: InjectionDetector using CodeStage.AntiCheat.Detectors; void Start() { InjectionDetector.AddToSceneOrGetExisting(); InjectionDetector.StartDetection(); } 참조: codestage.net/uas_files/actk/api/class_code_stage_1_1_anti_cheat_1_1_detectors_1_1_injection_detector.html Anti-Cheat Toolkit의 InjectionDetector의 경우 위의 스크립트와 같이 작성하면 실행이 된다. IL2CPP(C++로 변환하는 중간 언어)는 Unity에서 개발한 스크립팅 백엔드로, 여러 플랫폼용 프로젝트를 빌드할 때 Mono 대신 사용할 수 있다... 2020. 9. 12.
Unity 3D Play시 Play중 멈춤 현상 (Freezing) 1. Player가 특정 Object를 인식했을때 Freezing 현상이 발생했다.2. Object를 교체했지만 같은 현상. (특정 모델만 발생함)3.  Is Kinematic이 체크된 Object간 (정상 vs Freezing 유발 비정상 모델) 데이터 값을 비교했을때 Rigibody에 Mass부분에 차이가 있었음. - 그림 2 Mass를 0으로 설정하면 1e-07 값이 나옴.4. 그림 1처럼 변경. Is Kinematic이 설정된 모델의 (Mass 0.1, Drag: 0, Angular Drag 0.05) 후 Freezing 현상이 사라짐.5. 그림 1처럼 is Kinematic이 설정되었고 Mass: 1e-07 이었던 모든 오브첵트를 전부 0.1로 변경하자. Play중 Freezing 현상 뿐만 아.. 2020. 9. 8.
Unity 3d: java.lang.RuntimeException: Duplicate class 원인: 기존 보다 낮은 버전의 JAVA를 설치했을 때 발생한 오류. 해결: 위의 그림과 같은 오류로 빌드가 되지 않았으며, Asset 폴더에서 com.goole.android.play-service-basement 파일을 찾으면 경고와 같이 두개의 파일이 보인다. 낮은 버전을 삭제해주면 문제없이 빌드된다. http://play.google.com/store/apps/details?id=com.wonilmax.bonyonline 러브썸 보니 - Google Play 앱 오픈월드형 3D RPG 게임 play.google.com 2020. 9. 3.
Unity 3D SDK package 에러: getting api levels... 오류명: CommandInvokationFailure: Failed to update Android SDK package list. 1) JDK 버전 문제 JDK가 10 이상 버전에서는 아래 그림1 과 같은 문제가 발생한다고 한다. 기존 버전은 지우고, Java 8버전을 다시 인스톨한 후에 내컴퓨터> 설정> 고급시스템 설정 > 환경 변수를 변경해준다. 그리고, Unity > preference>externaltool에 JDK 부분도 경로를 바꾸어 준다. 2) 이래도 해결이 안됬을 시 모든 Unity 프로그램을 종료한다. Hub까지도 작업관리자에서 완전히 종료. 관리자 모드로 Unity로 들어간 뒤, 아래 그림의 getting Api 부분을 마우스로 클릭해 본다. 그러면 설정이 원래대로 활성화가 된다. 현.. 2020. 9. 3.
Unity 3D (데이터 저장_Application.dataPath) [Unity Editor] Application.dataPath 프로젝트디렉토리/Assets : Unity Editor에 저장할 때 사용한다. -Mobile에서 사용시 아래와 같은 에러가 방생한다. (ioexception cannot create because a file with the same name already exists.) [모바일] Application.persistentDataPath 사용자디렉토리/AppData/LocalLow/회사이름/프로덕트이름 파일 읽기 쓰기 가능 예시) if(Application.isEditor) SAVE_DATA_DIRECTORY = Application.dataPath+ "/Saves/"; else if(Application.isMobilePlatform) S.. 2020. 8. 6.
PlayServiceResolver 의 Admob, Firebase, GPGS 등의 충돌 PlayServicesResolver role is to integrate the Firebase android dependencies with Unity. 1. PlayServiceResolver의 버전 문제로 여러 Admob, Firebase, GPGS 등 이 충돌 및 빌드 에러가 발생하는 듯하다. 아래그림과 같이 한쪽을 import 했을시 자동으로 중복을 제거하지만 그렇게 한다고 해도 에러는 발생한다. 2. 기존 PlayServeiceResolver가 설치 되어 있는 상태라면 import 하기 전에 새로운 PlayServeiceResolver는 체크를 해제 하는 것이 충돌을 최소화 할 수 있는 방법이다. 3. Firebase의 경우: PlayServiceResolver와 충돌하여 MissingMet.. 2020. 7. 23.