Skip to content

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.


For PC players, the editor includes several shortcuts to speed up your workflow.

ActionKeybind
Change Font SizeHold Alt + Scroll Mouse Wheel
Navigate Suggestions (Up)Num 1
Navigate Suggestions (Down)Num 4
Complete SuggestionTAB
New LineENTER

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 page is where your code talks to you. It is essential for debugging and knowing what your code is doing.

You can send messages to the Output page using the print commands:

print("Hello World") -- Prints to Output and makes the Drone speak
printn("System log") -- Prints to Output only (silent)

Come, Learn more on the next page!