{"id":4079,"date":"2020-09-11T09:29:38","date_gmt":"2020-09-11T00:29:38","guid":{"rendered":"https:\/\/taki-lab.site\/bocci\/?p=4079"},"modified":"2020-09-11T09:29:41","modified_gmt":"2020-09-11T00:29:41","slug":"%e3%80%90%e5%8c%97%e6%b5%b7%e9%81%93%e5%a4%a7%e6%88%a6%e3%80%91%e3%83%90%e3%83%88%e3%83%ab%e3%82%b7%e3%83%bc%e3%83%b3%e3%81%ae%e7%94%bb%e9%9d%a2%e3%82%92%e4%bd%9c%e6%88%90%e3%81%99%e3%82%8b","status":"publish","type":"post","link":"https:\/\/taki-lab.site\/bocci\/?p=4079","title":{"rendered":"\u3010\u5317\u6d77\u9053\u5927\u6226\u3011\u30d0\u30c8\u30eb\u30b7\u30fc\u30f3\u306e\u753b\u9762\u3092\u4f5c\u6210\u3059\u308b"},"content":{"rendered":"\n<p>\u524d\u56de\u307e\u3067\u306e\u72b6\u6cc1\u306f\u3053\u3061\u3089\u3002<\/p>\n\n\n\n<figure class=\"wp-block-embed-wordpress wp-block-embed is-type-wp-embed is-provider-\u81ea\u5206\u3001\u307c\u3063\u3061\u3067\u3059\u304c\u4f55\u304b\uff1f\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"VtZaBJHSY4\"><a href=\"https:\/\/taki-lab.site\/bocci\/?p=4032\">\u3010\u5317\u6d77\u9053\u5927\u6226\u3011\u30b7\u30fc\u30f3\u3092\u8ffd\u52a0\u3059\u308b<\/a><\/blockquote><iframe loading=\"lazy\" class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;\u3010\u5317\u6d77\u9053\u5927\u6226\u3011\u30b7\u30fc\u30f3\u3092\u8ffd\u52a0\u3059\u308b&#8221; &#8212; \u81ea\u5206\u3001\u307c\u3063\u3061\u3067\u3059\u304c\u4f55\u304b\uff1f\" src=\"https:\/\/taki-lab.site\/bocci\/?p=4032&#038;embed=true#?secret=qf8lpOGAqk#?secret=VtZaBJHSY4\" data-secret=\"VtZaBJHSY4\" width=\"474\" height=\"267\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"><\/iframe>\n<\/div><\/figure>\n\n\n\n<p>\u6700\u65b0\u30bd\u30fc\u30b9\u306f\u3053\u3061\u3089(gitHub)\u3002<\/p>\n\n\n\n<p><a href=\"https:\/\/github.com\/takishita2nd\/HokkaidoWar\">https:\/\/github.com\/takishita2nd\/HokkaidoWar<\/a><\/p>\n\n\n\n<p>\u30d0\u30c8\u30eb\u30b7\u30fc\u30f3\u306e\u753b\u9762\u3092\u4f5c\u6210\u3057\u3066\u3044\u304d\u307e\u3059\u3002<\/p>\n\n\n\n<p>\u3068\u306f\u8a00\u3063\u3066\u3082\u90e8\u54c1\u3092\u914d\u7f6e\u3057\u3066\u3044\u308b\u3060\u3051\u3067\u3059\u304c\u3002<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>    class BattleScene : asd.Scene\r\n    {\r\n        private asd.TextObject2D _label = null;\r\n        private asd.TextObject2D _attackCity = null;\r\n        private asd.TextObject2D _deffenceCity = null;\r\n        private asd.TextureObject2D _image_gu_attack = null;\r\n        private asd.TextureObject2D _image_choki_attack = null;\r\n        private asd.TextureObject2D _image_par_attack = null;\r\n        private asd.TextureObject2D _image_gu_deffence = null;\r\n        private asd.TextureObject2D _image_choki_deffence = null;\r\n        private asd.TextureObject2D _image_par_deffence = null;\r\n        private asd.TextObject2D _attackParam = null;\r\n        private asd.TextObject2D _deffenceParam = null;\r\n\r\n        public BattleScene()\r\n        {\r\n\r\n        }\r\n\r\n        protected override void OnRegistered()\r\n        {\r\n            var layer = new asd.Layer2D();\r\n            AddLayer(layer);\r\n\r\n            \/\/ \u4e0b\u5730\r\n            var background = new asd.GeometryObject2D();\r\n            layer.AddObject(background);\r\n            var bgRect = new asd.RectangleShape();\r\n            bgRect.DrawingArea = new asd.RectF(0, 0, 1800, 1000);\r\n            background.Shape = bgRect;\r\n\r\n            _label = new asd.TextObject2D();\r\n            _label.Font = Singleton.GetLargeFont();\r\n            _label.Text = \"VS\";\r\n            _label.Position = new asd.Vector2DF(470, 400);\r\n            layer.AddObject(_label);\r\n\r\n            _attackCity = new asd.TextObject2D();\r\n            _attackCity.Font = Singleton.GetLargeFont();\r\n            _attackCity.Text = \"\u672d\u5e4c\";\r\n            _attackCity.Position = new asd.Vector2DF(450, 150);\r\n            layer.AddObject(_attackCity);\r\n\r\n            _deffenceCity = new asd.TextObject2D();\r\n            _deffenceCity.Font = Singleton.GetLargeFont();\r\n            _deffenceCity.Text = \"\u5c0f\u6a3d\";\r\n            _deffenceCity.Position = new asd.Vector2DF(450, 650);\r\n            layer.AddObject(_deffenceCity);\r\n\r\n            _attackParam = new asd.TextObject2D();\r\n            _attackParam.Font = Singleton.GetLargeFont();\r\n            _attackParam.Text = \"\u6226\u95d8\u529b\uff1a10000\";\r\n            _attackParam.Position = new asd.Vector2DF(700, 650);\r\n            layer.AddObject(_attackParam);\r\n\r\n            _deffenceParam = new asd.TextObject2D();\r\n            _deffenceParam.Font = Singleton.GetLargeFont();\r\n            _deffenceParam.Text = \"\u6226\u95d8\u529b\uff1a8000\";\r\n            _deffenceParam.Position = new asd.Vector2DF(700, 150);\r\n            layer.AddObject(_deffenceParam);\r\n\r\n            _image_gu_attack = new asd.TextureObject2D();\r\n            _image_gu_attack.Texture = Singleton.GetImageGu();\r\n            _image_gu_attack.Position = new asd.Vector2DF(300, 500);\r\n            layer.AddObject(_image_gu_attack);\r\n\r\n            _image_choki_attack = new asd.TextureObject2D();\r\n            _image_choki_attack.Texture = Singleton.GetImageChoki();\r\n            _image_choki_attack.Position = new asd.Vector2DF(450, 500);\r\n            layer.AddObject(_image_choki_attack);\r\n\r\n            _image_par_attack = new asd.TextureObject2D();\r\n            _image_par_attack.Texture = Singleton.GetImagePar();\r\n            _image_par_attack.Position = new asd.Vector2DF(600, 500);\r\n            layer.AddObject(_image_par_attack);\r\n\r\n            _image_gu_deffence = new asd.TextureObject2D();\r\n            _image_gu_deffence.Texture = Singleton.GetImageGu();\r\n            _image_gu_deffence.Position = new asd.Vector2DF(300, 250);\r\n            layer.AddObject(_image_gu_deffence);\r\n\r\n            _image_choki_deffence = new asd.TextureObject2D();\r\n            _image_choki_deffence.Texture = Singleton.GetImageChoki();\r\n            _image_choki_deffence.Position = new asd.Vector2DF(450, 250);\r\n            layer.AddObject(_image_choki_deffence);\r\n\r\n            _image_par_deffence = new asd.TextureObject2D();\r\n            _image_par_deffence.Texture = Singleton.GetImagePar();\r\n            _image_par_deffence.Position = new asd.Vector2DF(600, 250);\r\n            layer.AddObject(_image_par_deffence);\r\n        }\r\n\r\n        protected override void OnUpdated()\r\n        {\r\n\r\n        }\r\n    }\r\n<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-gallery columns-1 is-cropped wp-block-gallery-1 is-layout-flex wp-block-gallery-is-layout-flex\"><ul class=\"blocks-gallery-grid\"><li class=\"blocks-gallery-item\"><figure><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"474\" height=\"407\" data-attachment-id=\"4080\" data-permalink=\"https:\/\/taki-lab.site\/bocci\/?attachment_id=4080\" data-orig-file=\"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/09\/b08c9ee2fa2d0b673cdaa05d1f42a6e8.jpg?fit=1202%2C1032&amp;ssl=1\" data-orig-size=\"1202,1032\" 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=\"b08c9ee2fa2d0b673cdaa05d1f42a6e8\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/09\/b08c9ee2fa2d0b673cdaa05d1f42a6e8.jpg?fit=474%2C407&amp;ssl=1\" src=\"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/09\/b08c9ee2fa2d0b673cdaa05d1f42a6e8.jpg?resize=474%2C407&#038;ssl=1\" alt=\"\" data-id=\"4080\" class=\"wp-image-4080\" srcset=\"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/09\/b08c9ee2fa2d0b673cdaa05d1f42a6e8.jpg?resize=1024%2C879&amp;ssl=1 1024w, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/09\/b08c9ee2fa2d0b673cdaa05d1f42a6e8.jpg?resize=300%2C258&amp;ssl=1 300w, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/09\/b08c9ee2fa2d0b673cdaa05d1f42a6e8.jpg?resize=768%2C659&amp;ssl=1 768w, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/09\/b08c9ee2fa2d0b673cdaa05d1f42a6e8.jpg?w=1202&amp;ssl=1 1202w, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/09\/b08c9ee2fa2d0b673cdaa05d1f42a6e8.jpg?w=948&amp;ssl=1 948w\" sizes=\"auto, (max-width: 474px) 100vw, 474px\" \/><\/figure><\/li><\/ul><\/figure>\n\n\n\n<p>\u30b7\u30f3\u30d7\u30eb\u3060\u3051\u3069\u307e\u3041\u3044\u3044\u3067\u3057\u3087\u3046\u3002<\/p>\n\n\n\n<p>\u30b0\u30fc\u30fb\u30c1\u30e7\u30ad\u30fb\u30d1\u30fc\u306f\u7d75\u6587\u5b57\u304c\u4f7f\u3048\u306a\u3044\u3063\u307d\u3044\u306e\u3067\u3001\u7d75\u6587\u5b57\u3092\u62e1\u5927\u3057\u3066\u30b9\u30af\u30ea\u30fc\u30f3\u30b7\u30e7\u30c3\u30c8\u3067\u753b\u50cf\u3092\u4f5c\u6210\u3057\u3066\u3044\u307e\u3059\u3002<\/p>\n\n\n\n<p>\u6b21\u56de\u306f\u5b9f\u969b\u306b\u30b7\u30fc\u30f3\u306e\u5207\u308a\u66ff\u3048\u3092\u3084\u3063\u3066\u307f\u307e\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>\u524d\u56de\u307e\u3067\u306e\u72b6\u6cc1\u306f\u3053\u3061\u3089\u3002 \u6700\u65b0\u30bd\u30fc\u30b9\u306f\u3053\u3061\u3089(gitHub)\u3002 https:\/\/github.com\/takishita2nd\/HokkaidoWar \u30d0\u30c8\u30eb\u30b7\u30fc\u30f3\u306e\u753b\u9762\u3092\u4f5c\u6210\u3057\u3066\u3044\u304d\u307e\u3059\u3002 \u3068\u306f\u8a00\u3063\u3066\u3082\u90e8\u54c1\u3092\u914d\u7f6e\u3057\u3066\u3044 &hellip; <a href=\"https:\/\/taki-lab.site\/bocci\/?p=4079\" class=\"more-link\">\u7d9a\u304d\u3092\u8aad\u3080 <span class=\"screen-reader-text\">\u3010\u5317\u6d77\u9053\u5927\u6226\u3011\u30d0\u30c8\u30eb\u30b7\u30fc\u30f3\u306e\u753b\u9762\u3092\u4f5c\u6210\u3059\u308b<\/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":"\u3010\u5317\u6d77\u9053\u5927\u6226\u3011\u30d0\u30c8\u30eb\u30b7\u30fc\u30f3\u306e\u753b\u9762\u3092\u4f5c\u6210\u3059\u308b\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":[197,3],"tags":[199],"class_list":["post-4079","post","type-post","status-publish","format-standard","hentry","category-197","category-3","tag-199"],"aioseo_notices":[],"jetpack_publicize_connections":[],"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack_shortlink":"https:\/\/wp.me\/p8SDbY-13N","jetpack-related-posts":[{"id":4208,"url":"https:\/\/taki-lab.site\/bocci\/?p=4208","url_meta":{"origin":4079,"position":0},"title":"\u3010\u5317\u6d77\u9053\u5927\u6226\u3011\u30d0\u30c8\u30eb\u30b7\u30fc\u30f3\u3078\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u6e21\u3059\u3002","author":"taki","date":"2020\u5e749\u670827\u65e5","format":false,"excerpt":"\u524d\u56de\u307e\u3067\u306e\u72b6\u6cc1\u306f\u3053\u3061\u3089\u3002 https:\/\/taki-lab.site\/bocci\/?p=4156 \u30d0\u2026","rel":"","context":"C#","block_context":{"text":"C#","link":"https:\/\/taki-lab.site\/bocci\/?cat=174"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/09\/2d01c4ec658634eceadae8f2e6de3abb.jpg?resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/09\/2d01c4ec658634eceadae8f2e6de3abb.jpg?resize=350%2C200 1x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/09\/2d01c4ec658634eceadae8f2e6de3abb.jpg?resize=525%2C300 1.5x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/09\/2d01c4ec658634eceadae8f2e6de3abb.jpg?resize=700%2C400 2x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/09\/2d01c4ec658634eceadae8f2e6de3abb.jpg?resize=1050%2C600 3x"},"classes":[]},{"id":3288,"url":"https:\/\/taki-lab.site\/bocci\/?p=3288","url_meta":{"origin":4079,"position":1},"title":"\u3010\u5317\u6d77\u9053\u5927\u6226\u3011\u30de\u30c3\u30d7\u306b\u5e02\u753a\u6751\u540d\u3092\u8868\u793a\u3059\u308b","author":"taki","date":"2020\u5e746\u670814\u65e5","format":false,"excerpt":"\u524d\u56de\u307e\u3067\u306e\u72b6\u6cc1\u306f\u3053\u3061\u3089\u3002 https:\/\/taki-lab.site\/bocci\/?p=3250 g\u2026","rel":"","context":"C#","block_context":{"text":"C#","link":"https:\/\/taki-lab.site\/bocci\/?cat=174"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":4156,"url":"https:\/\/taki-lab.site\/bocci\/?p=4156","url_meta":{"origin":4079,"position":2},"title":"\u3010\u5317\u6d77\u9053\u5927\u6226\u3011\u30e1\u30a4\u30f3\u30b7\u30fc\u30f3\u306e\u4f5c\u308a\u76f4\u3057","author":"taki","date":"2020\u5e749\u670820\u65e5","format":false,"excerpt":"\u524d\u56de\u307e\u3067\u306e\u72b6\u6cc1\u306f\u3053\u3061\u3089\u3002 https:\/\/taki-lab.site\/bocci\/?p=4140 \u306f\u2026","rel":"","context":"C#","block_context":{"text":"C#","link":"https:\/\/taki-lab.site\/bocci\/?cat=174"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":3624,"url":"https:\/\/taki-lab.site\/bocci\/?p=3624","url_meta":{"origin":4079,"position":3},"title":"\u3010\u5317\u6d77\u9053\u5927\u6226\u3011\u30d0\u30c8\u30eb\u51e6\u7406\u3092\u5b9f\u88c5\u3059\u308b\u3002","author":"taki","date":"2020\u5e747\u670819\u65e5","format":false,"excerpt":"\u524d\u56de\u307e\u3067\u306e\u72b6\u6cc1\u306f\u3053\u3061\u3089\u3002 https:\/\/taki-lab.site\/bocci\/?p=3604 \u6700\u2026","rel":"","context":"C#","block_context":{"text":"C#","link":"https:\/\/taki-lab.site\/bocci\/?cat=174"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/07\/89a099a642100d9f97a823c9ee1fd47d.jpg?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/07\/89a099a642100d9f97a823c9ee1fd47d.jpg?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/07\/89a099a642100d9f97a823c9ee1fd47d.jpg?resize=525%2C300&ssl=1 1.5x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/07\/89a099a642100d9f97a823c9ee1fd47d.jpg?resize=700%2C400&ssl=1 2x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/07\/89a099a642100d9f97a823c9ee1fd47d.jpg?resize=1050%2C600&ssl=1 3x"},"classes":[]},{"id":5307,"url":"https:\/\/taki-lab.site\/bocci\/?p=5307","url_meta":{"origin":4079,"position":4},"title":"\u3010\u5317\u6d77\u9053\u5927\u62262021\u3011\u30d0\u30c8\u30eb\u30b7\u30fc\u30f3\u51e6\u7406\u306e\u4f5c\u6210","author":"taki","date":"2021\u5e742\u670825\u65e5","format":false,"excerpt":"https:\/\/taki-lab.site\/bocci\/?p=5296 https:\/\/github\u2026","rel":"","context":"\u5317\u6d77\u9053\u5927\u6226","block_context":{"text":"\u5317\u6d77\u9053\u5927\u6226","link":"https:\/\/taki-lab.site\/bocci\/?cat=197"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":5296,"url":"https:\/\/taki-lab.site\/bocci\/?p=5296","url_meta":{"origin":4079,"position":5},"title":"\u3010\u5317\u6d77\u9053\u5927\u62262021\u3011\u30d0\u30c8\u30eb\u30b7\u30fc\u30f3\u306e\u4f5c\u6210","author":"taki","date":"2021\u5e742\u670824\u65e5","format":false,"excerpt":"https:\/\/taki-lab.site\/bocci\/?p=5283 https:\/\/github\u2026","rel":"","context":"\u5317\u6d77\u9053\u5927\u6226","block_context":{"text":"\u5317\u6d77\u9053\u5927\u6226","link":"https:\/\/taki-lab.site\/bocci\/?cat=197"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2021\/02\/e56921462643fee4f90775bef4c8224c.jpg?resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2021\/02\/e56921462643fee4f90775bef4c8224c.jpg?resize=350%2C200 1x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2021\/02\/e56921462643fee4f90775bef4c8224c.jpg?resize=525%2C300 1.5x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2021\/02\/e56921462643fee4f90775bef4c8224c.jpg?resize=700%2C400 2x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2021\/02\/e56921462643fee4f90775bef4c8224c.jpg?resize=1050%2C600 3x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2021\/02\/e56921462643fee4f90775bef4c8224c.jpg?resize=1400%2C800 4x"},"classes":[]}],"jetpack_likes_enabled":true,"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=\/wp\/v2\/posts\/4079","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=4079"}],"version-history":[{"count":1,"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=\/wp\/v2\/posts\/4079\/revisions"}],"predecessor-version":[{"id":4081,"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=\/wp\/v2\/posts\/4079\/revisions\/4081"}],"wp:attachment":[{"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=4079"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=4079"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=4079"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}