Nice programing

완전한 Cocos2d-x 튜토리얼 및 가이드 목록

nicepro 2020. 11. 2. 19:38
반응형

완전한 Cocos2d-x 튜토리얼 및 가이드 목록


Cocos2d-x를 사용하여 Android 및 iPhone에서 게임을 개발 중입니다. 처음에는이 라이브러리를 사용하는 데 많은 문제가 있었기 때문에이 질문에서는 동일한 실수를하는 많은 정보 질문이 있기 때문에 모든 기본, 중형 및 전문가 자습서를 수집하고 싶습니다. 내가 시작 했을 때 , 나는 내 친구 Google을 사용하여 많은 사이트를 많이보아야했습니다. 이것이 사람들이 지금 시작하는 데 도움이되기를 바랍니다. 모두 C ++ .

초보자

  • 공식 위키 링크
  • 다중 플랫폼에서 시작하는 방법 여기 최고의 것. Amazing, XCODE (MAC) 및 ECLIPSE (LINUX) 튜토리얼.
  • 시작을 위한 간단한 가이드
  • 또 다른 다중 플랫폼 가이드
  • Marcio Andrey 덕분 Eclipse + AndroidDEBUG 에서 프로그래밍을 시작하는 멋진 가이드
  • Android에서 cocos2d-x를 통합하는 또 다른 방법
  • 소셜 예, Facebook + 이메일 + Twitter on iOS 및 Android 여기

매질

많은

확장

코드 예

  • 지원되는 오디오 형식
  • Linux를 사용하는 경우 cocos2d-android 또는 cocos2d-android-1, is decreated를 사용하지 마십시오 . cocos2d-x를 사용해보십시오

  • Linux를 사용하고 네이티브 코드를 사용하는 방법을 모르는 경우 개발을 살펴보세요.

  • CCLOG ( "문자열"); Eclipse log cat에서 작동하지 않지만 CCLog에서 작동합니다!

  • 최대 텍스처 크기 / 해상도 여기

  • iPhone은 RETINA를 사용하여 HD로 텍스처를 그리지 만 Android에서는 사용되지 않습니다. 내 솔루션은 iPhone에서 RETINA를 사용하고 Android에서만 컴파일하는 setscale입니다. 다중 해상도 Wiki . 예에서 :

    #if (CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID)
    this-> setObjectScale (1);
    #endif // CC_PLATFORM_IOS
  • 첫 번째 예는 WIKI 의 공식이어야합니다.

** 공식 페이지 COCOS2D-X **

이 질문이 필요한 것은 무엇입니까?

  • XML Tutorial, i have nothing in this area. Actually, i'm working in some code. I will do a Tutorial. The library can be use is libxml2
  • Creating menus example
  • Slider menu example
  • Gestures class don´t implemented yet

If you have problems, use tag Cocos2d-x in Stackoverflow, and I will try to help you.

I have already read the FAQ but 90 % of questions cocos2d/android related present the same problem, using obsolete libraries. I just want help people to start using cocos2d-x. All additional info will be Welcome.


Here you got complementaries discussions about the topic, it can be interesting.

discussion1

discussion2


Another code example: Tiny Wings Remake on Android using Cocos2d-X


Good list. The Angry Ninjas Starter Kit will have a Cocos2d-X update soon.


Cocos2d-x within uikit tutorial http://jpsarda.tumblr.com/post/24983791554/mixing-cocos2d-x-uikit


https://github.com/dualface/cocos2d-x-extensions/blob/master/TODO.tasks , he is developing nice features on cocos2d-x


Cocos2d-x within your classic Android (Java) app tuto http://jpsarda.tumblr.com/post/26000816688/integrate-cocos2d-x-c-into-an-android-application

참고URL : https://stackoverflow.com/questions/10711047/the-completest-cocos2d-x-tutorial-guide-list

반응형