(5.5.0) Text Formatting - JujuAdams/ScribbleOldDocs GitHub Wiki
If you'd like to play around with Scribble's text formatting, a third-party demo tool can be downloaded from itch.io.
Formatting tag | Behaviour |
---|---|
[] |
Reset formatting to defaults |
[/page] |
Page break |
[delay] |
Pause the autotype for a fixed amount of time at the tag's position. Only supported when using autotype. Duration is defined by SCRIBBLE_DEFAULT_DELAY_DURATION
|
[delay,<time>] |
Pause the autotype for a fixed amount of time at the tag's position. Only supported when using autotype. The time parameter is the length of the delay in milliseconds |
[pause] |
Pause the autotype at the tag's position. Call scribble_autotype_set_pause() to unpause the autotyper. User scribble_autotype_is_paused() to return if the autotyper is paused |
[<name of colour>] |
Set colour |
[#<hex code>] |
Set colour via a hexcode, using the industry standard 24-bit RGB format (#RRGGBB) |
[/colour] [/c] |
Reset colour to the default |
[<name of font>] [/font] [/f] |
Set font / Reset font |
[<name of sprite>] |
Insert an animated sprite starting on image 0 and animating using SCRIBBLE_DEFAULT_SPRITE_SPEED
|
[<name of sprite>,<image>] |
Insert a static sprite using the specified image index |
[<name of sprite>,<image>,<speed>] |
Insert animated sprite using the specified image index and animation speed |
[fa_left] |
Align horizontally to the left. This will insert a line break if used in the middle of a line of text |
[fa_right] |
Align horizontally to the right. This will insert a line break if used in the middle of a line of text |
[fa_center] [fa_centre] |
Align centrally. This will insert a line break if used in the middle of a line of text |
[scale,<factor>] [/scale] [/s] |
Scale text / Reset scale to x1 |
[slant] [/slant] |
Set/unset italic emulation |
[<event name>,<arg0>,<arg1>...] |
Execute a script bound to an event name,previously defined using scribble_add_event(), with the specified arguments |
[<effect name>] [/<effect name>] |
Set/unset an effect |
[wave] [/wave] |
Set/unset text to wave up and down |
[shake] [/shake] |
Set/unset text to shake |
[rainbow] [/rainbow] |
Set/unset text to cycle through rainbow colours |
[wobble] [/wobble] |
Set/unset text to wobble by rotating back and forth |
[pulse] [/pulse] |
Set/unset text to shrink and grow rhythmically |
[wheel] [/wheel] |
Set/unset text to circulate around their origin |