From c8583abde8916fc6cc2c69a00ff15d5a15d3b7b3 Mon Sep 17 00:00:00 2001 From: Muller-Castro <37383316+Muller-Castro@users.noreply.github.com> Date: Sun, 27 Apr 2025 22:06:15 -0300 Subject: [PATCH] Add _CLASS_SNAKE_CASE_ script template placeholder --- tutorials/scripting/creating_script_templates.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tutorials/scripting/creating_script_templates.rst b/tutorials/scripting/creating_script_templates.rst index 3e3c6c27d03..374d0500736 100644 --- a/tutorials/scripting/creating_script_templates.rst +++ b/tutorials/scripting/creating_script_templates.rst @@ -205,6 +205,9 @@ Base placeholders +--------------------------+----------------------------------------------------+ | ``_CLASS_`` | The name of the new class. | +--------------------------+----------------------------------------------------+ +| ``_CLASS_SNAKE_CASE_`` | The name of the new class as ``snake_case`` | +| | (used in GDScript only). | ++--------------------------+----------------------------------------------------+ | ``_BASE_`` | The base type a new script inherits from. | +--------------------------+----------------------------------------------------+ | ``_TS_`` | Indentation placeholder. The exact type and number |