From 81b2cf3563fc5e35eaa2739e6f2cff395a7ac716 Mon Sep 17 00:00:00 2001 From: aXu-AP <1621768+aXu-AP@users.noreply.github.com> Date: Fri, 18 Aug 2023 00:34:51 +0300 Subject: [PATCH] Point to GlobalScope from Evaluating Expressions tut Update to 4.x since functions were moved from GDScript to GlobalScope. Co-Authored-By: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> --- tutorials/scripting/evaluating_expressions.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/scripting/evaluating_expressions.rst b/tutorials/scripting/evaluating_expressions.rst index 36b599923..6b45a1eed 100644 --- a/tutorials/scripting/evaluating_expressions.rst +++ b/tutorials/scripting/evaluating_expressions.rst @@ -198,7 +198,7 @@ The output from the script will be:: Built-in functions ------------------ -Most methods available in the :ref:`class_@GDScript` scope are available in the +All methods in the :ref:`Global Scope` are available in the Expression class, even if no base instance is bound to the expression. The same parameters and return types are available.