github-actions[bot] 1 день назад
Родитель
Сommit
54b21fc56e
61 измененных файлов с 976 добавлено и 71 удалено
  1. BIN
      html/master/_images/console.png
  2. 44 0
      html/master/_images/console_id_lookup.svg
  3. 44 0
      html/master/_images/console_lua_expression.svg
  4. 45 0
      html/master/_images/console_runtime_selector.svg
  5. BIN
      html/master/_images/project_browser.png
  6. 76 0
      html/master/_images/project_browser_icon_list_view.svg
  7. 44 0
      html/master/_images/project_browser_sorting_filtering.svg
  8. 77 0
      html/master/_images/project_browser_tree_view.svg
  9. 3 2
      html/master/_sources/hackers/index.rst.txt
  10. 60 0
      html/master/_sources/level_editor/console.rst.txt
  11. 2 0
      html/master/_sources/level_editor/index.rst.txt
  12. 2 2
      html/master/_sources/level_editor/level_editor.rst.txt
  13. 72 0
      html/master/_sources/level_editor/project_browser.rst.txt
  14. 1 1
      html/master/changelog.html
  15. 3 3
      html/master/copyright.html
  16. 1 1
      html/master/deploying/android.html
  17. 1 1
      html/master/deploying/desktop.html
  18. 1 1
      html/master/deploying/html5.html
  19. 1 1
      html/master/deploying/index.html
  20. 1 1
      html/master/gameplay/index.html
  21. 1 1
      html/master/gameplay/lua_scripting.html
  22. 1 1
      html/master/gameplay/objects_binding.html
  23. 1 1
      html/master/gameplay/unit_interaction.html
  24. 1 1
      html/master/genindex.html
  25. 1 1
      html/master/getting_started/basic_concepts.html
  26. 1 1
      html/master/getting_started/create_new_project.html
  27. 1 1
      html/master/getting_started/for_the_impatient.html
  28. 1 1
      html/master/getting_started/import_existing_project.html
  29. 1 1
      html/master/getting_started/index.html
  30. 1 1
      html/master/glossary.html
  31. 4 4
      html/master/hackers/building.html
  32. 2 2
      html/master/hackers/console_api.html
  33. 7 7
      html/master/hackers/index.html
  34. 1 1
      html/master/importing_resources/importing_fonts.html
  35. 1 1
      html/master/importing_resources/importing_resources.html
  36. 1 1
      html/master/importing_resources/importing_scenes.html
  37. 1 1
      html/master/importing_resources/importing_sounds.html
  38. 1 1
      html/master/importing_resources/importing_sprites.html
  39. 1 1
      html/master/importing_resources/importing_textures.html
  40. 1 1
      html/master/importing_resources/index.html
  41. 4 2
      html/master/index.html
  42. 1 1
      html/master/installing_crown/hardware_requirements.html
  43. 1 1
      html/master/installing_crown/index.html
  44. 1 1
      html/master/installing_crown/installing_on_linux.html
  45. 1 1
      html/master/installing_crown/installing_on_windows.html
  46. 1 1
      html/master/introduction.html
  47. 203 0
      html/master/level_editor/console.html
  48. 20 3
      html/master/level_editor/index.html
  49. 9 7
      html/master/level_editor/level_editor.html
  50. 5 3
      html/master/level_editor/level_viewport.html
  51. 212 0
      html/master/level_editor/project_browser.html
  52. 4 2
      html/master/level_editor/texture_settings.html
  53. 1 1
      html/master/lua_api.html
  54. BIN
      html/master/objects.inv
  55. 1 1
      html/master/reference/boot_config.html
  56. 1 1
      html/master/reference/command_line.html
  57. 1 1
      html/master/reference/console_commands.html
  58. 1 1
      html/master/reference/index.html
  59. 1 1
      html/master/search.html
  60. 0 0
      html/master/searchindex.js
  61. 0 0
      html/master/sitemap.xml

BIN
html/master/_images/console.png


Разница между файлами не показана из-за своего большого размера
+ 44 - 0
html/master/_images/console_id_lookup.svg


Разница между файлами не показана из-за своего большого размера
+ 44 - 0
html/master/_images/console_lua_expression.svg


Разница между файлами не показана из-за своего большого размера
+ 45 - 0
html/master/_images/console_runtime_selector.svg


BIN
html/master/_images/project_browser.png


Разница между файлами не показана из-за своего большого размера
+ 76 - 0
html/master/_images/project_browser_icon_list_view.svg


Разница между файлами не показана из-за своего большого размера
+ 44 - 0
html/master/_images/project_browser_sorting_filtering.svg


Разница между файлами не показана из-за своего большого размера
+ 77 - 0
html/master/_images/project_browser_tree_view.svg


+ 3 - 2
html/master/_sources/hackers/index.rst.txt

@@ -1,5 +1,6 @@
-Hackers
-=======
+==============
+Engine Hackers
+==============
 
 This section of the manual is intended for those who want to understand
 the low-level engine structure in order to modify/extend it.

+ 60 - 0
html/master/_sources/level_editor/console.rst.txt

@@ -0,0 +1,60 @@
+=======
+Console
+=======
+
+The Console displays information, warnings, errors, and debug output from the
+Level Editor, the running game, and other engine components. It also lets you
+interact with runtime instances by sending commands and Lua expressions.
+
+.. image:: images/console.png
+
+Runtime connections
+===================
+
+Each engine runtime spawned by the Level Editor is connected via TCP/IP, and
+the Console is the main UI for communicating with those instances. By default
+the Console is set to communicate with the editor runtime itself. When you
+start the game from the Level Editor, Crown switches the Console to
+communicate with the game runtime. You can also select manually which runtime
+the Console talks to using the runtime selector:
+
+.. image:: images/console_runtime_selector.svg
+
+Commands
+========
+
+You can type both commands and Lua expressions in the Command Bar. Use
+commands for low-level testing, profiling, or engine configuration. Commands
+must be prefixed with a colon (``:``) so they are distinguished from Lua
+expressions. Type ``:help`` in the Command Bar to see the available commands.
+
+See :ref:`console commands` for full documentation.
+
+Lua expressions
+===============
+
+You can send arbitrary Lua expressions to the connected runtime. Enter a Lua
+expression in the Command Bar and press ``Enter``. The runtime evaluates the
+expression and prints the result back to the Console. This is useful for
+inspecting state, calling engine APIs, or invoking game code while the game
+is running.
+
+.. image:: images/console_lua_expression.svg
+
+History navigation
+==================
+
+The Console keeps a history of executed commands and expressions. Use the ``Up
+Arrow`` and ``Down Arrow`` keys to navigate backward and forward through
+recent entries. The maximum history size is configurable from Preferences
+dialog.
+
+Resource ID lookup
+==================
+
+For efficiency, Crown runtimes in most cases use hashed numeric identifiers
+instead of plain-text strings. When the Console detects such numeric IDs, it
+attempts to resolve them back to readable names so logs are easier to
+understand:
+
+.. image:: images/console_id_lookup.svg

+ 2 - 0
html/master/_sources/level_editor/index.rst.txt

@@ -14,5 +14,7 @@ Console.
 	:maxdepth: 2
 
 	level_editor
+	project_browser
+	console
 	level_viewport
 	texture_settings

+ 2 - 2
html/master/_sources/level_editor/level_editor.rst.txt

@@ -15,8 +15,8 @@ The Level Editor is split into several panels:
 ====== ======================= =============
 Number Name                    What it shows
 ====== ======================= =============
-1      Project Browser         The current project's contents.
-2      Console                 Messages from the Level Editor, the Game and other Runtimes.
+1      :ref:`Project Browser`  The current project's contents.
+2      :ref:`Console`          Messages from the Level Editor, the Game and other Runtimes.
 3      Inspector               The properties of the currently selected object.
 4      Level Tree              A hierarchical view of all the objects in the Level.
 5      :ref:`Level Viewport`   The Level being edited.

+ 72 - 0
html/master/_sources/level_editor/project_browser.rst.txt

