https://github.com/skibitsky/unity-rich-text
🌈 Forget about rich text tags pain
https://github.com/skibitsky/unity-rich-text
console csharp debug rich-text unity upm upm-package
Last synced: 6 months ago
JSON representation
🌈 Forget about rich text tags pain
- Host: GitHub
- URL: https://github.com/skibitsky/unity-rich-text
- Owner: skibitsky
- License: mit
- Created: 2019-06-29T13:38:55.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2021-03-28T12:41:20.000Z (over 4 years ago)
- Last Synced: 2025-04-04T19:16:10.387Z (6 months ago)
- Topics: console, csharp, debug, rich-text, unity, upm, upm-package
- Language: C#
- Homepage:
- Size: 29.3 KB
- Stars: 17
- Watchers: 3
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## This package has been deprecated in favour of [string-formatter](https://github.com/skibitsky/string-formatter)
# Unity Rich Text [](https://openupm.com/packages/com.skibitsky.unity-rich-text/)
Unity Rich Text allows you easily highlight any variable when using `Debug.Log` or any other place that supports rich text (i.e. GUIStyle or TextMeshPro).

It makes very easy to apply a few rich text tags at once.
Note that it creates a lot of garbage hence I don't recommend to use it in production.
## Installation
### Install via OpenUPM
The package is available on the [openupm registry](https://openupm.com). It's recommended to install it via [openupm-cli](https://github.com/openupm/openupm-cli).
```
openupm add com.skibitsky.unity-rich-text
```### Install via Git URL
Open *Packages/manifest.json* with your favorite text editor. Add the following line to the dependencies block.
{
"dependencies": {
"com.skibitsky.unity-rich-text": "https://github.com/skibitsky/unity-rich-text.git"
}
}Notice: Unity Package Manager records the current commit to a lock entry of the *manifest.json*. To update to the latest version, change the hash value manually or remove the lock entry to resolve the package.
"lock": {
"com.skibitsky.unity-rich-text": {
"revision": "master",
"hash": "..."
}
}## Usage
```csharp
Debug.Log(17.Red().Bold()):
```