{"id":13732421,"url":"https://github.com/baba-s/TMP_Typewriter","last_synced_at":"2025-05-08T06:32:14.659Z","repository":{"id":110294990,"uuid":"163049285","full_name":"baba-s/TMP_Typewriter","owner":"baba-s","description":"Typewriter for TextMesh Pro. TMP_Typewriter prints out characters one by one. ( Required the DOTween. )","archived":false,"fork":false,"pushed_at":"2018-12-25T12:38:41.000Z","size":1099,"stargazers_count":93,"open_issues_count":1,"forks_count":12,"subscribers_count":4,"default_branch":"master","last_synced_at":"2024-11-12T17:47:35.987Z","etag":null,"topics":["kogane-unity-lib","textmeshpro","unity","unity-script","unity3d"],"latest_commit_sha":null,"homepage":"http://baba-s.hatenablog.com/entry/2018/12/26/090000","language":"ShaderLab","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/baba-s.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-12-25T05:35:25.000Z","updated_at":"2024-11-05T19:37:38.000Z","dependencies_parsed_at":null,"dependency_job_id":"bccdc22e-1a40-441a-96b3-5b3cd15808f3","html_url":"https://github.com/baba-s/TMP_Typewriter","commit_stats":{"total_commits":22,"total_committers":1,"mean_commits":22.0,"dds":0.0,"last_synced_commit":"19cfdfdd47faac1b2a2c5a42164413c6831b388e"},"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/baba-s%2FTMP_Typewriter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/baba-s%2FTMP_Typewriter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/baba-s%2FTMP_Typewriter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/baba-s%2FTMP_Typewriter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/baba-s","download_url":"https://codeload.github.com/baba-s/TMP_Typewriter/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":224708266,"owners_count":17356509,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["kogane-unity-lib","textmeshpro","unity","unity-script","unity3d"],"created_at":"2024-08-03T02:01:55.954Z","updated_at":"2024-11-14T23:32:20.898Z","avatar_url":"https://github.com/baba-s.png","language":"ShaderLab","readme":"# TMP_Typewriter\n\nTypewriter for TextMesh Pro. TMP_Typewriter prints out characters one by one. ( Required the DOTween. )\n\n[![](https://img.shields.io/github/release/baba-s/TMP_Typewriter.svg?label=latest%20version)](https://github.com/baba-s/TMP_Typewriter/releases)\n[![](https://img.shields.io/github/release-date/baba-s/TMP_Typewriter.svg)](https://github.com/baba-s/TMP_Typewriter/releases)\n![](https://img.shields.io/badge/Unity-2017.4%2B-red.svg)\n![](https://img.shields.io/badge/.NET-3.5%2B-orange.svg)\n[![](https://img.shields.io/github/license/baba-s/TMP_Typewriter.svg)](https://github.com/baba-s/TMP_Typewriter/blob/master/LICENSE)\n\n## Features\n\n- Support for Rich Text\n- Skippable\n- Can pause and resume\n- OnComplete callback\n- Compatible with [CharTweener](https://github.com/mdechatech/CharTweener)\n\n## Version\n\n- Unity 2018.3.0f2\n- TextMesh Pro 1.3.0\n- DOTween 1.2.055\n\n## How To Use\n\n![](https://cdn-ak.f.st-hatena.com/images/fotolife/b/baba_s/20181225/20181225152543.png)\n\n1. Download and import .unitypackage from [Releases](https://github.com/baba-s/TMP_Typewriter/releases).\n2. Add a TMP_Typewriter component to the GameObject.\n3. Add `using KoganeUnityLib;` and call the `TMP_Typewriter.Play`.\n\n## Example\n\n### Normal\n\n![](https://cdn-ak.f.st-hatena.com/images/fotolife/b/baba_s/20181224/20181224115900.gif)\n\n```cs\nm_typewriter.Play\n(\n    text        : \"ABCDEFG HIJKLMN OPQRSTU\",\n    speed       : m_speed,\n    onComplete  : () =\u003e Debug.Log( \"Complete !\" )\n);\n```\n\n### Rich Text\n\n![](https://cdn-ak.f.st-hatena.com/images/fotolife/b/baba_s/20181224/20181224115909.gif)\n\n```cs\nm_typewriter.Play\n(\n    text        : @\"\u003csize=64\u003eABCDEFG\u003c/size\u003e \u003ccolor=red\u003eHIJKLMN\u003c/color\u003e \u003csprite=0\u003e \u003clink=\"\"https://www.google.co.jp/\"\"\u003eOPQRSTU\u003c/link\u003e\",\n    speed       : m_speed,\n    onComplete  : () =\u003e Debug.Log( \"Complete !\" )\n);\n```\n\n### Sprite\n\n![](https://cdn-ak.f.st-hatena.com/images/fotolife/b/baba_s/20181224/20181224115917.gif)\n\n```cs\nm_typewriter.Play\n(\n    text        : @\"\u003csprite=0\u003e\u003csprite=0\u003e\u003csprite=1\u003e\u003csprite=2\u003e\u003csprite=3\u003e\u003csprite=4\u003e\u003csprite=5\u003e\u003csprite=6\u003e\u003csprite=7\u003e\u003csprite=8\u003e\u003csprite=9\u003e\u003csprite=10\u003e\",\n    speed       : m_speed,\n    onComplete  : () =\u003e Debug.Log( \"Complete !\" )\n);\n```\n\n### Skip\n\n![](https://cdn-ak.f.st-hatena.com/images/fotolife/b/baba_s/20181224/20181224115929.gif)\n\n```cs\nm_typewriter.Skip();        // with onComplete callback\nm_typewriter.Skip( false ); // without onComplete callback\n```\n\n### Pause \u0026 Resume\n\n![](https://cdn-ak.f.st-hatena.com/images/fotolife/b/baba_s/20181225/20181225202540.gif)\n\n```cs\nm_typewriter.Pause();\nm_typewriter.Resume();\n```\n\n### Other\n\n![](https://cdn-ak.f.st-hatena.com/images/fotolife/b/baba_s/20181225/20181225210140.gif)\n\nCompatible with [CharTweener](https://github.com/mdechatech/CharTweener).\n","funding_links":[],"categories":["ShaderLab","TextMesh Pro"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbaba-s%2FTMP_Typewriter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbaba-s%2FTMP_Typewriter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbaba-s%2FTMP_Typewriter/lists"}