@@ -0,0 +1,72 @@
+===============
+Project Browser
+===============
+
+The Project Browser is where you view and manage the files and resources that
+make up your project. From here you can create or import new resources, open
+them, organize folders, and pin favorites for quick access.
+
+.. image:: images/project_browser.png
+
+Overview
+========
+
+By default the Project Browser is split into two panes. The top pane shows a
+tree view of the project folders. The bottom pane, called the Folder View,
+displays the contents of the currently selected folder.
+
+If you prefer a single unified view that shows files and folders together,
+click the small tree icon at the top-right to toggle the layout mode:
+
+.. image:: images/project_browser_tree_view.svg
+
+Folder View
+===========
+
+The Folder View presents the resources inside the selected folder. You can
+switch between a icon view and a compact list view using the button at the
+top-right of the Folder View:
+
+.. image:: images/project_browser_icon_list_view.svg
+
+Resources such as units, materials, textures and other graphical content use
+thumbnails that show how they will appear at runtime. Other resource types
+use a simple icon.
+
+.. image:: images/project_browser_thumbnails.png
+
+Thumbnails generated in Crown are saved in a dedicated OS location so they can
+be used by other programs such as the file manager.
+
+Files visibility
+================
+
+To keep the Project Browser uncluttered, the UI normally hides auxiliary files
+and shows resources as a single item with trimmed extension. For example, a
+texture resource on disk consists of the original image file plus a generated
+``.texture`` resource file; the browser shows them as one combined
+``.texture`` item. Similar grouping applies to other resource types.
+
+When you need to inspect the actual files on disk use the button immediately
+to the right of the Search Bar to toggle visibility options:
+
+.. image:: images/project_browser_sorting_filtering.svg
+
+With the same popup you can also control how the items should be sorted.
+
+Searching
+=========
+
+The Project Browser offers fast project-wise searching based on keywords.
+Start typing in the Search Bar and matching results appear as you type. Press
+``Escape`` to exit search mode. The Search Bar position may move depending on
+the current view mode (icon view or tree view), but the search behavior
+remains the same.
+
+Search context
+--------------
+
+By default the search covers the project itself (i.e. the main source dir). If
+your project includes mapped source directories, those are excluded from
+search results unless you enable them explicitly by checking ``Show mapped
+dirs`` in the :ref:`visibility controls <Files Visibility>`.

+ 1 - 1
html/master/changelog.html

@@ -92,7 +92,7 @@
 <li class="toctree-l1"><a class="reference internal" href="lua_api.html">Lua API reference</a></li>
 <li class="toctree-l1"><a class="reference internal" href="glossary.html">Glossary</a></li>
 <li class="toctree-l1"><a class="reference internal" href="copyright.html">License</a></li>
-<li class="toctree-l1"><a class="reference internal" href="hackers/index.html">Hackers</a></li>
+<li class="toctree-l1"><a class="reference internal" href="hackers/index.html">Engine Hackers</a></li>
 </ul>
 
         </div>

+ 3 - 3
html/master/copyright.html

@@ -29,7 +29,7 @@
     <link rel="index" title="Index" href="genindex.html" />
     <link rel="search" title="Search" href="search.html" />
     <link rel="copyright" title="Copyright" href="#" />
-    <link rel="next" title="Hackers" href="hackers/index.html" />
+    <link rel="next" title="Engine Hackers" href="hackers/index.html" />
     <link rel="prev" title="Glossary" href="glossary.html" /> 
 </head>
 
@@ -86,7 +86,7 @@
 </li>
 </ul>
 </li>
-<li class="toctree-l1"><a class="reference internal" href="hackers/index.html">Hackers</a></li>
+<li class="toctree-l1"><a class="reference internal" href="hackers/index.html">Engine Hackers</a></li>
 </ul>
 
         </div>
@@ -893,7 +893,7 @@ are <em>excluded</em> from CC-BY-SA.</p>
           </div>
           <footer><div class="rst-footer-buttons" role="navigation" aria-label="Footer">
         <a href="glossary.html" class="btn btn-neutral float-left" title="Glossary" accesskey="p" rel="prev"><span class="fa fa-arrow-circle-left" aria-hidden="true"></span> Previous</a>
-        <a href="hackers/index.html" class="btn btn-neutral float-right" title="Hackers" accesskey="n" rel="next">Next <span class="fa fa-arrow-circle-right" aria-hidden="true"></span></a>
+        <a href="hackers/index.html" class="btn btn-neutral float-right" title="Engine Hackers" accesskey="n" rel="next">Next <span class="fa fa-arrow-circle-right" aria-hidden="true"></span></a>
     </div>
 
   <hr/>

+ 1 - 1
html/master/deploying/android.html

@@ -76,7 +76,7 @@
 <li class="toctree-l1"><a class="reference internal" href="../lua_api.html">Lua API reference</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../glossary.html">Glossary</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../copyright.html">License</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../hackers/index.html">Hackers</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../hackers/index.html">Engine Hackers</a></li>
 </ul>
 
         </div>

+ 1 - 1
html/master/deploying/desktop.html

@@ -70,7 +70,7 @@
 <li class="toctree-l1"><a class="reference internal" href="../lua_api.html">Lua API reference</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../glossary.html">Glossary</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../copyright.html">License</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../hackers/index.html">Hackers</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../hackers/index.html">Engine Hackers</a></li>
 </ul>
 
         </div>

+ 1 - 1
html/master/deploying/html5.html

@@ -75,7 +75,7 @@
 <li class="toctree-l1"><a class="reference internal" href="../lua_api.html">Lua API reference</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../glossary.html">Glossary</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../copyright.html">License</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../hackers/index.html">Hackers</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../hackers/index.html">Engine Hackers</a></li>
 </ul>
 
         </div>

+ 1 - 1
html/master/deploying/index.html

@@ -70,7 +70,7 @@
 <li class="toctree-l1"><a class="reference internal" href="../lua_api.html">Lua API reference</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../glossary.html">Glossary</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../copyright.html">License</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../hackers/index.html">Hackers</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../hackers/index.html">Engine Hackers</a></li>
 </ul>
 
         </div>

+ 1 - 1
html/master/gameplay/index.html

@@ -70,7 +70,7 @@
 <li class="toctree-l1"><a class="reference internal" href="../lua_api.html">Lua API reference</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../glossary.html">Glossary</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../copyright.html">License</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../hackers/index.html">Hackers</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../hackers/index.html">Engine Hackers</a></li>
 </ul>
 
         </div>

+ 1 - 1
html/master/gameplay/lua_scripting.html

@@ -77,7 +77,7 @@
 <li class="toctree-l1"><a class="reference internal" href="../lua_api.html">Lua API reference</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../glossary.html">Glossary</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../copyright.html">License</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../hackers/index.html">Hackers</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../hackers/index.html">Engine Hackers</a></li>
 </ul>
 
         </div>

+ 1 - 1
html/master/gameplay/objects_binding.html

@@ -76,7 +76,7 @@
 <li class="toctree-l1"><a class="reference internal" href="../lua_api.html">Lua API reference</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../glossary.html">Glossary</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../copyright.html">License</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../hackers/index.html">Hackers</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../hackers/index.html">Engine Hackers</a></li>
 </ul>
 
         </div>

+ 1 - 1
html/master/gameplay/unit_interaction.html

@@ -77,7 +77,7 @@
 <li class="toctree-l1"><a class="reference internal" href="../lua_api.html">Lua API reference</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../glossary.html">Glossary</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../copyright.html">License</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../hackers/index.html">Hackers</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../hackers/index.html">Engine Hackers</a></li>
 </ul>
 
         </div>

+ 1 - 1
html/master/genindex.html

@@ -55,7 +55,7 @@
 <li class="toctree-l1"><a class="reference internal" href="lua_api.html">Lua API reference</a></li>
 <li class="toctree-l1"><a class="reference internal" href="glossary.html">Glossary</a></li>
 <li class="toctree-l1"><a class="reference internal" href="copyright.html">License</a></li>
-<li class="toctree-l1"><a class="reference internal" href="hackers/index.html">Hackers</a></li>
+<li class="toctree-l1"><a class="reference internal" href="hackers/index.html">Engine Hackers</a></li>
 </ul>
 
         </div>

+ 1 - 1
html/master/getting_started/basic_concepts.html

@@ -79,7 +79,7 @@
 <li class="toctree-l1"><a class="reference internal" href="../lua_api.html">Lua API reference</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../glossary.html">Glossary</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../copyright.html">License</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../hackers/index.html">Hackers</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../hackers/index.html">Engine Hackers</a></li>
 </ul>
 
         </div>

+ 1 - 1
html/master/getting_started/create_new_project.html

@@ -73,7 +73,7 @@
 <li class="toctree-l1"><a class="reference internal" href="../lua_api.html">Lua API reference</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../glossary.html">Glossary</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../copyright.html">License</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../hackers/index.html">Hackers</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../hackers/index.html">Engine Hackers</a></li>
 </ul>
 
         </div>

+ 1 - 1
html/master/getting_started/for_the_impatient.html

@@ -73,7 +73,7 @@
 <li class="toctree-l1"><a class="reference internal" href="../lua_api.html">Lua API reference</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../glossary.html">Glossary</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../copyright.html">License</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../hackers/index.html">Hackers</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../hackers/index.html">Engine Hackers</a></li>
 </ul>
 
         </div>

+ 1 - 1
html/master/getting_started/import_existing_project.html

@@ -73,7 +73,7 @@
 <li class="toctree-l1"><a class="reference internal" href="../lua_api.html">Lua API reference</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../glossary.html">Glossary</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../copyright.html">License</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../hackers/index.html">Hackers</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../hackers/index.html">Engine Hackers</a></li>
 </ul>
 
         </div>

+ 1 - 1
html/master/getting_started/index.html

