Posts about 코딩

axmol, Tiled map 불러올때 FastTMXTiledMap: Map not found. Please check the filename. 에러 해결

July 6th, 2024

참 별거 아닌걸로 한시간쯤 허비했다.
xcode에서 작업할때 리소스 File Type이 파일을 불러오는데 영향을 준다.

나의 경우 별거 아니라고 간과했던 tsx (타일셋) 파일의 타입이 디폴트로 XML로 설정되지 않아서 발생한 문제였다.
인스펙터에서 파일 타입을 XML로 변경하면 문제 없이 로딩 된다.

tmx 파일은 file path가 relative to project로 설정되어야 하는것 같다(이건 relative to group으로 됐는지 기억이 정확하지 않음)

여튼, 파일 타입이 중요하다.

cocos2d-x static library

June 14th, 2017

win32

https://medium.com/@frogdev.vietnam/create-and-config-prebuilt-lib-for-cocos2dx-3-x-win32-android-ios-af6abaf097fb

 

ios

http://www.nicnocquee.com/2016/01/20/build-cocos2d-x-fat-static-library.html

 

Adcolony orientation 오류

November 27th, 2016

Supported orientations has no common orientation with the application, and [ADCContainer shouldAutorotate] is returning YES

이와 같은 에러 메시지와 함께 프로그램 크래시가 발생하는 경우, Device Orientation을 체크해 봐야 한다. 내가 개발중인 프로그램에선 portrait 모드만 지원하도록 표시해 두었는데, adcolony에서 landscape 지원이 없어서 문제가 발생했다. 다음 참고 링크를 보면, adcolony에 국한된 문제는 아니다. 해결 방법은 여러가지인데, 나는 간단히 지원하는 모드에 landscape를 추가하는 식으로 우회했다(미봉책).

참고 : http://stackoverflow.com/questions/12540597/supported-orientations-has-no-common-orientation-with-the-application-and-shoul