├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── assets ├── DynamicTextField │ ├── RotationJoint.png │ └── folderholder ├── MathTextField │ ├── math-bold.ttf │ └── math-regular.ttf └── TextTools │ ├── sans.ttf │ └── serif.ttf ├── compile.hxml ├── haxelib.json ├── hxformat.json ├── include.xml └── src ├── .gitignore ├── BidiTools.hx ├── Main.hx ├── TextTools.hx └── texter ├── flixel ├── FlxInputTextRTL.hx ├── FlxSuperText.hx ├── FlxTextButton.hx └── _internal │ └── FlxInputText.hx ├── general ├── Char.hx ├── CharTools.hx ├── Emoji.hx ├── TextTools.hx ├── bidi │ ├── Bidi.hx │ └── TextAttribute.hx ├── markdown │ ├── Markdown.hx │ ├── MarkdownBlocks.hx │ ├── MarkdownEffect.hx │ ├── MarkdownPatterns.hx │ └── MarkdownVisualizer.hx └── math │ ├── MathAttribute.hx │ └── MathLexer.hx └── openfl ├── DynamicTextField.hx ├── MathTextField.hx ├── TextFieldRTL.hx └── _internal ├── DrawableTextField.hx ├── JointGraphic.hx ├── JointManager.hx └── TextFieldCompatibility.hx /.gitignore: -------------------------------------------------------------------------------- 1 | export 2 | .vscode 3 | project.xml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaharMS/texter/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaharMS/texter/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaharMS/texter/HEAD/README.md -------------------------------------------------------------------------------- /assets/DynamicTextField/RotationJoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaharMS/texter/HEAD/assets/DynamicTextField/RotationJoint.png -------------------------------------------------------------------------------- /assets/DynamicTextField/folderholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/MathTextField/math-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaharMS/texter/HEAD/assets/MathTextField/math-bold.ttf -------------------------------------------------------------------------------- /assets/MathTextField/math-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaharMS/texter/HEAD/assets/MathTextField/math-regular.ttf -------------------------------------------------------------------------------- /assets/TextTools/sans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaharMS/texter/HEAD/assets/TextTools/sans.ttf -------------------------------------------------------------------------------- /assets/TextTools/serif.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaharMS/texter/HEAD/assets/TextTools/serif.ttf -------------------------------------------------------------------------------- /compile.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaharMS/texter/HEAD/compile.hxml -------------------------------------------------------------------------------- /haxelib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaharMS/texter/HEAD/haxelib.json -------------------------------------------------------------------------------- /hxformat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaharMS/texter/HEAD/hxformat.json -------------------------------------------------------------------------------- /include.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaharMS/texter/HEAD/include.xml -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- 1 | Main.hx -------------------------------------------------------------------------------- /src/BidiTools.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaharMS/texter/HEAD/src/BidiTools.hx -------------------------------------------------------------------------------- /src/Main.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaharMS/texter/HEAD/src/Main.hx -------------------------------------------------------------------------------- /src/TextTools.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaharMS/texter/HEAD/src/TextTools.hx -------------------------------------------------------------------------------- /src/texter/flixel/FlxInputTextRTL.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaharMS/texter/HEAD/src/texter/flixel/FlxInputTextRTL.hx -------------------------------------------------------------------------------- /src/texter/flixel/FlxSuperText.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaharMS/texter/HEAD/src/texter/flixel/FlxSuperText.hx -------------------------------------------------------------------------------- /src/texter/flixel/FlxTextButton.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaharMS/texter/HEAD/src/texter/flixel/FlxTextButton.hx -------------------------------------------------------------------------------- /src/texter/flixel/_internal/FlxInputText.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaharMS/texter/HEAD/src/texter/flixel/_internal/FlxInputText.hx -------------------------------------------------------------------------------- /src/texter/general/Char.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaharMS/texter/HEAD/src/texter/general/Char.hx -------------------------------------------------------------------------------- /src/texter/general/CharTools.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaharMS/texter/HEAD/src/texter/general/CharTools.hx -------------------------------------------------------------------------------- /src/texter/general/Emoji.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaharMS/texter/HEAD/src/texter/general/Emoji.hx -------------------------------------------------------------------------------- /src/texter/general/TextTools.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaharMS/texter/HEAD/src/texter/general/TextTools.hx -------------------------------------------------------------------------------- /src/texter/general/bidi/Bidi.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaharMS/texter/HEAD/src/texter/general/bidi/Bidi.hx -------------------------------------------------------------------------------- /src/texter/general/bidi/TextAttribute.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaharMS/texter/HEAD/src/texter/general/bidi/TextAttribute.hx -------------------------------------------------------------------------------- /src/texter/general/markdown/Markdown.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaharMS/texter/HEAD/src/texter/general/markdown/Markdown.hx -------------------------------------------------------------------------------- /src/texter/general/markdown/MarkdownBlocks.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaharMS/texter/HEAD/src/texter/general/markdown/MarkdownBlocks.hx -------------------------------------------------------------------------------- /src/texter/general/markdown/MarkdownEffect.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaharMS/texter/HEAD/src/texter/general/markdown/MarkdownEffect.hx -------------------------------------------------------------------------------- /src/texter/general/markdown/MarkdownPatterns.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaharMS/texter/HEAD/src/texter/general/markdown/MarkdownPatterns.hx -------------------------------------------------------------------------------- /src/texter/general/markdown/MarkdownVisualizer.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaharMS/texter/HEAD/src/texter/general/markdown/MarkdownVisualizer.hx -------------------------------------------------------------------------------- /src/texter/general/math/MathAttribute.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaharMS/texter/HEAD/src/texter/general/math/MathAttribute.hx -------------------------------------------------------------------------------- /src/texter/general/math/MathLexer.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaharMS/texter/HEAD/src/texter/general/math/MathLexer.hx -------------------------------------------------------------------------------- /src/texter/openfl/DynamicTextField.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaharMS/texter/HEAD/src/texter/openfl/DynamicTextField.hx -------------------------------------------------------------------------------- /src/texter/openfl/MathTextField.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaharMS/texter/HEAD/src/texter/openfl/MathTextField.hx -------------------------------------------------------------------------------- /src/texter/openfl/TextFieldRTL.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaharMS/texter/HEAD/src/texter/openfl/TextFieldRTL.hx -------------------------------------------------------------------------------- /src/texter/openfl/_internal/DrawableTextField.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaharMS/texter/HEAD/src/texter/openfl/_internal/DrawableTextField.hx -------------------------------------------------------------------------------- /src/texter/openfl/_internal/JointGraphic.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaharMS/texter/HEAD/src/texter/openfl/_internal/JointGraphic.hx -------------------------------------------------------------------------------- /src/texter/openfl/_internal/JointManager.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaharMS/texter/HEAD/src/texter/openfl/_internal/JointManager.hx -------------------------------------------------------------------------------- /src/texter/openfl/_internal/TextFieldCompatibility.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaharMS/texter/HEAD/src/texter/openfl/_internal/TextFieldCompatibility.hx --------------------------------------------------------------------------------