{"id":37939,"date":"2024-11-01T10:01:41","date_gmt":"2024-11-01T10:01:41","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=37939"},"modified":"2024-11-01T11:33:04","modified_gmt":"2024-11-01T11:33:04","slug":"unity-2d-game-development-adding-sound-background-music-and-sound-effects-using-unitys-audio-system","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/37939\/","title":{"rendered":"Unity 2D Game Development, Adding Sound Background music and sound effects using Unity&#8217;s audio system."},"content":{"rendered":"<p>Unity is a platform that provides powerful tools for game developers and is suitable for 2D and 3D game development. In particular, sound is an important element that makes the player\u2019s experience meaningful when developing 2D games. This course will explain in detail how to add the necessary background music and sound effects to the game by utilizing Unity&#8217;s audio system.<\/p>\n<h2>1. Overview of the Audio System<\/h2>\n<p>Unity&#8217;s audio system provides the ability to manage and play various sounds within the game. You can control the playback and position of sounds using audio sources and audio listeners. An audio source is a component that plays sound, while an audio listener is responsible for hearing the sound. By default, the audio listener is automatically assigned to the camera.<\/p>\n<h2>2. Project Setup<\/h2>\n<p>After creating a Unity project and setting up a 2D game, you need to add sound files to the project. Various formats such as WAV, MP3, and OGG are supported for sound files. For example, it is good practice to organize background music and sound effects in separate folders.<\/p>\n<h3>2.1 Adding Audio Files<\/h3>\n<ol>\n<li>\n<p>Open the project window in the Unity Editor and right-click in the <strong>Assets<\/strong> folder.<\/p>\n<\/li>\n<li>\n<p>Select <strong>Create<\/strong> and then click <strong>Folder<\/strong> to create an <strong>Audio<\/strong> folder. Within this folder, create <strong>BackgroundMusic<\/strong> and <strong>SoundEffects<\/strong> folders.<\/p>\n<\/li>\n<li>\n<p>Drag and drop the prepared sound files into the corresponding folders.<\/p>\n<\/li>\n<\/ol>\n<h2>3. Adding Background Music<\/h2>\n<p>To add background music, you must first set up an audio source.<\/p>\n<h3>3.1 Adding an Audio Source Component<\/h3>\n<ol>\n<li>\n<p>Create a game object. For example, select <strong>GameObject &gt; Create Empty<\/strong> to create an empty game object and rename it to <strong>BackgroundMusic<\/strong>.<\/p>\n<\/li>\n<li>\n<p>Select the BackgroundMusic game object, click <strong>Add Component<\/strong>, and select <strong>Audio &gt; Audio Source<\/strong>.<\/p>\n<\/li>\n<\/ol>\n<h3>3.2 Configuring Background Music<\/h3>\n<p>In the component of the audio source, make the following settings:<\/p>\n<ul>\n<li><strong>AudioClip<\/strong>: Drag and drop the audio clip to be used as background music into this field.<\/li>\n<li><strong>Play On Awake<\/strong>: Check this option so that the background music plays automatically when the game starts.<\/li>\n<li><strong>Loop<\/strong>: Check this option to set the music to loop continuously.<\/li>\n<\/ul>\n<h3>3.3 Managing Background Music Using Scripts<\/h3>\n<p>If you want to control the background music while it is playing, you can add a script. Here\u2019s a basic example of a C# script:<\/p>\n<pre><code>using UnityEngine;\n\npublic class BackgroundMusicManager : MonoBehaviour\n{\n    private AudioSource audioSource;\n\n    void Start()\n    {\n        audioSource = GetComponent<AudioSource>();\n        PlayMusic();\n    }\n\n    public void PlayMusic()\n    {\n        if (!audioSource.isPlaying)\n        {\n            audioSource.Play();\n        }\n    }\n\n    public void StopMusic()\n    {\n        if (audioSource.isPlaying)\n        {\n            audioSource.Stop();\n        }\n    }\n}<\/code><\/pre>\n<h2>4. Adding Sound Effects<\/h2>\n<p>Sound effects are played when specific events occur in the game. The process of adding sound effects is similar to that of adding background music, but it needs to be managed separately from the audio source.<\/p>\n<h3>4.1 Adding an Audio Source for Sound Effects<\/h3>\n<ol>\n<li>\n<p>Create a dedicated empty game object to play sound effects and name it <strong>SoundEffectsManager<\/strong>.<\/p>\n<\/li>\n<li>\n<p>Add an <strong>Audio Source<\/strong> to this object through <strong>Add Component<\/strong>.<\/p>\n<\/li>\n<\/ol>\n<h3>4.2 Writing a Script to Play Sound Effects<\/h3>\n<p>Here\u2019s an example of a script to play sound effects during specific events:<\/p>\n<pre><code>using UnityEngine;\n\npublic class SoundEffectsManager : MonoBehaviour\n{\n    private AudioSource audioSource;\n\n    void Start()\n    {\n        audioSource = GetComponent<AudioSource>();\n    }\n\n    public void PlaySoundEffect(AudioClip clip)\n    {\n        audioSource.PlayOneShot(clip);\n    }\n}<\/code><\/pre>\n<h2>5. Integrating with Events<\/h2>\n<p>Now, let&#8217;s integrate sound effects to play when specific events occur in the game. For example, we can assume that a sound effect plays when the player collects an item.<\/p>\n<h3>5.1 Modifying the Item Script<\/h3>\n<pre><code>using UnityEngine;\n\npublic class ItemCollector : MonoBehaviour\n{\n    public AudioClip collectSound;\n    private SoundEffectsManager soundEffectsManager;\n\n    void Start()\n    {\n        soundEffectsManager = FindObjectOfType<SoundEffectsManager>();\n    }\n\n    void OnTriggerEnter2D(Collider2D other)\n    {\n        if (other.CompareTag(\"Player\"))\n        {\n            soundEffectsManager.PlaySoundEffect(collectSound);\n            \/\/ Add item collection logic\n            Destroy(gameObject);\n        }\n    }\n}<\/code><\/pre>\n<h2>6. Mixers and Audio Effects<\/h2>\n<p>In Unity, you can use the audio mixer to adjust the volume and panning of multiple audio sources. This allows you to create a more realistic sound environment. It is important to balance background music and sound effects using the mixer.<\/p>\n<h3>6.1 Creating an Audio Mixer<\/h3>\n<ol>\n<li>\n<p>Select <strong>Create &gt; Audio Mixer<\/strong> in the project window to create a mixer.<\/p>\n<\/li>\n<li>\n<p>Open the mixer window and create groups called <strong>Background<\/strong> and <strong>Effects<\/strong> under <strong>Groups<\/strong>.<\/p>\n<\/li>\n<\/ol>\n<h3>6.2 Connecting Audio Sources to the Mixer<\/h3>\n<ol>\n<li>\n<p>Set the <strong>Output<\/strong> property for the <strong>Audio Source<\/strong> of both background music and sound effects to connect them to the groups of the created mixer.<\/p>\n<\/li>\n<\/ol>\n<h3>6.3 Adjusting Mixer Parameters<\/h3>\n<p>You can adjust the volume and equalizer of each group in the mixer to make the sound more unique.<\/p>\n<h2>7. Audio Settings for Various Platforms<\/h2>\n<p>Unity supports various platforms, so it is necessary to optimize audio for each platform. It is important to consider audio quality and performance on mobile devices, consoles, and PCs. You can adjust audio quality to suit each Unity platform and adjust the sound volume to ensure optimal performance.<\/p>\n<h3>7.1 Audio Optimization for Mobile Platforms<\/h3>\n<p>On mobile devices, you should reduce the size of audio files and use compressed formats (lossy compression). This helps shorten loading times and improve overall performance.<\/p>\n<h3>7.2 Managing Audio for PC and Console Platforms<\/h3>\n<p>PCs and consoles can offer higher audio quality, so you can use high-quality audio files in WAV or FLAC formats. Additionally, these platforms can utilize 3D audio to enhance user experience.<\/p>\n<h2>8. Conclusion and Tips<\/h2>\n<p>Sound is an essential element that greatly enhances immersion in a game. It is important to provide players with a memorable experience by appropriately utilizing background music and sound effects. You should select and mix sounds suitable for each genre and optimize the sound through repetitive testing.<\/p>\n<p>Finally, it is important to prevent various errors that may occur during the process of adding audio and to use system resources efficiently. This can enhance the overall quality of the game.<\/p>\n<p>This article explained how to add background music and sound effects using Unity&#8217;s audio system. We hope this information helps you in your game development.<\/p>\n<footer>\n<p>2023 \u00a9 Unity 2D Game Development<\/p>\n<\/footer>\n","protected":false},"excerpt":{"rendered":"<p>Unity is a platform that provides powerful tools for game developers and is suitable for 2D and 3D game development. In particular, sound is an important element that makes the player\u2019s experience meaningful when developing 2D games. This course will explain in detail how to add the necessary background music and sound effects to the &hellip; <a href=\"https:\/\/atmokpo.com\/w\/37939\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;Unity 2D Game Development, Adding Sound Background music and sound effects using Unity&#8217;s audio system.&#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-37939","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>Unity 2D Game Development, Adding Sound Background music and sound effects using Unity&#039;s audio system. - \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\/37939\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Unity 2D Game Development, Adding Sound Background music and sound effects using Unity&#039;s audio system. - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"Unity is a platform that provides powerful tools for game developers and is suitable for 2D and 3D game development. In particular, sound is an important element that makes the player\u2019s experience meaningful when developing 2D games. This course will explain in detail how to add the necessary background music and sound effects to the &hellip; \ub354 \ubcf4\uae30 &quot;Unity 2D Game Development, Adding Sound Background music and sound effects using Unity&#8217;s audio system.&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/37939\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T10:01:41+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:33:04+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\/37939\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37939\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"Unity 2D Game Development, Adding Sound Background music and sound effects using Unity&#8217;s audio system.\",\"datePublished\":\"2024-11-01T10:01:41+00:00\",\"dateModified\":\"2024-11-01T11:33:04+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37939\/\"},\"wordCount\":879,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"Unity Basic\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/37939\/\",\"url\":\"https:\/\/atmokpo.com\/w\/37939\/\",\"name\":\"Unity 2D Game Development, Adding Sound Background music and sound effects using Unity's audio system. - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T10:01:41+00:00\",\"dateModified\":\"2024-11-01T11:33:04+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37939\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/37939\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/37939\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Unity 2D Game Development, Adding Sound Background music and sound effects using Unity&#8217;s audio system.\"}]},{\"@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":"Unity 2D Game Development, Adding Sound Background music and sound effects using Unity's audio system. - \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\/37939\/","og_locale":"ko_KR","og_type":"article","og_title":"Unity 2D Game Development, Adding Sound Background music and sound effects using Unity's audio system. - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"Unity is a platform that provides powerful tools for game developers and is suitable for 2D and 3D game development. In particular, sound is an important element that makes the player\u2019s experience meaningful when developing 2D games. This course will explain in detail how to add the necessary background music and sound effects to the &hellip; \ub354 \ubcf4\uae30 \"Unity 2D Game Development, Adding Sound Background music and sound effects using Unity&#8217;s audio system.\"","og_url":"https:\/\/atmokpo.com\/w\/37939\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T10:01:41+00:00","article_modified_time":"2024-11-01T11:33:04+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\/37939\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/37939\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"Unity 2D Game Development, Adding Sound Background music and sound effects using Unity&#8217;s audio system.","datePublished":"2024-11-01T10:01:41+00:00","dateModified":"2024-11-01T11:33:04+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/37939\/"},"wordCount":879,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["Unity Basic"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/37939\/","url":"https:\/\/atmokpo.com\/w\/37939\/","name":"Unity 2D Game Development, Adding Sound Background music and sound effects using Unity's audio system. - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T10:01:41+00:00","dateModified":"2024-11-01T11:33:04+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/37939\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/37939\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/37939\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"Unity 2D Game Development, Adding Sound Background music and sound effects using Unity&#8217;s audio system."}]},{"@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\/37939","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=37939"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37939\/revisions"}],"predecessor-version":[{"id":37940,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37939\/revisions\/37940"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=37939"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=37939"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=37939"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}