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]:
175
175
b .block_name = "ready_block"
176
176
b .block_format = "On Ready"
177
177
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"'
179
179
b .category = "Lifecycle"
180
180
block_list .append (b )
181
181
182
182
b = BLOCKS ["entry_block" ].instantiate ()
183
183
b .block_name = "process_block"
184
184
b .block_format = "On Process"
185
185
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"
187
187
b .category = "Lifecycle"
188
188
block_list .append (b )
189
189
190
190
b = BLOCKS ["entry_block" ].instantiate ()
191
191
b .block_name = "physics_process_block"
192
192
b .block_format = "On Physics Process"
193
193
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'
195
195
b .category = "Lifecycle"
196
196
block_list .append (b )
197
197
You can’t perform that action at this time.
0 commit comments