From b8bb635d29aa345737a24a1903f9959bf624e679 Mon Sep 17 00:00:00 2001 From: Serhii Snitsaruk Date: Sun, 13 Oct 2024 20:26:04 +0200 Subject: [PATCH] Doc: Clarify `Blackboard.get_var()` and `set_var()` --- doc_classes/Blackboard.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc_classes/Blackboard.xml b/doc_classes/Blackboard.xml index 32a07208..3f8a9ad5 100644 --- a/doc_classes/Blackboard.xml +++ b/doc_classes/Blackboard.xml @@ -46,7 +46,7 @@ - Returns variable value or [param default] if variable doesn't exist. If [param complain] is [code]true[/code], an error will be printed if variable doesn't exist. + Returns variable value or [param default] if variable doesn't exist. If [param complain] is [code]true[/code], an error will be printed if variable doesn't exist. If the variable doesn't exist in the current [Blackboard] scope, it will look in the parent scope [Blackboard] to find it. @@ -98,7 +98,7 @@ - Assigns a value to a Blackboard variable. + Assigns a value to a variable in the current Blackboard scope. If the variable doesn't exist, it will be created. If the variable already exists in the parent scope, the parent scope value will NOT be changed.