Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/keijiro/TestCards
A simple test pattern generator.
https://github.com/keijiro/TestCards
unity unity3d utility
Last synced: 3 months ago
JSON representation
A simple test pattern generator.
- Host: GitHub
- URL: https://github.com/keijiro/TestCards
- Owner: keijiro
- License: unlicense
- Created: 2016-12-05T14:28:22.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2020-05-18T08:25:28.000Z (over 4 years ago)
- Last Synced: 2024-06-29T05:45:04.780Z (4 months ago)
- Topics: unity, unity3d, utility
- Language: ShaderLab
- Homepage:
- Size: 461 KB
- Stars: 46
- Watchers: 4
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
TestCards
=========**TestCards** is a simple test pattern generator for Unity.
![screenshot](http://i.imgur.com/NvPD8N2.png)
![screenshot](http://i.imgur.com/8P1LkKu.png)![screenshot](http://i.imgur.com/B8Per7Q.png)
![screenshot](http://i.imgur.com/5Kucyfi.png)How To Install
--------------This package uses the [scoped registry] feature to resolve package dependencies.
Please add the following sections to the manifest file (Packages/manifest.json).[scoped registry]: https://docs.unity3d.com/Manual/upm-scoped.html
To the `scopedRegistries` section:
```
{
"name": "Keijiro",
"url": "https://registry.npmjs.com",
"scopes": [ "jp.keijiro" ]
}
```To the `dependencies` section:
```
"jp.keijiro.testcards": "1.0.0"
```After changes, the manifest file should look like below:
```
{
"scopedRegistries": [
{
"name": "Keijiro",
"url": "https://registry.npmjs.com",
"scopes": [ "jp.keijiro" ]
}
],
"dependencies": {
"jp.keijiro.testcards": "1.0.0",
...
```How To Use
----------The `TestOverlay` component works as an image effect, so it has to be added to
a camera object before using. It simply overdraws the entire screen with a test
pattern.Currently four pattern modes are available for use.
- **Fill**: simply fill the entire screen with a given color.
- **Spectrum**: draws a grayscale bar and a color spectrum bar.
- **Checker**: draws a checker pattern with a given scale.
- **Pattern**: draws a TV test pattern.