Skip to content

Commit

Permalink
1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
lilxyzw committed Oct 17, 2021
1 parent c6ff107 commit d42eed0
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 6 deletions.
7 changes: 6 additions & 1 deletion Assets/lilToon/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.2.0] - 2021-09-31
## [1.2.1] - 2021-10-17
### Fixed
- Fixed an issue where the fur length property was not working
- Fix log date

## [1.2.0] - 2021-10-17
### Added
- New support for HDRP
- `Upper brightness limit` and `Monochrome lighting` and `Light Direction Override` properties
Expand Down
7 changes: 6 additions & 1 deletion Assets/lilToon/CHANGELOG_JP.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.2.0] - 2021-09-31
## [1.2.1] - 2021-10-17
### 修正
- ファーの長さプロパティが機能していなかった問題の修正
- ログの日付を修正

## [1.2.0] - 2021-10-17
### 追加
- HDRPに対応
- `明るさの上限``ライトのモノクロ化``ライト方向のオーバーライド`プロパティの追加
Expand Down
4 changes: 2 additions & 2 deletions Assets/lilToon/Editor/lilInspector.cs
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,8 @@ public enum lilPropertyBlock

//------------------------------------------------------------------------------------------------------------------------------
// Constant
private const string currentVersionName = "1.2.0";
private const int currentVersionValue = 13;
private const string currentVersionName = "1.2.1";
private const int currentVersionValue = 14;

private const string boothURL = "https://lilxyzw.booth.pm/";
private const string githubURL = "https://github.com/lilxyzw/lilToon";
Expand Down
2 changes: 1 addition & 1 deletion Assets/lilToon/Shader/Includes/lil_common_vert_fur.hlsl
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ v2g vert(appdata input)
if(_VertexColor2FurVector) output.furVector = lilBlendNormal(output.furVector, input.color.xyz);
if(Exists_FurVectorTex) output.furVector = lilBlendNormal(output.furVector, UnpackNormalScale(LIL_SAMPLE_2D_LOD(_FurVectorTex, sampler_linear_repeat, uvMain, 0), _FurVectorScale));
output.furVector = mul(normalize(output.furVector), tbnOS) * _FurVector.w;
output.furVector = lilTransformDirOStoWS(output.furVector, true);
output.furVector = lilTransformDirOStoWS(output.furVector, false);
output.furVector.y -= _FurGravity * length(output.furVector);
#endif

Expand Down
2 changes: 1 addition & 1 deletion version.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"latest_vertion_name": "1.2.0", "latest_vertion_value": 13}
{"latest_vertion_name": "1.2.1", "latest_vertion_value": 14}

0 comments on commit d42eed0

Please sign in to comment.