@@ -71,7 +71,7 @@
 <li class="toctree-l1"><a class="reference internal" href="../lua_api.html">Lua API reference</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../glossary.html">Glossary</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../copyright.html">License</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../hackers/index.html">Hackers</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../hackers/index.html">Engine Hackers</a></li>
 </ul>
 
         </div>

+ 1 - 1
html/master/glossary.html

@@ -65,7 +65,7 @@
 <li class="toctree-l1"><a class="reference internal" href="lua_api.html">Lua API reference</a></li>
 <li class="toctree-l1 current"><a class="current reference internal" href="#">Glossary</a></li>
 <li class="toctree-l1"><a class="reference internal" href="copyright.html">License</a></li>
-<li class="toctree-l1"><a class="reference internal" href="hackers/index.html">Hackers</a></li>
+<li class="toctree-l1"><a class="reference internal" href="hackers/index.html">Engine Hackers</a></li>
 </ul>
 
         </div>

+ 4 - 4
html/master/hackers/building.html

@@ -30,7 +30,7 @@
     <link rel="search" title="Search" href="../search.html" />
     <link rel="copyright" title="Copyright" href="../copyright.html" />
     <link rel="next" title="Console API" href="console_api.html" />
-    <link rel="prev" title="Hackers" href="index.html" /> 
+    <link rel="prev" title="Engine Hackers" href="index.html" /> 
 </head>
 
 <body class="wy-body-for-nav"> 
@@ -65,7 +65,7 @@
 <li class="toctree-l1"><a class="reference internal" href="../lua_api.html">Lua API reference</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../glossary.html">Glossary</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../copyright.html">License</a></li>
-<li class="toctree-l1 current"><a class="reference internal" href="index.html">Hackers</a><ul class="current">
+<li class="toctree-l1 current"><a class="reference internal" href="index.html">Engine Hackers</a><ul class="current">
 <li class="toctree-l2 current"><a class="current reference internal" href="#">Building</a><ul>
 <li class="toctree-l3"><a class="reference internal" href="#getting-source">Getting Source</a></li>
 <li class="toctree-l3"><a class="reference internal" href="#prerequisites">Prerequisites</a><ul>
@@ -107,7 +107,7 @@
           <div role="navigation" aria-label="Page navigation">
   <ul class="wy-breadcrumbs">
       <li><a href="../index.html" class="icon icon-home"></a> &raquo;</li>
-          <li><a href="index.html">Hackers</a> &raquo;</li>
+          <li><a href="index.html">Engine Hackers</a> &raquo;</li>
       <li>Building</li>
       <li class="wy-breadcrumbs-aside">
             <a href="../_sources/hackers/building.rst.txt" rel="nofollow"> View page source</a>
@@ -319,7 +319,7 @@ make tools-mingw-release64 MAKE_JOBS=4
            </div>
           </div>
           <footer><div class="rst-footer-buttons" role="navigation" aria-label="Footer">
-        <a href="index.html" class="btn btn-neutral float-left" title="Hackers" accesskey="p" rel="prev"><span class="fa fa-arrow-circle-left" aria-hidden="true"></span> Previous</a>
+        <a href="index.html" class="btn btn-neutral float-left" title="Engine Hackers" accesskey="p" rel="prev"><span class="fa fa-arrow-circle-left" aria-hidden="true"></span> Previous</a>
         <a href="console_api.html" class="btn btn-neutral float-right" title="Console API" accesskey="n" rel="next">Next <span class="fa fa-arrow-circle-right" aria-hidden="true"></span></a>
     </div>
 

+ 2 - 2
html/master/hackers/console_api.html

@@ -64,7 +64,7 @@
 <li class="toctree-l1"><a class="reference internal" href="../lua_api.html">Lua API reference</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../glossary.html">Glossary</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../copyright.html">License</a></li>
-<li class="toctree-l1 current"><a class="reference internal" href="index.html">Hackers</a><ul class="current">
+<li class="toctree-l1 current"><a class="reference internal" href="index.html">Engine Hackers</a><ul class="current">
 <li class="toctree-l2"><a class="reference internal" href="building.html">Building</a></li>
 <li class="toctree-l2 current"><a class="current reference internal" href="#">Console API</a><ul>
 <li class="toctree-l3"><a class="reference internal" href="#tcp-protocol">TCP protocol</a></li>
@@ -90,7 +90,7 @@
           <div role="navigation" aria-label="Page navigation">
   <ul class="wy-breadcrumbs">
       <li><a href="../index.html" class="icon icon-home"></a> &raquo;</li>
-          <li><a href="index.html">Hackers</a> &raquo;</li>
+          <li><a href="index.html">Engine Hackers</a> &raquo;</li>
       <li>Console API</li>
       <li class="wy-breadcrumbs-aside">
             <a href="../_sources/hackers/console_api.rst.txt" rel="nofollow"> View page source</a>

+ 7 - 7
html/master/hackers/index.html

@@ -3,7 +3,7 @@
 <head>
   <meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
 
-    <meta property="article:modified_time" content="2020-06-27T15:01:06+00:00" /><meta property="og:title" content="Hackers" />
+    <meta property="article:modified_time" content="2026-02-14T22:30:44+00:00" /><meta property="og:title" content="Engine Hackers" />
 <meta property="og:type" content="website" />
 <meta property="og:url" content="https://docs.crownengine.org/html/latest/hackers/index.html" />
 <meta property="og:site_name" content="Crown 0.60.0 Manual" />
@@ -11,7 +11,7 @@
 <meta name="description" content="This section of the manual is intended for those who want to understand the low-level engine structure in order to modify/extend it. Building- Getting Source, Prerequisites, Build., Console API- TCP protocol, JSON messages, Execute Lua scripts.." />
 
   <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-  <title>Hackers &mdash; Crown 0.60.0 Manual 0.61.0 documentation</title>
+  <title>Engine Hackers &mdash; Crown 0.60.0 Manual 0.61.0 documentation</title>
       <link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
       <link rel="stylesheet" href="../_static/css/theme.css" type="text/css" />
       <link rel="stylesheet" href="../_static/css/custom.css" type="text/css" />
@@ -65,7 +65,7 @@
 <li class="toctree-l1"><a class="reference internal" href="../lua_api.html">Lua API reference</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../glossary.html">Glossary</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../copyright.html">License</a></li>
-<li class="toctree-l1 current"><a class="current reference internal" href="#">Hackers</a><ul>
+<li class="toctree-l1 current"><a class="current reference internal" href="#">Engine Hackers</a><ul>
 <li class="toctree-l2"><a class="reference internal" href="building.html">Building</a></li>
 <li class="toctree-l2"><a class="reference internal" href="console_api.html">Console API</a></li>
 </ul>
@@ -86,7 +86,7 @@
           <div role="navigation" aria-label="Page navigation">
   <ul class="wy-breadcrumbs">
       <li><a href="../index.html" class="icon icon-home"></a> &raquo;</li>
-      <li>Hackers</li>
+      <li>Engine Hackers</li>
       <li class="wy-breadcrumbs-aside">
             <a href="../_sources/hackers/index.rst.txt" rel="nofollow"> View page source</a>
       </li>
@@ -96,8 +96,8 @@
           <div role="main" class="document" itemscope="itemscope" itemtype="http://schema.org/Article">
            <div itemprop="articleBody">
              
-  <section id="hackers">
-<h1>Hackers<a class="headerlink" href="#hackers" title="Permalink to this headline">¶</a></h1>
+  <section id="engine-hackers">
+<h1>Engine Hackers<a class="headerlink" href="#engine-hackers" title="Permalink to this headline">¶</a></h1>
 <p>This section of the manual is intended for those who want to understand
 the low-level engine structure in order to modify/extend it.</p>
 <div class="toctree-wrapper compound">
@@ -130,7 +130,7 @@ the low-level engine structure in order to modify/extend it.</p>
 
   <div role="contentinfo">
     <p>&#169; <a href="../copyright.html">Copyright</a> Except where otherwise noted, content on this page is licensed under a CC-BY-SA 4.0 Int. License.
-      <span class="lastupdated">Last updated on Jun 27, 2020.
+      <span class="lastupdated">Last updated on Feb 14, 2026.
       </span></p>
   </div>
 

+ 1 - 1
html/master/importing_resources/importing_fonts.html

@@ -73,7 +73,7 @@
 <li class="toctree-l1"><a class="reference internal" href="../lua_api.html">Lua API reference</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../glossary.html">Glossary</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../copyright.html">License</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../hackers/index.html">Hackers</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../hackers/index.html">Engine Hackers</a></li>
 </ul>
 
         </div>

+ 1 - 1
html/master/importing_resources/importing_resources.html

@@ -79,7 +79,7 @@
 <li class="toctree-l1"><a class="reference internal" href="../lua_api.html">Lua API reference</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../glossary.html">Glossary</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../copyright.html">License</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../hackers/index.html">Hackers</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../hackers/index.html">Engine Hackers</a></li>
 </ul>
 
         </div>

