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 09e772f

Browse files
committedSep 3, 2024
bring back serialized props for migration
but disable it as a global class since scenes will refer to it by path
1 parent 263d110 commit 09e772f

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed
 
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
extends Resource
2+
3+
# TODO: Remove this class after removing the remaining serialization.
4+
5+
@export var block_class: StringName
6+
@export var serialized_props: Array
7+
8+
9+
func _init(p_block_class: StringName = "", p_serialized_props: Array = []):
10+
block_class = p_block_class
11+
serialized_props = p_serialized_props

0 commit comments

Comments
 (0)
Please sign in to comment.