Merge pull request #63649 from snailrhymer/meshinstance-fix

Fix typo in MeshInstance.xml
This commit is contained in:
Rémi Verschelde 2022-07-30 09:21:51 +02:00 committed by GitHub
commit 4a8d3bf129
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,7 +4,7 @@
Node that instances meshes into a scenario. Node that instances meshes into a scenario.
</brief_description> </brief_description>
<description> <description>
MeshInstance is a node that takes a [Mesh] resource and adds it to the current scenario by creating an instance of it. This is the class most often used to get 3D geometry rendered and can be used to instance a single [Mesh] in many places. This allows to reuse geometry and save on resources. When a [Mesh] has to be instanced more than thousands of times at close proximity, consider using a [MultiMesh] in a [MultiMeshInstance] instead. MeshInstance is a node that takes a [Mesh] resource and adds it to the current scenario by creating an instance of it. This is the class most often used to get 3D geometry rendered and can be used to instance a single [Mesh] in many places. This allows reusing geometry, which can save on resources. When a [Mesh] has to be instanced more than thousands of times at close proximity, consider using a [MultiMesh] in a [MultiMeshInstance] instead.
</description> </description>
<tutorials> <tutorials>
<link title="3D Material Testers Demo">https://godotengine.org/asset-library/asset/123</link> <link title="3D Material Testers Demo">https://godotengine.org/asset-library/asset/123</link>