Update
This commit is contained in:
15
addons/dialogue_manager/components/resolved_line_data.gd
Normal file
15
addons/dialogue_manager/components/resolved_line_data.gd
Normal file
@@ -0,0 +1,15 @@
|
||||
extends RefCounted
|
||||
|
||||
var text: String = ""
|
||||
var pauses: Dictionary = {}
|
||||
var speeds: Dictionary = {}
|
||||
var mutations: Array[Array] = []
|
||||
var time: String = ""
|
||||
|
||||
|
||||
func _init(data: Dictionary) -> void:
|
||||
text = data.text
|
||||
pauses = data.pauses
|
||||
speeds = data.speeds
|
||||
mutations = data.mutations
|
||||
time = data.time
|
||||
Reference in New Issue
Block a user