+ 1 - 1
html/master/importing_resources/importing_scenes.html

@@ -83,7 +83,7 @@
 <li class="toctree-l1"><a class="reference internal" href="../lua_api.html">Lua API reference</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../glossary.html">Glossary</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../copyright.html">License</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../hackers/index.html">Hackers</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../hackers/index.html">Engine Hackers</a></li>
 </ul>
 
         </div>

+ 1 - 1
html/master/importing_resources/importing_sounds.html

@@ -71,7 +71,7 @@
 <li class="toctree-l1"><a class="reference internal" href="../lua_api.html">Lua API reference</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../glossary.html">Glossary</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../copyright.html">License</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../hackers/index.html">Hackers</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../hackers/index.html">Engine Hackers</a></li>
 </ul>
 
         </div>

+ 1 - 1
html/master/importing_resources/importing_sprites.html

@@ -81,7 +81,7 @@
 <li class="toctree-l1"><a class="reference internal" href="../lua_api.html">Lua API reference</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../glossary.html">Glossary</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../copyright.html">License</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../hackers/index.html">Hackers</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../hackers/index.html">Engine Hackers</a></li>
 </ul>
 
         </div>

+ 1 - 1
html/master/importing_resources/importing_textures.html

@@ -73,7 +73,7 @@
 <li class="toctree-l1"><a class="reference internal" href="../lua_api.html">Lua API reference</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../glossary.html">Glossary</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../copyright.html">License</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../hackers/index.html">Hackers</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../hackers/index.html">Engine Hackers</a></li>
 </ul>
 
         </div>

+ 1 - 1
html/master/importing_resources/index.html

@@ -73,7 +73,7 @@
 <li class="toctree-l1"><a class="reference internal" href="../lua_api.html">Lua API reference</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../glossary.html">Glossary</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../copyright.html">License</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../hackers/index.html">Hackers</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../hackers/index.html">Engine Hackers</a></li>
 </ul>
 
         </div>

+ 4 - 2
html/master/index.html

@@ -64,7 +64,7 @@
 <li class="toctree-l1"><a class="reference internal" href="lua_api.html">Lua API reference</a></li>
 <li class="toctree-l1"><a class="reference internal" href="glossary.html">Glossary</a></li>
 <li class="toctree-l1"><a class="reference internal" href="copyright.html">License</a></li>
-<li class="toctree-l1"><a class="reference internal" href="hackers/index.html">Hackers</a></li>
+<li class="toctree-l1"><a class="reference internal" href="hackers/index.html">Engine Hackers</a></li>
 </ul>
 
         </div>
@@ -146,6 +146,8 @@
 </li>
 <li class="toctree-l1"><a class="reference internal" href="level_editor/index.html">The Level Editor</a><ul>
 <li class="toctree-l2"><a class="reference internal" href="level_editor/level_editor.html">Editor overview</a></li>
+<li class="toctree-l2"><a class="reference internal" href="level_editor/project_browser.html">Project Browser</a></li>
+<li class="toctree-l2"><a class="reference internal" href="level_editor/console.html">Console</a></li>
 <li class="toctree-l2"><a class="reference internal" href="level_editor/level_viewport.html">Level Viewport</a></li>
 <li class="toctree-l2"><a class="reference internal" href="level_editor/texture_settings.html">Texture Settings</a></li>
 </ul>
@@ -205,7 +207,7 @@
 <li class="toctree-l2"><a class="reference internal" href="copyright.html#third-party-libraries">Third-party libraries</a></li>
 </ul>
 </li>
-<li class="toctree-l1"><a class="reference internal" href="hackers/index.html">Hackers</a><ul>
+<li class="toctree-l1"><a class="reference internal" href="hackers/index.html">Engine Hackers</a><ul>
 <li class="toctree-l2"><a class="reference internal" href="hackers/building.html">Building</a></li>
 <li class="toctree-l2"><a class="reference internal" href="hackers/console_api.html">Console API</a></li>
 </ul>

+ 1 - 1
html/master/installing_crown/hardware_requirements.html

@@ -74,7 +74,7 @@
 <li class="toctree-l1"><a class="reference internal" href="../lua_api.html">Lua API reference</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../glossary.html">Glossary</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../copyright.html">License</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../hackers/index.html">Hackers</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../hackers/index.html">Engine Hackers</a></li>
 </ul>
 
         </div>

+ 1 - 1
html/master/installing_crown/index.html

@@ -70,7 +70,7 @@
 <li class="toctree-l1"><a class="reference internal" href="../lua_api.html">Lua API reference</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../glossary.html">Glossary</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../copyright.html">License</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../hackers/index.html">Hackers</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../hackers/index.html">Engine Hackers</a></li>
 </ul>
 
         </div>

+ 1 - 1
html/master/installing_crown/installing_on_linux.html

@@ -74,7 +74,7 @@
 <li class="toctree-l1"><a class="reference internal" href="../lua_api.html">Lua API reference</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../glossary.html">Glossary</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../copyright.html">License</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../hackers/index.html">Hackers</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../hackers/index.html">Engine Hackers</a></li>
 </ul>
 
         </div>

+ 1 - 1
html/master/installing_crown/installing_on_windows.html

@@ -73,7 +73,7 @@
 <li class="toctree-l1"><a class="reference internal" href="../lua_api.html">Lua API reference</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../glossary.html">Glossary</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../copyright.html">License</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../hackers/index.html">Hackers</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../hackers/index.html">Engine Hackers</a></li>
 </ul>
 
         </div>

+ 1 - 1
html/master/introduction.html

@@ -74,7 +74,7 @@
 <li class="toctree-l1"><a class="reference internal" href="lua_api.html">Lua API reference</a></li>
 <li class="toctree-l1"><a class="reference internal" href="glossary.html">Glossary</a></li>
 <li class="toctree-l1"><a class="reference internal" href="copyright.html">License</a></li>
-<li class="toctree-l1"><a class="reference internal" href="hackers/index.html">Hackers</a></li>
+<li class="toctree-l1"><a class="reference internal" href="hackers/index.html">Engine Hackers</a></li>
 </ul>
 
         </div>

+ 203 - 0
html/master/level_editor/console.html

