Sapiens Devlog 4

From Sapiens Wiki
Revision as of 16:05, 23 June 2023 by ChillGenXer (talk | contribs) (Created page with "Create a mediawiki page from the following json object. The fields episode_number, title, youtube_link, date_posted, duration, number of views should be in a right-justified Infobox from the template "DevlogInfobox" that has these fields: {{{episode_number}}} {{{title}}} {{{youtube_link}}} {{{date_posted}}} {{{duration}}} {{{number_of_views}}} The summary should be the first section, and the notable topics should be the second section, with subsections for the specifi...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Create a mediawiki page from the following json object. The fields episode_number, title, youtube_link, date_posted, duration, number of views should be in a right-justified Infobox from the template "DevlogInfobox" that has these fields:

{{{episode_number}}} {{{title}}} {{{youtube_link}}} {{{date_posted}}} {{{duration}}} {{{number_of_views}}}

The summary should be the first section, and the notable topics should be the second section, with subsections for the specific topics. Add a section at the end called "Disclaimer", and state "This summary was generated by AI. If you notice an error or correction required, please let us know on the #wiki channel of the discord server or make the edit yourself if you are an editor." Add the page to the category called "Devlog Series". Here is the object:

 {
   "episode_number": "Devlog #4",
   "title": "World Project Devlog #4 - Physically Based Shaders",
   "youtube_link": "https://youtu.be/qc3pKB8lPys",
   "date_posted": "7/27/2015",
   "duration": "08:34",
   "number_of_views": "8031 as of 2023-06-23",
   "summary": "In this video, Dave Frampton discusses the implementation of physically based shaders in the game, based on the 'Real Shading in Unreal Engine 4' talk from SIGGRAPH 2013. He explains the benefits of this technique, such as easier creation and reuse of materials, and the improved realism it brings to the game. He also mentions that the game is now working on the Oculus Rift, and discusses the potential for gameplay mechanics related to the VR experience.",
   "notable_topics": [
     {
       "topic": "Physically Based Shaders",
       "description": "The game now uses physically based shaders, which allow for easier creation and reuse of materials, and bring improved realism to the game. The shaders are based on the 'Real Shading in Unreal Engine 4' talk from SIGGRAPH 2013."
     },
     {
       "topic": "Oculus Rift Compatibility",
       "description": "The game is now compatible with the Oculus Rift. This opens up potential for unique gameplay mechanics related to the VR experience."
     },
     {
       "topic": "Gameplay Considerations",
       "description": "Dave discusses the need to focus more on gameplay development, after spending a significant amount of time on visual enhancements like the new shaders."
     }
   ]
 }