From 7d04b49536bcd76fd6fad93f06acd31b4069c75b Mon Sep 17 00:00:00 2001 From: Cassidy James Blaede Date: Fri, 26 Jul 2024 12:02:55 -0600 Subject: [PATCH] Category factory: Tweak tooltips "The following" was confusing to me; this makes it more clear by saying "Attached blocks" --- addons/block_code/ui/picker/categories/category_factory.gd | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/addons/block_code/ui/picker/categories/category_factory.gd b/addons/block_code/ui/picker/categories/category_factory.gd index f4386b31..2b229f90 100644 --- a/addons/block_code/ui/picker/categories/category_factory.gd +++ b/addons/block_code/ui/picker/categories/category_factory.gd @@ -175,7 +175,7 @@ static func get_general_blocks() -> Array[Block]: b.block_name = "ready_block" b.block_format = "On Ready" b.statement = "func _ready():" - b.tooltip_text = 'The following will be executed when the node is "ready"' + b.tooltip_text = 'Attached blocks will be executed once when the node is "ready"' b.category = "Lifecycle" block_list.append(b) @@ -183,7 +183,7 @@ static func get_general_blocks() -> Array[Block]: b.block_name = "process_block" b.block_format = "On Process" b.statement = "func _process(delta):" - b.tooltip_text = "The following will be executed during the processing step of the main loop" + b.tooltip_text = "Attached blocks will be executed during the processing step of the main loop" b.category = "Lifecycle" block_list.append(b) @@ -191,7 +191,7 @@ static func get_general_blocks() -> Array[Block]: b.block_name = "physics_process_block" b.block_format = "On Physics Process" b.statement = "func _physics_process(delta):" - b.tooltip_text = 'The following will be executed during the "physics" processing step of the main loop' + b.tooltip_text = 'Attached blocks will be executed during the "physics" processing step of the main loop' b.category = "Lifecycle" block_list.append(b)