GDevelop
GDevelop copied to clipboard
Add string selector to "Change input type" for text input object
What's the difference between .useStandardParameters()
and .addParameter()
?
Is that change ok like this?
Also, is it normal that all my commits are shown above?
Can I only select the relevant commits or is it just how it is? 🤔
Can I only select the relevant commits or is it just how it is? 🤔
Not a big deal here, but you should always go to the master branch, pull the latest changes, then create a new branch and start your changes here (and then open a PR thanks to this branch).
What's the difference between
.useStandardParameters()
and.addParameter()
? Is that change ok like this?
Unfortunately that won't work like this, because useStandardParameters is not handling the second parameter.
useStandardParameters
is a special function that internally calls multiple times addParameter
to add, well, some conventional parameters according to the type being passed.
We could add support for this second parameter, but this needs to be done carefully I think in the C++ codebase.