@@ -0,0 +1,203 @@
+<!DOCTYPE html>
+<html class="writer-html5" lang="en" >
+<head>
+  <meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
+
+    <meta property="article:modified_time" content="2026-02-15T01:23:55+00:00" /><meta property="og:title" content="Console" />
+<meta property="og:type" content="website" />
+<meta property="og:url" content="https://docs.crownengine.org/html/latest/level_editor/console.html" />
+<meta property="og:site_name" content="Crown 0.60.0 Manual" />
+<meta property="og:description" content="The Console displays information, warnings, errors, and debug output from the Level Editor, the running game, and other engine components. It also lets you interact with runtime instances by sending commands and Lua expressions. Runtime connections: Each engine runtime spawned..." />
+<meta property="og:image" content="https://docs.crownengine.org/html/latest/_images/console.png" />
+<meta property="og:image:alt" content="Crown 0.60.0 Manual" />
+<meta name="description" content="The Console displays information, warnings, errors, and debug output from the Level Editor, the running game, and other engine components. It also lets you interact with runtime instances by sending commands and Lua expressions. Runtime connections: Each engine runtime spawned..." />
+
+  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
+  <title>Console &mdash; Crown 0.60.0 Manual 0.61.0 documentation</title>
+      <link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
+      <link rel="stylesheet" href="../_static/css/theme.css" type="text/css" />
+      <link rel="stylesheet" href="../_static/css/custom.css" type="text/css" />
+    <link rel="shortcut icon" href="../_static/org.crownengine.Crown.svg"/>
+    <link rel="canonical" href="https://docs.crownengine.org/html/latest/level_editor/console.html" />
+  <!--[if lt IE 9]>
+    <script src="../_static/js/html5shiv.min.js"></script>
+  <![endif]-->
+  
+        <script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js"></script>
+        <script src="../_static/jquery.js"></script>
+        <script src="../_static/underscore.js"></script>
+        <script src="../_static/doctools.js"></script>
+    <script src="../_static/js/theme.js"></script>
+    <link rel="index" title="Index" href="../genindex.html" />
+    <link rel="search" title="Search" href="../search.html" />
+    <link rel="copyright" title="Copyright" href="../copyright.html" />
+    <link rel="next" title="Level Viewport" href="level_viewport.html" />
+    <link rel="prev" title="Project Browser" href="project_browser.html" /> 
+</head>
+
+<body class="wy-body-for-nav"> 
+  <div class="wy-grid-for-nav">
+    <nav data-toggle="wy-nav-shift" class="wy-nav-side">
+      <div class="wy-side-scroll">
+        <div class="wy-side-nav-search" >
+            <a href="../index.html">
+            <img src="../_static/org.crownengine.Crown.svg" class="logo" alt="Logo"/>
+          </a>
+              <div class="version">
+                Crown 0.60.0 Manual
+              </div>
+<div role="search">
+  <form id="rtd-search-form" class="wy-form" action="../search.html" method="get">
+    <input type="text" name="q" placeholder="Search docs" />
+    <input type="hidden" name="check_keywords" value="yes" />
+    <input type="hidden" name="area" value="default" />
+  </form>
+</div>
+        </div><div class="wy-menu wy-menu-vertical" data-spy="affix" role="navigation" aria-label="Navigation menu">
+              <ul class="current">
+<li class="toctree-l1"><a class="reference internal" href="../changelog.html">Changelog</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../introduction.html">Introduction</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../installing_crown/index.html">Installing Crown</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../getting_started/index.html">Getting Started</a></li>
+<li class="toctree-l1 current"><a class="reference internal" href="index.html">The Level Editor</a><ul class="current">
+<li class="toctree-l2"><a class="reference internal" href="level_editor.html">Editor overview</a></li>
+<li class="toctree-l2"><a class="reference internal" href="project_browser.html">Project Browser</a></li>
+<li class="toctree-l2 current"><a class="current reference internal" href="#">Console</a><ul>
+<li class="toctree-l3"><a class="reference internal" href="#runtime-connections">Runtime connections</a></li>
+<li class="toctree-l3"><a class="reference internal" href="#commands">Commands</a></li>
+<li class="toctree-l3"><a class="reference internal" href="#lua-expressions">Lua expressions</a></li>
+<li class="toctree-l3"><a class="reference internal" href="#history-navigation">History navigation</a></li>
+<li class="toctree-l3"><a class="reference internal" href="#resource-id-lookup">Resource ID lookup</a></li>
+</ul>
+</li>
+<li class="toctree-l2"><a class="reference internal" href="level_viewport.html">Level Viewport</a></li>
+<li class="toctree-l2"><a class="reference internal" href="texture_settings.html">Texture Settings</a></li>
+</ul>
+</li>
+<li class="toctree-l1"><a class="reference internal" href="../importing_resources/index.html">Importing Resources</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../gameplay/index.html">Writing Gameplay</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../deploying/index.html">Deploying</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../reference/index.html">Reference</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../lua_api.html">Lua API reference</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../glossary.html">Glossary</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../copyright.html">License</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../hackers/index.html">Engine Hackers</a></li>
+</ul>
+
+        </div>
+      </div>
+    </nav>
+
+    <section data-toggle="wy-nav-shift" class="wy-nav-content-wrap"><nav class="wy-nav-top" aria-label="Mobile navigation menu" >
+          <i data-toggle="wy-nav-top" class="fa fa-bars"></i>
+          <a href="../index.html">Crown 0.60.0 Manual</a>
+      </nav>
+
+      <div class="wy-nav-content">
+        <div class="rst-content">
+          <div role="navigation" aria-label="Page navigation">
+  <ul class="wy-breadcrumbs">
+      <li><a href="../index.html" class="icon icon-home"></a> &raquo;</li>
+          <li><a href="index.html">The Level Editor</a> &raquo;</li>
+      <li>Console</li>
+      <li class="wy-breadcrumbs-aside">
+            <a href="../_sources/level_editor/console.rst.txt" rel="nofollow"> View page source</a>
+      </li>
+  </ul>
+  <hr/>
+</div>
+          <div role="main" class="document" itemscope="itemscope" itemtype="http://schema.org/Article">
+           <div itemprop="articleBody">
+             
+  <section id="console">
+<h1>Console<a class="headerlink" href="#console" title="Permalink to this headline">¶</a></h1>
+<p>The Console displays information, warnings, errors, and debug output from the
+Level Editor, the running game, and other engine components. It also lets you
+interact with runtime instances by sending commands and Lua expressions.</p>
+<img alt="../_images/console.png" src="../_images/console.png" />
+<section id="runtime-connections">
+<h2>Runtime connections<a class="headerlink" href="#runtime-connections" title="Permalink to this headline">¶</a></h2>
+<p>Each engine runtime spawned by the Level Editor is connected via TCP/IP, and
+the Console is the main UI for communicating with those instances. By default
+the Console is set to communicate with the editor runtime itself. When you
+start the game from the Level Editor, Crown switches the Console to
+communicate with the game runtime. You can also select manually which runtime
+the Console talks to using the runtime selector:</p>
+<img alt="../_images/console_runtime_selector.svg" src="../_images/console_runtime_selector.svg" /></section>
+<section id="commands">
+<h2>Commands<a class="headerlink" href="#commands" title="Permalink to this headline">¶</a></h2>
+<p>You can type both commands and Lua expressions in the Command Bar. Use
+commands for low-level testing, profiling, or engine configuration. Commands
+must be prefixed with a colon (<code class="docutils literal notranslate"><span class="pre">:</span></code>) so they are distinguished from Lua
+expressions. Type <code class="docutils literal notranslate"><span class="pre">:help</span></code> in the Command Bar to see the available commands.</p>
+<p>See <a class="reference internal" href="../reference/console_commands.html#console-commands"><span class="std std-ref">Console commands</span></a> for full documentation.</p>
+</section>
+<section id="lua-expressions">
+<h2>Lua expressions<a class="headerlink" href="#lua-expressions" title="Permalink to this headline">¶</a></h2>
+<p>You can send arbitrary Lua expressions to the connected runtime. Enter a Lua
+expression in the Command Bar and press <code class="docutils literal notranslate"><span class="pre">Enter</span></code>. The runtime evaluates the
+expression and prints the result back to the Console. This is useful for
+inspecting state, calling engine APIs, or invoking game code while the game
+is running.</p>
+<img alt="../_images/console_lua_expression.svg" src="../_images/console_lua_expression.svg" /></section>
+<section id="history-navigation">
+<h2>History navigation<a class="headerlink" href="#history-navigation" title="Permalink to this headline">¶</a></h2>
+<p>The Console keeps a history of executed commands and expressions. Use the <code class="docutils literal notranslate"><span class="pre">Up</span>
+<span class="pre">Arrow</span></code> and <code class="docutils literal notranslate"><span class="pre">Down</span> <span class="pre">Arrow</span></code> keys to navigate backward and forward through
+recent entries. The maximum history size is configurable from Preferences
+dialog.</p>
+</section>
+<section id="resource-id-lookup">
+<h2>Resource ID lookup<a class="headerlink" href="#resource-id-lookup" title="Permalink to this headline">¶</a></h2>
+<p>For efficiency, Crown runtimes in most cases use hashed numeric identifiers
+instead of plain-text strings. When the Console detects such numeric IDs, it
+attempts to resolve them back to readable names so logs are easier to
+understand:</p>
+<img alt="../_images/console_id_lookup.svg" src="../_images/console_id_lookup.svg" /></section>
+</section>
+
+
+           </div>
+          </div>
+          <footer><div class="rst-footer-buttons" role="navigation" aria-label="Footer">
+        <a href="project_browser.html" class="btn btn-neutral float-left" title="Project Browser" accesskey="p" rel="prev"><span class="fa fa-arrow-circle-left" aria-hidden="true"></span> Previous</a>
+        <a href="level_viewport.html" class="btn btn-neutral float-right" title="Level Viewport" accesskey="n" rel="next">Next <span class="fa fa-arrow-circle-right" aria-hidden="true"></span></a>
+    </div>
+
+  <hr/>
+
+  <div role="contentinfo">
+    <p>&#169; <a href="../copyright.html">Copyright</a> Except where otherwise noted, content on this page is licensed under a CC-BY-SA 4.0 Int. License.
+      <span class="lastupdated">Last updated on Feb 15, 2026.
+      </span></p>
+  </div>
+
+  Built with <a href="https://www.sphinx-doc.org/">Sphinx</a> using a
+    <a href="https://github.com/readthedocs/sphinx_rtd_theme">theme</a>
+    provided by <a href="https://readthedocs.org">Read the Docs</a>.
+   
+
+</footer>
+        </div>
+      </div>
+    </section>
+  </div>
+  <script>
+      jQuery(function () {
+          SphinxRtdTheme.Navigation.enable(true);
+      });
+  </script>
+    <!-- Theme Analytics -->
+    <script async src="https://www.googletagmanager.com/gtag/js?id=G-XNVGCMNDZH"></script>
+    <script>
+      window.dataLayer = window.dataLayer || [];
+      function gtag(){dataLayer.push(arguments);}
+      gtag('js', new Date());
+
+      gtag('config', 'G-XNVGCMNDZH', {
+          'anonymize_ip': true,
+      });
+    </script> 
+
+</body>
+</html>

+ 20 - 3
html/master/level_editor/index.html

@@ -3,7 +3,7 @@
 <head>
   <meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
 
-    <meta property="article:modified_time" content="2026-02-14T15:18:11+00:00" /><meta property="og:title" content="The Level Editor" />
+    <meta property="article:modified_time" content="2026-02-15T01:23:55+00:00" /><meta property="og:title" content="The Level Editor" />
 <meta property="og:type" content="website" />
 <meta property="og:url" content="https://docs.crownengine.org/html/latest/level_editor/index.html" />
 <meta property="og:site_name" content="Crown 0.60.0 Manual" />
