You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
311 B
14 lines
311 B
6 months ago
|
class_name DialogicNode_StyleLayer
|
||
|
extends Control
|
||
|
|
||
|
## Control node that is hidden and shown based on the current dialogic style.
|
||
|
|
||
|
## The name this layer listens to
|
||
|
@export var layer_name: String = 'Default'
|
||
|
|
||
|
|
||
|
func _ready():
|
||
|
if layer_name.is_empty():
|
||
|
layer_name = name
|
||
|
add_to_group('dialogic_style_layer')
|