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 d1b33fd commit fb6e416Copy full SHA for fb6e416
addons/block_code/ui/picker/categories/category_factory.gd
@@ -178,6 +178,18 @@ static func get_general_categories() -> Array[BlockCategory]:
178
# Objects & Types
179
var type_list: Array[Block] = []
180
181
+ b = BLOCKS["parameter_block"].instantiate()
182
+ b.block_type = Types.BlockType.NODE
183
+ b.block_format = "This object"
184
+ b.statement = 'self'
185
+ type_list.append(b)
186
+
187
188
189
+ b.block_format = "%{name: STRING}"
190
+ b.statement = '%{name}'
191
192
193
b = BLOCKS["parameter_block"].instantiate()
194
b.block_type = Types.BlockType.STRING
195
b.block_format = "As String {value: VARIANT}"
0 commit comments