From e9f7366a436b1726c9e7f68c5d2df5283e979c7e Mon Sep 17 00:00:00 2001 From: Doonv <58695417+doonv@users.noreply.github.com> Date: Tue, 25 Apr 2023 23:28:50 +0300 Subject: [PATCH 1/2] Fix typo in the GDExtension C++ example --- tutorials/scripting/gdextension/gdextension_cpp_example.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/scripting/gdextension/gdextension_cpp_example.rst b/tutorials/scripting/gdextension/gdextension_cpp_example.rst index c3bcbf14268..e72df0bd8ca 100644 --- a/tutorials/scripting/gdextension/gdextension_cpp_example.rst +++ b/tutorials/scripting/gdextension/gdextension_cpp_example.rst @@ -412,7 +412,7 @@ GDScript allows you to add properties to your script using the ``export`` keyword. In GDExtension you have to register the properties with a getter and setter function or directly implement the ``_get_property_list``, ``_get`` and ``_set`` methods of an object (but that goes far beyond the scope of this -tutorial. +tutorial) Lets add a property that allows us to control the amplitude of our wave. From 024113158e71c4f0934e198265554babe1371ae9 Mon Sep 17 00:00:00 2001 From: Doonv <58695417+doonv@users.noreply.github.com> Date: Wed, 26 Apr 2023 17:41:56 +0300 Subject: [PATCH 2/2] Add another dot. Co-authored-by: Yuri Sizov <11782833+YuriSizov@users.noreply.github.com> --- tutorials/scripting/gdextension/gdextension_cpp_example.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/scripting/gdextension/gdextension_cpp_example.rst b/tutorials/scripting/gdextension/gdextension_cpp_example.rst index e72df0bd8ca..dc074f2beab 100644 --- a/tutorials/scripting/gdextension/gdextension_cpp_example.rst +++ b/tutorials/scripting/gdextension/gdextension_cpp_example.rst @@ -412,7 +412,7 @@ GDScript allows you to add properties to your script using the ``export`` keyword. In GDExtension you have to register the properties with a getter and setter function or directly implement the ``_get_property_list``, ``_get`` and ``_set`` methods of an object (but that goes far beyond the scope of this -tutorial) +tutorial). Lets add a property that allows us to control the amplitude of our wave.