Skip to content

Commit bc69f1b

Browse files
committed
Update ready and print definitions
To the current ones. Done using the editor Inspector dock.
1 parent 01e7bf0 commit bc69f1b

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

addons/block_code/blocks/lifecycle/ready.tres

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,12 @@
55
[resource]
66
script = ExtResource("1_vk0xk")
77
name = &"ready"
8+
description = "Attached blocks will be executed once when the node is \"ready\""
9+
category = "Lifecycle"
810
type = 1
911
variant_type = 0
1012
display_template = "On Ready"
1113
code_template = "func _ready():"
12-
description = "The following will be executed when the node is \"ready\""
13-
category = "Lifecycle"
1414
defaults = {}
1515
signal_name = ""
16+
scope = ""

addons/block_code/blocks/log/print.tres

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ type = 2
1111
variant_type = 0
1212
display_template = "Print {text: STRING}"
1313
code_template = "print({text})"
14-
defaults = {}
14+
defaults = {
15+
"text": "Hello"
16+
}
1517
signal_name = ""
1618
scope = ""

0 commit comments

Comments
 (0)