How can one display and scroll through a multi-line strings (contain " ") via pyglet using the features of ScrollableTextLayout?
STL crops what is display, and seems to be the most efficient way to implement scrolling.
However I have no idea as to how to use it. The docs do not elucidate much to me.
SomeText:
string = "Some multiline
text is contained within this string
which must be rendered
such that it is able to be scrolled through."
Snippets/Links are appreciated.