Version: Beta ⚠️
All API changes to 0.6.X
As Typewriter changed from Adapters
to Extensions
, the API has changed significantly.
It is recommended to reread the Getting Started guide to get a better understanding of how to create extensions.
Messager Tick Parameter
- Old
- New
override fun tick(playTime: Duration) {
super.tick(playTime)
// Do something to show the message
}
override fun tick(context: TickContext) {
super.tick(context)
// Do something to show the message
}
The tick
parameter has been changed to context
to allow for more context to be passed to the tick
method.