Files
2026-06-11 19:59:31 -05:00

12 lines
275 B
GDScript

class_name DMDialogueProcessor extends RefCounted
## Override to modify the incoming raw string.
func _preprocess_line(raw_line: String) -> String:
return raw_line
## Override to modify the outgoing dialogue line.
func _process_line(line: DMCompiledLine) -> void:
pass