@@ -59,6 +59,8 @@
 <li class="toctree-l1"><a class="reference internal" href="../getting_started/index.html">Getting Started</a></li>
 <li class="toctree-l1 current"><a class="current reference internal" href="#">The Level Editor</a><ul>
 <li class="toctree-l2"><a class="reference internal" href="level_editor.html">Editor overview</a></li>
+<li class="toctree-l2"><a class="reference internal" href="project_browser.html">Project Browser</a></li>
+<li class="toctree-l2"><a class="reference internal" href="console.html">Console</a></li>
 <li class="toctree-l2"><a class="reference internal" href="level_viewport.html">Level Viewport</a></li>
 <li class="toctree-l2"><a class="reference internal" href="texture_settings.html">Texture Settings</a></li>
 </ul>
@@ -70,7 +72,7 @@
 <li class="toctree-l1"><a class="reference internal" href="../lua_api.html">Lua API reference</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../glossary.html">Glossary</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../copyright.html">License</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../hackers/index.html">Hackers</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../hackers/index.html">Engine Hackers</a></li>
 </ul>
 
         </div>
@@ -109,6 +111,21 @@ Console.</p>
 <div class="toctree-wrapper compound">
 <ul>
 <li class="toctree-l1"><a class="reference internal" href="level_editor.html">Editor overview</a></li>
+<li class="toctree-l1"><a class="reference internal" href="project_browser.html">Project Browser</a><ul>
+<li class="toctree-l2"><a class="reference internal" href="project_browser.html#overview">Overview</a></li>
+<li class="toctree-l2"><a class="reference internal" href="project_browser.html#folder-view">Folder View</a></li>
+<li class="toctree-l2"><a class="reference internal" href="project_browser.html#files-visibility">Files visibility</a></li>
+<li class="toctree-l2"><a class="reference internal" href="project_browser.html#searching">Searching</a></li>
+</ul>
+</li>
+<li class="toctree-l1"><a class="reference internal" href="console.html">Console</a><ul>
+<li class="toctree-l2"><a class="reference internal" href="console.html#runtime-connections">Runtime connections</a></li>
+<li class="toctree-l2"><a class="reference internal" href="console.html#commands">Commands</a></li>
+<li class="toctree-l2"><a class="reference internal" href="console.html#lua-expressions">Lua expressions</a></li>
+<li class="toctree-l2"><a class="reference internal" href="console.html#history-navigation">History navigation</a></li>
+<li class="toctree-l2"><a class="reference internal" href="console.html#resource-id-lookup">Resource ID lookup</a></li>
+</ul>
+</li>
 <li class="toctree-l1"><a class="reference internal" href="level_viewport.html">Level Viewport</a><ul>
 <li class="toctree-l2"><a class="reference internal" href="level_viewport.html#basic-mouse-navigation">Basic mouse navigation</a></li>
 <li class="toctree-l2"><a class="reference internal" href="level_viewport.html#keyboard-mouse-navigation">Keyboard + mouse navigation</a></li>
@@ -142,7 +159,7 @@ Console.</p>
 
   <div role="contentinfo">
     <p>&#169; <a href="../copyright.html">Copyright</a> Except where otherwise noted, content on this page is licensed under a CC-BY-SA 4.0 Int. License.
-      <span class="lastupdated">Last updated on Feb 14, 2026.
+      <span class="lastupdated">Last updated on Feb 15, 2026.
       </span></p>
   </div>
 

+ 9 - 7
html/master/level_editor/level_editor.html

@@ -3,7 +3,7 @@
 <head>
   <meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
 
-    <meta property="article:modified_time" content="2026-02-13T17:54:54+00:00" /><meta property="og:title" content="Editor overview" />
+    <meta property="article:modified_time" content="2026-02-15T01:23:55+00:00" /><meta property="og:title" content="Editor overview" />
 <meta property="og:type" content="website" />
 <meta property="og:url" content="https://docs.crownengine.org/html/latest/level_editor/level_editor.html" />
 <meta property="og:site_name" content="Crown 0.60.0 Manual" />
@@ -29,7 +29,7 @@
     <link rel="index" title="Index" href="../genindex.html" />
     <link rel="search" title="Search" href="../search.html" />
     <link rel="copyright" title="Copyright" href="../copyright.html" />
-    <link rel="next" title="Level Viewport" href="level_viewport.html" />
+    <link rel="next" title="Project Browser" href="project_browser.html" />
     <link rel="prev" title="The Level Editor" href="index.html" /> 
 </head>
 
@@ -59,6 +59,8 @@
 <li class="toctree-l1"><a class="reference internal" href="../getting_started/index.html">Getting Started</a></li>
 <li class="toctree-l1 current"><a class="reference internal" href="index.html">The Level Editor</a><ul class="current">
 <li class="toctree-l2 current"><a class="current reference internal" href="#">Editor overview</a></li>
+<li class="toctree-l2"><a class="reference internal" href="project_browser.html">Project Browser</a></li>
+<li class="toctree-l2"><a class="reference internal" href="console.html">Console</a></li>
 <li class="toctree-l2"><a class="reference internal" href="level_viewport.html">Level Viewport</a></li>
 <li class="toctree-l2"><a class="reference internal" href="texture_settings.html">Texture Settings</a></li>
 </ul>
@@ -70,7 +72,7 @@
 <li class="toctree-l1"><a class="reference internal" href="../lua_api.html">Lua API reference</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../glossary.html">Glossary</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../copyright.html">License</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../hackers/index.html">Hackers</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../hackers/index.html">Engine Hackers</a></li>
 </ul>
 
         </div>
@@ -118,11 +120,11 @@ launched and should look similar to the image below:</p>
 </thead>
 <tbody>
 <tr class="row-even"><td><p>1</p></td>
-<td><p>Project Browser</p></td>
+<td><p><a class="reference internal" href="project_browser.html#project-browser"><span class="std std-ref">Project Browser</span></a></p></td>
 <td><p>The current project’s contents.</p></td>
 </tr>
 <tr class="row-odd"><td><p>2</p></td>
-<td><p>Console</p></td>
+<td><p><a class="reference internal" href="console.html#console"><span class="std std-ref">Console</span></a></p></td>
 <td><p>Messages from the Level Editor, the Game and other Runtimes.</p></td>
 </tr>
 <tr class="row-even"><td><p>3</p></td>
@@ -158,14 +160,14 @@ launched and should look similar to the image below:</p>
           </div>
           <footer><div class="rst-footer-buttons" role="navigation" aria-label="Footer">
         <a href="index.html" class="btn btn-neutral float-left" title="The Level Editor" accesskey="p" rel="prev"><span class="fa fa-arrow-circle-left" aria-hidden="true"></span> Previous</a>
-        <a href="level_viewport.html" class="btn btn-neutral float-right" title="Level Viewport" accesskey="n" rel="next">Next <span class="fa fa-arrow-circle-right" aria-hidden="true"></span></a>
+        <a href="project_browser.html" class="btn btn-neutral float-right" title="Project Browser" accesskey="n" rel="next">Next <span class="fa fa-arrow-circle-right" aria-hidden="true"></span></a>
     </div>
 
   <hr/>
 
   <div role="contentinfo">
     <p>&#169; <a href="../copyright.html">Copyright</a> Except where otherwise noted, content on this page is licensed under a CC-BY-SA 4.0 Int. License.
-      <span class="lastupdated">Last updated on Feb 13, 2026.
+      <span class="lastupdated">Last updated on Feb 15, 2026.
       </span></p>
   </div>
 

+ 5 - 3
html/master/level_editor/level_viewport.html

@@ -32,7 +32,7 @@
     <link rel="search" title="Search" href="../search.html" />
     <link rel="copyright" title="Copyright" href="../copyright.html" />
     <link rel="next" title="Texture Settings" href="texture_settings.html" />
-    <link rel="prev" title="Editor overview" href="level_editor.html" /> 
+    <link rel="prev" title="Console" href="console.html" /> 
 </head>
 
 <body class="wy-body-for-nav"> 
@@ -61,6 +61,8 @@
 <li class="toctree-l1"><a class="reference internal" href="../getting_started/index.html">Getting Started</a></li>
 <li class="toctree-l1 current"><a class="reference internal" href="index.html">The Level Editor</a><ul class="current">
 <li class="toctree-l2"><a class="reference internal" href="level_editor.html">Editor overview</a></li>
+<li class="toctree-l2"><a class="reference internal" href="project_browser.html">Project Browser</a></li>
+<li class="toctree-l2"><a class="reference internal" href="console.html">Console</a></li>
 <li class="toctree-l2 current"><a class="current reference internal" href="#">Level Viewport</a><ul>
 <li class="toctree-l3"><a class="reference internal" href="#basic-mouse-navigation">Basic mouse navigation</a></li>
 <li class="toctree-l3"><a class="reference internal" href="#keyboard-mouse-navigation">Keyboard + mouse navigation</a></li>
