├── .gitignore ├── .vscode ├── launch.json └── settings.json ├── Assets ├── Editor.meta ├── Editor │ ├── RBPackageExporter.cs │ └── RBPackageExporter.cs.meta ├── RedBlueGames.meta ├── RedBlueGames │ ├── TextTyper.meta │ └── TextTyper │ │ ├── Animation.meta │ │ ├── Animation │ │ ├── CurveAnimation.cs │ │ ├── CurveAnimation.cs.meta │ │ ├── CurveLibrary.cs │ │ ├── CurveLibrary.cs.meta │ │ ├── ShakeAnimation.cs │ │ ├── ShakeAnimation.cs.meta │ │ ├── ShakeLibrary.cs │ │ ├── ShakeLibrary.cs.meta │ │ ├── TextAnimation.cs │ │ └── TextAnimation.cs.meta │ │ ├── Examples.meta │ │ ├── Examples │ │ ├── ExampleCurveLibrary.asset │ │ ├── ExampleCurveLibrary.asset.meta │ │ ├── ExampleShakeLibrary.asset │ │ ├── ExampleShakeLibrary.asset.meta │ │ ├── TextTyperExample.unity │ │ ├── TextTyperExample.unity.meta │ │ ├── TextTyperTester.cs │ │ ├── TextTyperTester.cs.meta │ │ ├── UITextDisplay.wav │ │ └── UITextDisplay.wav.meta │ │ ├── RedBlueGames.TextTyper.asmdef │ │ ├── RedBlueGames.TextTyper.asmdef.meta │ │ ├── RichTextTag.cs │ │ ├── RichTextTag.cs.meta │ │ ├── Tests.meta │ │ ├── Tests │ │ ├── Editor.meta │ │ └── Editor │ │ │ ├── RedBlueGames.TextTyper.Tests.Editor.asmdef │ │ │ ├── RedBlueGames.TextTyper.Tests.Editor.asmdef.meta │ │ │ ├── RichTextTagTests.cs │ │ │ ├── RichTextTagTests.cs.meta │ │ │ ├── TextTagParserTests.cs │ │ │ └── TextTagParserTests.cs.meta │ │ ├── TextTagParser.cs │ │ ├── TextTagParser.cs.meta │ │ ├── TextTyper.cs │ │ └── TextTyper.cs.meta ├── TextMesh Pro.meta └── TextMesh Pro │ ├── Documentation.meta │ ├── Documentation │ ├── TextMesh Pro User Guide 2016.pdf │ └── TextMesh Pro User Guide 2016.pdf.meta │ ├── Resources.meta │ ├── Resources │ ├── Fonts & Materials.meta │ ├── Fonts & Materials │ │ ├── LiberationSans SDF - Drop Shadow.mat │ │ ├── LiberationSans SDF - Drop Shadow.mat.meta │ │ ├── LiberationSans SDF - Outline.mat │ │ ├── LiberationSans SDF - Outline.mat.meta │ │ ├── LiberationSans SDF.asset │ │ └── LiberationSans SDF.asset.meta │ ├── LineBreaking Following Characters.txt │ ├── LineBreaking Following Characters.txt.meta │ ├── LineBreaking Leading Characters.txt │ ├── LineBreaking Leading Characters.txt.meta │ ├── Shaders.meta │ ├── Shaders │ │ ├── TMP_Bitmap-Custom-Atlas.shader │ │ ├── TMP_Bitmap-Custom-Atlas.shader.meta │ │ ├── TMP_Bitmap-Mobile.shader │ │ ├── TMP_Bitmap-Mobile.shader.meta │ │ ├── TMP_Bitmap.shader │ │ ├── TMP_Bitmap.shader.meta │ │ ├── TMP_SDF Overlay.shader │ │ ├── TMP_SDF Overlay.shader.meta │ │ ├── TMP_SDF-Mobile Masking.shader │ │ ├── TMP_SDF-Mobile Masking.shader.meta │ │ ├── TMP_SDF-Mobile Overlay.shader │ │ ├── TMP_SDF-Mobile Overlay.shader.meta │ │ ├── TMP_SDF-Mobile.shader │ │ ├── TMP_SDF-Mobile.shader.meta │ │ ├── TMP_SDF-Surface-Mobile.shader │ │ ├── TMP_SDF-Surface-Mobile.shader.meta │ │ ├── TMP_SDF-Surface.shader │ │ ├── TMP_SDF-Surface.shader.meta │ │ ├── TMP_SDF.shader │ │ ├── TMP_SDF.shader.meta │ │ ├── TMP_Sprite.shader │ │ ├── TMP_Sprite.shader.meta │ │ ├── TMPro.cginc │ │ ├── TMPro.cginc.meta │ │ ├── TMPro_Properties.cginc │ │ ├── TMPro_Properties.cginc.meta │ │ ├── TMPro_Surface.cginc │ │ └── TMPro_Surface.cginc.meta │ ├── Sprite Assets.meta │ ├── Sprite Assets │ │ ├── EmojiOne.asset │ │ └── EmojiOne.asset.meta │ ├── Style Sheets.meta │ ├── Style Sheets │ │ ├── Default Style Sheet.asset │ │ └── Default Style Sheet.asset.meta │ ├── TMP Settings.asset │ └── TMP Settings.asset.meta │ ├── Sprites.meta │ └── Sprites │ ├── EmojiOne Attribution.txt │ ├── EmojiOne Attribution.txt.meta │ ├── EmojiOne.json │ ├── EmojiOne.json.meta │ ├── EmojiOne.png │ └── EmojiOne.png.meta ├── LICENSE ├── Logs └── Packages-Update.log ├── Packages ├── manifest.json └── packages-lock.json ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── NavMeshLayers.asset ├── NetworkManager.asset ├── PackageManagerSettings.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset ├── UnityConnectSettings.asset ├── VFXManager.asset └── XRSettings.asset ├── README-Images └── ss_chat_watermarked.gif ├── README.md └── Settings.StyleCop /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Assets/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/Editor.meta -------------------------------------------------------------------------------- /Assets/Editor/RBPackageExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/Editor/RBPackageExporter.cs -------------------------------------------------------------------------------- /Assets/Editor/RBPackageExporter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/Editor/RBPackageExporter.cs.meta -------------------------------------------------------------------------------- /Assets/RedBlueGames.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/RedBlueGames.meta -------------------------------------------------------------------------------- /Assets/RedBlueGames/TextTyper.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/RedBlueGames/TextTyper.meta -------------------------------------------------------------------------------- /Assets/RedBlueGames/TextTyper/Animation.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/RedBlueGames/TextTyper/Animation.meta -------------------------------------------------------------------------------- /Assets/RedBlueGames/TextTyper/Animation/CurveAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/RedBlueGames/TextTyper/Animation/CurveAnimation.cs -------------------------------------------------------------------------------- /Assets/RedBlueGames/TextTyper/Animation/CurveAnimation.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/RedBlueGames/TextTyper/Animation/CurveAnimation.cs.meta -------------------------------------------------------------------------------- /Assets/RedBlueGames/TextTyper/Animation/CurveLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/RedBlueGames/TextTyper/Animation/CurveLibrary.cs -------------------------------------------------------------------------------- /Assets/RedBlueGames/TextTyper/Animation/CurveLibrary.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/RedBlueGames/TextTyper/Animation/CurveLibrary.cs.meta -------------------------------------------------------------------------------- /Assets/RedBlueGames/TextTyper/Animation/ShakeAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/RedBlueGames/TextTyper/Animation/ShakeAnimation.cs -------------------------------------------------------------------------------- /Assets/RedBlueGames/TextTyper/Animation/ShakeAnimation.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/RedBlueGames/TextTyper/Animation/ShakeAnimation.cs.meta -------------------------------------------------------------------------------- /Assets/RedBlueGames/TextTyper/Animation/ShakeLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/RedBlueGames/TextTyper/Animation/ShakeLibrary.cs -------------------------------------------------------------------------------- /Assets/RedBlueGames/TextTyper/Animation/ShakeLibrary.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/RedBlueGames/TextTyper/Animation/ShakeLibrary.cs.meta -------------------------------------------------------------------------------- /Assets/RedBlueGames/TextTyper/Animation/TextAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/RedBlueGames/TextTyper/Animation/TextAnimation.cs -------------------------------------------------------------------------------- /Assets/RedBlueGames/TextTyper/Animation/TextAnimation.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/RedBlueGames/TextTyper/Animation/TextAnimation.cs.meta -------------------------------------------------------------------------------- /Assets/RedBlueGames/TextTyper/Examples.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/RedBlueGames/TextTyper/Examples.meta -------------------------------------------------------------------------------- /Assets/RedBlueGames/TextTyper/Examples/ExampleCurveLibrary.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/RedBlueGames/TextTyper/Examples/ExampleCurveLibrary.asset -------------------------------------------------------------------------------- /Assets/RedBlueGames/TextTyper/Examples/ExampleCurveLibrary.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/RedBlueGames/TextTyper/Examples/ExampleCurveLibrary.asset.meta -------------------------------------------------------------------------------- /Assets/RedBlueGames/TextTyper/Examples/ExampleShakeLibrary.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/RedBlueGames/TextTyper/Examples/ExampleShakeLibrary.asset -------------------------------------------------------------------------------- /Assets/RedBlueGames/TextTyper/Examples/ExampleShakeLibrary.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/RedBlueGames/TextTyper/Examples/ExampleShakeLibrary.asset.meta -------------------------------------------------------------------------------- /Assets/RedBlueGames/TextTyper/Examples/TextTyperExample.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/RedBlueGames/TextTyper/Examples/TextTyperExample.unity -------------------------------------------------------------------------------- /Assets/RedBlueGames/TextTyper/Examples/TextTyperExample.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/RedBlueGames/TextTyper/Examples/TextTyperExample.unity.meta -------------------------------------------------------------------------------- /Assets/RedBlueGames/TextTyper/Examples/TextTyperTester.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/RedBlueGames/TextTyper/Examples/TextTyperTester.cs -------------------------------------------------------------------------------- /Assets/RedBlueGames/TextTyper/Examples/TextTyperTester.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/RedBlueGames/TextTyper/Examples/TextTyperTester.cs.meta -------------------------------------------------------------------------------- /Assets/RedBlueGames/TextTyper/Examples/UITextDisplay.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/RedBlueGames/TextTyper/Examples/UITextDisplay.wav -------------------------------------------------------------------------------- /Assets/RedBlueGames/TextTyper/Examples/UITextDisplay.wav.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/RedBlueGames/TextTyper/Examples/UITextDisplay.wav.meta -------------------------------------------------------------------------------- /Assets/RedBlueGames/TextTyper/RedBlueGames.TextTyper.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/RedBlueGames/TextTyper/RedBlueGames.TextTyper.asmdef -------------------------------------------------------------------------------- /Assets/RedBlueGames/TextTyper/RedBlueGames.TextTyper.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/RedBlueGames/TextTyper/RedBlueGames.TextTyper.asmdef.meta -------------------------------------------------------------------------------- /Assets/RedBlueGames/TextTyper/RichTextTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/RedBlueGames/TextTyper/RichTextTag.cs -------------------------------------------------------------------------------- /Assets/RedBlueGames/TextTyper/RichTextTag.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/RedBlueGames/TextTyper/RichTextTag.cs.meta -------------------------------------------------------------------------------- /Assets/RedBlueGames/TextTyper/Tests.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/RedBlueGames/TextTyper/Tests.meta -------------------------------------------------------------------------------- /Assets/RedBlueGames/TextTyper/Tests/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/RedBlueGames/TextTyper/Tests/Editor.meta -------------------------------------------------------------------------------- /Assets/RedBlueGames/TextTyper/Tests/Editor/RedBlueGames.TextTyper.Tests.Editor.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/RedBlueGames/TextTyper/Tests/Editor/RedBlueGames.TextTyper.Tests.Editor.asmdef -------------------------------------------------------------------------------- /Assets/RedBlueGames/TextTyper/Tests/Editor/RedBlueGames.TextTyper.Tests.Editor.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/RedBlueGames/TextTyper/Tests/Editor/RedBlueGames.TextTyper.Tests.Editor.asmdef.meta -------------------------------------------------------------------------------- /Assets/RedBlueGames/TextTyper/Tests/Editor/RichTextTagTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/RedBlueGames/TextTyper/Tests/Editor/RichTextTagTests.cs -------------------------------------------------------------------------------- /Assets/RedBlueGames/TextTyper/Tests/Editor/RichTextTagTests.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/RedBlueGames/TextTyper/Tests/Editor/RichTextTagTests.cs.meta -------------------------------------------------------------------------------- /Assets/RedBlueGames/TextTyper/Tests/Editor/TextTagParserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/RedBlueGames/TextTyper/Tests/Editor/TextTagParserTests.cs -------------------------------------------------------------------------------- /Assets/RedBlueGames/TextTyper/Tests/Editor/TextTagParserTests.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/RedBlueGames/TextTyper/Tests/Editor/TextTagParserTests.cs.meta -------------------------------------------------------------------------------- /Assets/RedBlueGames/TextTyper/TextTagParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/RedBlueGames/TextTyper/TextTagParser.cs -------------------------------------------------------------------------------- /Assets/RedBlueGames/TextTyper/TextTagParser.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/RedBlueGames/TextTyper/TextTagParser.cs.meta -------------------------------------------------------------------------------- /Assets/RedBlueGames/TextTyper/TextTyper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/RedBlueGames/TextTyper/TextTyper.cs -------------------------------------------------------------------------------- /Assets/RedBlueGames/TextTyper/TextTyper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/RedBlueGames/TextTyper/TextTyper.cs.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/TextMesh Pro.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Documentation.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/TextMesh Pro/Documentation.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Documentation/TextMesh Pro User Guide 2016.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/TextMesh Pro/Documentation/TextMesh Pro User Guide 2016.pdf -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Documentation/TextMesh Pro User Guide 2016.pdf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/TextMesh Pro/Documentation/TextMesh Pro User Guide 2016.pdf.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/TextMesh Pro/Resources.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Fonts & Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/TextMesh Pro/Resources/Fonts & Materials.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Drop Shadow.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Drop Shadow.mat -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Drop Shadow.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Drop Shadow.mat.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Outline.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Outline.mat -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Outline.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Outline.mat.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF.asset -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF.asset.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Shaders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/TextMesh Pro/Resources/Shaders.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Shaders/TMP_Bitmap-Custom-Atlas.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/TextMesh Pro/Resources/Shaders/TMP_Bitmap-Custom-Atlas.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Shaders/TMP_Bitmap-Custom-Atlas.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/TextMesh Pro/Resources/Shaders/TMP_Bitmap-Custom-Atlas.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Shaders/TMP_Bitmap-Mobile.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/TextMesh Pro/Resources/Shaders/TMP_Bitmap-Mobile.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Shaders/TMP_Bitmap-Mobile.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/TextMesh Pro/Resources/Shaders/TMP_Bitmap-Mobile.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Shaders/TMP_Bitmap.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/TextMesh Pro/Resources/Shaders/TMP_Bitmap.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Shaders/TMP_Bitmap.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/TextMesh Pro/Resources/Shaders/TMP_Bitmap.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Shaders/TMP_SDF Overlay.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF Overlay.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Shaders/TMP_SDF Overlay.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF Overlay.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Mobile Masking.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Mobile Masking.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Mobile Masking.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Mobile Masking.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Mobile Overlay.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Mobile Overlay.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Mobile Overlay.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Mobile Overlay.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Mobile.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Mobile.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Mobile.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Mobile.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Surface-Mobile.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Surface-Mobile.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Surface-Mobile.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Surface-Mobile.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Surface.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Surface.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Surface.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Surface.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Shaders/TMP_SDF.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Shaders/TMP_SDF.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Shaders/TMP_Sprite.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/TextMesh Pro/Resources/Shaders/TMP_Sprite.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Shaders/TMP_Sprite.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/TextMesh Pro/Resources/Shaders/TMP_Sprite.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Shaders/TMPro.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/TextMesh Pro/Resources/Shaders/TMPro.cginc -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Shaders/TMPro.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/TextMesh Pro/Resources/Shaders/TMPro.cginc.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Shaders/TMPro_Properties.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/TextMesh Pro/Resources/Shaders/TMPro_Properties.cginc -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Shaders/TMPro_Properties.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/TextMesh Pro/Resources/Shaders/TMPro_Properties.cginc.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Shaders/TMPro_Surface.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/TextMesh Pro/Resources/Shaders/TMPro_Surface.cginc -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Shaders/TMPro_Surface.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/TextMesh Pro/Resources/Shaders/TMPro_Surface.cginc.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Sprite Assets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/TextMesh Pro/Resources/Sprite Assets.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Style Sheets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/TextMesh Pro/Resources/Style Sheets.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/TMP Settings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/TextMesh Pro/Resources/TMP Settings.asset -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/TMP Settings.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/TextMesh Pro/Resources/TMP Settings.asset.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Sprites.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/TextMesh Pro/Sprites.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Sprites/EmojiOne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/TextMesh Pro/Sprites/EmojiOne.json -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Sprites/EmojiOne.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/TextMesh Pro/Sprites/EmojiOne.json.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Sprites/EmojiOne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/TextMesh Pro/Sprites/EmojiOne.png -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Sprites/EmojiOne.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Assets/TextMesh Pro/Sprites/EmojiOne.png.meta -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/LICENSE -------------------------------------------------------------------------------- /Logs/Packages-Update.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Logs/Packages-Update.log -------------------------------------------------------------------------------- /Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Packages/manifest.json -------------------------------------------------------------------------------- /Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Packages/packages-lock.json -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshLayers.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/ProjectSettings/NavMeshLayers.asset -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/ProjectSettings/PackageManagerSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /README-Images/ss_chat_watermarked.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/README-Images/ss_chat_watermarked.gif -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/README.md -------------------------------------------------------------------------------- /Settings.StyleCop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbluegames/unity-text-typer/HEAD/Settings.StyleCop --------------------------------------------------------------------------------