{"id":37911,"date":"2024-11-01T10:01:28","date_gmt":"2024-11-01T10:01:28","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=37911"},"modified":"2024-11-01T11:33:12","modified_gmt":"2024-11-01T11:33:12","slug":"understanding-unity-2d-game-development-physics2d-system-implementing-colliders-rigidbodies-and-physical-effects","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/37911\/","title":{"rendered":"Understanding Unity 2D Game Development, Physics2D System Implementing Colliders, Rigidbodies, and Physical Effects."},"content":{"rendered":"<p><body><\/p>\n<p>\n        Unity is a powerful game engine with many advantages for game developers. In particular, the Physics2D system in Unity is essential for 2D game development. The physics engine allows characters and objects to interact with one another, enabling realistic gameplay. In this article, we will cover the basics of the Physics2D system in Unity 2D game development, and gain a deep understanding of colliders, rigidbodies, and the implementation of physics effects.\n    <\/p>\n<h2>1. Understanding the Physics2D System<\/h2>\n<p>\n        The Physics2D system simulates the movement and interactions of objects in a 2D game environment using Unity&#8217;s physics engine. It plays an essential role in handling physical effects such as movement, collision, and gravity. This allows game developers to easily define and adjust interactions between objects.\n    <\/p>\n<h3>1.1 The Concept of Physics2D<\/h3>\n<p>\n        The Physics2D engine consists of two main components: <strong>Colliders<\/strong> and <strong>Rigidbodies<\/strong>. Through the combination of these two elements, objects can define their own physical behaviors.\n    <\/p>\n<h2>2. Colliders<\/h2>\n<p>\n        Colliders are the fundamental elements that create the physical definition of objects in Unity. They give each game object physical properties and enable collision detection with other objects.\n    <\/p>\n<h3>2.1 Main Types of Colliders<\/h3>\n<p>\n        Unity features various types of colliders, including Box Collider 2D, Circle Collider 2D, and Polygon Collider 2D. Each collider is designed to fit specific shapes of objects.\n    <\/p>\n<h4>2.1.1 Box Collider 2D<\/h4>\n<p>\n        Box Collider 2D is a rectangular-shaped collider primarily used for square or rectangular objects. The setup is straightforward.\n    <\/p>\n<pre><code>CSharp\n\/\/ Adding Box Collider 2D to a new game object\nusing UnityEngine;\n\npublic class BoxColliderExample : MonoBehaviour\n{\n    void Start()\n    {\n        BoxCollider2D boxCollider = gameObject.AddComponent<BoxCollider2D>();\n        boxCollider.size = new Vector2(2f, 3f); \/\/ Setting the size of the collider\n    }\n}\n<\/code><\/pre>\n<h4>2.1.2 Circle Collider 2D<\/h4>\n<p>\n        Circle Collider 2D is a circular collider primarily used for circular or rotating objects. Like above, it can be added easily.\n    <\/p>\n<pre><code>CSharp\n\/\/ Example of adding a circular collider\nusing UnityEngine;\n\npublic class CircleColliderExample : MonoBehaviour\n{\n    void Start()\n    {\n        CircleCollider2D circleCollider = gameObject.AddComponent<CircleCollider2D>();\n        circleCollider.radius = 1f; \/\/ Setting the radius of the collider\n    }\n}\n<\/code><\/pre>\n<h4>2.1.3 Polygon Collider 2D<\/h4>\n<p>\n        Polygon Collider 2D allows for the setting of irregularly shaped colliders. This is useful for objects with complex shapes. It is advisable to use this collider when precise physical reactions are absolutely necessary.\n    <\/p>\n<pre><code>CSharp\n\/\/ Example of adding a polygon collider\nusing UnityEngine;\n\npublic class PolygonColliderExample : MonoBehaviour\n{\n    void Start()\n    {\n        PolygonCollider2D polygonCollider = gameObject.AddComponent<PolygonCollider2D>();\n        Vector2[] points = new Vector2[] { new Vector2(0, 0), new Vector2(1, 0), new Vector2(1, 1) };\n        polygonCollider.points = points; \/\/ Setting the polygon points\n    }\n}\n<\/code><\/pre>\n<h3>2.2 Using Colliders<\/h3>\n<p>\n        Once colliders are set up, it is necessary to define interactions between them. This can be handled via the OnCollisionEnter2D method. Below is a simple example of handling events when two colliders interact.\n    <\/p>\n<pre><code>CSharp\n\/\/ Collision handling example\nusing UnityEngine;\n\npublic class CollisionExample : MonoBehaviour\n{\n    void OnCollisionEnter2D(Collision2D collision)\n    {\n        Debug.Log(\"Collision detected: \" + collision.gameObject.name);\n    }\n}\n<\/code><\/pre>\n<h2>3. Rigidbodies<\/h2>\n<p>\n        Rigidbodies are essential for defining how objects interact physically. By enabling a rigidbody, an object can be set to be affected by the Physics2D system. Various physical properties such as gravity and friction can be adjusted.\n    <\/p>\n<h3>3.1 Types of Rigidbodies<\/h3>\n<p>\n        Unity offers various rigidbody options. The <strong>RigidBody2D<\/strong> is representative, optimized for 2D physics calculations.\n    <\/p>\n<h4>3.1.1 Basic Configuration of RigidBody2D<\/h4>\n<p>\n        Adding a RigidBody2D is very simple. You can define physical properties by adding the RigidBody2D component to a game object.\n    <\/p>\n<pre><code>CSharp\n\/\/ Example of adding RigidBody2D\nusing UnityEngine;\n\npublic class RigidBodyExample : MonoBehaviour\n{\n    void Start()\n    {\n        RigidBody2D rb = gameObject.AddComponent<RigidBody2D>();\n        rb.gravityScale = 1; \/\/ Setting gravity\n        rb.mass = 1; \/\/ Setting mass\n    }\n}\n<\/code><\/pre>\n<h4>3.1.2 Kinematic RigidBody2D<\/h4>\n<p>\n        A Kinematic RigidBody2D can be set so that the object is not affected by gravity or collisions from the physics engine. This allows for smooth movements. To set it to Kinematic mode, you can do the following.\n    <\/p>\n<pre><code>CSharp\n\/\/ Kinematic RigidBody2D example\nusing UnityEngine;\n\npublic class KinematicRigidBodyExample : MonoBehaviour\n{\n    void Start()\n    {\n        RigidBody2D rb = gameObject.AddComponent<RigidBody2D>();\n        rb.isKinematic = true; \/\/ Setting to Kinematic\n    }\n}\n<\/code><\/pre>\n<h3>3.2 Setting Physical Responses<\/h3>\n<p>\n        The physical response of a rigidbody can be adjusted using several parameters. <strong>Mass<\/strong> defines the object&#8217;s mass, and <strong>Drag<\/strong> mimics air resistance. Below is an example of adjusting physical properties.\n    <\/p>\n<pre><code>CSharp\n\/\/ Example of adjusting physical properties\nusing UnityEngine;\n\npublic class RigidBodyPropertiesExample : MonoBehaviour\n{\n    void Start()\n    {\n        RigidBody2D rb = gameObject.AddComponent<RigidBody2D>();\n        rb.mass = 2; \/\/ Setting mass\n        rb.drag = 0.5f; \/\/ Setting drag\n        rb.angularDrag = 0.5f; \/\/ Setting angular drag\n    }\n}\n<\/code><\/pre>\n<h2>4. Implementing Physics Effects<\/h2>\n<p>\n        After properly setting up colliders and rigidbodies, the process of implementing physics effects is necessary. By applying gravity, friction, and various forces, a realistic game environment can be created.\n    <\/p>\n<h3>4.1 Applying Forces<\/h3>\n<p>\n        Applying force to rigidbodies is key to implementing physics effects. The AddForce method can be used to apply force.\n    <\/p>\n<pre><code>CSharp\n\/\/ Example of applying force\nusing UnityEngine;\n\npublic class ApplyForceExample : MonoBehaviour\n{\n    private RigidBody2D rb;\n\n    void Start()\n    {\n        rb = gameObject.AddComponent<RigidBody2D>();\n    }\n\n    void Update()\n    {\n        if (Input.GetKeyDown(KeyCode.Space))\n        {\n            rb.AddForce(new Vector2(0, 10), ForceMode2D.Impulse); \/\/ Applying force upward\n        }\n    }\n}\n<\/code><\/pre>\n<h3>4.2 Manipulating Gravity and Friction<\/h3>\n<p>\n        By manipulating gravity and friction, various physics effects can be implemented. By adjusting the response when objects move up and down and controlling friction, continuous movement and stopping can be regulated. For example, you can adjust friction using the drag property of the RigidBody2D.\n    <\/p>\n<pre><code>CSharp\n\/\/ Example of adjusting friction and gravity\nusing UnityEngine;\n\npublic class GravityFrictionExample : MonoBehaviour\n{\n    private RigidBody2D rb;\n\n    void Start()\n    {\n        rb = gameObject.AddComponent<RigidBody2D>();\n        rb.gravityScale = 1; \/\/ Gravity ratio\n        rb.drag = 1; \/\/ Air resistance\n    }\n}\n<\/code><\/pre>\n<h2>5. Conclusion<\/h2>\n<p>\n        The Physics2D system in Unity plays a very important role in 2D game development. By understanding and utilizing colliders and rigidbodies, you can maximize the effects of physics. This enables developers to create realistic 2D game environments. By effectively leveraging the physics engine, engaging games that immerse players can be created. I hope this article has deepened your understanding of the basic concepts of the Physics2D system along with practical examples.\n    <\/p>\n<footer>\n<p>I hope this article has been helpful in Unity 2D game development. If you have any questions or feedback, please leave a comment!<\/p>\n<\/footer>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Unity is a powerful game engine with many advantages for game developers. In particular, the Physics2D system in Unity is essential for 2D game development. The physics engine allows characters and objects to interact with one another, enabling realistic gameplay. In this article, we will cover the basics of the Physics2D system in Unity 2D &hellip; <a href=\"https:\/\/atmokpo.com\/w\/37911\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;Understanding Unity 2D Game Development, Physics2D System Implementing Colliders, Rigidbodies, and Physical Effects.&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[135],"tags":[],"class_list":["post-37911","post","type-post","status-publish","format-standard","hentry","category-unity-basic"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Understanding Unity 2D Game Development, Physics2D System Implementing Colliders, Rigidbodies, and Physical Effects. - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/atmokpo.com\/w\/37911\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Understanding Unity 2D Game Development, Physics2D System Implementing Colliders, Rigidbodies, and Physical Effects. - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"Unity is a powerful game engine with many advantages for game developers. In particular, the Physics2D system in Unity is essential for 2D game development. The physics engine allows characters and objects to interact with one another, enabling realistic gameplay. In this article, we will cover the basics of the Physics2D system in Unity 2D &hellip; \ub354 \ubcf4\uae30 &quot;Understanding Unity 2D Game Development, Physics2D System Implementing Colliders, Rigidbodies, and Physical Effects.&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/37911\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T10:01:28+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:33:12+00:00\" \/>\n<meta name=\"author\" content=\"root\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@bebubo4\" \/>\n<meta name=\"twitter:site\" content=\"@bebubo4\" \/>\n<meta name=\"twitter:label1\" content=\"\uae00\uc4f4\uc774\" \/>\n\t<meta name=\"twitter:data1\" content=\"root\" \/>\n\t<meta name=\"twitter:label2\" content=\"\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04\" \/>\n\t<meta name=\"twitter:data2\" content=\"5\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/atmokpo.com\/w\/37911\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37911\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"Understanding Unity 2D Game Development, Physics2D System Implementing Colliders, Rigidbodies, and Physical Effects.\",\"datePublished\":\"2024-11-01T10:01:28+00:00\",\"dateModified\":\"2024-11-01T11:33:12+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37911\/\"},\"wordCount\":705,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"Unity Basic\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/37911\/\",\"url\":\"https:\/\/atmokpo.com\/w\/37911\/\",\"name\":\"Understanding Unity 2D Game Development, Physics2D System Implementing Colliders, Rigidbodies, and Physical Effects. - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T10:01:28+00:00\",\"dateModified\":\"2024-11-01T11:33:12+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37911\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/37911\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/37911\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Understanding Unity 2D Game Development, Physics2D System Implementing Colliders, Rigidbodies, and Physical Effects.\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/atmokpo.com\/w\/#website\",\"url\":\"https:\/\/atmokpo.com\/w\/\",\"name\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/atmokpo.com\/w\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ko-KR\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\",\"name\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"url\":\"https:\/\/atmokpo.com\/w\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png\",\"contentUrl\":\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png\",\"width\":400,\"height\":400,\"caption\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\"},\"image\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/bebubo4\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\",\"name\":\"root\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g\",\"caption\":\"root\"},\"sameAs\":[\"http:\/\/atmokpo.com\/w\"],\"url\":\"https:\/\/atmokpo.com\/w\/author\/root\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Understanding Unity 2D Game Development, Physics2D System Implementing Colliders, Rigidbodies, and Physical Effects. - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/atmokpo.com\/w\/37911\/","og_locale":"ko_KR","og_type":"article","og_title":"Understanding Unity 2D Game Development, Physics2D System Implementing Colliders, Rigidbodies, and Physical Effects. - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"Unity is a powerful game engine with many advantages for game developers. In particular, the Physics2D system in Unity is essential for 2D game development. The physics engine allows characters and objects to interact with one another, enabling realistic gameplay. In this article, we will cover the basics of the Physics2D system in Unity 2D &hellip; \ub354 \ubcf4\uae30 \"Understanding Unity 2D Game Development, Physics2D System Implementing Colliders, Rigidbodies, and Physical Effects.\"","og_url":"https:\/\/atmokpo.com\/w\/37911\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T10:01:28+00:00","article_modified_time":"2024-11-01T11:33:12+00:00","author":"root","twitter_card":"summary_large_image","twitter_creator":"@bebubo4","twitter_site":"@bebubo4","twitter_misc":{"\uae00\uc4f4\uc774":"root","\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04":"5\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/atmokpo.com\/w\/37911\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/37911\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"Understanding Unity 2D Game Development, Physics2D System Implementing Colliders, Rigidbodies, and Physical Effects.","datePublished":"2024-11-01T10:01:28+00:00","dateModified":"2024-11-01T11:33:12+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/37911\/"},"wordCount":705,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["Unity Basic"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/37911\/","url":"https:\/\/atmokpo.com\/w\/37911\/","name":"Understanding Unity 2D Game Development, Physics2D System Implementing Colliders, Rigidbodies, and Physical Effects. - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T10:01:28+00:00","dateModified":"2024-11-01T11:33:12+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/37911\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/37911\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/37911\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"Understanding Unity 2D Game Development, Physics2D System Implementing Colliders, Rigidbodies, and Physical Effects."}]},{"@type":"WebSite","@id":"https:\/\/atmokpo.com\/w\/#website","url":"https:\/\/atmokpo.com\/w\/","name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","description":"","publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/atmokpo.com\/w\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ko-KR"},{"@type":"Organization","@id":"https:\/\/atmokpo.com\/w\/#organization","name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","url":"https:\/\/atmokpo.com\/w\/","logo":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/","url":"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png","contentUrl":"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png","width":400,"height":400,"caption":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8"},"image":{"@id":"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/bebubo4"]},{"@type":"Person","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7","name":"root","image":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g","caption":"root"},"sameAs":["http:\/\/atmokpo.com\/w"],"url":"https:\/\/atmokpo.com\/w\/author\/root\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack-related-posts":[],"_links":{"self":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37911","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/comments?post=37911"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37911\/revisions"}],"predecessor-version":[{"id":37912,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37911\/revisions\/37912"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=37911"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=37911"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=37911"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}