Skip to content

Commit d64e16e

Browse files
Clarified that EditorScript can only run in GDScript
1 parent 8f784e4 commit d64e16e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tutorials/plugins/running_code_in_the_editor.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -292,14 +292,14 @@ Running one-off scripts using EditorScript
292292
Sometimes, you need to run code just one time to automate a certain task that is
293293
not available in the editor out of the box. Some examples might be:
294294

295-
- Use as a playground for GDScript or C# scripting without having to run a project.
295+
- Use as a playground for GDScript scripting without having to run a project.
296296
``print()`` output is displayed in the editor Output panel.
297297
- Scale all light nodes in the currently edited scene, as you noticed your level
298298
ends up looking too dark or too bright after placing lights where desired.
299299
- Replace nodes that were copy-pasted with scene instances to make them easier
300300
to modify later.
301301

302-
This is available in Godot by extending :ref:`class_EditorScript` in a script.
302+
This is available in Godot by extending :ref:`class_EditorScript` in a GDScript.
303303
This provides a way to run individual scripts in the editor without having to
304304
create an editor plugin.
305305

0 commit comments

Comments
 (0)