Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 29 days 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 5 years ago)
- Default Branch: master
- Last Pushed: 2021-03-28T12:41:20.000Z (over 3 years ago)
- Last Synced: 2024-09-30T18:02:53.854Z (about 1 month ago)
- Topics: console, csharp, debug, rich-text, unity, upm, upm-package
- Language: C#
- Homepage:
- Size: 29.3 KB
- Stars: 17
- Watchers: 4
- 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 [![openupm](https://img.shields.io/npm/v/com.skibitsky.unity-rich-text?label=openupm®istry_uri=https://package.openupm.com)](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).
![](https://imgur.com/EQGAzpx.jpeg)
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()):
```