File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
addons/block_code/ui/picker/categories Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments