We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ae602ba + b3f0c96 commit 8bedbe2Copy full SHA for 8bedbe2
tutorials/scripting/gdextension/gdextension_cpp_example.rst
@@ -443,7 +443,7 @@ functions:
443
double amplitude;
444
445
public:
446
- void set_amplitude(const double amplitude);
+ void set_amplitude(const double p_amplitude);
447
double get_amplitude() const;
448
...
449
@@ -500,7 +500,7 @@ code:
500
501
void _process(double delta) override;
502
void set_speed(double p_speed);
503
- double get_speed();
+ double get_speed() const;
504
505
506
This requires a few more changes to our ``gdexample.cpp`` file, again we're only
0 commit comments