{"id":4666,"date":"2020-12-05T08:29:12","date_gmt":"2020-12-04T23:29:12","guid":{"rendered":"https:\/\/taki-lab.site\/bocci\/?p=4666"},"modified":"2020-12-05T08:29:15","modified_gmt":"2020-12-04T23:29:15","slug":"%e3%80%90cocos2d-x%e3%80%91%e3%82%b9%e3%83%86%e3%83%bc%e3%82%bf%e3%82%b9%e3%82%92%e8%a1%a8%e7%a4%ba","status":"publish","type":"post","link":"https:\/\/taki-lab.site\/bocci\/?p=4666","title":{"rendered":"\u3010COCOS2D-X\u3011\u30b9\u30c6\u30fc\u30bf\u30b9\u3092\u8868\u793a"},"content":{"rendered":"\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"474\" height=\"219\" data-attachment-id=\"4667\" data-permalink=\"https:\/\/taki-lab.site\/bocci\/?attachment_id=4667\" data-orig-file=\"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/12\/Screenshot_20201205-080731.png?fit=2340%2C1080&amp;ssl=1\" data-orig-size=\"2340,1080\" data-comments-opened=\"1\" data-image-meta=\"{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}\" data-image-title=\"Screenshot_20201205-080731\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/12\/Screenshot_20201205-080731.png?fit=474%2C219&amp;ssl=1\" src=\"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/12\/Screenshot_20201205-080731.png?resize=474%2C219&#038;ssl=1\" alt=\"\" class=\"wp-image-4667\" srcset=\"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/12\/Screenshot_20201205-080731.png?resize=1024%2C473&amp;ssl=1 1024w, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/12\/Screenshot_20201205-080731.png?resize=300%2C138&amp;ssl=1 300w, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/12\/Screenshot_20201205-080731.png?resize=768%2C354&amp;ssl=1 768w, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/12\/Screenshot_20201205-080731.png?resize=1536%2C709&amp;ssl=1 1536w, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/12\/Screenshot_20201205-080731.png?resize=2048%2C945&amp;ssl=1 2048w, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/12\/Screenshot_20201205-080731.png?w=948&amp;ssl=1 948w, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/12\/Screenshot_20201205-080731.png?w=1422&amp;ssl=1 1422w\" sizes=\"auto, (max-width: 474px) 100vw, 474px\" \/><\/figure>\n\n\n\n<p>\u6570\u5b57\u306f\u5b8c\u5168\u306b\u30e9\u30f3\u30c0\u30e0\u3067\u3059\u3002<\/p>\n\n\n\n<p>\u3061\u3087\u3063\u3068\u30b2\u30fc\u30e0\u3089\u3057\u304f\u306a\u3063\u3066\u304d\u305f\u3067\u3057\u3087\u3002<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#ifndef PROJ_ANDROID_CHARACTER_H\r\n#define PROJ_ANDROID_CHARACTER_H\r\n\r\n#include \"cocos2d.h\"\r\n\r\nclass Character {\r\npublic:\r\n    int Hp;\r\n    int MaxHp;\r\n    int Mp;\r\n    int MaxMp;\r\n    int Power;\r\n    int Speed;\r\n    int Magic;\r\npublic:\r\n    Character();\r\n    ~Character();\r\n};\r\n\r\n\r\n#endif \/\/PROJ_ANDROID_CHARACTER_H\r\n<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>#include \"Character.h\"\r\n\r\nCharacter::Character()\r\n{\r\n    MaxHp = cocos2d::random&lt;int>(0, 100);\r\n    MaxMp = cocos2d::random&lt;int>(0, 100);\r\n    Power = cocos2d::random&lt;int>(0, 100);\r\n    Speed = cocos2d::random&lt;int>(0, 100);\r\n    Magic = cocos2d::random&lt;int>(0, 100);\r\n}\r\n\r\nCharacter::~Character()\r\n{\r\n\r\n}<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>#ifndef PROJ_ANDROID_GAMESTATUS_H\r\n#define PROJ_ANDROID_GAMESTATUS_H\r\n\r\n#include \"cocos2d.h\"\r\n#include \"Character.h\"\r\n#include &lt;list>\r\n\r\nclass GameStatus {\r\nprivate:\r\n    static GameStatus *gameStatus;\r\npublic:\r\n    std::list&lt;Character*> *Charactors;\r\nprivate:\r\n    GameStatus();\r\n    ~GameStatus();\r\npublic:\r\n    static GameStatus* GetGameData();\r\n    static void Destroy();\r\n};\r\n\r\n\r\n#endif \/\/PROJ_ANDROID_GAMESTATUS_H\r\n<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>#include \"GameStatus.h\"\r\n\r\nGameStatus *GameStatus::gameStatus = nullptr;\r\n\r\nGameStatus::GameStatus()\r\n{\r\n    Charactors = new std::list&lt;Character*>();\r\n    for(int i = 0; i &lt; 4; i++)\r\n    {\r\n        Character *character = new Character();\r\n        Charactors->push_back(character);\r\n    }\r\n}\r\n\r\nGameStatus::~GameStatus()\r\n{\r\n    for(Character *character = Charactors->front(); Charactors->empty() == true; character = Charactors->front())\r\n    {\r\n        delete character;\r\n        Charactors->pop_front();\r\n    }\r\n    delete Charactors;\r\n}\r\n\r\nGameStatus * GameStatus::GetGameData()\r\n{\r\n    if(gameStatus == nullptr)\r\n    {\r\n        gameStatus = new GameStatus();\r\n    }\r\n    return gameStatus;\r\n}\r\n\r\nvoid GameStatus::Destroy()\r\n{\r\n    delete gameStatus;\r\n}\r\n<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>    \/\/ \u30b9\u30c6\u30fc\u30bf\u30b9\u30a6\u30a3\u30f3\u30c9\u30a6\u306e\u914d\u7f6e\r\n    auto xpos = (visibleSize.width - sprite->getContentSize().width * scaleRate) \/ 2.0;\r\n    float windowScale = 0;\r\n    float windowHeight = 0;\r\n\r\n    Sprite *charaStatusWindow&#91;4];\r\n    auto chara = GameStatus::GetGameData()->Charactors->begin();\r\n    for(int i = 0; i &lt; 4; i++)\r\n    {\r\n        charaStatusWindow&#91;i] = Sprite::create(\"btn02_03_s_bl.png\");\r\n        if (charaStatusWindow&#91;i] == nullptr)\r\n        {\r\n            problemLoading(\"'btn02_03_s_bl.png'\");\r\n        }\r\n        else\r\n        {\r\n            if(windowScale == 0 || windowHeight == 0)\r\n            {\r\n                windowHeight = charaStatusWindow&#91;i]->getContentSize().height;\r\n                windowScale = (visibleSize.height \/ 4) \/ windowHeight;\r\n            }\r\n            charaStatusWindow&#91;i]->setPosition(Vec2(xpos + origin.x,origin.y + windowHeight * i * windowScale));\r\n            charaStatusWindow&#91;i]->setAnchorPoint(Vec2(0,0));\r\n            charaStatusWindow&#91;i]->setScale(windowScale);\r\n\r\n            this->addChild(charaStatusWindow&#91;i], 1);\r\n        }\r\n\r\n        auto offset = charaStatusWindow&#91;i]->getContentSize().width \/ 10.0;\r\n        auto hpLabel = Label::createWithTTF(\"Hello World\", \"fonts\/msgothic.ttc\", 12);\r\n        if (hpLabel == nullptr)\r\n        {\r\n            problemLoading(\"'fonts\/msgothic.ttc'\");\r\n        }\r\n        else\r\n        {\r\n            hpLabel->setAnchorPoint(Vec2(0, 1));\r\n            hpLabel->setPosition(Vec2(origin.x + xpos + offset, origin.y + windowHeight * (i + 1) * windowScale));\r\n\r\n            this->addChild(hpLabel, 2);\r\n\r\n            auto hpStr = String();\r\n            hpStr.appendWithFormat(\"HP : %d\", chara.operator*()->MaxHp);\r\n            hpLabel->setString(hpStr.getCString());\r\n        }\r\n\r\n        auto MpLabel = Label::createWithTTF(\"Hello World\", \"fonts\/msgothic.ttc\", 12);\r\n        if (MpLabel == nullptr)\r\n        {\r\n            problemLoading(\"'fonts\/msgothic.ttc'\");\r\n        }\r\n        else\r\n        {\r\n            MpLabel->setAnchorPoint(Vec2(0, 1));\r\n            MpLabel->setPosition(Vec2(origin.x + xpos + offset, origin.y + windowHeight * (i + 1) * windowScale - hpLabel->getContentSize().height));\r\n\r\n            this->addChild(MpLabel, 2);\r\n\r\n            auto mpStr = String();\r\n            mpStr.appendWithFormat(\"MP : %d\", chara.operator*()->MaxMp);\r\n            MpLabel->setString(mpStr.getCString());\r\n        }\r\n        chara++;\r\n    }\r\n<\/code><\/pre>\n\n\n\n<p>\u30a6\u30a4\u30f3\u30c9\u30a6\u5468\u308a\u306e\u30af\u30e9\u30b9\u8a2d\u8a08\u3082\u3061\u3083\u3093\u3068\u8003\u3048\u306a\u3044\u3068\u3044\u3051\u306a\u3044\u306d\u3002<\/p>\n\n\n\n<p>\u3042\u3068\u3001C++\u306eList\u578b\u306f\u3001\u4ed6\u306e\u30d7\u30ed\u30b0\u30e9\u30e0\u306eList\u578b\u306e\u69d8\u306b\u4f7f\u7528\u3067\u304d\u306a\u304f\u3066\u3001\u3061\u3087\u3063\u3068\u3081\u3093\u3069\u3044\u3002<\/p>\n\n\n\n<p>\u5b8c\u5168\u306b\u30a4\u30c6\u30ec\u30fc\u30bf\u30d1\u30bf\u30fc\u30f3\u306e\u30af\u30e9\u30b9\u306a\u306e\u3067\u3001\u5c11\u3005\u6271\u3044\u3065\u3089\u3044\u3002<\/p>\n\n\n\n<p>\u6163\u308c\u308b\u3057\u304b\u7121\u3044\u3093\u3060\u3051\u3069\u3002<\/p>\n\n\n\n<p>\u3042\u3068\u3001\u4e71\u6570\u306fcocos-2dx\u306b\u642d\u8f09\u3055\u308c\u3066\u3044\u308b\u3082\u306e\u304c\u4f7f\u7528\u3067\u304d\u307e\u3059\u3002<\/p>\n\n\n\n<p>C++\u6a19\u6e96\u306e\u4e71\u6570\u3088\u308a\u3082\u4f7f\u3044\u3084\u3059\u3044\u3067\u3059\u3002<\/p>\n\n\n\n<a href=\"\/\/blog.with2.net\/link\/?2023426:1010\" target=\"_blank\" rel=\"noopener noreferrer\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2019\/12\/03a6eee54039f74ded0b8f7548b1868f.png?w=474\" title=\"\u30d1\u30bd\u30b3\u30f3\u30e9\u30f3\u30ad\u30f3\u30b0\"><\/a>\n\n","protected":false},"excerpt":{"rendered":"<p>\u6570\u5b57\u306f\u5b8c\u5168\u306b\u30e9\u30f3\u30c0\u30e0\u3067\u3059\u3002 \u3061\u3087\u3063\u3068\u30b2\u30fc\u30e0\u3089\u3057\u304f\u306a\u3063\u3066\u304d\u305f\u3067\u3057\u3087\u3002 \u30a6\u30a4\u30f3\u30c9\u30a6\u5468\u308a\u306e\u30af\u30e9\u30b9\u8a2d\u8a08\u3082\u3061\u3083\u3093\u3068\u8003\u3048\u306a\u3044\u3068\u3044\u3051\u306a\u3044\u306d\u3002 \u3042\u3068\u3001C++\u306eList\u578b\u306f\u3001\u4ed6\u306e\u30d7\u30ed\u30b0\u30e9\u30e0\u306eList\u578b\u306e\u69d8\u306b\u4f7f\u7528\u3067\u304d\u306a\u304f\u3066\u3001\u3061\u3087\u3063\u3068\u3081\u3093\u3069\u3044 &hellip; <a href=\"https:\/\/taki-lab.site\/bocci\/?p=4666\" class=\"more-link\">\u7d9a\u304d\u3092\u8aad\u3080 <span class=\"screen-reader-text\">\u3010COCOS2D-X\u3011\u30b9\u30c6\u30fc\u30bf\u30b9\u3092\u8868\u793a<\/span> <span class=\"meta-nav\">&rarr;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"_uf_show_specific_survey":0,"_uf_disable_surveys":false,"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"\u3010COCOS2D-X\u3011\u30b9\u30c6\u30fc\u30bf\u30b9\u3092\u8868\u793a\n#TechCommit\n","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2}},"categories":[216,3],"tags":[215],"class_list":["post-4666","post","type-post","status-publish","format-standard","hentry","category-cocos2d-x","category-3","tag-cocos2d-x-2"],"aioseo_notices":[],"jetpack_publicize_connections":[],"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack_shortlink":"https:\/\/wp.me\/p8SDbY-1dg","jetpack-related-posts":[{"id":4785,"url":"https:\/\/taki-lab.site\/bocci\/?p=4785","url_meta":{"origin":4666,"position":0},"title":"\u3010COCOS2D-X\u3011\u7d50\u5c40\u30ad\u30e3\u30e9\u30af\u30bf\u30fc\u30a6\u30a4\u30f3\u30c9\u30a6\u3092\u69cb\u9020\u4f53\u3067\u4f5c\u308a\u76f4\u3059\u3002","author":"taki","date":"2020\u5e7412\u670827\u65e5","format":false,"excerpt":"\u7d50\u5c40\u30af\u30e9\u30b9\u306f\u4f7f\u3048\u306a\u3044\u3001\u3068\u3044\u3046\u3053\u3068\u3067\u3001 \u3084\u3063\u3071\u308a\u3053\u3053\u306f\u69cb\u9020\u4f53\u306b\u3059\u308b\u3057\u304b\u7121\u3044\u3060\u308d\u3046\u3001\u3068\u601d\u3044\u307e\u3057\u3066\u3001 \u3081\u3063\u2026","rel":"","context":"Cocos2d-x","block_context":{"text":"Cocos2d-x","link":"https:\/\/taki-lab.site\/bocci\/?cat=216"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":4702,"url":"https:\/\/taki-lab.site\/bocci\/?p=4702","url_meta":{"origin":4666,"position":1},"title":"\u3010COCOS2D-X\u3011\u30b9\u30c6\u30fc\u30bf\u30b9\u30a6\u30a3\u30f3\u30c9\u30a6\u3092\u30af\u30e9\u30b9\u5316","author":"taki","date":"2020\u5e7412\u670812\u65e5","format":false,"excerpt":"\u898b\u305f\u76ee\u306f\u5909\u308f\u3089\u306a\u3044\u3093\u3067\u3059\u304c\u3002 \u524d\u56de\u306e\u307e\u307e\u3060\u3068\u3044\u308d\u3044\u308d\u6271\u3044\u3065\u3089\u3044\u306e\u3067\u3001\u5de6\u306e\u30a6\u30a3\u30f3\u30c9\u30a6\u3092\u30af\u30e9\u30b9\u5316\u3057\u307e\u3057\u305f\u2026","rel":"","context":"Cocos2d-x","block_context":{"text":"Cocos2d-x","link":"https:\/\/taki-lab.site\/bocci\/?cat=216"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/12\/Screenshot_20201212-111318.jpg?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/12\/Screenshot_20201212-111318.jpg?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/12\/Screenshot_20201212-111318.jpg?resize=525%2C300&ssl=1 1.5x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/12\/Screenshot_20201212-111318.jpg?resize=700%2C400&ssl=1 2x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/12\/Screenshot_20201212-111318.jpg?resize=1050%2C600&ssl=1 3x"},"classes":[]},{"id":5008,"url":"https:\/\/taki-lab.site\/bocci\/?p=5008","url_meta":{"origin":4666,"position":2},"title":"\u3010COCOS2D-X\u3011\u30af\u30a8\u30b9\u30c8\u30ea\u30b9\u30c8\u3092\u30b9\u30af\u30ed\u30fc\u30eb\u3057\u3059\u304e\u306a\u3044\u3088\u3046\u306b\u8abf\u6574\u3059\u308b\u3002","author":"taki","date":"2021\u5e741\u670830\u65e5","format":false,"excerpt":"https:\/\/taki-lab.site\/bocci\/?p=4959 https:\/\/github\u2026","rel":"","context":"\u6280\u8853","block_context":{"text":"\u6280\u8853","link":"https:\/\/taki-lab.site\/bocci\/?cat=3"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":4920,"url":"https:\/\/taki-lab.site\/bocci\/?p=4920","url_meta":{"origin":4666,"position":3},"title":"\u3010COCOS2D-X\u3011\u30af\u30a8\u30b9\u30c8\u30ea\u30b9\u30c8\u306e\u4f5c\u6210\u3092\u4f5c\u3063\u3066\u307f\u305f\u3002","author":"taki","date":"2021\u5e741\u670816\u65e5","format":false,"excerpt":"\u3053\u3093\u306a\u611f\u3058\u3002 if(isTouch(touch->getLocation(), &(ques\u2026","rel":"","context":"Cocos2d-x","block_context":{"text":"Cocos2d-x","link":"https:\/\/taki-lab.site\/bocci\/?cat=216"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2021\/01\/Screenshot_20210116-072842.png?resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2021\/01\/Screenshot_20210116-072842.png?resize=350%2C200 1x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2021\/01\/Screenshot_20210116-072842.png?resize=525%2C300 1.5x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2021\/01\/Screenshot_20210116-072842.png?resize=700%2C400 2x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2021\/01\/Screenshot_20210116-072842.png?resize=1050%2C600 3x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2021\/01\/Screenshot_20210116-072842.png?resize=1400%2C800 4x"},"classes":[]},{"id":4389,"url":"https:\/\/taki-lab.site\/bocci\/?p=4389","url_meta":{"origin":4666,"position":4},"title":"\u3010cocos2d-x\u3011\u30bf\u30c3\u30c1\u3057\u305f\u5834\u6240\u306b\u30a8\u30d5\u30a7\u30af\u30c8\u3092\u5165\u308c\u308b","author":"taki","date":"2020\u5e7410\u670820\u65e5","format":false,"excerpt":"\u3088\u304f\u30b9\u30de\u30db\u30b2\u30fc\u30e0\u3063\u3066\u3001\u30bf\u30c3\u30c1\u3057\u305f\u5834\u6240\u306b\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u5165\u308c\u3066\u30a8\u30d5\u30a7\u30af\u30c8\u304b\u3051\u3066\u308b\u3058\u3083\u306a\u3044\u3067\u3059\u304b\u3002 \u3042\u308c\u2026","rel":"","context":"Cocos2d-x","block_context":{"text":"Cocos2d-x","link":"https:\/\/taki-lab.site\/bocci\/?cat=216"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/10\/screen-20201020-082918_Trim_Moment.jpg?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/10\/screen-20201020-082918_Trim_Moment.jpg?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/10\/screen-20201020-082918_Trim_Moment.jpg?resize=525%2C300&ssl=1 1.5x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/10\/screen-20201020-082918_Trim_Moment.jpg?resize=700%2C400&ssl=1 2x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/10\/screen-20201020-082918_Trim_Moment.jpg?resize=1050%2C600&ssl=1 3x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/10\/screen-20201020-082918_Trim_Moment.jpg?resize=1400%2C800&ssl=1 4x"},"classes":[]},{"id":4959,"url":"https:\/\/taki-lab.site\/bocci\/?p=4959","url_meta":{"origin":4666,"position":5},"title":"\u3010COCOS2D-X\u3011\u30af\u30a8\u30b9\u30c8\u30ea\u30b9\u30c8\u3092\u30b9\u30af\u30ed\u30fc\u30eb\u3055\u305b\u3066\u307f\u308b\u3002","author":"taki","date":"2021\u5e741\u670824\u65e5","format":false,"excerpt":"\u3053\u3093\u306a\u611f\u3058\u306b\u306a\u308a\u307e\u3057\u305f\u3002 \u4eca\u307e\u3067\u306f\u30bf\u30c3\u30c1\u3057\u305f\u3068\u304d\u306e\u51e6\u7406\u306e\u307f\u3092\u5b9f\u88c5\u3057\u3066\u3044\u307e\u3057\u305f\u304c\u3001 \u30bf\u30c3\u30c1\u51e6\u7406\u306e\u30a4\u30d9\u30f3\u2026","rel":"","context":"Cocos2d-x","block_context":{"text":"Cocos2d-x","link":"https:\/\/taki-lab.site\/bocci\/?cat=216"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]}],"jetpack_likes_enabled":true,"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=\/wp\/v2\/posts\/4666","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=4666"}],"version-history":[{"count":1,"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=\/wp\/v2\/posts\/4666\/revisions"}],"predecessor-version":[{"id":4668,"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=\/wp\/v2\/posts\/4666\/revisions\/4668"}],"wp:attachment":[{"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=4666"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=4666"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=4666"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}