@@ -94,7 +96,7 @@
 <li class="toctree-l1"><a class="reference internal" href="../lua_api.html">Lua API reference</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../glossary.html">Glossary</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../copyright.html">License</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../hackers/index.html">Hackers</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../hackers/index.html">Engine Hackers</a></li>
 </ul>
 
         </div>
@@ -293,7 +295,7 @@ toolbar buttons.</p>
            </div>
           </div>
           <footer><div class="rst-footer-buttons" role="navigation" aria-label="Footer">
-        <a href="level_editor.html" class="btn btn-neutral float-left" title="Editor overview" accesskey="p" rel="prev"><span class="fa fa-arrow-circle-left" aria-hidden="true"></span> Previous</a>
+        <a href="console.html" class="btn btn-neutral float-left" title="Console" accesskey="p" rel="prev"><span class="fa fa-arrow-circle-left" aria-hidden="true"></span> Previous</a>
         <a href="texture_settings.html" class="btn btn-neutral float-right" title="Texture Settings" accesskey="n" rel="next">Next <span class="fa fa-arrow-circle-right" aria-hidden="true"></span></a>
     </div>
 

+ 212 - 0
html/master/level_editor/project_browser.html

@@ -0,0 +1,212 @@
+<!DOCTYPE html>
+<html class="writer-html5" lang="en" >
+<head>
+  <meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
+
+    <meta property="article:modified_time" content="2026-02-15T01:23:33+00:00" /><meta property="og:title" content="Project Browser" />
+<meta property="og:type" content="website" />
+<meta property="og:url" content="https://docs.crownengine.org/html/latest/level_editor/project_browser.html" />
+<meta property="og:site_name" content="Crown 0.60.0 Manual" />
+<meta property="og:description" content="The Project Browser is where you view and manage the files and resources that make up your project. From here you can create or import new resources, open them, organize folders, and pin favorites for quick access. Overview: By default the Project Browser is split into two pan..." />
+<meta property="og:image" content="https://docs.crownengine.org/html/latest/_images/project_browser.png" />
+<meta property="og:image:alt" content="Crown 0.60.0 Manual" />
+<meta name="description" content="The Project Browser is where you view and manage the files and resources that make up your project. From here you can create or import new resources, open them, organize folders, and pin favorites for quick access. Overview: By default the Project Browser is split into two pan..." />
+
+  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
+  <title>Project Browser &mdash; Crown 0.60.0 Manual 0.61.0 documentation</title>
+      <link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
+      <link rel="stylesheet" href="../_static/css/theme.css" type="text/css" />
+      <link rel="stylesheet" href="../_static/css/custom.css" type="text/css" />
+    <link rel="shortcut icon" href="../_static/org.crownengine.Crown.svg"/>
+    <link rel="canonical" href="https://docs.crownengine.org/html/latest/level_editor/project_browser.html" />
+  <!--[if lt IE 9]>
+    <script src="../_static/js/html5shiv.min.js"></script>
+  <![endif]-->
+  
+        <script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js"></script>
+        <script src="../_static/jquery.js"></script>
+        <script src="../_static/underscore.js"></script>
+        <script src="../_static/doctools.js"></script>
+    <script src="../_static/js/theme.js"></script>
+    <link rel="index" title="Index" href="../genindex.html" />
+    <link rel="search" title="Search" href="../search.html" />
+    <link rel="copyright" title="Copyright" href="../copyright.html" />
+    <link rel="next" title="Console" href="console.html" />
+    <link rel="prev" title="Editor overview" href="level_editor.html" /> 
+</head>
+
+<body class="wy-body-for-nav"> 
+  <div class="wy-grid-for-nav">
+    <nav data-toggle="wy-nav-shift" class="wy-nav-side">
+      <div class="wy-side-scroll">
+        <div class="wy-side-nav-search" >
+            <a href="../index.html">
+            <img src="../_static/org.crownengine.Crown.svg" class="logo" alt="Logo"/>
+          </a>
+              <div class="version">
+                Crown 0.60.0 Manual
+              </div>
+<div role="search">
+  <form id="rtd-search-form" class="wy-form" action="../search.html" method="get">
+    <input type="text" name="q" placeholder="Search docs" />
+    <input type="hidden" name="check_keywords" value="yes" />
+    <input type="hidden" name="area" value="default" />
+  </form>
+</div>
+        </div><div class="wy-menu wy-menu-vertical" data-spy="affix" role="navigation" aria-label="Navigation menu">
+              <ul class="current">
+<li class="toctree-l1"><a class="reference internal" href="../changelog.html">Changelog</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../introduction.html">Introduction</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../installing_crown/index.html">Installing Crown</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../getting_started/index.html">Getting Started</a></li>
+<li class="toctree-l1 current"><a class="reference internal" href="index.html">The Level Editor</a><ul class="current">
+<li class="toctree-l2"><a class="reference internal" href="level_editor.html">Editor overview</a></li>
+<li class="toctree-l2 current"><a class="current reference internal" href="#">Project Browser</a><ul>
+<li class="toctree-l3"><a class="reference internal" href="#overview">Overview</a></li>
+<li class="toctree-l3"><a class="reference internal" href="#folder-view">Folder View</a></li>
+<li class="toctree-l3"><a class="reference internal" href="#files-visibility">Files visibility</a></li>
+<li class="toctree-l3"><a class="reference internal" href="#searching">Searching</a><ul>
+<li class="toctree-l4"><a class="reference internal" href="#search-context">Search context</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li class="toctree-l2"><a class="reference internal" href="console.html">Console</a></li>
+<li class="toctree-l2"><a class="reference internal" href="level_viewport.html">Level Viewport</a></li>
+<li class="toctree-l2"><a class="reference internal" href="texture_settings.html">Texture Settings</a></li>
+</ul>
+</li>
+<li class="toctree-l1"><a class="reference internal" href="../importing_resources/index.html">Importing Resources</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../gameplay/index.html">Writing Gameplay</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../deploying/index.html">Deploying</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../reference/index.html">Reference</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../lua_api.html">Lua API reference</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../glossary.html">Glossary</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../copyright.html">License</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../hackers/index.html">Engine Hackers</a></li>
+</ul>
+
+        </div>
+      </div>
+    </nav>
+
+    <section data-toggle="wy-nav-shift" class="wy-nav-content-wrap"><nav class="wy-nav-top" aria-label="Mobile navigation menu" >
+          <i data-toggle="wy-nav-top" class="fa fa-bars"></i>
+          <a href="../index.html">Crown 0.60.0 Manual</a>
+      </nav>
+
+      <div class="wy-nav-content">
+        <div class="rst-content">
+          <div role="navigation" aria-label="Page navigation">
+  <ul class="wy-breadcrumbs">
+      <li><a href="../index.html" class="icon icon-home"></a> &raquo;</li>
+          <li><a href="index.html">The Level Editor</a> &raquo;</li>
+      <li>Project Browser</li>
+      <li class="wy-breadcrumbs-aside">
+            <a href="../_sources/level_editor/project_browser.rst.txt" rel="nofollow"> View page source</a>
+      </li>
+  </ul>
+  <hr/>
+</div>
+          <div role="main" class="document" itemscope="itemscope" itemtype="http://schema.org/Article">
+           <div itemprop="articleBody">
+             
+  <section id="project-browser">
+<h1>Project Browser<a class="headerlink" href="#project-browser" title="Permalink to this headline">¶</a></h1>
+<p>The Project Browser is where you view and manage the files and resources that
+make up your project. From here you can create or import new resources, open
+them, organize folders, and pin favorites for quick access.</p>
+<img alt="../_images/project_browser.png" src="../_images/project_browser.png" />
+<section id="overview">
+<h2>Overview<a class="headerlink" href="#overview" title="Permalink to this headline">¶</a></h2>
+<p>By default the Project Browser is split into two panes. The top pane shows a
+tree view of the project folders. The bottom pane, called the Folder View,
+displays the contents of the currently selected folder.</p>
+<p>If you prefer a single unified view that shows files and folders together,
+click the small tree icon at the top-right to toggle the layout mode:</p>
+<img alt="../_images/project_browser_tree_view.svg" src="../_images/project_browser_tree_view.svg" /></section>
+<section id="folder-view">
+<h2>Folder View<a class="headerlink" href="#folder-view" title="Permalink to this headline">¶</a></h2>
+<p>The Folder View presents the resources inside the selected folder. You can
+switch between a icon view and a compact list view using the button at the
+top-right of the Folder View:</p>
+<img alt="../_images/project_browser_icon_list_view.svg" src="../_images/project_browser_icon_list_view.svg" /><p>Resources such as units, materials, textures and other graphical content use
+thumbnails that show how they will appear at runtime. Other resource types
+use a simple icon.</p>
+<img alt="level_editor/images/project_browser_thumbnails.png" src="level_editor/images/project_browser_thumbnails.png" />
+<p>Thumbnails generated in Crown are saved in a dedicated OS location so they can
+be used by other programs such as the file manager.</p>
+</section>
+<section id="files-visibility">
+<h2>Files visibility<a class="headerlink" href="#files-visibility" title="Permalink to this headline">¶</a></h2>
+<p>To keep the Project Browser uncluttered, the UI normally hides auxiliary files
+and shows resources as a single item with trimmed extension. For example, a
+texture resource on disk consists of the original image file plus a generated
+<code class="docutils literal notranslate"><span class="pre">.texture</span></code> resource file; the browser shows them as one combined
+<code class="docutils literal notranslate"><span class="pre">.texture</span></code> item. Similar grouping applies to other resource types.</p>
+<p>When you need to inspect the actual files on disk use the button immediately
+to the right of the Search Bar to toggle visibility options:</p>
+<img alt="../_images/project_browser_sorting_filtering.svg" src="../_images/project_browser_sorting_filtering.svg" /><p>With the same popup you can also control how the items should be sorted.</p>
+</section>
+<section id="searching">
+<h2>Searching<a class="headerlink" href="#searching" title="Permalink to this headline">¶</a></h2>
+<p>The Project Browser offers fast project-wise searching based on keywords.
+Start typing in the Search Bar and matching results appear as you type. Press
+<code class="docutils literal notranslate"><span class="pre">Escape</span></code> to exit search mode. The Search Bar position may move depending on
+the current view mode (icon view or tree view), but the search behavior
+remains the same.</p>
+<section id="search-context">
+<h3>Search context<a class="headerlink" href="#search-context" title="Permalink to this headline">¶</a></h3>
+<p>By default the search covers the project itself (i.e. the main source dir). If
+your project includes mapped source directories, those are excluded from
+search results unless you enable them explicitly by checking <code class="docutils literal notranslate"><span class="pre">Show</span> <span class="pre">mapped</span>
+<span class="pre">dirs</span></code> in the <a class="reference internal" href="#files-visibility"><span class="std std-ref">visibility controls</span></a>.</p>
+</section>
+</section>
+</section>
+
+
+           </div>
+          </div>
+          <footer><div class="rst-footer-buttons" role="navigation" aria-label="Footer">
+        <a href="level_editor.html" class="btn btn-neutral float-left" title="Editor overview" accesskey="p" rel="prev"><span class="fa fa-arrow-circle-left" aria-hidden="true"></span> Previous</a>
+        <a href="console.html" class="btn btn-neutral float-right" title="Console" accesskey="n" rel="next">Next <span class="fa fa-arrow-circle-right" aria-hidden="true"></span></a>
+    </div>
+
+  <hr/>
+
+  <div role="contentinfo">
+    <p>&#169; <a href="../copyright.html">Copyright</a> Except where otherwise noted, content on this page is licensed under a CC-BY-SA 4.0 Int. License.
+      <span class="lastupdated">Last updated on Feb 15, 2026.
+      </span></p>
+  </div>
+
+  Built with <a href="https://www.sphinx-doc.org/">Sphinx</a> using a
+    <a href="https://github.com/readthedocs/sphinx_rtd_theme">theme</a>
+    provided by <a href="https://readthedocs.org">Read the Docs</a>.
+   
+
+</footer>
+        </div>
+      </div>
+    </section>
+  </div>
+  <script>
+      jQuery(function () {
+          SphinxRtdTheme.Navigation.enable(true);
+      });
+  </script>
+    <!-- Theme Analytics -->
+    <script async src="https://www.googletagmanager.com/gtag/js?id=G-XNVGCMNDZH"></script>
+    <script>
+      window.dataLayer = window.dataLayer || [];
+      function gtag(){dataLayer.push(arguments);}
+      gtag('js', new Date());
+
+      gtag('config', 'G-XNVGCMNDZH', {
+          'anonymize_ip': true,
+      });
+    </script> 
+
+</body>
+</html>

