Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 8002b87

Browse files
committedAug 5, 2024·
WIP (Will split commit soon)
1 parent a5d1373 commit 8002b87

File tree

71 files changed

+2340
-2289
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+2340
-2289
lines changed
 

‎addons/block_code/block_code_plugin.gd‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ const DISABLED_CLASSES := [
3333

3434
func _enter_tree():
3535
Types.init_cast_graph()
36+
CategoryFactory.init_block_definition_dictionary()
3637

3738
editor_inspector = EditorInterface.get_inspector()
3839
editor_selection = EditorInterface.get_selection()
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
[gd_resource type="Resource" load_steps=2 format=3 uid="uid://bpvefei72nh3a"]
2+
3+
[ext_resource type="Script" path="res://addons/block_code/code_generation/block_definition.gd" id="1_5qal7"]
4+
5+
[resource]
6+
script = ExtResource("1_5qal7")
7+
name = &"add_node_to_group"
8+
description = "Add the node into the group"
9+
category = "Communication | Groups"
10+
type = 2
11+
variant_type = 0
12+
display_template = "Add {node: OBJECT} to group {group: STRING}"
13+
code_template = "{node}.add_to_group({group})"
14+
defaults = {}
15+
signal_name = ""
16+
scope = ""

0 commit comments

Comments
 (0)
Please sign in to comment.