{"id":62,"date":"2021-11-13T22:31:44","date_gmt":"2021-11-13T22:31:44","guid":{"rendered":"https:\/\/www.lamplightproductions.com\/?p=62"},"modified":"2022-03-04T18:54:32","modified_gmt":"2022-03-04T18:54:32","slug":"lots-of-chairs","status":"publish","type":"post","link":"https:\/\/lamplightproductions.com\/?p=62","title":{"rendered":"Lots of Chairs"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">I recently attended the <a href=\"https:\/\/awe.live\">AWE live<\/a> event where one of the speakers had placed prizes under a couple of the seats for the in-person attendees. Unfortunately for me <!--more--> (and many others) I was attending virtually but was inspired to create the <a href=\"https:\/\/account.altvr.com\/worlds\/1706931531869586246\/spaces\/1867969477824480237\">Lots of Chairs<\/a> world in Altspace.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The Unity store had a <a href=\"https:\/\/assetstore.unity.com\/packages\/3d\/props\/furniture\/pbr-folding-chairs-135084\">free chair model<\/a> which I initially hand copied into rows and columns over a 100&#215;100 meter ground plane. The first version wasn&#8217;t too bad but the chairs came in a little small. After scaling up the chair models it was clear that I would have recreate the world again to avoid overlapping geometry.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">I took this opportunity to learn a bit about creating <a href=\"https:\/\/learn.unity.com\/tutorial\/editor-scripting\">editor scripts in Unity<\/a>. With this newly acquired knowledge I cobbled together a script that would place my chairs on a grid and allow me to randomize the offsets and rotation just a bit to make the chairs look hand-placed. <\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Here&#8217;s my ChairGridBuilder code that&#8217;s attached to an empty GameObject in the scene.<\/p>\n\n\n\n<pre class=\"wp-block-code llp_code__block\"><code>using System.Collections;\nusing System.Collections.Generic;\nusing UnityEngine;\n\npublic class ChairGridBuilder : MonoBehaviour\n{\n    public GameObject obj;\n    public int columns = 10;\n    public int rows = 10;\n    public float columnSpacing = 0.5f;\n    public float rowSpacing = 1f;\n    public float rowNoise = .01f;\n    public float columnNoise = .01f;\n    public float rotationNoise = 0.01f;\n    public float chairScale = 1.2f;\n\n\n    Vector3 spawnPoint;\n    public Transform chairsParent;\n\n    public void BuildChairGrid()\n    {\n        for (int c = 0; c &lt; columns; ++c)\n        {\n            for (int r = 0; r &lt; rows; ++r)\n            {\n                float colPos = c * columnSpacing + Random.Range(-columnNoise, columnNoise);\n                float rowPos = r * rowSpacing + Random.Range(-rowNoise, rowNoise);\n                spawnPoint = new Vector3(colPos, 0, rowPos);\n                GameObject o = Instantiate(obj, spawnPoint, Quaternion.Euler(0, Random.Range(-rotationNoise, rotationNoise), 0));\n                o.transform.localScale *= chairScale;\n                o.transform.SetParent(chairsParent);\n            }\n        }\n\n    }\n\n    public void ClearChairs()\n    {\n        var children = new List&lt;GameObject&gt;();\n        foreach (Transform child in chairsParent.transform) children.Add(child.gameObject);\n        children.ForEach(child =&gt; MonoBehaviour.DestroyImmediate(child));\n    }\n}\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">And here&#8217;s the code for the companion editor script. <\/p>\n\n\n\n<pre class=\"wp-block-code llp_code__block\"><code>using UnityEngine;\nusing UnityEditor;\n\n&#91;CustomEditor(typeof(ChairGridBuilder))]\npublic class ChairGridBuilderEditor : Editor\n{\n    public override void OnInspectorGUI()\n    {\n        DrawDefaultInspector();\n        ChairGridBuilder myScript = (ChairGridBuilder)target;\n        if(GUILayout.Button(\"Build Grid\"))\n        {\n            myScript.BuildChairGrid();\n        }\n        if(GUILayout.Button(\"Clear Chairs\"))\n        {\n            myScript.ClearChairs();\n        }\n    }\n\n}\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">The code above created an inspector panel that allowed me to iterate quickly on the settings. <\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Looking back I think the next time I create an editor like this I&#8217;ll use a ScriptableObject to hold the settings. When the AltspaceVR uploader strips out the scripts I have to re-add the script to the object and tweak the settings to make any changes to the template.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" decoding=\"async\" width=\"1024\" height=\"419\" loading=\"lazy\" src=\"https:\/\/i0.wp.com\/www.lamplightproductions.com\/wp-content\/uploads\/2021\/11\/Chairs_GridBuilder_Inspector-1024x419.png?resize=1024%2C419&#038;ssl=1\" alt=\"\" class=\"wp-image-64\" srcset=\"https:\/\/i0.wp.com\/lamplightproductions.com\/wp-content\/uploads\/2021\/11\/Chairs_GridBuilder_Inspector.png?resize=1024%2C419&amp;ssl=1 1024w, https:\/\/i0.wp.com\/lamplightproductions.com\/wp-content\/uploads\/2021\/11\/Chairs_GridBuilder_Inspector.png?resize=300%2C123&amp;ssl=1 300w, https:\/\/i0.wp.com\/lamplightproductions.com\/wp-content\/uploads\/2021\/11\/Chairs_GridBuilder_Inspector.png?resize=768%2C314&amp;ssl=1 768w, https:\/\/i0.wp.com\/lamplightproductions.com\/wp-content\/uploads\/2021\/11\/Chairs_GridBuilder_Inspector.png?resize=500%2C204&amp;ssl=1 500w, https:\/\/i0.wp.com\/lamplightproductions.com\/wp-content\/uploads\/2021\/11\/Chairs_GridBuilder_Inspector.png?w=1145&amp;ssl=1 1145w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" \/><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">Once the chairs were in place, I darkened the world, added black fog and a couple of colliders so you can&#8217;t reach the end of the world &#8211; sort of giving the illusion that the chairs go on forever. <\/p>\n\n\n\n<p class=\"wp-block-paragraph\">With 155 columns and 84 rows that makes for 13,020 instances of the chair model. Fortunately the chair model has a couple levels of detail with final level being fully culled from the world just out of sight beyond the fog &#8211; otherwise this would bring my Quest 2 headset to its knees very, very quickly.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">So given that this world was created to provide a place to hide some secrets, I&#8217;ve placed a secret under one of the 13,000+ chairs in that world. Good hunting!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>I recently attended the AWE live event where one of the speakers had placed prizes under a couple of the seats for the in-person attendees. Unfortunately for me<\/p>\n","protected":false},"author":1,"featured_media":63,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"nf_dc_page":"","_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":""},"categories":[4,3],"tags":[25,5],"class_list":["post-62","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-altspacevr","category-xr","tag-altspacevr","tag-xr"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Lots of Chairs - Lamplight Productions<\/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:\/\/lamplightproductions.com\/?p=62\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Lots of Chairs - Lamplight Productions\" \/>\n<meta property=\"og:description\" content=\"I recently attended the AWE live event where one of the speakers had placed prizes under a couple of the seats for the in-person attendees. Unfortunately for me\" \/>\n<meta property=\"og:url\" content=\"https:\/\/lamplightproductions.com\/?p=62\" \/>\n<meta property=\"og:site_name\" content=\"Lamplight Productions\" \/>\n<meta property=\"article:published_time\" content=\"2021-11-13T22:31:44+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-03-04T18:54:32+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/lamplightproductions.com\/wp-content\/uploads\/2021\/11\/Chairs_PosterImage.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1920\" \/>\n\t<meta property=\"og:image:height\" content=\"1080\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"markwalker\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"markwalker\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/lamplightproductions.com\\\/?p=62#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/lamplightproductions.com\\\/?p=62\"},\"author\":{\"name\":\"markwalker\",\"@id\":\"https:\\\/\\\/lamplightproductions.com\\\/#\\\/schema\\\/person\\\/6c5b582b589d6f9f0e9ec748d1419cd6\"},\"headline\":\"Lots of Chairs\",\"datePublished\":\"2021-11-13T22:31:44+00:00\",\"dateModified\":\"2022-03-04T18:54:32+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/lamplightproductions.com\\\/?p=62\"},\"wordCount\":372,\"publisher\":{\"@id\":\"https:\\\/\\\/lamplightproductions.com\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/lamplightproductions.com\\\/?p=62#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/i0.wp.com\\\/lamplightproductions.com\\\/wp-content\\\/uploads\\\/2021\\\/11\\\/Chairs_PosterImage.png?fit=1920%2C1080&ssl=1\",\"keywords\":[\"AltspaceVR\",\"XR\"],\"articleSection\":[\"AltSpaceVR\",\"XR\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/lamplightproductions.com\\\/?p=62\",\"url\":\"https:\\\/\\\/lamplightproductions.com\\\/?p=62\",\"name\":\"Lots of Chairs - Lamplight Productions\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/lamplightproductions.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/lamplightproductions.com\\\/?p=62#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/lamplightproductions.com\\\/?p=62#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/i0.wp.com\\\/lamplightproductions.com\\\/wp-content\\\/uploads\\\/2021\\\/11\\\/Chairs_PosterImage.png?fit=1920%2C1080&ssl=1\",\"datePublished\":\"2021-11-13T22:31:44+00:00\",\"dateModified\":\"2022-03-04T18:54:32+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/lamplightproductions.com\\\/?p=62#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/lamplightproductions.com\\\/?p=62\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/lamplightproductions.com\\\/?p=62#primaryimage\",\"url\":\"https:\\\/\\\/i0.wp.com\\\/lamplightproductions.com\\\/wp-content\\\/uploads\\\/2021\\\/11\\\/Chairs_PosterImage.png?fit=1920%2C1080&ssl=1\",\"contentUrl\":\"https:\\\/\\\/i0.wp.com\\\/lamplightproductions.com\\\/wp-content\\\/uploads\\\/2021\\\/11\\\/Chairs_PosterImage.png?fit=1920%2C1080&ssl=1\",\"width\":1920,\"height\":1080},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/lamplightproductions.com\\\/?p=62#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/lamplightproductions.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Lots of Chairs\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/lamplightproductions.com\\\/#website\",\"url\":\"https:\\\/\\\/lamplightproductions.com\\\/\",\"name\":\"Lamplight Productions\",\"description\":\"Doing stuff.\",\"publisher\":{\"@id\":\"https:\\\/\\\/lamplightproductions.com\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/lamplightproductions.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/lamplightproductions.com\\\/#organization\",\"name\":\"Lamplight Productions\",\"url\":\"https:\\\/\\\/lamplightproductions.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/lamplightproductions.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/i0.wp.com\\\/lamplightproductions.com\\\/wp-content\\\/uploads\\\/2022\\\/02\\\/LamplightProductions_Logo.png?fit=218%2C218&ssl=1\",\"contentUrl\":\"https:\\\/\\\/i0.wp.com\\\/lamplightproductions.com\\\/wp-content\\\/uploads\\\/2022\\\/02\\\/LamplightProductions_Logo.png?fit=218%2C218&ssl=1\",\"width\":218,\"height\":218,\"caption\":\"Lamplight Productions\"},\"image\":{\"@id\":\"https:\\\/\\\/lamplightproductions.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/lamplightproductions.com\\\/#\\\/schema\\\/person\\\/6c5b582b589d6f9f0e9ec748d1419cd6\",\"name\":\"markwalker\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/939a0b9ca1fd97a71f5dda4dc750b88e6bdbad5c2fc121982955510589229b3a?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/939a0b9ca1fd97a71f5dda4dc750b88e6bdbad5c2fc121982955510589229b3a?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/939a0b9ca1fd97a71f5dda4dc750b88e6bdbad5c2fc121982955510589229b3a?s=96&d=mm&r=g\",\"caption\":\"markwalker\"},\"sameAs\":[\"http:\\\/\\\/lamplightproductions.com\"],\"url\":\"https:\\\/\\\/lamplightproductions.com\\\/?author=1\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Lots of Chairs - Lamplight Productions","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:\/\/lamplightproductions.com\/?p=62","og_locale":"en_US","og_type":"article","og_title":"Lots of Chairs - Lamplight Productions","og_description":"I recently attended the AWE live event where one of the speakers had placed prizes under a couple of the seats for the in-person attendees. Unfortunately for me","og_url":"https:\/\/lamplightproductions.com\/?p=62","og_site_name":"Lamplight Productions","article_published_time":"2021-11-13T22:31:44+00:00","article_modified_time":"2022-03-04T18:54:32+00:00","og_image":[{"width":1920,"height":1080,"url":"https:\/\/lamplightproductions.com\/wp-content\/uploads\/2021\/11\/Chairs_PosterImage.png","type":"image\/png"}],"author":"markwalker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"markwalker","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/lamplightproductions.com\/?p=62#article","isPartOf":{"@id":"https:\/\/lamplightproductions.com\/?p=62"},"author":{"name":"markwalker","@id":"https:\/\/lamplightproductions.com\/#\/schema\/person\/6c5b582b589d6f9f0e9ec748d1419cd6"},"headline":"Lots of Chairs","datePublished":"2021-11-13T22:31:44+00:00","dateModified":"2022-03-04T18:54:32+00:00","mainEntityOfPage":{"@id":"https:\/\/lamplightproductions.com\/?p=62"},"wordCount":372,"publisher":{"@id":"https:\/\/lamplightproductions.com\/#organization"},"image":{"@id":"https:\/\/lamplightproductions.com\/?p=62#primaryimage"},"thumbnailUrl":"https:\/\/i0.wp.com\/lamplightproductions.com\/wp-content\/uploads\/2021\/11\/Chairs_PosterImage.png?fit=1920%2C1080&ssl=1","keywords":["AltspaceVR","XR"],"articleSection":["AltSpaceVR","XR"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/lamplightproductions.com\/?p=62","url":"https:\/\/lamplightproductions.com\/?p=62","name":"Lots of Chairs - Lamplight Productions","isPartOf":{"@id":"https:\/\/lamplightproductions.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/lamplightproductions.com\/?p=62#primaryimage"},"image":{"@id":"https:\/\/lamplightproductions.com\/?p=62#primaryimage"},"thumbnailUrl":"https:\/\/i0.wp.com\/lamplightproductions.com\/wp-content\/uploads\/2021\/11\/Chairs_PosterImage.png?fit=1920%2C1080&ssl=1","datePublished":"2021-11-13T22:31:44+00:00","dateModified":"2022-03-04T18:54:32+00:00","breadcrumb":{"@id":"https:\/\/lamplightproductions.com\/?p=62#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/lamplightproductions.com\/?p=62"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/lamplightproductions.com\/?p=62#primaryimage","url":"https:\/\/i0.wp.com\/lamplightproductions.com\/wp-content\/uploads\/2021\/11\/Chairs_PosterImage.png?fit=1920%2C1080&ssl=1","contentUrl":"https:\/\/i0.wp.com\/lamplightproductions.com\/wp-content\/uploads\/2021\/11\/Chairs_PosterImage.png?fit=1920%2C1080&ssl=1","width":1920,"height":1080},{"@type":"BreadcrumbList","@id":"https:\/\/lamplightproductions.com\/?p=62#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/lamplightproductions.com\/"},{"@type":"ListItem","position":2,"name":"Lots of Chairs"}]},{"@type":"WebSite","@id":"https:\/\/lamplightproductions.com\/#website","url":"https:\/\/lamplightproductions.com\/","name":"Lamplight Productions","description":"Doing stuff.","publisher":{"@id":"https:\/\/lamplightproductions.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/lamplightproductions.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/lamplightproductions.com\/#organization","name":"Lamplight Productions","url":"https:\/\/lamplightproductions.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/lamplightproductions.com\/#\/schema\/logo\/image\/","url":"https:\/\/i0.wp.com\/lamplightproductions.com\/wp-content\/uploads\/2022\/02\/LamplightProductions_Logo.png?fit=218%2C218&ssl=1","contentUrl":"https:\/\/i0.wp.com\/lamplightproductions.com\/wp-content\/uploads\/2022\/02\/LamplightProductions_Logo.png?fit=218%2C218&ssl=1","width":218,"height":218,"caption":"Lamplight Productions"},"image":{"@id":"https:\/\/lamplightproductions.com\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/lamplightproductions.com\/#\/schema\/person\/6c5b582b589d6f9f0e9ec748d1419cd6","name":"markwalker","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/939a0b9ca1fd97a71f5dda4dc750b88e6bdbad5c2fc121982955510589229b3a?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/939a0b9ca1fd97a71f5dda4dc750b88e6bdbad5c2fc121982955510589229b3a?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/939a0b9ca1fd97a71f5dda4dc750b88e6bdbad5c2fc121982955510589229b3a?s=96&d=mm&r=g","caption":"markwalker"},"sameAs":["http:\/\/lamplightproductions.com"],"url":"https:\/\/lamplightproductions.com\/?author=1"}]}},"jetpack_sharing_enabled":true,"jetpack_featured_media_url":"https:\/\/i0.wp.com\/lamplightproductions.com\/wp-content\/uploads\/2021\/11\/Chairs_PosterImage.png?fit=1920%2C1080&ssl=1","_links":{"self":[{"href":"https:\/\/lamplightproductions.com\/index.php?rest_route=\/wp\/v2\/posts\/62","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/lamplightproductions.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/lamplightproductions.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/lamplightproductions.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/lamplightproductions.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=62"}],"version-history":[{"count":15,"href":"https:\/\/lamplightproductions.com\/index.php?rest_route=\/wp\/v2\/posts\/62\/revisions"}],"predecessor-version":[{"id":184,"href":"https:\/\/lamplightproductions.com\/index.php?rest_route=\/wp\/v2\/posts\/62\/revisions\/184"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/lamplightproductions.com\/index.php?rest_route=\/wp\/v2\/media\/63"}],"wp:attachment":[{"href":"https:\/\/lamplightproductions.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=62"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/lamplightproductions.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=62"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/lamplightproductions.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=62"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}