+ 4 - 2
html/master/level_editor/texture_settings.html

@@ -61,6 +61,8 @@
 <li class="toctree-l1"><a class="reference internal" href="../getting_started/index.html">Getting Started</a></li>
 <li class="toctree-l1 current"><a class="reference internal" href="index.html">The Level Editor</a><ul class="current">
 <li class="toctree-l2"><a class="reference internal" href="level_editor.html">Editor overview</a></li>
+<li class="toctree-l2"><a class="reference internal" href="project_browser.html">Project Browser</a></li>
+<li class="toctree-l2"><a class="reference internal" href="console.html">Console</a></li>
 <li class="toctree-l2"><a class="reference internal" href="level_viewport.html">Level Viewport</a></li>
 <li class="toctree-l2 current"><a class="current reference internal" href="#">Texture Settings</a><ul>
 <li class="toctree-l3"><a class="reference internal" href="#overview">Overview</a></li>
@@ -82,7 +84,7 @@
 <li class="toctree-l1"><a class="reference internal" href="../lua_api.html">Lua API reference</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../glossary.html">Glossary</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../copyright.html">License</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../hackers/index.html">Hackers</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../hackers/index.html">Engine Hackers</a></li>
 </ul>
 
         </div>
@@ -114,7 +116,7 @@
 <h1>Texture Settings<a class="headerlink" href="#texture-settings" title="Permalink to this headline">¶</a></h1>
 <p>The Texture Settings dialog lets you customize how Crown processes a texture
 for each target platform. To open it, double-click a texture in the
-<span class="xref std std-ref">Project Browser</span>; Crown will display a dialog similar to this:</p>
+<a class="reference internal" href="project_browser.html#project-browser"><span class="std std-ref">Project Browser</span></a>; Crown will display a dialog similar to this:</p>
 <img alt="../_images/texture_settings_dialog.png" src="../_images/texture_settings_dialog.png" />
 <section id="overview">
 <h2>Overview<a class="headerlink" href="#overview" title="Permalink to this headline">¶</a></h2>

+ 1 - 1
html/master/lua_api.html

@@ -161,7 +161,7 @@
 </li>
 <li class="toctree-l1"><a class="reference internal" href="glossary.html">Glossary</a></li>
 <li class="toctree-l1"><a class="reference internal" href="copyright.html">License</a></li>
-<li class="toctree-l1"><a class="reference internal" href="hackers/index.html">Hackers</a></li>
+<li class="toctree-l1"><a class="reference internal" href="hackers/index.html">Engine Hackers</a></li>
 </ul>
 
         </div>

BIN
html/master/objects.inv


+ 1 - 1
html/master/reference/boot_config.html

@@ -78,7 +78,7 @@
 <li class="toctree-l1"><a class="reference internal" href="../lua_api.html">Lua API reference</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../glossary.html">Glossary</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../copyright.html">License</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../hackers/index.html">Hackers</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../hackers/index.html">Engine Hackers</a></li>
 </ul>
 
         </div>

+ 1 - 1
html/master/reference/command_line.html

@@ -74,7 +74,7 @@
 <li class="toctree-l1"><a class="reference internal" href="../lua_api.html">Lua API reference</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../glossary.html">Glossary</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../copyright.html">License</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../hackers/index.html">Hackers</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../hackers/index.html">Engine Hackers</a></li>
 </ul>
 
         </div>

+ 1 - 1
html/master/reference/console_commands.html

@@ -80,7 +80,7 @@
 <li class="toctree-l1"><a class="reference internal" href="../lua_api.html">Lua API reference</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../glossary.html">Glossary</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../copyright.html">License</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../hackers/index.html">Hackers</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../hackers/index.html">Engine Hackers</a></li>
 </ul>
 
         </div>

+ 1 - 1
html/master/reference/index.html

@@ -70,7 +70,7 @@
 <li class="toctree-l1"><a class="reference internal" href="../lua_api.html">Lua API reference</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../glossary.html">Glossary</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../copyright.html">License</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../hackers/index.html">Hackers</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../hackers/index.html">Engine Hackers</a></li>
 </ul>
 
         </div>

+ 1 - 1
html/master/search.html

@@ -58,7 +58,7 @@
 <li class="toctree-l1"><a class="reference internal" href="lua_api.html">Lua API reference</a></li>
 <li class="toctree-l1"><a class="reference internal" href="glossary.html">Glossary</a></li>
 <li class="toctree-l1"><a class="reference internal" href="copyright.html">License</a></li>
-<li class="toctree-l1"><a class="reference internal" href="hackers/index.html">Hackers</a></li>
+<li class="toctree-l1"><a class="reference internal" href="hackers/index.html">Engine Hackers</a></li>
 </ul>
 
         </div>

Разница между файлами не показана из-за своего большого размера
+ 0 - 0
html/master/searchindex.js


Разница между файлами не показана из-за своего большого размера
+ 0 - 0
html/master/sitemap.xml


Некоторые файлы не были показаны из-за большого количества измененных файлов