Skip to content

Commit 256561c

Browse files
authored
Merge pull request #10622 from Calinou/instancing-scene-vs-shaders
Clarify difference between Godot's scene instancing and hardware instancing
2 parents 3e61c10 + 7d34e4e commit 256561c

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

getting_started/step_by_step/instancing.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,15 @@
33
Creating instances
44
==================
55

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

tutorials/scripting/nodes_and_scene_instances.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ Nodes and scene instances
66
This guide explains how to get nodes, create nodes, add them as a child, and
77
instantiate scenes from code.
88

9+
.. seealso::
10+
11+
Check the :ref:`doc_instancing` tutorial to learn about Godot's approach to scene instancing.
12+
913
Getting nodes
1014
-------------
1115

0 commit comments

Comments
 (0)