You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

139 lines
5.8KB

  1. <!DOCTYPE html>
  2. <html>
  3. <meta charset="utf-8">
  4. <head>
  5. <style>
  6. #header
  7. {
  8. background: #2BA6E3;
  9. padding: 0.7em;
  10. text-align: left;
  11. }
  12. #header a
  13. {
  14. color: white;
  15. text-decoration: none;
  16. padding: 0.5em 1em 0.5em 1em;
  17. }
  18. #lang
  19. {
  20. float: right;
  21. }
  22. .news_item
  23. {
  24. background: #FFFFFF;
  25. width: 720px;
  26. padding: 1em;
  27. margin-top: 2em;
  28. margin-bottom: 2em;
  29. border: 1px solid #E0E0E0;
  30. text-align: left;
  31. }
  32. .news_item_contents
  33. {
  34. color: #444;
  35. line-height: 1.5em;
  36. }
  37. .news_item_date
  38. {
  39. margin-bottom: 2em;
  40. color: #aaa;
  41. }
  42. html
  43. {
  44. font-family: sans-serif;
  45. }
  46. body
  47. {
  48. background: #FAFAFA;
  49. }
  50. code, pre
  51. {
  52. font-family: monospace, serif;
  53. font-size: 1em;
  54. color: #7f0a0c;
  55. }
  56. img
  57. {
  58. width: 720px;
  59. }
  60. a
  61. {
  62. color: #3A91CB;
  63. text-decoration: none;
  64. }
  65. table
  66. {
  67. border-collapse: collapse;
  68. }
  69. table, th, td
  70. {
  71. border: 1px solid #aaa;
  72. padding: 0.5em;
  73. margin-top: 0.5em;
  74. margin-bottom: 0.5em;
  75. }
  76. </style>
  77. </head>
  78. <body>
  79. <div id="header">
  80. <strong id="title">Open Game Studio</strong>
  81. <a href="../../en/news/index.html">News</a>
  82. <a href="../../en/game/index.html">Games</a>
  83. <a href="../../en/tool/index.html">Tools</a>
  84. <a href="../../en/page/about.html">About</a>
  85. <div id="lang">
  86. <a href="../../en/news/lets-go.html">EN</a>
  87. <a href="../../ru/news/lets-go.html">RU</a>
  88. </div>
  89. </div>
  90. <center>
  91. <h1>In the news...</h1>
  92. <div class="news_item">
  93. <h2 class="news_item_title">
  94. <a href="lets-go.html">Let's go</a>
  95. </h2>
  96. <p class="news_item_date">
  97. 2017-03-16 00:00
  98. </p>
  99. <div class="news_item_contents">
  100. <p><img src="../../images/2017-03_lets-go.png" alt="Gagarin's words" /></p>
  101. <p>In this article we describe our progress in January and February of 2017: rendering under iOS/Web and a new tutorial tool.</p>
  102. <p><strong>Rendering under iOS/Web</strong></p>
  103. <p>To our surprise, we got a simple red cube rendered under <a href="https://twitter.com/OpenGameStudio/status/826816343433498627">iOS</a> and <a href="https://twitter.com/OpenGameStudio/status/829731986264698881">Web</a> pretty fast: in early February. However, this is only the beginning of this year's challenge to support Android, iOS, and Web platforms. There's a long and bumpy road ahead of us as we need a lot more on each platform before we can claim a success: visual effects, Python scripting, data archives.</p>
  104. <p>Since it took us about four months to get to mobile and web platforms, we decided to share our knowledge and help OpenSceneGraph community with a guide that shows how to use OpenSceneGraph on desktop, mobile, and web. We believe the more widespread OpenSceneGraph is, the stronger our technology becomes. As Isaac Newton said, "If I have seen further, it is by standing on the shoulders of giants." OpenSceneGraph is our giant.</p>
  105. <p><strong>Tutorial tool</strong></p>
  106. <p>Having conducted four live sessions before, it was clear the guide needs videos depicting every nuance. However, bare video alone is only good for showing what to do and not for explaining why do it in a certain way. That's why we decided to combine video with text in the forms of video subtitles and separate articles.</p>
  107. <p>To combine text and video, we first tried <a href="http://openshotvideo.com">OpenShot</a>. It worked well, but we quickly saw its limitations:</p>
  108. <ul>
  109. <li>Too much time is spent on adjusting time frames and animations</li>
  110. <li>Project file and original resources are hard to track with VCS</li>
  111. </ul>
  112. <p>Since OpenSceneGraph cross-platform guide would consist of several tutorials, we decided to automate the process. Brief research revealed a great multimedia framework called <a href="http://mltframework.org">MLT</a>, which powers OpenShot itself. With MLT we got our tutorial tool in no time.</p>
  113. <p>Currently, the tutorial tool allows anyone to combine text and video using a simple text file like this:</p>
  114. <pre><code>background bg.png
  115. text 5 Let's install Blender
  116. video 0:6 install_blender.mp4
  117. text 5 Installing it with apt
  118. video 6:26 install_blender.mp4
  119. text 5 We're still installing it
  120. video 26:56 install_blender.mp4
  121. text 5 Congratulations! We just finished installing Blender
  122. </code></pre>
  123. <p>This is the actual script. See the final result <a href="https://github.com/ogstudio/tutorial-tool">here</a>.</p>
  124. <p>That's it for describing our progress in January and February of 2017: rendering under iOS/Web and the new tutorial tool.</p>
  125. </div>
  126. </div>
  127. <div id="footer">
  128. The site has been generated by <a href="http://opengamestudio.org/pskov">PSKOV</a>
  129. from <a href="http://github.com/ogstudio/site-opengamestudio">this source code</a>.
  130. The site is hosted by <a href="https://pages.github.com">GitHub Pages</a>.
  131. </div>
  132. </center>
  133. </body>
  134. </html>