Skip to content

Commit c722845

Browse files
authored
Merge pull request #163 from endlessm/tooltip-tweaks
category_factory: Tweak tooltips
2 parents 6f7bb2d + 7d04b49 commit c722845

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

addons/block_code/ui/picker/categories/category_factory.gd

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -175,23 +175,23 @@ static func get_general_blocks() -> Array[Block]:
175175
b.block_name = "ready_block"
176176
b.block_format = "On Ready"
177177
b.statement = "func _ready():"
178-
b.tooltip_text = 'The following will be executed when the node is "ready"'
178+
b.tooltip_text = 'Attached blocks will be executed once when the node is "ready"'
179179
b.category = "Lifecycle"
180180
block_list.append(b)
181181

182182
b = BLOCKS["entry_block"].instantiate()
183183
b.block_name = "process_block"
184184
b.block_format = "On Process"
185185
b.statement = "func _process(delta):"
186-
b.tooltip_text = "The following will be executed during the processing step of the main loop"
186+
b.tooltip_text = "Attached blocks will be executed during the processing step of the main loop"
187187
b.category = "Lifecycle"
188188
block_list.append(b)
189189

190190
b = BLOCKS["entry_block"].instantiate()
191191
b.block_name = "physics_process_block"
192192
b.block_format = "On Physics Process"
193193
b.statement = "func _physics_process(delta):"
194-
b.tooltip_text = 'The following will be executed during the "physics" processing step of the main loop'
194+
b.tooltip_text = 'Attached blocks will be executed during the "physics" processing step of the main loop'
195195
b.category = "Lifecycle"
196196
block_list.append(b)
197197

0 commit comments

Comments
 (0)