Added Dialogic and a test dialog

This commit is contained in:
cblech
2024-10-28 12:06:03 +01:00
parent ea20332b4f
commit d231bb0773
683 changed files with 46264 additions and 1 deletions
@@ -0,0 +1,14 @@
@tool
class_name DialogicStyleLayer
extends Resource
@export var scene: PackedScene = null
@export var overrides := {}
func _init(scene_path:Variant=null, scene_overrides:Dictionary={}):
if scene_path is PackedScene:
scene = scene_path
elif scene_path is String and ResourceLoader.exists(scene_path):
scene = load(scene_path)
overrides = scene_overrides