{"id":13663023,"url":"https://github.com/brunomikoski/Text-Juicer","last_synced_at":"2025-04-25T13:31:17.048Z","repository":{"id":96821274,"uuid":"61238285","full_name":"brunomikoski/Text-Juicer","owner":"brunomikoski","description":"Simple tool to create awesome text animations","archived":true,"fork":false,"pushed_at":"2019-07-08T18:25:08.000Z","size":1223,"stargazers_count":122,"open_issues_count":2,"forks_count":11,"subscribers_count":11,"default_branch":"master","last_synced_at":"2025-03-12T00:02:06.472Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://www.brunomikoski.com","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"unlicense","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/brunomikoski.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}},"created_at":"2016-06-15T20:20:20.000Z","updated_at":"2025-02-20T06:37:56.000Z","dependencies_parsed_at":"2023-03-13T16:24:19.844Z","dependency_job_id":null,"html_url":"https://github.com/brunomikoski/Text-Juicer","commit_stats":null,"previous_names":["badawe/text-juicer"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brunomikoski%2FText-Juicer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brunomikoski%2FText-Juicer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brunomikoski%2FText-Juicer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brunomikoski%2FText-Juicer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/brunomikoski","download_url":"https://codeload.github.com/brunomikoski/Text-Juicer/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250824923,"owners_count":21493364,"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":[],"created_at":"2024-08-02T05:02:15.237Z","updated_at":"2025-04-25T13:31:16.003Z","avatar_url":"https://github.com/brunomikoski.png","language":"C#","funding_links":[],"categories":["Open Source Repositories","C\\#"],"sub_categories":["UI"],"readme":"# New version working with Text Mesh PRO:\nhttps://github.com/badawe/TMP-Text-Juicer\n\n# Text Juice\n\nIs a plugin to allow you do \"per-character-animation\" on text fields, like this one:\n![](https://thumbs.gfycat.com/UntimelyDazzlingBrahmancow-size_restricted.gif)\n\n[EXAMPLES](https://gfycat.com/BlandScholarlyDragonfly)\n\n###### Controlling the animation\nThis git is a ready to be used as sub-module, so just add to your project anywhere inside the Assets Folder, something like Assets/Text Juicer/\n\nIf you don't know how to add as a sub-module you can check this [guide](https://blog.sourcetreeapp.com/2012/02/01/using-submodules-and-subrepositories/)\n\nOr you can just download the [Unity Package](../master/Text%20Juicer%200.0.1.unitypackage.meta)\n\n###### Controlling the animation\nBasically you can access and change the progress of the animation by the animator itself, or using the helpers inside the TextAnimation, by simply caling, `Play()`, `Stop()` and `Restart()`\n\n###### Adding new effects\nIs quite simple, you just need to extend the BaseVertexModifier, and you have access to change whatever you want, in the example bellow, is using a curve to simple multiply the Y from the position itself, generating this effect\n\n```csharp\nusing UnityEngine;\n\nnamespace TextAnimation.Effects\n{\n    public class YVertexModifier : BaseVertexModifier\n    {\n        [SerializeField]\n        private AnimationCurve curve = new AnimationCurve(new Keyframe(0,1));\n\n        public override void Apply(CharController charController, ref UIVertex uiVertex)\n        {\n            uiVertex.position.y *= curve.Evaluate(charController.Progress);\n        }\n    }\n}\n```\n\n\n###### Multiple Effects\nYou can add multiple effects at same time, like the PerCharacter and the X Modifier\n![](https://thumbs.gfycat.com/BestGrayCusimanse-size_restricted.gif)\n\nCurrent Effects:\n- X \n- Y \n- Color Modifier\n- Cylinder\n- Scale Vertex Modifier\n- Glitch\n\n\nYou can check effects accessing this link:\n\n\n\n\n\u003e Inspired in this post from [reddit]( https://www.reddit.com/r/Unity3D/comments/3tzwb9/percharacter_text_animations_with_unity_ui/), and the awesome [ui-extensions](https://bitbucket.org/ddreaper/unity-ui-extensions)  \n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbrunomikoski%2FText-Juicer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbrunomikoski%2FText-Juicer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbrunomikoski%2FText-Juicer/lists"}