About the Editor
Writing code in a standard text box can be is bad, especially for mobile players. That is why Plant with Coding features its own LAU editor and syntax.
PC Keybinds & Controls
Section titled “PC Keybinds & Controls”For PC players, the editor includes several shortcuts to speed up your workflow.
| Action | Keybind |
|---|---|
| Change Font Size | Hold Alt + Scroll Mouse Wheel |
| Navigate Suggestions (Up) | Num 1 |
| Navigate Suggestions (Down) | Num 4 |
| Complete Suggestion | TAB |
| New Line | ENTER |
Mobile Support
Section titled “Mobile Support”Mobile players may find writing code challenging depending on their device. To help with this, there is added support buttons at the top of the screen:
- Line Finder: Forces the keyboard to open and focus on the line number you entered.
- Format Button: Formats all the code into a neatly indented code.
The Output Window
Section titled “The Output Window”The Output page is where your code talks to you. It is essential for debugging and knowing what your code is doing.
Printing Messages
Section titled “Printing Messages”You can send messages to the Output page using the print commands:
print("Hello World") -- Prints to Output and makes the Drone speakprintn("System log") -- Prints to Output only (silent)Come, Learn more on the next page!