Skip to content

Commit 676ea39

Browse files
authored
- Set the next version to 0.8.1-preview. (#236)
1 parent 5db4435 commit 676ea39

File tree

7 files changed

+12
-8
lines changed

7 files changed

+12
-8
lines changed

com.unity.toonshader/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
# Changelog
2+
## [0.8.1-preview] - 2022-08-23
3+
### Updated:
4+
* The next version is 0.8.1-preview.
5+
26
## [0.8.0-preview] - 2022-08-02
37
### Updated:
48
* All the render pipeline shaders are integrated.

com.unity.toonshader/Documentation~/FeatureModel_en.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
| Function | Legacy | URP | HDRP | Note |
44
|- |- |- |- |- |
5-
| | | | | as of 0.8.0-preview |
5+
| | | | | as of 0.8.1-preview |
66
| ***1. Modes*** | | | | |
77
| Standard | OK | OK | OK | |
88
| With Advanced Control Map | OK | OK | OK | |

com.unity.toonshader/Documentation~/sample-instlation.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Unity provides the **Unity Toon Shader** sample scenes for the three render pip
1414
| <img src="images/UtsProjectSettingsWindow.png">|
1515

1616

17-
`Assets/Samples/Unity Toon Shader/0.8.0-preview/Universal render pipeline` folder contains the following scenes.
17+
`Assets/Samples/Unity Toon Shader/0.8.1-preview/Universal render pipeline` folder contains the following scenes.
1818

1919
* Sample/Sample.unity :An scene to introduce the basic.
2020
* ToonShader.unity :A illustration-style shading sample scene.
@@ -33,5 +33,5 @@ Unity provides the **Unity Toon Shader** sample scenes for the three render pip
3333

3434

3535
Sample scenes for other render pipelines are in the following folders.
36-
* for the **Built-in Render Pipeline**`Assets/Samples/Unity Toon Shader/0.8.0-preview/Legacy render pipeline` folder.
37-
* for the **High definition render pipeline**`Assets/Samples/Unity Toon Shader/0.8.0-preview/High definition render pipeline` folder.
36+
* for the **Built-in Render Pipeline**`Assets/Samples/Unity Toon Shader/0.8.1-preview/Legacy render pipeline` folder.
37+
* for the **High definition render pipeline**`Assets/Samples/Unity Toon Shader/0.8.1-preview/High definition render pipeline` folder.

com.unity.toonshader/Editor/UTS3GUI.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ internal partial class UTS3GUI : UnityEditor.ShaderGUI
1313

1414
internal const float kVersionX = 0.0f;
1515
internal const float kVersionY = 8.0f;
16-
internal const float kVersionZ = 0.0f;
16+
internal const float kVersionZ = 1.0f;
1717

1818
internal static string versionString => "0.8.0-preview";
1919

com.unity.toonshader/Runtime/Integrated/Shaders/UnityToon.shader

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Shader "Toon" {
88
[HideInInspector][Enum(OFF, 0, ON, 1)] _isUnityToonshader("Material is touched by Unity Toon Shader", Int) = 1
99
[HideInInspector] _utsVersionX("VersionX", Float) = 0
1010
[HideInInspector] _utsVersionY("VersionY", Float) = 8
11-
[HideInInspector] _utsVersionZ("VersionZ", Float) = 0
11+
[HideInInspector] _utsVersionZ("VersionZ", Float) = 1
1212
[HideInInspector] _utsTechnique ("Technique", int ) = 0 //DWF
1313
[HideInInspector] _AutoRenderQueue("Automatic Render Queue ", int) = 1
1414

com.unity.toonshader/Runtime/Integrated/Shaders/UnityToonTessellation.shader

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Shader "Toon(Tessellation)" {
88
[HideInInspector][Enum(OFF, 0, ON, 1)] _isUnityToonshader("Material is touched by Unity Toon Shader", Int) = 1
99
[HideInInspector] _utsVersionX("VersionX", Float) = 0
1010
[HideInInspector] _utsVersionY("VersionY", Float) = 8
11-
[HideInInspector] _utsVersionZ("VersionZ", Float) = 0
11+
[HideInInspector] _utsVersionZ("VersionZ", Float) = 1
1212
[HideInInspector] _utsTechnique ("Technique", int ) = 0 //DWF
1313
[HideInInspector] _AutoRenderQueue("Automatic Render Queue ", int) = 1
1414

com.unity.toonshader/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "com.unity.toonshader",
33
"displayName":"Unity Toon Shader",
4-
"version": "0.8.0-preview",
4+
"version": "0.8.1-preview",
55
"unity": "2020.3",
66
"description": "Unity Toon Shader (Unity-Chan Toon Shader 3) is a toon shader for images and video that is designed to meet the needs of creators working on cel-shaded 3DCG animations.\nUnlike other pre-render toon shaders, all features can be adjusted in real time on Unity, which is the greatest feature of UTS.\n\nUTS has great power and makes a wide variety of character designs possible, from cel-shaded to light novel illustration styles.\n\nUTS has the 3 basic layers of Base Color, 1st Shade Color, and 2nd Shade Color, colors and textures can also accept a wide variety of customization options, such as High Color, Rim Light, MatCap (sphere mapping), and Emissive (light emission).The level of gradation (feather) between colors can also be adjusted in Unity in real-time.\n\nMore precisely, View documentation above.",
77
"dependencies":

0 commit comments

Comments
 (0)