Hi, I'd like to always have the sierra style dialog positioned at the bottom of the screen. The only way I've found to do this is the SayAt(...) function, and pass it some globally defined coordinates. But this requires my dialog files to be filled with function calls rather than the nice looking dialog script syntax.
Code: AGS
Is there a nicer way to do this? Thanks.
EDIT: I just discovered "Custom dialog options rendering" in the manual. I'm going to do some reading now...
@S
cEgo.SayAt(dialog_x, dialog_y, dialog_width, "Say something.");
cAlfred.SayAt(dialog_x, dialog_y, dialog_width, "Give a response.");
return
Is there a nicer way to do this? Thanks.
EDIT: I just discovered "Custom dialog options rendering" in the manual. I'm going to do some reading now...