-
Notifications
You must be signed in to change notification settings - Fork 1
Home
Moritz Tim W. edited this page Nov 3, 2023
·
17 revisions
Get a form up and running in 10 steps.
- Install the plugin
from the Asset Library tab in Godot. Orby following the Installation instructions.
- Add a
Form
node to your scene. - Add a
Container
of your choice as a child of theForm
node to hold the form elements. - For each form element, add a
FormLabel
and any inputControl
. - Finally, add a
Submit
button.
- In the inspector of the
Form
node, set theSubmit Button
property to yourSubmit
button. - In the inspector of each element, set the
Input
property to the correspondingControl
node.
- In the inspector of the
Form
node, choose and set up aProtocol
. Currently supported protocols are:HttpProtocol
-
MailsendSmtPMailProtocol
Of course, you can also implement your own protocol by extending theProtocol
class or any of its descendants.
- In the inspector of each
FormLabel
, set theInput Required
property if needed. - In the inspector of each input
Control
, set and configure theValidator
property with rules.