diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2019-12-05 06:49:43 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-05 06:49:43 +0100 |
commit | 99b81aa1b972f55bc8afd18154a468eea9cbb9fc (patch) | |
tree | 4bf15d591c8aea3eff1c278edea5acecf6614763 /doc/classes | |
parent | 36164168b5525bae3aead5d00063c6a7770bafd7 (diff) | |
parent | f7f7544997128ed1b01398adf84225fdcfb3e3db (diff) |
Merge pull request #34039 from Eoin-ONeill-Yokai/multimeshfix
Added Missing Binding for `multimesh_create` to VisualServer
Diffstat (limited to 'doc/classes')
-rw-r--r-- | doc/classes/VisualServer.xml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/classes/VisualServer.xml b/doc/classes/VisualServer.xml index f1926834ad..3f3996e570 100644 --- a/doc/classes/VisualServer.xml +++ b/doc/classes/VisualServer.xml @@ -2606,6 +2606,14 @@ <description> </description> </method> + <method name="multimesh_create"> + <return type="RID"> + </return> + <description> + Creates a new multimesh on the VisualServer and returns an [RID] handle. + Once finished with your RID, you will want to free the RID using the VisualServer's [method free_rid] static method. + </description> + </method> <method name="multimesh_get_aabb" qualifiers="const"> <return type="AABB"> </return> |