View source
enum WordSplitConditions
package flixel.text
import flixel.text.FlxBitmapText
Available on all platforms
Values
NEVER
Won't ever split words, long words will start on a new line and extend beyond fieldWidth.
LINE_WIDTH
Will only split words that can't fit in a single line, alone. The word starts on the previous line, if possible, and is added character by character until the line is filled.
LENGTH(minChars:Int)
May split words longer than the specified number of characters. The word starts on the previous line, if possible, and is added character by character until the line is filled.
WIDTH(minPixels:Int)
May split words wider than the specified number of pixels. The word starts on the previous line, if possible, and is added character by character until the line is filled.