We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32231ed commit 237c709Copy full SHA for 237c709
addons/block_code/ui/picker/categories/category_factory.gd
@@ -169,6 +169,18 @@ static func get_general_categories() -> Array[BlockCategory]:
169
# Objects & Types
170
var type_list: Array[Block] = []
171
172
+ b = BLOCKS["parameter_block"].instantiate()
173
+ b.block_type = Types.BlockType.NODE
174
+ b.block_format = "This object"
175
+ b.statement = "self"
176
+ type_list.append(b)
177
+
178
179
180
+ b.block_format = "%{name: STRING}"
181
+ b.statement = "%{name}"
182
183
184
b = BLOCKS["parameter_block"].instantiate()
185
b.block_type = Types.BlockType.STRING
186
b.block_format = "As String {value}"
0 commit comments