浏览代码

Merge pull request #10622 from Calinou/instancing-scene-vs-shaders

Clarify difference between Godot's scene instancing and hardware instancing
Max Hilbrunner 7 月之前
父节点
当前提交
256561c7ea
共有 2 个文件被更改,包括 13 次插入0 次删除
  1. 9 0
      getting_started/step_by_step/instancing.rst
  2. 4 0
      tutorials/scripting/nodes_and_scene_instances.rst

+ 9 - 0
getting_started/step_by_step/instancing.rst

@@ -3,6 +3,15 @@
 Creating instances
 Creating instances
 ==================
 ==================
 
 
+.. note::
+
+   This tutorial refers to instancing scenes in the editor. To learn how
+   to instance scenes from code, see :ref:`doc_nodes_and_scene_instances`.
+
+   Godot's approach to *instancing* described below should not be confused with
+   hardware instancing that can be used to render large amounts of similar
+   objects quickly. See :ref:`doc_using_multimesh` instead.
+
 In the previous part, we saw that a scene is a collection of nodes organized in
 In the previous part, we saw that a scene is a collection of nodes organized in
 a tree structure, with a single node as its root. You can split your project
 a tree structure, with a single node as its root. You can split your project
 into any number of scenes. This feature helps you break down and organize your
 into any number of scenes. This feature helps you break down and organize your

+ 4 - 0
tutorials/scripting/nodes_and_scene_instances.rst

@@ -6,6 +6,10 @@ Nodes and scene instances
 This guide explains how to get nodes, create nodes, add them as a child, and
 This guide explains how to get nodes, create nodes, add them as a child, and
 instantiate scenes from code.
 instantiate scenes from code.
 
 
+.. seealso::
+
+    Check the :ref:`doc_instancing` tutorial to learn about Godot's approach to scene instancing.
+
 Getting nodes
 Getting nodes
 -------------
 -------------