{"id":4208,"date":"2023-11-04T23:14:08","date_gmt":"2023-11-04T23:14:08","guid":{"rendered":"http:\/\/localhost:10003\/developing-games-with-unity3d\/"},"modified":"2023-11-05T05:47:57","modified_gmt":"2023-11-05T05:47:57","slug":"developing-games-with-unity3d","status":"publish","type":"post","link":"http:\/\/localhost:10003\/developing-games-with-unity3d\/","title":{"rendered":"Developing Games with Unity3D"},"content":{"rendered":"

Introduction<\/h1>\n

Unity3D is one of the most popular game engines available, offering a vast array of tools and resources to game developers. In this tutorial, we will be walking you through the process of developing games with Unity3D, starting with the basics and gradually moving on to more advanced concepts.<\/p>\n

Getting Started with Unity3D<\/h1>\n

Before we jump into the nitty-gritty of game development with Unity3D, let’s first get acquainted with the basics of the software.<\/p>\n

Installing Unity3D<\/h2>\n

The first step is to download and install the Unity3D software on your computer. You can do so by visiting the Unity3D download page on their website and following the instructions provided.<\/p>\n

Unity3D Interface<\/h2>\n

Once the software is installed, you will be greeted with the Unity3D interface. The interface consists of several windows, each serving a different purpose.<\/p>\n

The Scene<\/strong> window is where you will be designing your game’s environment, placing objects and setting their properties.<\/p>\n

The Hierarchy<\/strong> window displays a list of all game objects in your scene.<\/p>\n

The Project<\/strong> window is your file browser for all assets used in the game.<\/p>\n

The Inspector<\/strong> window displays the properties of the selected game object.<\/p>\n

Unity3D Game Objects<\/h2>\n

At the core of Unity3D game development are game objects. Game objects are the building blocks of any scene, and determine what appears on the screen and how the player interacts with the game.<\/p>\n

To create a new game object, navigate to the GameObject<\/strong> menu and select the type of object you want to create. You can choose from basic shapes like a cube, sphere, or capsule, or you can import 3D models from external sources.<\/p>\n

Each game object has several components attached to it, each determining its properties. For example, a cube may have a Mesh Filter<\/strong> component, which defines its shape, and a Box Collider<\/strong> component, which determines its physical properties for collision detection.<\/p>\n

Unity3D Scripts<\/h2>\n

Unity3D allows you to create custom features for your game by writing scripts in C#. Scripts are used to attach functionality to game objects, such as controlling their movement or animating their appearance.<\/p>\n

To create a new script, navigate to the Assets<\/strong> window and select Create > C# Script<\/strong>. Give your script a name and double-click it to open it in your code editor of choice.<\/p>\n

Scripts have a lifecycle in Unity3D, with each function being called at different times during gameplay. For example, the Start()<\/strong> function is called when the game object is first created, and the Update()<\/strong> function is called once per frame.<\/p>\n

Within your script, you can use Unity3D’s extensive library of functions and properties to interact with game objects and their components.<\/p>\n

Unity3D Physics<\/h2>\n

Unity3D includes a built-in physics engine, allowing you to create realistic physical interactions between game objects. Physics components such as Rigidbodies<\/strong> and Colliders<\/strong> can be added to game objects and manipulated through scripts to create complex behaviors.<\/p>\n

To enable physics in your game, start by enabling the Physics<\/strong> option in the Project Settings > Physics<\/strong> window. From there, you can add physics components to game objects and adjust their properties to suit your needs.<\/p>\n

Unity3D Scenes<\/h2>\n

A Unity3D game is broken up into scenes, with each scene representing a specific level or environment in the game. Scenes are created by adding game objects and adjusting their properties to create the desired gameplay experience.<\/p>\n

To create a new scene, navigate to the File<\/strong> menu and select New Scene<\/strong>. From there, you can add game objects, adjust their properties, and save the scene for later use.<\/p>\n

Building Your First Unity3D Game<\/h1>\n

Now that we’ve covered the basics of Unity3D, let’s dive into building our first game. In this tutorial, we will be creating a simple 2D platformer game, where the player must navigate through a series of platforms and avoid obstacles to reach the end of the level.<\/p>\n

Setting Up the Scene<\/h2>\n

We’ll start by creating a new scene and setting up the game environment. To do so, follow these steps:<\/p>\n

    \n
  1. Create a new scene by selecting File > New Scene<\/strong>.<\/p>\n<\/li>\n
  2. \n

    Create a new cube game object by selecting GameObject > 3D Object > Cube<\/strong>.<\/p>\n<\/li>\n

  3. \n

    Scale the cube to make it larger by selecting it in the Hierarchy window, and adjusting the Scale X, Y, and Z<\/strong> properties in the Inspector window.<\/p>\n<\/li>\n

  4. \n

    Create a new plane game object by selecting GameObject > 3D Object > Plane<\/strong>.<\/p>\n<\/li>\n

  5. \n

    Position the plane beneath the cube game object by adjusting the Position Y<\/strong> property in the Inspector window.<\/p>\n<\/li>\n<\/ol>\n

    Your scene should now look like a simple platform, with the cube game object resting on the plane.<\/p>\n

    Adding Player Movement<\/h2>\n

    Next, we’ll add player movement to allow the player to control the cube game object using the arrow keys. To do so, follow these steps:<\/p>\n

      \n
    1. Create a new C# script by selecting Assets > Create > C# Script<\/strong>.<\/p>\n<\/li>\n
    2. \n

      Name the script “PlayerController”.<\/p>\n<\/li>\n

    3. \n

      Add the following code to the PlayerController.cs script:<\/p>\n<\/li>\n<\/ol>\n

      using System.Collections;\nusing System.Collections.Generic;\nusing UnityEngine;\n\npublic class PlayerController : MonoBehaviour {\n\n    public float speed;\n\n    void Update () {\n        float horizontalInput = Input.GetAxis(\"Horizontal\");\n        transform.Translate(new Vector3(horizontalInput, 0, 0) * Time.deltaTime * speed);\n    }\n}\n<\/code><\/pre>\n
        \n
      1. \n

        Attach the PlayerController script to the cube game object by dragging and dropping it onto the game object in the Hierarchy window.<\/p>\n<\/li>\n

      2. \n

        Adjust the Speed<\/strong> property of the PlayerController script in the Inspector window to set the player movement speed.<\/p>\n<\/li>\n

      3. \n

        Test the game by clicking the Play button in the Unity3D toolbar.<\/p>\n<\/li>\n<\/ol>\n

        Your game should now be playable, with the player able to control the cube game object using the arrow keys.<\/p>\n

        Adding Obstacles<\/h2>\n

        To make the game more challenging, we’ll add a ledge obstacle that will cause the player to fall off the platform if they collide with it. To do so, follow these steps:<\/p>\n

          \n
        1. Create a new cube game object by selecting GameObject > 3D Object > Cube<\/strong>.<\/p>\n<\/li>\n
        2. \n

          Scale the cube to create a thin, narrow ledge.<\/p>\n<\/li>\n

        3. \n

          Position the ledge above the platform by adjusting its Position Y<\/strong> property in the Inspector window.<\/p>\n<\/li>\n

        4. \n

          Attach a new C# script to the ledge game object by selecting Assets > Create > C# Script<\/strong>.<\/p>\n<\/li>\n

        5. \n

          Name the script “LedgeController”.<\/p>\n<\/li>\n

        6. \n

          Use the following code to add collision detection to the LedgeController script:<\/p>\n<\/li>\n<\/ol>\n

          using System.Collections;\nusing System.Collections.Generic;\nusing UnityEngine;\n\npublic class LedgeController : MonoBehaviour {\n\n    private void OnTriggerEnter(Collider other)\n    {\n        if (other.gameObject.CompareTag(\"Player\"))\n        {\n            Debug.Log(\"Player fell off the ledge!\");\n        }\n    }\n}\n<\/code><\/pre>\n
            \n
          1. \n

            Attach the LedgeController script to the ledge game object by dragging and dropping it onto the game object in the Hierarchy window.<\/p>\n<\/li>\n

          2. \n

            Test the game by clicking the Play button in the Unity3D toolbar.<\/p>\n<\/li>\n<\/ol>\n

            Your game should now have a new ledge obstacle that will cause the player to fall off the platform if they collide with it.<\/p>\n

            Adding Animation<\/h2>\n

            Finally, we’ll add animation to the game to make it more visually appealing. To do so, follow these steps:<\/p>\n

              \n
            1. Create a new sprite sheet containing animations for the player and any other game objects you wish to animate.<\/p>\n<\/li>\n
            2. \n

              Import the sprite sheet into Unity3D by dragging and dropping it onto the Project window.<\/p>\n<\/li>\n

            3. \n

              Create a new animation controller by selecting Assets > Create > Animation Controller<\/strong>.<\/p>\n<\/li>\n

            4. \n

              Name the animation controller “PlayerAnimations”.<\/p>\n<\/li>\n

            5. \n

              Open the animation controller by double-clicking it in the Project window.<\/p>\n<\/li>\n

            6. \n

              Create a new animation clip by selecting Create > Animation Clip<\/strong>.<\/p>\n<\/li>\n

            7. \n

              Name the animation clip “PlayerIdle”.<\/p>\n<\/li>\n

            8. \n

              Drag and drop the sprite sheet onto the animation clip in the Inspector window.<\/p>\n<\/li>\n

            9. \n

              Select the sprite sheet and adjust its properties in the Inspector window until the animations display correctly.<\/p>\n<\/li>\n

            10. \n

              Repeat steps 6-9 for each animation in the sprite sheet.<\/p>\n<\/li>\n

            11. \n

              Add an animation component to the player game object by selecting it in the Hierarchy window, and selecting Add Component > Animation<\/strong> in the Inspector window.<\/p>\n<\/li>\n

            12. \n

              Attach the PlayerAnimations animation controller to the animation component by selecting it in the Inspector window.<\/p>\n<\/li>\n

            13. \n

              Test the game by clicking the Play button in the Unity3D toolbar.<\/p>\n<\/li>\n<\/ol>\n

              Your game should now have animations for the player and any other game objects using your sprite sheet.<\/p>\n

              Conclusion<\/h1>\n

              In this tutorial, we covered the basics of Unity3D game development and walked through building a simple 2D platformer game. With Unity3D’s vast array of tools and resources, the possibilities for game development are endless. We hope this tutorial has inspired you to start developing your own games using Unity3D.<\/p>\n","protected":false},"excerpt":{"rendered":"

              Introduction Unity3D is one of the most popular game engines available, offering a vast array of tools and resources to game developers. In this tutorial, we will be walking you through the process of developing games with Unity3D, starting with the basics and gradually moving on to more advanced concepts. Continue Reading<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_import_markdown_pro_load_document_selector":0,"_import_markdown_pro_submit_text_textarea":"","footnotes":""},"categories":[1],"tags":[784,1410,1687,1689,1690,1691,119,1686,1688,1692],"yoast_head":"\nDeveloping Games with Unity3D - Pantherax Blogs<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"http:\/\/localhost:10003\/developing-games-with-unity3d\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Developing Games with Unity3D\" \/>\n<meta property=\"og:description\" content=\"Introduction Unity3D is one of the most popular game engines available, offering a vast array of tools and resources to game developers. In this tutorial, we will be walking you through the process of developing games with Unity3D, starting with the basics and gradually moving on to more advanced concepts. Continue Reading\" \/>\n<meta property=\"og:url\" content=\"http:\/\/localhost:10003\/developing-games-with-unity3d\/\" \/>\n<meta property=\"og:site_name\" content=\"Pantherax Blogs\" \/>\n<meta property=\"article:published_time\" content=\"2023-11-04T23:14:08+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-11-05T05:47:57+00:00\" \/>\n<meta name=\"author\" content=\"Panther\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Panther\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\n\t \"@context\": \"https:\/\/schema.org\",\n\t \"@graph\": [\n\t {\n\t \"@type\": \"Article\",\n\t \"@id\": \"http:\/\/localhost:10003\/developing-games-with-unity3d\/#article\",\n\t \"isPartOf\": {\n\t \"@id\": \"http:\/\/localhost:10003\/developing-games-with-unity3d\/\"\n\t },\n\t \"author\": {\n\t \"name\": \"Panther\",\n\t \"@id\": \"http:\/\/localhost:10003\/#\/schema\/person\/b63d816f4964b163e53cbbcffaa0f3d7\"\n\t },\n\t \"headline\": \"Developing Games with Unity3D\",\n\t \"datePublished\": \"2023-11-04T23:14:08+00:00\",\n\t \"dateModified\": \"2023-11-05T05:47:57+00:00\",\n\t \"mainEntityOfPage\": {\n\t \"@id\": \"http:\/\/localhost:10003\/developing-games-with-unity3d\/\"\n\t },\n\t \"wordCount\": 1341,\n\t \"publisher\": {\n\t \"@id\": \"http:\/\/localhost:10003\/#organization\"\n\t },\n\t \"keywords\": [\n\t \"\\\"Game Design\\\"\",\n\t \"\\\"game development\\\"\",\n\t \"\\\"game engine\\\"\",\n\t \"\\\"graphics\\\"\",\n\t \"\\\"mobile games\\\"\",\n\t \"\\\"multiplayer games\\\"\",\n\t \"\\\"programming\\\"\",\n\t \"\\\"Unity3D\\\"\",\n\t \"\\\"video games\\\"\",\n\t \"\\\"virtual reality\\\"]\"\n\t ],\n\t \"inLanguage\": \"en-US\"\n\t },\n\t {\n\t \"@type\": \"WebPage\",\n\t \"@id\": \"http:\/\/localhost:10003\/developing-games-with-unity3d\/\",\n\t \"url\": \"http:\/\/localhost:10003\/developing-games-with-unity3d\/\",\n\t \"name\": \"Developing Games with Unity3D - Pantherax Blogs\",\n\t \"isPartOf\": {\n\t \"@id\": \"http:\/\/localhost:10003\/#website\"\n\t },\n\t \"datePublished\": \"2023-11-04T23:14:08+00:00\",\n\t \"dateModified\": \"2023-11-05T05:47:57+00:00\",\n\t \"breadcrumb\": {\n\t \"@id\": \"http:\/\/localhost:10003\/developing-games-with-unity3d\/#breadcrumb\"\n\t },\n\t \"inLanguage\": \"en-US\",\n\t \"potentialAction\": [\n\t {\n\t \"@type\": \"ReadAction\",\n\t \"target\": [\n\t \"http:\/\/localhost:10003\/developing-games-with-unity3d\/\"\n\t ]\n\t }\n\t ]\n\t },\n\t {\n\t \"@type\": \"BreadcrumbList\",\n\t \"@id\": \"http:\/\/localhost:10003\/developing-games-with-unity3d\/#breadcrumb\",\n\t \"itemListElement\": [\n\t {\n\t \"@type\": \"ListItem\",\n\t \"position\": 1,\n\t \"name\": \"Home\",\n\t \"item\": \"http:\/\/localhost:10003\/\"\n\t },\n\t {\n\t \"@type\": \"ListItem\",\n\t \"position\": 2,\n\t \"name\": \"Developing Games with Unity3D\"\n\t }\n\t ]\n\t },\n\t {\n\t \"@type\": \"WebSite\",\n\t \"@id\": \"http:\/\/localhost:10003\/#website\",\n\t \"url\": \"http:\/\/localhost:10003\/\",\n\t \"name\": \"Pantherax Blogs\",\n\t \"description\": \"\",\n\t \"publisher\": {\n\t \"@id\": \"http:\/\/localhost:10003\/#organization\"\n\t },\n\t \"potentialAction\": [\n\t {\n\t \"@type\": \"SearchAction\",\n\t \"target\": {\n\t \"@type\": \"EntryPoint\",\n\t \"urlTemplate\": \"http:\/\/localhost:10003\/?s={search_term_string}\"\n\t },\n\t \"query-input\": \"required name=search_term_string\"\n\t }\n\t ],\n\t \"inLanguage\": \"en-US\"\n\t },\n\t {\n\t \"@type\": \"Organization\",\n\t \"@id\": \"http:\/\/localhost:10003\/#organization\",\n\t \"name\": \"Pantherax Blogs\",\n\t \"url\": \"http:\/\/localhost:10003\/\",\n\t \"logo\": {\n\t \"@type\": \"ImageObject\",\n\t \"inLanguage\": \"en-US\",\n\t \"@id\": \"http:\/\/localhost:10003\/#\/schema\/logo\/image\/\",\n\t \"url\": \"http:\/\/localhost:10003\/wp-content\/uploads\/2023\/11\/cropped-9e7721cb-2d62-4f72-ab7f-7d1d8db89226.jpeg\",\n\t \"contentUrl\": \"http:\/\/localhost:10003\/wp-content\/uploads\/2023\/11\/cropped-9e7721cb-2d62-4f72-ab7f-7d1d8db89226.jpeg\",\n\t \"width\": 1024,\n\t \"height\": 1024,\n\t \"caption\": \"Pantherax Blogs\"\n\t },\n\t \"image\": {\n\t \"@id\": \"http:\/\/localhost:10003\/#\/schema\/logo\/image\/\"\n\t }\n\t },\n\t {\n\t \"@type\": \"Person\",\n\t \"@id\": \"http:\/\/localhost:10003\/#\/schema\/person\/b63d816f4964b163e53cbbcffaa0f3d7\",\n\t \"name\": \"Panther\",\n\t \"image\": {\n\t \"@type\": \"ImageObject\",\n\t \"inLanguage\": \"en-US\",\n\t \"@id\": \"http:\/\/localhost:10003\/#\/schema\/person\/image\/\",\n\t \"url\": \"http:\/\/2.gravatar.com\/avatar\/b8c0eda5a49f8f31ec32d0a0f9d6f838?s=96&d=mm&r=g\",\n\t \"contentUrl\": \"http:\/\/2.gravatar.com\/avatar\/b8c0eda5a49f8f31ec32d0a0f9d6f838?s=96&d=mm&r=g\",\n\t \"caption\": \"Panther\"\n\t },\n\t \"sameAs\": [\n\t \"http:\/\/localhost:10003\"\n\t ],\n\t \"url\": \"http:\/\/localhost:10003\/author\/pepethefrog\/\"\n\t }\n\t ]\n\t}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Developing Games with Unity3D - Pantherax Blogs","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":"http:\/\/localhost:10003\/developing-games-with-unity3d\/","og_locale":"en_US","og_type":"article","og_title":"Developing Games with Unity3D","og_description":"Introduction Unity3D is one of the most popular game engines available, offering a vast array of tools and resources to game developers. In this tutorial, we will be walking you through the process of developing games with Unity3D, starting with the basics and gradually moving on to more advanced concepts. Continue Reading","og_url":"http:\/\/localhost:10003\/developing-games-with-unity3d\/","og_site_name":"Pantherax Blogs","article_published_time":"2023-11-04T23:14:08+00:00","article_modified_time":"2023-11-05T05:47:57+00:00","author":"Panther","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Panther","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"http:\/\/localhost:10003\/developing-games-with-unity3d\/#article","isPartOf":{"@id":"http:\/\/localhost:10003\/developing-games-with-unity3d\/"},"author":{"name":"Panther","@id":"http:\/\/localhost:10003\/#\/schema\/person\/b63d816f4964b163e53cbbcffaa0f3d7"},"headline":"Developing Games with Unity3D","datePublished":"2023-11-04T23:14:08+00:00","dateModified":"2023-11-05T05:47:57+00:00","mainEntityOfPage":{"@id":"http:\/\/localhost:10003\/developing-games-with-unity3d\/"},"wordCount":1341,"publisher":{"@id":"http:\/\/localhost:10003\/#organization"},"keywords":["\"Game Design\"","\"game development\"","\"game engine\"","\"graphics\"","\"mobile games\"","\"multiplayer games\"","\"programming\"","\"Unity3D\"","\"video games\"","\"virtual reality\"]"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"http:\/\/localhost:10003\/developing-games-with-unity3d\/","url":"http:\/\/localhost:10003\/developing-games-with-unity3d\/","name":"Developing Games with Unity3D - Pantherax Blogs","isPartOf":{"@id":"http:\/\/localhost:10003\/#website"},"datePublished":"2023-11-04T23:14:08+00:00","dateModified":"2023-11-05T05:47:57+00:00","breadcrumb":{"@id":"http:\/\/localhost:10003\/developing-games-with-unity3d\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["http:\/\/localhost:10003\/developing-games-with-unity3d\/"]}]},{"@type":"BreadcrumbList","@id":"http:\/\/localhost:10003\/developing-games-with-unity3d\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/localhost:10003\/"},{"@type":"ListItem","position":2,"name":"Developing Games with Unity3D"}]},{"@type":"WebSite","@id":"http:\/\/localhost:10003\/#website","url":"http:\/\/localhost:10003\/","name":"Pantherax Blogs","description":"","publisher":{"@id":"http:\/\/localhost:10003\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"http:\/\/localhost:10003\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"http:\/\/localhost:10003\/#organization","name":"Pantherax Blogs","url":"http:\/\/localhost:10003\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/localhost:10003\/#\/schema\/logo\/image\/","url":"http:\/\/localhost:10003\/wp-content\/uploads\/2023\/11\/cropped-9e7721cb-2d62-4f72-ab7f-7d1d8db89226.jpeg","contentUrl":"http:\/\/localhost:10003\/wp-content\/uploads\/2023\/11\/cropped-9e7721cb-2d62-4f72-ab7f-7d1d8db89226.jpeg","width":1024,"height":1024,"caption":"Pantherax Blogs"},"image":{"@id":"http:\/\/localhost:10003\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"http:\/\/localhost:10003\/#\/schema\/person\/b63d816f4964b163e53cbbcffaa0f3d7","name":"Panther","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/localhost:10003\/#\/schema\/person\/image\/","url":"http:\/\/2.gravatar.com\/avatar\/b8c0eda5a49f8f31ec32d0a0f9d6f838?s=96&d=mm&r=g","contentUrl":"http:\/\/2.gravatar.com\/avatar\/b8c0eda5a49f8f31ec32d0a0f9d6f838?s=96&d=mm&r=g","caption":"Panther"},"sameAs":["http:\/\/localhost:10003"],"url":"http:\/\/localhost:10003\/author\/pepethefrog\/"}]}},"jetpack_sharing_enabled":true,"jetpack_featured_media_url":"","_links":{"self":[{"href":"http:\/\/localhost:10003\/wp-json\/wp\/v2\/posts\/4208"}],"collection":[{"href":"http:\/\/localhost:10003\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/localhost:10003\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/localhost:10003\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/localhost:10003\/wp-json\/wp\/v2\/comments?post=4208"}],"version-history":[{"count":1,"href":"http:\/\/localhost:10003\/wp-json\/wp\/v2\/posts\/4208\/revisions"}],"predecessor-version":[{"id":4344,"href":"http:\/\/localhost:10003\/wp-json\/wp\/v2\/posts\/4208\/revisions\/4344"}],"wp:attachment":[{"href":"http:\/\/localhost:10003\/wp-json\/wp\/v2\/media?parent=4208"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/localhost:10003\/wp-json\/wp\/v2\/categories?post=4208"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/localhost:10003\/wp-json\/wp\/v2\/tags?post=4208"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}