cocos2d-x(13)
-
[cocos2d-x] cocos2d-x 버전 업데이트 방법
/Users/유저아이디/Library/Developer/Xcode/Templates/ 안에서 cocos2d-x 폴더만 삭제하면 됩니다 ~_~ xcode 사용시에는 Templates만 설치된것이기 때문에.. 이폴더만 지우고 다시 설치하시면 업데이트가 완료됩니다 ~_~
2013.07.25 -
[cocos2d-x]CCLabelTTF, Font 사용법
static std::string fontList[] ={#if (CC_TARGET_PLATFORM == CC_PLATFORM_IOS) // info.plist 에 사용자가 추가한 ttf 를 정의해야 한다. "NanumGothic", "Cartoon", "Paint Boy",#else "NanumGothic.ttf", "Cartoon.ttf", "Paint Boy.ttf",#endif }; 리소스 폴더에 ttf 파일들을 넣어놓고, 위와같이 cpp 위에 fontList 에 폰트들을 선언해 놓은뒤, info.plist에 위와같이 등록한다. 그 뒤에 CCLabelTTF *Label1 = CCLabelTTF::create("폰트 테스트", fontList[1].c_str(), 40); Label1->setPos..
2013.07.24 -
[cocos2d-x]프로그레스 바 사용하기!
CCSprite *timer_gaze = CCSprite::create("이미지.png"); CCProgressTimer *m_pHPProgress = CCProgressTimer::create(timer_gaze); m_pHPProgress->setPosition(ccp(winSize.width/2 + 3, winSize.height/2-315)); m_pHPProgress->setScale(winSize.width/3.65/timer_gaze->getContentSize().width); m_pHPProgress->setPercentage(100.f); m_pHPProgress->setMidpoint(ccp(0, 0.5)); //끝 지점 m_pHPProgress->setBarChangeRate(ccp..
2013.07.15 -
[cocos2d-x] 로그인 (에디트 박스 사용)
로그인 에디트 박스가 이게 더 좋은것 같아서....바꾸는게 나을듯 하다.. 비밀번호 *** 표시가 있더라.... 이미지는 아무거나 사용하시길.. // 헤더 - - - - - - - - - - - - - - - - - - #ifndef __Login_H__#define __Login_H__ #include "cocos2d.h"#include "cocos-ext.h" class KeyboardNotificationLayer; using namespace cocos2d;using namespace extension;using namespace std; class Login : public CCLayer, public cocos2d::extension::CCEditBoxDelegate{public: virtua..
2013.07.12 -
[cocos2d-x] TextInputTest(로그인 만들기)
Login.h +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ #ifndef __Login_H__#define __Login_H__ #include "cocos2d.h"#include "VisibleRect.h" class KeyboardNotificationLayer; using namespace cocos2d;using namespace std; class Login : public CCLayer, public CCIMEDelegate{public: virtual bool init(); static CCScene* scene(); CCSize winSize; CREATE_FUNC(Login); void keyboardWill..
2013.06.14 -
[cocos2d-x] ssl !!
잊지 않으려 블로깅을 한다... client - server 간에 보안을 위해 ssl 보안 하기! 참고로 2.1.2인가... 암튼 최신버전을 사용하길 바란다.. 내 버전은 2.1.3그 밑버전은 안된다고 하네요... 프로젝트의 lib -> extensions -> newwork -> HttpClient.cpp 를 들어가서 //Configure curl's timeout propertybool configureCURL(CURL *handle){ if (!handle) { return false; } int32_t code; code = curl_easy_setopt(handle, CURLOPT_ERRORBUFFER, s_errorBuffer); if (code != CURLE_OK) { return fals..
2013.06.07