diff --git a/CHANGELOG.md b/CHANGELOG.md index e5e4913..cbe88c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Change Log +## [1.7.0] - 2024-01-18 + +- Features + - lilToon version 1.7.0 is now supported. + ## [1.6.0] - 2024-01-06 - Features diff --git a/README.md b/README.md index 4d7378e..12bc331 100644 --- a/README.md +++ b/README.md @@ -23,6 +23,9 @@ ___ |1.5.1|37| |1.5.2|38| |1.6.0|39| +|1.7.0|40| +|1.7.1|41| +|1.7.2|42| ## Shaders @@ -140,6 +143,7 @@ Used to specify a specific version. |Scripting Define Symbols|description| |:---|:---| +|LILTOON_1_7_0_OR_NEWER|Define when using lilToon version 1.7.0 or higher.| |LILTOON_1_6_0_OR_NEWER|Define when using lilToon version 1.6.0 or higher.| |LILTOON_1_5_0_OR_NEWER|Define when using lilToon version 1.5.0 or higher.| |LILTOON_1_4_0_OR_NEWER|Define when using lilToon version 1.4.0 or higher.| @@ -204,7 +208,7 @@ public void OneMethod() [lilToon](https://lilxyzw.github.io/lilToon) ___ -Last updated: 6 Jan, 2024 +Last updated: 18 Jan, 2024 Editor: Izayoi Jiichan *Copyright (C) 2022 Izayoi Jiichan. All Rights Reserved.* diff --git a/Runtime/Accessors/LilToonMaterialGetter.cs b/Runtime/Accessors/LilToonMaterialGetter.cs index f6852f1..5d9920a 100644 --- a/Runtime/Accessors/LilToonMaterialGetter.cs +++ b/Runtime/Accessors/LilToonMaterialGetter.cs @@ -2,8 +2,8 @@ // @Namespace : LilToonShader // @Class : LilToonMaterialGetter // ---------------------------------------------------------------------- -#if !LILTOON_1_2_12_OR_OLDER && !LILTOON_1_3_0_OR_NEWER && !LILTOON_1_4_0_OR_NEWER && !LILTOON_1_5_0_OR_NEWER && !LILTOON_1_6_0_OR_NEWER -#define LILTOON_1_6_0_OR_NEWER +#if !LILTOON_1_2_12_OR_OLDER && !LILTOON_1_3_0_OR_NEWER && !LILTOON_1_4_0_OR_NEWER && !LILTOON_1_5_0_OR_NEWER && !LILTOON_1_6_0_OR_NEWER && !LILTOON_1_7_0_OR_NEWER +#define LILTOON_1_7_0_OR_NEWER #endif #nullable enable namespace LilToonShader @@ -12,7 +12,9 @@ namespace LilToonShader using LilToonShader.Extensions; using LilToonShader.Proxies; -#if LILTOON_1_6_0_OR_NEWER +#if LILTOON_1_7_0_OR_NEWER + using LilToonShader.v1_7_0; +#elif LILTOON_1_6_0_OR_NEWER using LilToonShader.v1_6_0; #elif LILTOON_1_5_0_OR_NEWER using LilToonShader.v1_5_0; @@ -179,6 +181,9 @@ public virtual LilToonNormalPropertyEntity GetLilToonNormalPropertyEntity(Materi Dissolve = GetLilDissolvePropertyValues(material), #if LILTOON_1_4_0_OR_NEWER IDMask = GetLilIDMaskPropertyValues(material), // v1.4.0 +#endif +#if LILTOON_1_7_0_OR_NEWER + UdimDiscard = GetLilUdimDiscardPropertyValues(material), // v1.7.0 #endif Encryption = GetLilEncryptionPropertyValues(material), Refraction = GetLilRefractionPropertyValues(material, propertyContainer.IsRefraction, propertyContainer.IsGem), @@ -1347,6 +1352,44 @@ public virtual LilIDMask GetLilIDMaskPropertyValues(Material material) #endif #endregion + #region UDIM Discard + +#if LILTOON_1_7_0_OR_NEWER + /// + /// Get the lilToon UDIM Discard property values from the material. + /// + /// A lilToon material. + /// + public virtual LilUdimDiscard GetLilUdimDiscardPropertyValues(Material material) + { + var materialProxy = new LilUdimDiscardMaterialProxy(material); + + return new LilUdimDiscard + { + UDIMDiscardCompile = materialProxy.UDIMDiscardCompile, // v1.7.0 + UDIMDiscardUV = materialProxy.UDIMDiscardUV, // v1.7.0 + UDIMDiscardMode = materialProxy.UDIMDiscardMode, // v1.7.0 + UDIMDiscardRow3_3 = materialProxy.UDIMDiscardRow3_3, // v1.7.0 + UDIMDiscardRow3_2 = materialProxy.UDIMDiscardRow3_2, // v1.7.0 + UDIMDiscardRow3_1 = materialProxy.UDIMDiscardRow3_1, // v1.7.0 + UDIMDiscardRow3_0 = materialProxy.UDIMDiscardRow3_0, // v1.7.0 + UDIMDiscardRow2_3 = materialProxy.UDIMDiscardRow2_3, // v1.7.0 + UDIMDiscardRow2_2 = materialProxy.UDIMDiscardRow2_2, // v1.7.0 + UDIMDiscardRow2_1 = materialProxy.UDIMDiscardRow2_1, // v1.7.0 + UDIMDiscardRow2_0 = materialProxy.UDIMDiscardRow2_0, // v1.7.0 + UDIMDiscardRow1_3 = materialProxy.UDIMDiscardRow1_3, // v1.7.0 + UDIMDiscardRow1_2 = materialProxy.UDIMDiscardRow1_2, // v1.7.0 + UDIMDiscardRow1_1 = materialProxy.UDIMDiscardRow1_1, // v1.7.0 + UDIMDiscardRow1_0 = materialProxy.UDIMDiscardRow1_0, // v1.7.0 + UDIMDiscardRow0_3 = materialProxy.UDIMDiscardRow0_3, // v1.7.0 + UDIMDiscardRow0_2 = materialProxy.UDIMDiscardRow0_2, // v1.7.0 + UDIMDiscardRow0_1 = materialProxy.UDIMDiscardRow0_1, // v1.7.0 + UDIMDiscardRow0_0 = materialProxy.UDIMDiscardRow0_0, // v1.7.0 + }; + } +#endif + #endregion + #region Encryption /// diff --git a/Runtime/Accessors/LilToonMaterialSetter.cs b/Runtime/Accessors/LilToonMaterialSetter.cs index cd93863..e8beb3b 100644 --- a/Runtime/Accessors/LilToonMaterialSetter.cs +++ b/Runtime/Accessors/LilToonMaterialSetter.cs @@ -2,8 +2,8 @@ // @Namespace : LilToonShader // @Class : LilToonMaterialSetter // ---------------------------------------------------------------------- -#if !LILTOON_1_2_12_OR_OLDER && !LILTOON_1_3_0_OR_NEWER && !LILTOON_1_4_0_OR_NEWER && !LILTOON_1_5_0_OR_NEWER && !LILTOON_1_6_0_OR_NEWER -#define LILTOON_1_6_0_OR_NEWER +#if !LILTOON_1_2_12_OR_OLDER && !LILTOON_1_3_0_OR_NEWER && !LILTOON_1_4_0_OR_NEWER && !LILTOON_1_5_0_OR_NEWER && !LILTOON_1_6_0_OR_NEWER && !LILTOON_1_7_0_OR_NEWER +#define LILTOON_1_7_0_OR_NEWER #endif #nullable enable namespace LilToonShader @@ -13,7 +13,9 @@ namespace LilToonShader using LilToonShader.Extensions; using LilToonShader.Proxies; -#if LILTOON_1_6_0_OR_NEWER +#if LILTOON_1_7_0_OR_NEWER + using LilToonShader.v1_7_0; +#elif LILTOON_1_6_0_OR_NEWER using LilToonShader.v1_6_0; #elif LILTOON_1_5_0_OR_NEWER using LilToonShader.v1_5_0; @@ -250,6 +252,12 @@ public virtual void SetLilToonNormalPropertyEntity(Material material, LilToonPro // ID Mask SetLilIDMaskPropertyValues(material, normalPropertyEntity.IDMask); // v1.4.0 #endif + +#if LILTOON_1_7_0_OR_NEWER + // UDIM Discard + SetLilUdimDiscardPropertyValues(material, normalPropertyEntity.UdimDiscard); // v1.7.0 +#endif + // Encryption SetLilEncryptionPropertyValues(material, normalPropertyEntity.Encryption); @@ -1641,6 +1649,47 @@ public virtual void SetLilIDMaskPropertyValues(Material material, ILilIDMask? pr #endif #endregion + #region UDIM Discard + +#if LILTOON_1_7_0_OR_NEWER + /// + /// Set the lilToon UDIM Discard property values to the material. + /// + /// A lilToon material. + /// + public virtual void SetLilUdimDiscardPropertyValues(Material material, ILilUdimDiscard? propertyBlock) + { + if (propertyBlock is null) + { + return; + } + + _ = new LilUdimDiscardMaterialProxy(material) + { + UDIMDiscardCompile = propertyBlock.UDIMDiscardCompile, // v1.7.0 + UDIMDiscardUV = propertyBlock.UDIMDiscardUV, // v1.7.0 + UDIMDiscardMode = propertyBlock.UDIMDiscardMode, // v1.7.0 + UDIMDiscardRow3_3 = propertyBlock.UDIMDiscardRow3_3, // v1.7.0 + UDIMDiscardRow3_2 = propertyBlock.UDIMDiscardRow3_2, // v1.7.0 + UDIMDiscardRow3_1 = propertyBlock.UDIMDiscardRow3_1, // v1.7.0 + UDIMDiscardRow3_0 = propertyBlock.UDIMDiscardRow3_0, // v1.7.0 + UDIMDiscardRow2_3 = propertyBlock.UDIMDiscardRow2_3, // v1.7.0 + UDIMDiscardRow2_2 = propertyBlock.UDIMDiscardRow2_2, // v1.7.0 + UDIMDiscardRow2_1 = propertyBlock.UDIMDiscardRow2_1, // v1.7.0 + UDIMDiscardRow2_0 = propertyBlock.UDIMDiscardRow2_0, // v1.7.0 + UDIMDiscardRow1_3 = propertyBlock.UDIMDiscardRow1_3, // v1.7.0 + UDIMDiscardRow1_2 = propertyBlock.UDIMDiscardRow1_2, // v1.7.0 + UDIMDiscardRow1_1 = propertyBlock.UDIMDiscardRow1_1, // v1.7.0 + UDIMDiscardRow1_0 = propertyBlock.UDIMDiscardRow1_0, // v1.7.0 + UDIMDiscardRow0_3 = propertyBlock.UDIMDiscardRow0_3, // v1.7.0 + UDIMDiscardRow0_2 = propertyBlock.UDIMDiscardRow0_2, // v1.7.0 + UDIMDiscardRow0_1 = propertyBlock.UDIMDiscardRow0_1, // v1.7.0 + UDIMDiscardRow0_0 = propertyBlock.UDIMDiscardRow0_0, // v1.7.0 + }; + } +#endif + #endregion + #region Encryption /// diff --git a/Runtime/Accessors/LtsUtility.cs b/Runtime/Accessors/LtsUtility.cs index bbf43d4..46ceaca 100644 --- a/Runtime/Accessors/LtsUtility.cs +++ b/Runtime/Accessors/LtsUtility.cs @@ -2,8 +2,8 @@ // @Namespace : LilToonShader // @Class : LtsUtility // ---------------------------------------------------------------------- -#if !LILTOON_1_2_12_OR_OLDER && !LILTOON_1_3_0_OR_NEWER && !LILTOON_1_4_0_OR_NEWER && !LILTOON_1_5_0_OR_NEWER && !LILTOON_1_6_0_OR_NEWER -#define LILTOON_1_6_0_OR_NEWER +#if !LILTOON_1_2_12_OR_OLDER && !LILTOON_1_3_0_OR_NEWER && !LILTOON_1_4_0_OR_NEWER && !LILTOON_1_5_0_OR_NEWER && !LILTOON_1_6_0_OR_NEWER && !LILTOON_1_7_0_OR_NEWER +#define LILTOON_1_7_0_OR_NEWER #endif #nullable enable namespace LilToonShader @@ -12,7 +12,9 @@ namespace LilToonShader using UnityEngine.Rendering; using LilToonShader.Extensions; -#if LILTOON_1_6_0_OR_NEWER +#if LILTOON_1_7_0_OR_NEWER + using LilToonShader.v1_7_0; +#elif LILTOON_1_6_0_OR_NEWER using LilToonShader.v1_6_0; #elif LILTOON_1_5_0_OR_NEWER using LilToonShader.v1_5_0; diff --git a/Runtime/Constants/PropertyName.cs b/Runtime/Constants/PropertyName.cs index 9f98790..85a172a 100644 --- a/Runtime/Constants/PropertyName.cs +++ b/Runtime/Constants/PropertyName.cs @@ -1431,6 +1431,86 @@ public class PropertyName #endregion + #region UDIM Discard + + /// UDIM Discard Compile + /// v1.7.0 added + public const string UDIMDiscardCompile = "_UDIMDiscardCompile"; + + /// UDIM Discard UV + /// v1.7.0 added + public const string UDIMDiscardUV = "_UDIMDiscardUV"; + + /// UDIM Discard Mode + /// v1.7.0 added + public const string UDIMDiscardMode = "_UDIMDiscardMode"; + + /// UDIM Discard Row 3-3 + /// v1.7.0 added + public const string UDIMDiscardRow3_3 = "_UDIMDiscardRow3_3"; + + /// UDIM Discard Row 3-2 + /// v1.7.0 added + public const string UDIMDiscardRow3_2 = "_UDIMDiscardRow3_2"; + + /// UDIM Discard Row 3-1 + /// v1.7.0 added + public const string UDIMDiscardRow3_1 = "_UDIMDiscardRow3_1"; + + /// UDIM Discard Row 3-0 + /// v1.7.0 added + public const string UDIMDiscardRow3_0 = "_UDIMDiscardRow3_0"; + + /// UDIM Discard Row 2-3 + /// v1.7.0 added + public const string UDIMDiscardRow2_3 = "_UDIMDiscardRow2_3"; + + /// UDIM Discard Row 2-2 + /// v1.7.0 added + public const string UDIMDiscardRow2_2 = "_UDIMDiscardRow2_2"; + + /// UDIM Discard Row 2-1 + /// v1.7.0 added + public const string UDIMDiscardRow2_1 = "_UDIMDiscardRow2_1"; + + /// UDIM Discard Row 2-0 + /// v1.7.0 added + public const string UDIMDiscardRow2_0 = "_UDIMDiscardRow2_0"; + + /// UDIM Discard Row 1-3 + /// v1.7.0 added + public const string UDIMDiscardRow1_3 = "_UDIMDiscardRow1_3"; + + /// UDIM Discard Row 1-2 + /// v1.7.0 added + public const string UDIMDiscardRow1_2 = "_UDIMDiscardRow1_2"; + + /// UDIM Discard Row 1-1 + /// v1.7.0 added + public const string UDIMDiscardRow1_1 = "_UDIMDiscardRow1_1"; + + /// UDIM Discard Row 1-0 + /// v1.7.0 added + public const string UDIMDiscardRow1_0 = "_UDIMDiscardRow1_0"; + + /// UDIM Discard Row 0-3 + /// v1.7.0 added + public const string UDIMDiscardRow0_3 = "_UDIMDiscardRow0_3"; + + /// UDIM Discard Row 0-2 + /// v1.7.0 added + public const string UDIMDiscardRow0_2 = "_UDIMDiscardRow0_2"; + + /// UDIM Discard Row 0-1 + /// v1.7.0 added + public const string UDIMDiscardRow0_1 = "_UDIMDiscardRow0_1"; + + /// UDIM Discard Row 0-0 + /// v1.7.0 added + public const string UDIMDiscardRow0_0 = "_UDIMDiscardRow0_0"; + + #endregion + #region Encryption /// Ignore Encryption diff --git a/Runtime/Constants/PropertyNameID.cs b/Runtime/Constants/PropertyNameID.cs index 209e605..8069416 100644 --- a/Runtime/Constants/PropertyNameID.cs +++ b/Runtime/Constants/PropertyNameID.cs @@ -1433,6 +1433,86 @@ public class PropertyNameID #endregion + #region UDIM Discard + + /// UDIM Discard Compile + /// v1.7.0 added + public static readonly int UDIMDiscardCompile = Shader.PropertyToID(PropertyName.UDIMDiscardCompile); + + /// UDIM Discard UV + /// v1.7.0 added + public static readonly int UDIMDiscardUV = Shader.PropertyToID(PropertyName.UDIMDiscardUV); + + /// UDIM Discard Mode + /// v1.7.0 added + public static readonly int UDIMDiscardMode = Shader.PropertyToID(PropertyName.UDIMDiscardMode); + + /// UDIM Discard Row 3-3 + /// v1.7.0 added + public static readonly int UDIMDiscardRow3_3 = Shader.PropertyToID(PropertyName.UDIMDiscardRow3_3); + + /// UDIM Discard Row 3-2 + /// v1.7.0 added + public static readonly int UDIMDiscardRow3_2 = Shader.PropertyToID(PropertyName.UDIMDiscardRow3_2); + + /// UDIM Discard Row 3-1 + /// v1.7.0 added + public static readonly int UDIMDiscardRow3_1 = Shader.PropertyToID(PropertyName.UDIMDiscardRow3_1); + + /// UDIM Discard Row 3-0 + /// v1.7.0 added + public static readonly int UDIMDiscardRow3_0 = Shader.PropertyToID(PropertyName.UDIMDiscardRow3_0); + + /// UDIM Discard Row 2-3 + /// v1.7.0 added + public static readonly int UDIMDiscardRow2_3 = Shader.PropertyToID(PropertyName.UDIMDiscardRow2_3); + + /// UDIM Discard Row 2-2 + /// v1.7.0 added + public static readonly int UDIMDiscardRow2_2 = Shader.PropertyToID(PropertyName.UDIMDiscardRow2_2); + + /// UDIM Discard Row 2-1 + /// v1.7.0 added + public static readonly int UDIMDiscardRow2_1 = Shader.PropertyToID(PropertyName.UDIMDiscardRow2_1); + + /// UDIM Discard Row 2-0 + /// v1.7.0 added + public static readonly int UDIMDiscardRow2_0 = Shader.PropertyToID(PropertyName.UDIMDiscardRow2_0); + + /// UDIM Discard Row 1-3 + /// v1.7.0 added + public static readonly int UDIMDiscardRow1_3 = Shader.PropertyToID(PropertyName.UDIMDiscardRow1_3); + + /// UDIM Discard Row 1-2 + /// v1.7.0 added + public static readonly int UDIMDiscardRow1_2 = Shader.PropertyToID(PropertyName.UDIMDiscardRow1_2); + + /// UDIM Discard Row 1-1 + /// v1.7.0 added + public static readonly int UDIMDiscardRow1_1 = Shader.PropertyToID(PropertyName.UDIMDiscardRow1_1); + + /// UDIM Discard Row 1-0 + /// v1.7.0 added + public static readonly int UDIMDiscardRow1_0 = Shader.PropertyToID(PropertyName.UDIMDiscardRow1_0); + + /// UDIM Discard Row 0-3 + /// v1.7.0 added + public static readonly int UDIMDiscardRow0_3 = Shader.PropertyToID(PropertyName.UDIMDiscardRow0_3); + + /// UDIM Discard Row 0-2 + /// v1.7.0 added + public static readonly int UDIMDiscardRow0_2 = Shader.PropertyToID(PropertyName.UDIMDiscardRow0_2); + + /// UDIM Discard Row 0-1 + /// v1.7.0 added + public static readonly int UDIMDiscardRow0_1 = Shader.PropertyToID(PropertyName.UDIMDiscardRow0_1); + + /// UDIM Discard Row 0-0 + /// v1.7.0 added + public static readonly int UDIMDiscardRow0_0 = Shader.PropertyToID(PropertyName.UDIMDiscardRow0_0); + + #endregion + #region Encryption /// Ignore Encryption diff --git a/Runtime/Enums/LilUVMode.cs b/Runtime/Enums/LilUVMode.cs index 0d15b66..b3aeb76 100644 --- a/Runtime/Enums/LilUVMode.cs +++ b/Runtime/Enums/LilUVMode.cs @@ -133,4 +133,18 @@ public enum LilOutlineVectorUVMode /// UV3 UV3 = 3, } + + /// UDIM Discard UV Mode + /// v1.7.0 added + public enum LilUdimDiscardUVMode + { + /// UV0 + UV0 = 0, + /// UV1 + UV1 = 1, + /// UV2 + UV2 = 2, + /// UV3 + UV3 = 3, + } } diff --git a/Runtime/Enums/LilUdimDiscardMode.cs b/Runtime/Enums/LilUdimDiscardMode.cs new file mode 100644 index 0000000..2bd0b1b --- /dev/null +++ b/Runtime/Enums/LilUdimDiscardMode.cs @@ -0,0 +1,18 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader +// @Enum : LilUdimDiscardMode +// ---------------------------------------------------------------------- +namespace LilToonShader +{ + /// UDIM (UV Tile) Discard Mode + /// v1.7.0 added + public enum LilUdimDiscardMode + { + /// Vertex + /// faster + Vertex = 0, + /// Pixel + /// slower + Pixel = 1, + } +} diff --git a/Runtime/Enums/LilUdimDiscardMode.cs.meta b/Runtime/Enums/LilUdimDiscardMode.cs.meta new file mode 100644 index 0000000..e2393f7 --- /dev/null +++ b/Runtime/Enums/LilUdimDiscardMode.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: fa8b634d187819246be9fa08f74f0f18 \ No newline at end of file diff --git a/Runtime/LilToonShader.Utility.asmdef b/Runtime/LilToonShader.Utility.asmdef index 4b2f47c..996b469 100644 --- a/Runtime/LilToonShader.Utility.asmdef +++ b/Runtime/LilToonShader.Utility.asmdef @@ -25,6 +25,11 @@ "name": "jp.lilxyzw.liltoon", "expression": "1.6.0", "define": "LILTOON_1_6_0_OR_NEWER" + }, + { + "name": "jp.lilxyzw.liltoon", + "expression": "1.7.0", + "define": "LILTOON_1_7_0_OR_NEWER" } ] } diff --git a/Runtime/PropertyEntities/v1.7.0.meta b/Runtime/PropertyEntities/v1.7.0.meta new file mode 100644 index 0000000..8b7bfcc --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 90a08f8f6ff248a429e3e80bb33dab1e +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Runtime/PropertyEntities/v1.7.0/Base.meta b/Runtime/PropertyEntities/v1.7.0/Base.meta new file mode 100644 index 0000000..13f7756 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 87912e44390ae5b439f590d7fcc1b840 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Runtime/PropertyEntities/v1.7.0/Base/FakeShadow.meta b/Runtime/PropertyEntities/v1.7.0/Base/FakeShadow.meta new file mode 100644 index 0000000..83515fa --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/FakeShadow.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: dcdc770f2b26e354f8259fbc8ed0d05e +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Runtime/PropertyEntities/v1.7.0/Base/FakeShadow/LilFakeShadowBase.cs b/Runtime/PropertyEntities/v1.7.0/Base/FakeShadow/LilFakeShadowBase.cs new file mode 100644 index 0000000..98eab88 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/FakeShadow/LilFakeShadowBase.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : LilFakeShadowBase +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon FakeShadow Base + /// + public class LilFakeShadowBase : v1_6_0.LilFakeShadowBase, ILilFakeShadowBase { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/FakeShadow/LilFakeShadowBase.cs.meta b/Runtime/PropertyEntities/v1.7.0/Base/FakeShadow/LilFakeShadowBase.cs.meta new file mode 100644 index 0000000..900995f --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/FakeShadow/LilFakeShadowBase.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 9395c52d2b24f0f4789488f95e1c149e \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/FakeShadow/LilFakeShadowMain.cs b/Runtime/PropertyEntities/v1.7.0/Base/FakeShadow/LilFakeShadowMain.cs new file mode 100644 index 0000000..5dc5dd6 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/FakeShadow/LilFakeShadowMain.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : LilFakeShadowMain +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon FakeShadow Main + /// + public class LilFakeShadowMain : v1_6_0.LilFakeShadowMain, ILilFakeShadowMain { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/FakeShadow/LilFakeShadowMain.cs.meta b/Runtime/PropertyEntities/v1.7.0/Base/FakeShadow/LilFakeShadowMain.cs.meta new file mode 100644 index 0000000..e75e503 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/FakeShadow/LilFakeShadowMain.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: e36fe1a1234429648b315281a86dc556 \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Lite.meta b/Runtime/PropertyEntities/v1.7.0/Base/Lite.meta new file mode 100644 index 0000000..69d66be --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Lite.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7b8fbb7e587fadb4fa18083c754bd907 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Lite/LilLiteBase.cs b/Runtime/PropertyEntities/v1.7.0/Base/Lite/LilLiteBase.cs new file mode 100644 index 0000000..7d7fec4 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Lite/LilLiteBase.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : LilLiteBase +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Lite Base + /// + public class LilLiteBase : v1_6_0.LilLiteBase, ILilLiteBase { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Lite/LilLiteBase.cs.meta b/Runtime/PropertyEntities/v1.7.0/Base/Lite/LilLiteBase.cs.meta new file mode 100644 index 0000000..5dffbad --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Lite/LilLiteBase.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 7a21e8c04be8e83478938ca4d7e7dfdc \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Lite/LilLiteEmission.cs b/Runtime/PropertyEntities/v1.7.0/Base/Lite/LilLiteEmission.cs new file mode 100644 index 0000000..2770c45 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Lite/LilLiteEmission.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : LilLiteEmission +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Lite Emission + /// + public class LilLiteEmission : v1_6_0.LilLiteEmission, ILilLiteEmission { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Lite/LilLiteEmission.cs.meta b/Runtime/PropertyEntities/v1.7.0/Base/Lite/LilLiteEmission.cs.meta new file mode 100644 index 0000000..31fd85b --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Lite/LilLiteEmission.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: f91af4df0eb160443907355ebaf02876 \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Lite/LilLiteMain.cs b/Runtime/PropertyEntities/v1.7.0/Base/Lite/LilLiteMain.cs new file mode 100644 index 0000000..0121e51 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Lite/LilLiteMain.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : LilLiteMain +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Lite Main + /// + public class LilLiteMain : v1_6_0.LilLiteMain, ILilLiteMain { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Lite/LilLiteMain.cs.meta b/Runtime/PropertyEntities/v1.7.0/Base/Lite/LilLiteMain.cs.meta new file mode 100644 index 0000000..8e14cec --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Lite/LilLiteMain.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 9d18e5ccc4060a940ac05191d55e5826 \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Lite/LilLiteMatCap.cs b/Runtime/PropertyEntities/v1.7.0/Base/Lite/LilLiteMatCap.cs new file mode 100644 index 0000000..7ab6aaa --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Lite/LilLiteMatCap.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : LilLiteMatCap +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Lite MatCap + /// + public class LilLiteMatCap : v1_6_0.LilLiteMatCap, ILilLiteMatCap { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Lite/LilLiteMatCap.cs.meta b/Runtime/PropertyEntities/v1.7.0/Base/Lite/LilLiteMatCap.cs.meta new file mode 100644 index 0000000..823ac60 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Lite/LilLiteMatCap.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: e5a271c37e4416648a23d8143c144e9e \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Lite/LilLiteOutline.cs b/Runtime/PropertyEntities/v1.7.0/Base/Lite/LilLiteOutline.cs new file mode 100644 index 0000000..d82feea --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Lite/LilLiteOutline.cs @@ -0,0 +1,14 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : LilLiteOutline +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + using UnityEngine; + + /// + /// lilToon Lite Outline + /// + public class LilLiteOutline : v1_6_0.LilLiteOutline, ILilLiteOutline { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Lite/LilLiteOutline.cs.meta b/Runtime/PropertyEntities/v1.7.0/Base/Lite/LilLiteOutline.cs.meta new file mode 100644 index 0000000..5708683 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Lite/LilLiteOutline.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 5ba10fe607d42c7488289130ed7326a8 \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Lite/LilLiteRim.cs b/Runtime/PropertyEntities/v1.7.0/Base/Lite/LilLiteRim.cs new file mode 100644 index 0000000..160d42f --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Lite/LilLiteRim.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : LilLiteRim +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Lite Rim + /// + public class LilLiteRim : v1_6_0.LilLiteRim, ILilLiteRim { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Lite/LilLiteRim.cs.meta b/Runtime/PropertyEntities/v1.7.0/Base/Lite/LilLiteRim.cs.meta new file mode 100644 index 0000000..8f1e0e7 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Lite/LilLiteRim.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 64440f8bddaf908448de9be5f6844dab \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Lite/LilLiteShadow.cs b/Runtime/PropertyEntities/v1.7.0/Base/Lite/LilLiteShadow.cs new file mode 100644 index 0000000..b136fee --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Lite/LilLiteShadow.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : LilLiteShadow +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Lite Shadow + /// + public class LilLiteShadow : v1_6_0.LilLiteShadow, ILilLiteShadow { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Lite/LilLiteShadow.cs.meta b/Runtime/PropertyEntities/v1.7.0/Base/Lite/LilLiteShadow.cs.meta new file mode 100644 index 0000000..0f95548 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Lite/LilLiteShadow.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: fac7c0604c51cb941afdec1979bab240 \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Multi.meta b/Runtime/PropertyEntities/v1.7.0/Base/Multi.meta new file mode 100644 index 0000000..3a7014e --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Multi.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8ea4d7bd3ab3c654db6d64bbf739a5ac +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Multi/LilMulti.cs b/Runtime/PropertyEntities/v1.7.0/Base/Multi/LilMulti.cs new file mode 100644 index 0000000..f407c55 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Multi/LilMulti.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : LilMulti +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Multi + /// + public class LilMulti : v1_6_0.LilMulti, ILilMulti { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Multi/LilMulti.cs.meta b/Runtime/PropertyEntities/v1.7.0/Base/Multi/LilMulti.cs.meta new file mode 100644 index 0000000..9d0361b --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Multi/LilMulti.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 0184ead1679dafb4eb0265c7ab539f06 \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal.meta b/Runtime/PropertyEntities/v1.7.0/Base/Normal.meta new file mode 100644 index 0000000..0d58b06 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3f402d8d77455f343a3dcb97cecea4f9 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilAlphaMask.cs b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilAlphaMask.cs new file mode 100644 index 0000000..83716be --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilAlphaMask.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : LilAlphaMask +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Alpha Mask + /// + public class LilAlphaMask : v1_6_0.LilAlphaMask, ILilAlphaMask { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilAlphaMask.cs.meta b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilAlphaMask.cs.meta new file mode 100644 index 0000000..4af1e37 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilAlphaMask.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 77c37ba21ecc4b949be23e10fef0c8bf \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilAnisotropy.cs b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilAnisotropy.cs new file mode 100644 index 0000000..d2510d4 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilAnisotropy.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : LilAnisotropy +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Anisotropy + /// + public class LilAnisotropy : v1_6_0.LilAnisotropy, ILilAnisotropy { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilAnisotropy.cs.meta b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilAnisotropy.cs.meta new file mode 100644 index 0000000..cdadeb0 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilAnisotropy.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: d5db400386ee22d42b173fc3d75c3be4 \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilAudioLink.cs b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilAudioLink.cs new file mode 100644 index 0000000..f8ed23d --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilAudioLink.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : LilAudioLink +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon AudioLink + /// + public class LilAudioLink : v1_6_0.LilAudioLink, ILilAudioLink { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilAudioLink.cs.meta b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilAudioLink.cs.meta new file mode 100644 index 0000000..eb7c775 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilAudioLink.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 9f0817a8622420149bd60aa425a7c71d \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilBacklight.cs b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilBacklight.cs new file mode 100644 index 0000000..833604d --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilBacklight.cs @@ -0,0 +1,14 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : LilBacklight +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + using UnityEngine; + + /// + /// lilToon Backlight + /// + public class LilBacklight : v1_6_0.LilBacklight, ILilBacklight { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilBacklight.cs.meta b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilBacklight.cs.meta new file mode 100644 index 0000000..25d77cd --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilBacklight.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: eb51c9eae5bfc5a438e6026ad371c838 \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilBase.cs b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilBase.cs new file mode 100644 index 0000000..1184085 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilBase.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : LilBase +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Base + /// + public class LilBase : v1_6_0.LilBase, ILilBase { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilBase.cs.meta b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilBase.cs.meta new file mode 100644 index 0000000..0ff269d --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilBase.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 00eacc9fdf628fe42b7796855695009d \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilDissolve.cs b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilDissolve.cs new file mode 100644 index 0000000..d144e8b --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilDissolve.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : LilDissolve +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Dissolve + /// + public class LilDissolve : v1_6_0.LilDissolve, ILilDissolve { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilDissolve.cs.meta b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilDissolve.cs.meta new file mode 100644 index 0000000..adb1a1f --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilDissolve.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 3821999820095294b8e96a7235a74080 \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilDistanceFade.cs b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilDistanceFade.cs new file mode 100644 index 0000000..761e1ba --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilDistanceFade.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : LilDistanceFade +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Distance Fade + /// + public class LilDistanceFade : v1_6_0.LilDistanceFade, ILilDistanceFade { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilDistanceFade.cs.meta b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilDistanceFade.cs.meta new file mode 100644 index 0000000..5d1450a --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilDistanceFade.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: d1a01a137664ea04ab82509143759d88 \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilEmission.cs b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilEmission.cs new file mode 100644 index 0000000..9cf1a35 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilEmission.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : LilEmission +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Emission + /// + public class LilEmission : v1_6_0.LilEmission, ILilEmission { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilEmission.cs.meta b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilEmission.cs.meta new file mode 100644 index 0000000..6206b65 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilEmission.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: a40b29a4e0b623149ab1dc9d7f5c4d84 \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilEmission2nd.cs b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilEmission2nd.cs new file mode 100644 index 0000000..c8bf752 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilEmission2nd.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : LilEmission2nd +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Emission 2nd + /// + public class LilEmission2nd : v1_6_0.LilEmission2nd, ILilEmission2nd { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilEmission2nd.cs.meta b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilEmission2nd.cs.meta new file mode 100644 index 0000000..59a98f2 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilEmission2nd.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 86ca80f4dd72ca74d9db9fae3aec3439 \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilEmission2ndGradation.cs b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilEmission2ndGradation.cs new file mode 100644 index 0000000..d3d3fef --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilEmission2ndGradation.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : LilEmission2ndGradation +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Emission 2nd Gradation + /// + public class LilEmission2ndGradation : v1_6_0.LilEmission2ndGradation, ILilEmission2ndGradation { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilEmission2ndGradation.cs.meta b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilEmission2ndGradation.cs.meta new file mode 100644 index 0000000..f733eac --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilEmission2ndGradation.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 9a4911c65882d4144b8d6aa77180fd0a \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilEmissionGradation.cs b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilEmissionGradation.cs new file mode 100644 index 0000000..e8b717e --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilEmissionGradation.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : LilEmissionGradation +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Emission Gradation + /// + public class LilEmissionGradation : v1_6_0.LilEmissionGradation, ILilEmissionGradation { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilEmissionGradation.cs.meta b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilEmissionGradation.cs.meta new file mode 100644 index 0000000..8eea4ff --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilEmissionGradation.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 5598bb5a2ee05174fb93fe1b7a08be19 \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilEncryption.cs b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilEncryption.cs new file mode 100644 index 0000000..2dada14 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilEncryption.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : LilEncryption +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Encryption + /// + public class LilEncryption : v1_6_0.LilEncryption, ILilEncryption { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilEncryption.cs.meta b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilEncryption.cs.meta new file mode 100644 index 0000000..136d122 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilEncryption.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 3a2870f2ff64301419db555f006cec93 \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilFur.cs b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilFur.cs new file mode 100644 index 0000000..867243a --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilFur.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : LilFur +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Fur + /// + public class LilFur : v1_6_0.LilFur, ILilFur { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilFur.cs.meta b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilFur.cs.meta new file mode 100644 index 0000000..0cf4275 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilFur.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: edd01674e485f9d42ba3176903c70620 \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilFurRendering.cs b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilFurRendering.cs new file mode 100644 index 0000000..9390164 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilFurRendering.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : LilFurRendering +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Fur Rendering + /// + public class LilFurRendering : v1_6_0.LilFurRendering, ILilFurRendering { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilFurRendering.cs.meta b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilFurRendering.cs.meta new file mode 100644 index 0000000..9f5a1f0 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilFurRendering.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 4414809d1b23ed045863233c9d1d6799 \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilFurRenderingForward.cs b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilFurRenderingForward.cs new file mode 100644 index 0000000..776592b --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilFurRenderingForward.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : LilFurRenderingForward +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Fur Rendering Forward + /// + public class LilFurRenderingForward : v1_6_0.LilFurRenderingForward, ILilFurRenderingForward { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilFurRenderingForward.cs.meta b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilFurRenderingForward.cs.meta new file mode 100644 index 0000000..cfdac37 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilFurRenderingForward.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: c4fb046959f0a9246ad09a09b92db02c \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilFurRenderingForwardAdd.cs b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilFurRenderingForwardAdd.cs new file mode 100644 index 0000000..01c56c5 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilFurRenderingForwardAdd.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : LilFurRenderingForwardAdd +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Fur Rendering Forward Add + /// + public class LilFurRenderingForwardAdd : v1_6_0.LilFurRenderingForwardAdd, ILilFurRenderingForwardAdd { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilFurRenderingForwardAdd.cs.meta b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilFurRenderingForwardAdd.cs.meta new file mode 100644 index 0000000..3ca3ca3 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilFurRenderingForwardAdd.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 29f28a4aa2b8ef94593285b0970902be \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilFurRenderingStencil.cs b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilFurRenderingStencil.cs new file mode 100644 index 0000000..3683b0f --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilFurRenderingStencil.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : LilFurRenderingStencil +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Fur Rendering Stencil + /// + public class LilFurRenderingStencil : v1_6_0.LilFurRenderingStencil, ILilFurRenderingStencil { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilFurRenderingStencil.cs.meta b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilFurRenderingStencil.cs.meta new file mode 100644 index 0000000..6f15514 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilFurRenderingStencil.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 313d8c9433fea454b8c9b49b268bf7de \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilGem.cs b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilGem.cs new file mode 100644 index 0000000..d1193c9 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilGem.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : LilGem +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Gem + /// + public class LilGem : v1_6_0.LilGem, ILilGem { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilGem.cs.meta b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilGem.cs.meta new file mode 100644 index 0000000..bf7375c --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilGem.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: f4ecd70b44f49dd4eb1ef4a2c5829439 \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilGlitter.cs b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilGlitter.cs new file mode 100644 index 0000000..dfc1234 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilGlitter.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : LilGlitter +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Glitter + /// + public class LilGlitter : v1_6_0.LilGlitter, ILilGlitter { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilGlitter.cs.meta b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilGlitter.cs.meta new file mode 100644 index 0000000..d4851e1 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilGlitter.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 889d05d884b5c134c9a5acaae3b0dd49 \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilIDMask.cs b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilIDMask.cs new file mode 100644 index 0000000..235bc0a --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilIDMask.cs @@ -0,0 +1,13 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : LilIDMask +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon ID Mask + /// + /// v1.4.0 added + public class LilIDMask : v1_6_0.LilIDMask, ILilIDMask { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilIDMask.cs.meta b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilIDMask.cs.meta new file mode 100644 index 0000000..e4d9cd7 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilIDMask.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: b00f1226b293b134980bef604cd3c552 \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilLighting.cs b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilLighting.cs new file mode 100644 index 0000000..a99b32f --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilLighting.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : LilLighting +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Lighting + /// + public class LilLighting : v1_6_0.LilLighting, ILilLighting { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilLighting.cs.meta b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilLighting.cs.meta new file mode 100644 index 0000000..c945518 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilLighting.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 47cf0493ecd8632499e4214fe2c8a7c2 \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilLightingAdvanced.cs b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilLightingAdvanced.cs new file mode 100644 index 0000000..79cf371 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilLightingAdvanced.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : LilLightingAdvanced +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Lighting Advanced + /// + public class LilLightingAdvanced : v1_6_0.LilLightingAdvanced, ILilLightingAdvanced { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilLightingAdvanced.cs.meta b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilLightingAdvanced.cs.meta new file mode 100644 index 0000000..fc617a6 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilLightingAdvanced.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 5848ba9baadca744780d75dd1427dbff \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilMain.cs b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilMain.cs new file mode 100644 index 0000000..23317e1 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilMain.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : LilMain +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Main + /// + public class LilMain : v1_6_0.LilMain, ILilMain { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilMain.cs.meta b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilMain.cs.meta new file mode 100644 index 0000000..293ad0b --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilMain.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 3cb64661d6d4d99418a96aebaf1cc7bf \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilMain2nd.cs b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilMain2nd.cs new file mode 100644 index 0000000..53d2c7a --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilMain2nd.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : LilMain2nd +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Main 2nd + /// + public class LilMain2nd : v1_6_0.LilMain2nd, ILilMain2nd { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilMain2nd.cs.meta b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilMain2nd.cs.meta new file mode 100644 index 0000000..1fe83f8 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilMain2nd.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 5e93623ad6864094685f1e33cb5cbb26 \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilMain3rd.cs b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilMain3rd.cs new file mode 100644 index 0000000..d67a9c9 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilMain3rd.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : LilMain3rd +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Main 3rd + /// + public class LilMain3rd : v1_6_0.LilMain3rd, ILilMain3rd { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilMain3rd.cs.meta b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilMain3rd.cs.meta new file mode 100644 index 0000000..2d0e554 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilMain3rd.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 38f18b0d9b75fc64b93aa2a452fcff57 \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilMatCap.cs b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilMatCap.cs new file mode 100644 index 0000000..590b88e --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilMatCap.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : LilMatCap +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon MatCap + /// + public class LilMatCap : v1_6_0.LilMatCap, ILilMatCap { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilMatCap.cs.meta b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilMatCap.cs.meta new file mode 100644 index 0000000..78f142a --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilMatCap.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 7f25bacc4da15264090b233697d6516f \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilMatCap2nd.cs b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilMatCap2nd.cs new file mode 100644 index 0000000..f3f9dde --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilMatCap2nd.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : LilMatCap2nd +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon MatCap 2nd + /// + public class LilMatCap2nd : v1_6_0.LilMatCap2nd, ILilMatCap2nd { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilMatCap2nd.cs.meta b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilMatCap2nd.cs.meta new file mode 100644 index 0000000..32b50cd --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilMatCap2nd.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 053cfff1efaac4a4282cd97a9036364c \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilNormalMap.cs b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilNormalMap.cs new file mode 100644 index 0000000..4f5164e --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilNormalMap.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : LilNormalMap +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Normal Map + /// + public class LilNormalMap : v1_6_0.LilNormalMap, ILilNormalMap { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilNormalMap.cs.meta b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilNormalMap.cs.meta new file mode 100644 index 0000000..0435a91 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilNormalMap.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 14d1d2d56de50994d8c8a3bf52338b78 \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilNormalMap2nd.cs b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilNormalMap2nd.cs new file mode 100644 index 0000000..150dcb0 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilNormalMap2nd.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : LilNormalMap2nd +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Normal Map 2nd + /// + public class LilNormalMap2nd : v1_6_0.LilNormalMap2nd, ILilNormalMap2nd { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilNormalMap2nd.cs.meta b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilNormalMap2nd.cs.meta new file mode 100644 index 0000000..fc9705c --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilNormalMap2nd.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 7f3f7af4b7b42a249824eb0332d05a2a \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilOutline.cs b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilOutline.cs new file mode 100644 index 0000000..97f2f95 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilOutline.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : LilOutline +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Outline + /// + public class LilOutline : v1_6_0.LilOutline, ILilOutline { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilOutline.cs.meta b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilOutline.cs.meta new file mode 100644 index 0000000..fff8116 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilOutline.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: da88a9f0a258ec54d8ddfdb9dcab768e \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilOutlineRendering.cs b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilOutlineRendering.cs new file mode 100644 index 0000000..bc955ac --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilOutlineRendering.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : LilOutlineRendering +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Outline Rendering + /// + public class LilOutlineRendering : v1_6_0.LilOutlineRendering, ILilOutlineRendering { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilOutlineRendering.cs.meta b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilOutlineRendering.cs.meta new file mode 100644 index 0000000..c33dcd8 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilOutlineRendering.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: c06d87e36a920814d9213d9a13e32b23 \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilOutlineRenderingForward.cs b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilOutlineRenderingForward.cs new file mode 100644 index 0000000..551a13a --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilOutlineRenderingForward.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : LilOutlineRenderingForward +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Outline Rendering Forward + /// + public class LilOutlineRenderingForward : v1_6_0.LilOutlineRenderingForward, ILilOutlineRenderingForward { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilOutlineRenderingForward.cs.meta b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilOutlineRenderingForward.cs.meta new file mode 100644 index 0000000..bf8fd30 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilOutlineRenderingForward.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 0a49df2e71d14e143ac176eae35025f4 \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilOutlineRenderingForwardAdd.cs b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilOutlineRenderingForwardAdd.cs new file mode 100644 index 0000000..b84ae4f --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilOutlineRenderingForwardAdd.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : LilOutlineRenderingForwardAdd +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Outline Rendering Forward Add + /// + public class LilOutlineRenderingForwardAdd : v1_6_0.LilOutlineRenderingForwardAdd, ILilOutlineRenderingForwardAdd { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilOutlineRenderingForwardAdd.cs.meta b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilOutlineRenderingForwardAdd.cs.meta new file mode 100644 index 0000000..5a98632 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilOutlineRenderingForwardAdd.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 5d592f2c8be9e304eb5ab10727ef4c1b \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilOutlineRenderingStencil.cs b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilOutlineRenderingStencil.cs new file mode 100644 index 0000000..d6937d7 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilOutlineRenderingStencil.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : LilOutlineRenderingStencil +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Outline Rendering Stencil + /// + public class LilOutlineRenderingStencil : v1_6_0.LilOutlineRenderingStencil, ILilOutlineRenderingStencil { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilOutlineRenderingStencil.cs.meta b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilOutlineRenderingStencil.cs.meta new file mode 100644 index 0000000..36d94d5 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilOutlineRenderingStencil.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 6dc4fa5a9de32b440a169bb511b00aab \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilParallax.cs b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilParallax.cs new file mode 100644 index 0000000..ca917f9 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilParallax.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : LilParallax +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Parallax + /// + public class LilParallax : v1_6_0.LilParallax, ILilParallax { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilParallax.cs.meta b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilParallax.cs.meta new file mode 100644 index 0000000..e1a4580 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilParallax.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 8014800c6a18b74418d32f69e6b1e2cd \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilReflection.cs b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilReflection.cs new file mode 100644 index 0000000..45d7c63 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilReflection.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : LilReflection +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Reflection + /// + public class LilReflection : v1_6_0.LilReflection, ILilReflection { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilReflection.cs.meta b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilReflection.cs.meta new file mode 100644 index 0000000..f5908dd --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilReflection.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: f1df3074e56f0054bbaf756e9a9e81fe \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilRefraction.cs b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilRefraction.cs new file mode 100644 index 0000000..90c318f --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilRefraction.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : LilRefraction +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Refraction + /// + public class LilRefraction : v1_6_0.LilRefraction, ILilRefraction { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilRefraction.cs.meta b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilRefraction.cs.meta new file mode 100644 index 0000000..8760ac4 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilRefraction.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 1cbefd02efb9ff64fb0f03f39debe702 \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilRendering.cs b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilRendering.cs new file mode 100644 index 0000000..2a27dc8 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilRendering.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : LilRendering +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Rendering + /// + public class LilRendering : v1_6_0.LilRendering, ILilRendering { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilRendering.cs.meta b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilRendering.cs.meta new file mode 100644 index 0000000..91cdd39 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilRendering.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: b3453cc1d70c0c44cb8bd82036bfbb56 \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilRenderingForward.cs b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilRenderingForward.cs new file mode 100644 index 0000000..b051af6 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilRenderingForward.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : LilRenderingForward +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Rendering Forward + /// + public class LilRenderingForward : v1_6_0.LilRenderingForward, ILilRenderingForward { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilRenderingForward.cs.meta b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilRenderingForward.cs.meta new file mode 100644 index 0000000..d5feefa --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilRenderingForward.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: f2ddbc85b193d3242a5aed48c388f7f4 \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilRenderingForwardAdd.cs b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilRenderingForwardAdd.cs new file mode 100644 index 0000000..5e4e60c --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilRenderingForwardAdd.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : LilRenderingForwardAdd +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Rendering Forward Add + /// + public class LilRenderingForwardAdd : v1_6_0.LilRenderingForwardAdd, ILilRenderingForwardAdd { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilRenderingForwardAdd.cs.meta b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilRenderingForwardAdd.cs.meta new file mode 100644 index 0000000..b70d6eb --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilRenderingForwardAdd.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 3c7c754ea1322b94c82a5517a1b209ce \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilRenderingStencil.cs b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilRenderingStencil.cs new file mode 100644 index 0000000..9d67fbd --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilRenderingStencil.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : LilRenderingStencil +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Rendering Stencil + /// + public class LilRenderingStencil : v1_6_0.LilRenderingStencil, ILilRenderingStencil { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilRenderingStencil.cs.meta b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilRenderingStencil.cs.meta new file mode 100644 index 0000000..71a216d --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilRenderingStencil.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 9f5400a7500da624cb56de9259d811f4 \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilRim.cs b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilRim.cs new file mode 100644 index 0000000..9df2340 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilRim.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : LilRim +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Rim + /// + public class LilRim : v1_6_0.LilRim, ILilRim { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilRim.cs.meta b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilRim.cs.meta new file mode 100644 index 0000000..428e1a3 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilRim.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 23d4efb431b85e64bbd3d1e93bb853df \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilRimShade.cs b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilRimShade.cs new file mode 100644 index 0000000..228de06 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilRimShade.cs @@ -0,0 +1,54 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : LilRimShade +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + using UnityEngine; + + /// + /// lilToon Rim Shade + /// + /// v1.6.0 added + public class LilRimShade : ILilRimShade + { + /// Use Rim Shade + /// v1.6.0 added + //[DefaultValue(false)] + public bool UseRimShade { get; set; } + + /// Rim Shade Color + /// v1.6.0 added + //[DefaultValue(0.5,0.5,0.5,1.0)] + public Color RimShadeColor { get; set; } + + /// Rim Shade Mask + /// v1.6.0 added + public Texture2D? RimShadeMask { get; set; } + + /// Rim Shade Normal Strength + /// v1.6.0 added + //[Range(0.0f, 1.0f)] + //[DefaultValue(1.0f)] + public float RimShadeNormalStrength { get; set; } + + /// Rim Shade Border + /// v1.6.0 added + //[Range(0.0f, 1.0f)] + //[DefaultValue(0.5f)] + public float RimShadeBorder { get; set; } + + /// Rim Shade Blur + /// v1.6.0 added + //[Range(0.0f, 1.0f)] + //[DefaultValue(1.0f)] + public float RimShadeBlur { get; set; } + + /// Rim Shade Fresnel Power + /// v1.6.0 added + //[Range(0.01f, 50.0f)] + //[DefaultValue(1.0f)] + public float RimShadeFresnelPower { get; set; } + } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilRimShade.cs.meta b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilRimShade.cs.meta new file mode 100644 index 0000000..2fbc454 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilRimShade.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: db811c56243aa694f802d5423a479efe \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilShadow.cs b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilShadow.cs new file mode 100644 index 0000000..1da0f1d --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilShadow.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : LilShadow +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Shadow + /// + public class LilShadow : v1_6_0.LilShadow, ILilShadow { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilShadow.cs.meta b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilShadow.cs.meta new file mode 100644 index 0000000..5730d6c --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilShadow.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 586031c0b34615d4490f36b0f79e0af3 \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilTessellation.cs b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilTessellation.cs new file mode 100644 index 0000000..c8bfae0 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilTessellation.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : LilTessellation +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Tessellation + /// + public class LilTessellation : v1_6_0.LilTessellation, ILilTessellation { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilTessellation.cs.meta b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilTessellation.cs.meta new file mode 100644 index 0000000..6ab784f --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilTessellation.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 2b31046e630d9d3438bea81f651664e1 \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilUdimDiscard.cs b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilUdimDiscard.cs new file mode 100644 index 0000000..1eec3d2 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilUdimDiscard.cs @@ -0,0 +1,109 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : LilUdimDiscard +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon UDIM Discard + /// + /// v1.7.0 added + public class LilUdimDiscard : ILilUdimDiscard + { + /// UDIM Discard Compile + /// v1.7.0 added + //[DefaultValue(false)] + public bool UDIMDiscardCompile { get; set; } + + /// UDIM Discard UV + /// v1.7.0 added + //[DefaultValue(LilUdimDiscardUVMode.UV0)] + public LilUdimDiscardUVMode UDIMDiscardUV { get; set; } + + /// UDIM Discard Mode + /// v1.7.0 added + //[DefaultValue(LilUdimDiscardMode.Vertex)] + public LilUdimDiscardMode UDIMDiscardMode { get; set; } + + /// UDIM Discard Row 3-3 + /// v1.7.0 added + //[DefaultValue(false)] + public bool UDIMDiscardRow3_3 { get; set; } + + /// UDIM Discard Row 3-2 + /// v1.7.0 added + //[DefaultValue(false)] + public bool UDIMDiscardRow3_2 { get; set; } + + /// UDIM Discard Row 3-1 + /// v1.7.0 added + //[DefaultValue(false)] + public bool UDIMDiscardRow3_1 { get; set; } + + /// UDIM Discard Row 3-0 + /// v1.7.0 added + //[DefaultValue(false)] + public bool UDIMDiscardRow3_0 { get; set; } + + /// UDIM Discard Row 2-3 + /// v1.7.0 added + //[DefaultValue(false)] + public bool UDIMDiscardRow2_3 { get; set; } + + /// UDIM Discard Row 2-2 + /// v1.7.0 added + //[DefaultValue(false)] + public bool UDIMDiscardRow2_2 { get; set; } + + /// UDIM Discard Row 2-1 + /// v1.7.0 added + //[DefaultValue(false)] + public bool UDIMDiscardRow2_1 { get; set; } + + /// UDIM Discard Row 2-0 + /// v1.7.0 added + //[DefaultValue(false)] + public bool UDIMDiscardRow2_0 { get; set; } + + /// UDIM Discard Row 1-3 + /// v1.7.0 added + //[DefaultValue(false)] + public bool UDIMDiscardRow1_3 { get; set; } + + /// UDIM Discard Row 1-2 + /// v1.7.0 added + //[DefaultValue(false)] + public bool UDIMDiscardRow1_2 { get; set; } + + /// UDIM Discard Row 1-1 + /// v1.7.0 added + //[DefaultValue(false)] + public bool UDIMDiscardRow1_1 { get; set; } + + /// UDIM Discard Row 1-0 + /// v1.7.0 added + //[DefaultValue(false)] + public bool UDIMDiscardRow1_0 { get; set; } + + /// UDIM Discard Row 0-3 + /// v1.7.0 added + //[DefaultValue(false)] + public bool UDIMDiscardRow0_3 { get; set; } + + /// UDIM Discard Row 0-2 + /// v1.7.0 added + //[DefaultValue(false)] + public bool UDIMDiscardRow0_2 { get; set; } + + /// UDIM Discard Row 0-1 + /// v1.7.0 added + //[DefaultValue(false)] + public bool UDIMDiscardRow0_1 { get; set; } + + /// UDIM Discard Row 0-0 + /// v1.7.0 added + //[DefaultValue(false)] + public bool UDIMDiscardRow0_0 { get; set; } + } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilUdimDiscard.cs.meta b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilUdimDiscard.cs.meta new file mode 100644 index 0000000..f76ceb1 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Base/Normal/LilUdimDiscard.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: c5bb1213075c0b545b909efbb1f931d8 \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces.meta b/Runtime/PropertyEntities/v1.7.0/Interfaces.meta new file mode 100644 index 0000000..bdfe145 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c6907d733f666364f885dc14c0fe6132 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/FakeShadow.meta b/Runtime/PropertyEntities/v1.7.0/Interfaces/FakeShadow.meta new file mode 100644 index 0000000..b2ec438 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/FakeShadow.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 828c5a8d40230a446979e997f302a535 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/FakeShadow/ILilFakeShadowBase.cs b/Runtime/PropertyEntities/v1.7.0/Interfaces/FakeShadow/ILilFakeShadowBase.cs new file mode 100644 index 0000000..043cd8f --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/FakeShadow/ILilFakeShadowBase.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : ILilFakeShadowBase +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon FakeShadow Base Interface + /// + public interface ILilFakeShadowBase : v1_6_0.ILilFakeShadowBase { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/FakeShadow/ILilFakeShadowBase.cs.meta b/Runtime/PropertyEntities/v1.7.0/Interfaces/FakeShadow/ILilFakeShadowBase.cs.meta new file mode 100644 index 0000000..6ce142a --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/FakeShadow/ILilFakeShadowBase.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 897658528d6c3854194e1d0bea576631 \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/FakeShadow/ILilFakeShadowMain.cs b/Runtime/PropertyEntities/v1.7.0/Interfaces/FakeShadow/ILilFakeShadowMain.cs new file mode 100644 index 0000000..e1f7c91 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/FakeShadow/ILilFakeShadowMain.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : ILilFakeShadowMain +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon FakeShadow Main Interface + /// + public interface ILilFakeShadowMain : v1_6_0.ILilFakeShadowMain { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/FakeShadow/ILilFakeShadowMain.cs.meta b/Runtime/PropertyEntities/v1.7.0/Interfaces/FakeShadow/ILilFakeShadowMain.cs.meta new file mode 100644 index 0000000..f79b89e --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/FakeShadow/ILilFakeShadowMain.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: e7bf38cafebe6f84fadd98a2d1ff6ea5 \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Lite.meta b/Runtime/PropertyEntities/v1.7.0/Interfaces/Lite.meta new file mode 100644 index 0000000..8a2d4d8 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Lite.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 26182f7f98de2d54581c467eae22baab +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Lite/ILilLiteBase.cs b/Runtime/PropertyEntities/v1.7.0/Interfaces/Lite/ILilLiteBase.cs new file mode 100644 index 0000000..7fee436 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Lite/ILilLiteBase.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : ILilLiteBase +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Lite Base Interface + /// + public interface ILilLiteBase : v1_6_0.ILilLiteBase { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Lite/ILilLiteBase.cs.meta b/Runtime/PropertyEntities/v1.7.0/Interfaces/Lite/ILilLiteBase.cs.meta new file mode 100644 index 0000000..4ad7fae --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Lite/ILilLiteBase.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 48a9256dd3c9e1e4a8f9185c3da37a13 \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Lite/ILilLiteEmission.cs b/Runtime/PropertyEntities/v1.7.0/Interfaces/Lite/ILilLiteEmission.cs new file mode 100644 index 0000000..99a4f67 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Lite/ILilLiteEmission.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : ILilLiteEmission +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Lite Emission Interface + /// + public interface ILilLiteEmission : v1_6_0.ILilLiteEmission { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Lite/ILilLiteEmission.cs.meta b/Runtime/PropertyEntities/v1.7.0/Interfaces/Lite/ILilLiteEmission.cs.meta new file mode 100644 index 0000000..fdb3110 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Lite/ILilLiteEmission.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 400d802fd58b1014088e22555c3d87f2 \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Lite/ILilLiteMain.cs b/Runtime/PropertyEntities/v1.7.0/Interfaces/Lite/ILilLiteMain.cs new file mode 100644 index 0000000..398610b --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Lite/ILilLiteMain.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : ILilLiteMain +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Lite Main Interface + /// + public interface ILilLiteMain : v1_6_0.ILilLiteMain { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Lite/ILilLiteMain.cs.meta b/Runtime/PropertyEntities/v1.7.0/Interfaces/Lite/ILilLiteMain.cs.meta new file mode 100644 index 0000000..a6307b0 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Lite/ILilLiteMain.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: e09cfa94598e4c642b7c9b3ccf9f344a \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Lite/ILilLiteMatCap.cs b/Runtime/PropertyEntities/v1.7.0/Interfaces/Lite/ILilLiteMatCap.cs new file mode 100644 index 0000000..a3bc7d7 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Lite/ILilLiteMatCap.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : ILilLiteMatCap +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Lite Mat Cap Interface + /// + public interface ILilLiteMatCap : v1_6_0.ILilLiteMatCap { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Lite/ILilLiteMatCap.cs.meta b/Runtime/PropertyEntities/v1.7.0/Interfaces/Lite/ILilLiteMatCap.cs.meta new file mode 100644 index 0000000..42c9398 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Lite/ILilLiteMatCap.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: c549e1c68f87ce149b5547da6d984f95 \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Lite/ILilLiteOutline.cs b/Runtime/PropertyEntities/v1.7.0/Interfaces/Lite/ILilLiteOutline.cs new file mode 100644 index 0000000..b17e37f --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Lite/ILilLiteOutline.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : ILilLiteOutline +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Lite Outline Interface + /// + public interface ILilLiteOutline : v1_6_0.ILilLiteOutline { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Lite/ILilLiteOutline.cs.meta b/Runtime/PropertyEntities/v1.7.0/Interfaces/Lite/ILilLiteOutline.cs.meta new file mode 100644 index 0000000..f32ad3f --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Lite/ILilLiteOutline.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 0a181cfec57940845847f78f5eb33e6a \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Lite/ILilLiteRim.cs b/Runtime/PropertyEntities/v1.7.0/Interfaces/Lite/ILilLiteRim.cs new file mode 100644 index 0000000..e517052 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Lite/ILilLiteRim.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : ILilLiteRim +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Lite Rim Interface + /// + public interface ILilLiteRim : v1_6_0.ILilLiteRim { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Lite/ILilLiteRim.cs.meta b/Runtime/PropertyEntities/v1.7.0/Interfaces/Lite/ILilLiteRim.cs.meta new file mode 100644 index 0000000..c97337b --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Lite/ILilLiteRim.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: e2a9b25b371e6d34088915edf34937d1 \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Lite/ILilLiteShadow.cs b/Runtime/PropertyEntities/v1.7.0/Interfaces/Lite/ILilLiteShadow.cs new file mode 100644 index 0000000..4fb98ea --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Lite/ILilLiteShadow.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : ILilLiteShadow +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Lite Shadow Interface + /// + public interface ILilLiteShadow : v1_6_0.ILilLiteShadow { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Lite/ILilLiteShadow.cs.meta b/Runtime/PropertyEntities/v1.7.0/Interfaces/Lite/ILilLiteShadow.cs.meta new file mode 100644 index 0000000..1b7a50c --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Lite/ILilLiteShadow.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 107c975e719fdb74ea267c2be65cc0f1 \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Multi.meta b/Runtime/PropertyEntities/v1.7.0/Interfaces/Multi.meta new file mode 100644 index 0000000..51f5c43 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Multi.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f7c6b37cf6e909b428b2a0e1bee35c27 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Multi/ILilMulti.cs b/Runtime/PropertyEntities/v1.7.0/Interfaces/Multi/ILilMulti.cs new file mode 100644 index 0000000..474a259 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Multi/ILilMulti.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : ILilMulti +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Multi Interface + /// + public interface ILilMulti : v1_6_0.ILilMulti { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Multi/ILilMulti.cs.meta b/Runtime/PropertyEntities/v1.7.0/Interfaces/Multi/ILilMulti.cs.meta new file mode 100644 index 0000000..988b70e --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Multi/ILilMulti.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: df4521e18e80c5c4696fd47ae8e5ceb3 \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal.meta b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal.meta new file mode 100644 index 0000000..443cebb --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 90e93f6b9cae91f428ccc825e6becb01 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilAlphaMask.cs b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilAlphaMask.cs new file mode 100644 index 0000000..933dc2d --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilAlphaMask.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : ILilAlphaMask +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Alpha Mask Interface + /// + public interface ILilAlphaMask : v1_6_0.ILilAlphaMask { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilAlphaMask.cs.meta b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilAlphaMask.cs.meta new file mode 100644 index 0000000..69d6dbb --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilAlphaMask.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 01a7c81252d32ab46985b91412adac37 \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilAnisotropy.cs b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilAnisotropy.cs new file mode 100644 index 0000000..d648f00 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilAnisotropy.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : ILilAnisotropy +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Anisotropy Interface + /// + public interface ILilAnisotropy : v1_6_0.ILilAnisotropy { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilAnisotropy.cs.meta b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilAnisotropy.cs.meta new file mode 100644 index 0000000..26d2a3d --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilAnisotropy.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 14d65d65328e55e42bdde03fc97a33d6 \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilAudioLink.cs b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilAudioLink.cs new file mode 100644 index 0000000..6cd4778 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilAudioLink.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : ILilAudioLink +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon AudioLink Interface + /// + public interface ILilAudioLink : v1_6_0.ILilAudioLink { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilAudioLink.cs.meta b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilAudioLink.cs.meta new file mode 100644 index 0000000..223b791 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilAudioLink.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 4e1cd7638237cf44eb1f98124dc7fa31 \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilBacklight.cs b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilBacklight.cs new file mode 100644 index 0000000..a944edf --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilBacklight.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : ILilBacklight +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Backlight Interface + /// + public interface ILilBacklight: v1_6_0.ILilBacklight { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilBacklight.cs.meta b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilBacklight.cs.meta new file mode 100644 index 0000000..2104515 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilBacklight.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 3644c0b620526ca42812d45e4fa55b6a \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilBase.cs b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilBase.cs new file mode 100644 index 0000000..c2f597b --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilBase.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : ILilBase +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Base Interface + /// + public interface ILilBase : v1_6_0.ILilBase { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilBase.cs.meta b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilBase.cs.meta new file mode 100644 index 0000000..d0ed4ab --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilBase.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: f77084408f5e7b74080b0c6a43d05e5e \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilDissolve.cs b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilDissolve.cs new file mode 100644 index 0000000..bf23982 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilDissolve.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : ILilDissolve +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Dissolve Interface + /// + public interface ILilDissolve : v1_6_0.ILilDissolve { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilDissolve.cs.meta b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilDissolve.cs.meta new file mode 100644 index 0000000..d86c229 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilDissolve.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 4a4b8109154b2744c96d4bf7b7775e26 \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilDistanceFade.cs b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilDistanceFade.cs new file mode 100644 index 0000000..cf3885a --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilDistanceFade.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : ILilDistanceFade +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Distance Fade Interface + /// + public interface ILilDistanceFade : v1_6_0.ILilDistanceFade { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilDistanceFade.cs.meta b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilDistanceFade.cs.meta new file mode 100644 index 0000000..4926c1b --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilDistanceFade.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: e0f60d27fe4f35a44bac5a5eaef27a37 \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilEmission.cs b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilEmission.cs new file mode 100644 index 0000000..ecee601 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilEmission.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : ILilEmission +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Emission Interface + /// + public interface ILilEmission : v1_6_0.ILilEmission { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilEmission.cs.meta b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilEmission.cs.meta new file mode 100644 index 0000000..41553d3 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilEmission.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 694d3ad8321613f4886d9ab142a96c9e \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilEmission2nd.cs b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilEmission2nd.cs new file mode 100644 index 0000000..d6084e2 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilEmission2nd.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : ILilEmission2nd +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Emission 2nd Interface + /// + public interface ILilEmission2nd : v1_6_0.ILilEmission2nd { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilEmission2nd.cs.meta b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilEmission2nd.cs.meta new file mode 100644 index 0000000..552e432 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilEmission2nd.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 5fa88e5b9574e6a4fa48d73aed07488b \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilEmission2ndGradation.cs b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilEmission2ndGradation.cs new file mode 100644 index 0000000..a3dc09b --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilEmission2ndGradation.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : ILilEmission2ndGradation +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Emission 2nd Gradation Interface + /// + public interface ILilEmission2ndGradation : v1_6_0.ILilEmission2ndGradation { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilEmission2ndGradation.cs.meta b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilEmission2ndGradation.cs.meta new file mode 100644 index 0000000..2e78111 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilEmission2ndGradation.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: d31d112673e464049b118f15a6f84bec \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilEmissionGradation.cs b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilEmissionGradation.cs new file mode 100644 index 0000000..5fb6fbb --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilEmissionGradation.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : ILilEmissionGradation +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Emission Gradation Interface + /// + public interface ILilEmissionGradation : v1_6_0.ILilEmissionGradation { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilEmissionGradation.cs.meta b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilEmissionGradation.cs.meta new file mode 100644 index 0000000..7ce98d1 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilEmissionGradation.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: f1959dc9870fc584cabb7b497ea96d09 \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilEncryption.cs b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilEncryption.cs new file mode 100644 index 0000000..869ca4c --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilEncryption.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : ILilEncryption +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Encryption Interface + /// + public interface ILilEncryption : v1_6_0.ILilEncryption { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilEncryption.cs.meta b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilEncryption.cs.meta new file mode 100644 index 0000000..8db85e9 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilEncryption.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 38ab2cab3e8b9004abeb87f482e9d04d \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilFur.cs b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilFur.cs new file mode 100644 index 0000000..01f7265 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilFur.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : ILilFur +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Fur Interface + /// + public interface ILilFur : v1_6_0.ILilFur { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilFur.cs.meta b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilFur.cs.meta new file mode 100644 index 0000000..4660cf9 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilFur.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: c62d02b7533b9b447b1dffd308727ea9 \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilFurRendering.cs b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilFurRendering.cs new file mode 100644 index 0000000..8ecfe3e --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilFurRendering.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : ILilFurRendering +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Fur Rendering Interface + /// + public interface ILilFurRendering : v1_6_0.ILilFurRendering { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilFurRendering.cs.meta b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilFurRendering.cs.meta new file mode 100644 index 0000000..7bac170 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilFurRendering.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 40bf194c4f19d554f9686274f733458e \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilFurRenderingForward.cs b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilFurRenderingForward.cs new file mode 100644 index 0000000..0ffe085 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilFurRenderingForward.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : ILilFurRenderingForward +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Fur Rendering Forward Interface + /// + public interface ILilFurRenderingForward : v1_6_0.ILilFurRenderingForward { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilFurRenderingForward.cs.meta b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilFurRenderingForward.cs.meta new file mode 100644 index 0000000..3bc20e2 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilFurRenderingForward.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 32370f34b0399de4e9c7cfa76c2e3fe2 \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilFurRenderingForwardAdd.cs b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilFurRenderingForwardAdd.cs new file mode 100644 index 0000000..e5b4e19 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilFurRenderingForwardAdd.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : ILilFurRenderingForwardAdd +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Fur Rendering Forward Add Interface + /// + public interface ILilFurRenderingForwardAdd : v1_6_0.ILilFurRenderingForwardAdd { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilFurRenderingForwardAdd.cs.meta b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilFurRenderingForwardAdd.cs.meta new file mode 100644 index 0000000..c8b0c40 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilFurRenderingForwardAdd.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: b44fffecbafeec045a390f671406f442 \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilFurRenderingStencil.cs b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilFurRenderingStencil.cs new file mode 100644 index 0000000..24c87c3 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilFurRenderingStencil.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : ILilFurRenderingStencil +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Fur Rendering Stencil Interface + /// + public interface ILilFurRenderingStencil : v1_6_0.ILilFurRenderingStencil { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilFurRenderingStencil.cs.meta b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilFurRenderingStencil.cs.meta new file mode 100644 index 0000000..4cc76f9 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilFurRenderingStencil.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: b09adac30e7361a438a5ccc0de47b1bb \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilGem.cs b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilGem.cs new file mode 100644 index 0000000..8b9e4fe --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilGem.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : ILilGem +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Gem Interface + /// + public interface ILilGem : v1_6_0.ILilGem { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilGem.cs.meta b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilGem.cs.meta new file mode 100644 index 0000000..4edcf66 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilGem.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 52a556a2f67e47e4fb85c5626c39ff79 \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilGlitter.cs b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilGlitter.cs new file mode 100644 index 0000000..d0cfacd --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilGlitter.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : ILilGlitter +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Glitter Interface + /// + public interface ILilGlitter : v1_6_0.ILilGlitter { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilGlitter.cs.meta b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilGlitter.cs.meta new file mode 100644 index 0000000..c3a7f9b --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilGlitter.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 5300becc1cb750a4381e5e7317489519 \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilIDMask.cs b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilIDMask.cs new file mode 100644 index 0000000..42af966 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilIDMask.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : ILilIDMask +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon ID Mask Interface + /// + public interface ILilIDMask : v1_6_0.ILilIDMask { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilIDMask.cs.meta b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilIDMask.cs.meta new file mode 100644 index 0000000..d8e6308 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilIDMask.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: c6b640a49fafac141be9335df3a109d9 \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilLighting.cs b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilLighting.cs new file mode 100644 index 0000000..02eb5a8 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilLighting.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : ILilLighting +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Lighting Interface + /// + public interface ILilLighting : v1_6_0.ILilLighting { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilLighting.cs.meta b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilLighting.cs.meta new file mode 100644 index 0000000..295bd60 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilLighting.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 090aa6b8ca4dd1647be1cf2cbab1b650 \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilLightingAdvanced.cs b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilLightingAdvanced.cs new file mode 100644 index 0000000..0a4b2ef --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilLightingAdvanced.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : ILilLightingAdvanced +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Lighting Advanced Interface + /// + public interface ILilLightingAdvanced : v1_6_0.ILilLightingAdvanced { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilLightingAdvanced.cs.meta b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilLightingAdvanced.cs.meta new file mode 100644 index 0000000..f3aecc0 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilLightingAdvanced.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 58bd608d07a8af243b3d3434c828dfd8 \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilMain.cs b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilMain.cs new file mode 100644 index 0000000..2e77394 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilMain.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : ILilMain +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Main Interface + /// + public interface ILilMain : v1_6_0.ILilMain { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilMain.cs.meta b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilMain.cs.meta new file mode 100644 index 0000000..c490361 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilMain.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 96f3dd8e2d2f9db4d99f1e17b6f32c20 \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilMain2nd.cs b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilMain2nd.cs new file mode 100644 index 0000000..51b4740 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilMain2nd.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : ILilMain2nd +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Main 2nd Interface + /// + public interface ILilMain2nd : v1_6_0.ILilMain2nd { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilMain2nd.cs.meta b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilMain2nd.cs.meta new file mode 100644 index 0000000..7d917e2 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilMain2nd.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 73f3a7c516f75da4a8b98d80089cbb08 \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilMain3rd.cs b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilMain3rd.cs new file mode 100644 index 0000000..52a2499 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilMain3rd.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : ILilMain3rd +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Main 3rd Interface + /// + public interface ILilMain3rd : v1_6_0.ILilMain3rd { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilMain3rd.cs.meta b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilMain3rd.cs.meta new file mode 100644 index 0000000..2b1b661 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilMain3rd.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 8bc76b2319aee414e81d674cd203ceec \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilMatCap.cs b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilMatCap.cs new file mode 100644 index 0000000..46b0b9f --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilMatCap.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : ILilMatCap +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Mat Cap Interface + /// + public interface ILilMatCap : v1_6_0.ILilMatCap { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilMatCap.cs.meta b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilMatCap.cs.meta new file mode 100644 index 0000000..bff1016 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilMatCap.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 16952939b7ab93941a5eb92fb58e0ccd \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilMatCap2nd.cs b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilMatCap2nd.cs new file mode 100644 index 0000000..29c6def --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilMatCap2nd.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : ILilMatCap2nd +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Mat Cap 2nd Interface + /// + public interface ILilMatCap2nd : v1_6_0.ILilMatCap2nd { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilMatCap2nd.cs.meta b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilMatCap2nd.cs.meta new file mode 100644 index 0000000..01aea96 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilMatCap2nd.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 961537d0b59fc12419bb71128932ba6e \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilNormalMap.cs b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilNormalMap.cs new file mode 100644 index 0000000..d98c462 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilNormalMap.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : ILilNormalMap +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon NormalMap Interface + /// + public interface ILilNormalMap : v1_6_0.ILilNormalMap { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilNormalMap.cs.meta b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilNormalMap.cs.meta new file mode 100644 index 0000000..cd1c0e2 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilNormalMap.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: e90cb9bdd0ff11d4085574b14835edd3 \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilNormalMap2nd.cs b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilNormalMap2nd.cs new file mode 100644 index 0000000..0596791 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilNormalMap2nd.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : ILilNormalMap2nd +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon NormalMap 2nd Interface + /// + public interface ILilNormalMap2nd : v1_6_0.ILilNormalMap2nd { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilNormalMap2nd.cs.meta b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilNormalMap2nd.cs.meta new file mode 100644 index 0000000..6f41d8b --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilNormalMap2nd.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: f5bf169bf6ed45a498a5057883868e29 \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilOutline.cs b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilOutline.cs new file mode 100644 index 0000000..d487484 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilOutline.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : ILilOutline +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Outline Interface + /// + public interface ILilOutline : v1_6_0.ILilOutline { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilOutline.cs.meta b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilOutline.cs.meta new file mode 100644 index 0000000..28c58da --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilOutline.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 4ef385428b5131f48acdcf6e3ed41b38 \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilOutlineRendering.cs b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilOutlineRendering.cs new file mode 100644 index 0000000..f47d343 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilOutlineRendering.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : ILilOutlineRendering +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Outline Rendering Interface + /// + public interface ILilOutlineRendering : v1_6_0.ILilOutlineRendering { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilOutlineRendering.cs.meta b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilOutlineRendering.cs.meta new file mode 100644 index 0000000..d727cc1 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilOutlineRendering.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: f5fecd9f9f60a084395bddedf6618623 \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilOutlineRenderingForward.cs b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilOutlineRenderingForward.cs new file mode 100644 index 0000000..a9b754f --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilOutlineRenderingForward.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : ILilOutlineRenderingForward +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Outline Rendering Forward Interface + /// + public interface ILilOutlineRenderingForward : v1_6_0.ILilOutlineRenderingForward { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilOutlineRenderingForward.cs.meta b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilOutlineRenderingForward.cs.meta new file mode 100644 index 0000000..f5c0565 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilOutlineRenderingForward.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 156e329d0c254204fb5a72f3b191217e \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilOutlineRenderingForwardAdd.cs b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilOutlineRenderingForwardAdd.cs new file mode 100644 index 0000000..264d4e1 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilOutlineRenderingForwardAdd.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : ILilOutlineRenderingForwardAdd +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Outline Rendering Forward Add Interface + /// + public interface ILilOutlineRenderingForwardAdd : v1_6_0.ILilOutlineRenderingForwardAdd { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilOutlineRenderingForwardAdd.cs.meta b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilOutlineRenderingForwardAdd.cs.meta new file mode 100644 index 0000000..0df8434 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilOutlineRenderingForwardAdd.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: baed4315682dcd547ae4c77e30d6d5fb \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilOutlineRenderingStencil.cs b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilOutlineRenderingStencil.cs new file mode 100644 index 0000000..b237833 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilOutlineRenderingStencil.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : ILilOutlineRenderingStencil +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Outline Rendering Stencil Interface + /// + public interface ILilOutlineRenderingStencil : v1_6_0.ILilOutlineRenderingStencil { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilOutlineRenderingStencil.cs.meta b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilOutlineRenderingStencil.cs.meta new file mode 100644 index 0000000..cb10ffc --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilOutlineRenderingStencil.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 664451d246bd4c44f81a84a23fa67505 \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilParallax.cs b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilParallax.cs new file mode 100644 index 0000000..a1b1132 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilParallax.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : ILilParallax +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Parallax Interface + /// + public interface ILilParallax : v1_6_0.ILilParallax { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilParallax.cs.meta b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilParallax.cs.meta new file mode 100644 index 0000000..9433afc --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilParallax.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: f148264c17786f7408a7c07de6a500d8 \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilReflection.cs b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilReflection.cs new file mode 100644 index 0000000..f2fbb09 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilReflection.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : ILilReflection +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Reflection Interface + /// + public interface ILilReflection : v1_6_0.ILilReflection { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilReflection.cs.meta b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilReflection.cs.meta new file mode 100644 index 0000000..a6b7a61 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilReflection.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 0923a6b1cace2da498984cac6627484d \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilRefraction.cs b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilRefraction.cs new file mode 100644 index 0000000..902e5e2 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilRefraction.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : ILilRefraction +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Refraction Interface + /// + public interface ILilRefraction : v1_6_0.ILilRefraction { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilRefraction.cs.meta b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilRefraction.cs.meta new file mode 100644 index 0000000..09bd483 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilRefraction.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 7ba953e0aba1ec343bc53617097defca \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilRendering.cs b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilRendering.cs new file mode 100644 index 0000000..e7faa1d --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilRendering.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : ILilRendering +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Rendering Interface + /// + public interface ILilRendering : v1_6_0.ILilRendering { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilRendering.cs.meta b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilRendering.cs.meta new file mode 100644 index 0000000..fdf7748 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilRendering.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: ec8cb207d1559a447ab8c7477fd15630 \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilRenderingForward.cs b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilRenderingForward.cs new file mode 100644 index 0000000..45aaaa5 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilRenderingForward.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : ILilRenderingForward +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Rendering Forward Interface + /// + public interface ILilRenderingForward : v1_6_0.ILilRenderingForward { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilRenderingForward.cs.meta b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilRenderingForward.cs.meta new file mode 100644 index 0000000..78fe105 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilRenderingForward.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: d23ddcd49164cd84f8f0fc59e4324334 \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilRenderingForwardAdd.cs b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilRenderingForwardAdd.cs new file mode 100644 index 0000000..9729d85 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilRenderingForwardAdd.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : ILilRenderingForwardAdd +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Rendering Forward Add Interface + /// + public interface ILilRenderingForwardAdd : v1_6_0.ILilRenderingForwardAdd { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilRenderingForwardAdd.cs.meta b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilRenderingForwardAdd.cs.meta new file mode 100644 index 0000000..ad84f4e --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilRenderingForwardAdd.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: cc8afe98ef4da5a4186add7e0f489c18 \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilRenderingStencil.cs b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilRenderingStencil.cs new file mode 100644 index 0000000..d97cd4d --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilRenderingStencil.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : ILilRenderingStencil +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Rendering Stencil Interface + /// + public interface ILilRenderingStencil : v1_6_0.ILilRenderingStencil { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilRenderingStencil.cs.meta b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilRenderingStencil.cs.meta new file mode 100644 index 0000000..f10f7f4 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilRenderingStencil.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: cf6e8f619384b43458e99b92224b534b \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilRim.cs b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilRim.cs new file mode 100644 index 0000000..ae1bf87 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilRim.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : ILilRim +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Rim Interface + /// + public interface ILilRim : v1_6_0.ILilRim { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilRim.cs.meta b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilRim.cs.meta new file mode 100644 index 0000000..b010373 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilRim.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: fce81bbd678469b47832d40e22575c2f \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilRimShade.cs b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilRimShade.cs new file mode 100644 index 0000000..9781bb0 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilRimShade.cs @@ -0,0 +1,53 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : ILilRimShade +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + using UnityEngine; + + /// + /// lilToon Rim Shade Interface + /// + public interface ILilRimShade + { + /// Use Rim Shade + /// v1.6.0 added + //[DefaultValue(false)] + bool UseRimShade { get; set; } + + /// Rim Shade Color + /// v1.6.0 added + //[DefaultValue(0.5,0.5,0.5,1.0)] + Color RimShadeColor { get; set; } + + /// Rim Shade Mask + /// v1.6.0 added + Texture2D? RimShadeMask { get; set; } + + /// Rim Shade Normal Strength + /// v1.6.0 added + //[Range(0.0f, 1.0f)] + //[DefaultValue(1.0f)] + float RimShadeNormalStrength { get; set; } + + /// Rim Shade Border + /// v1.6.0 added + //[Range(0.0f, 1.0f)] + //[DefaultValue(0.5f)] + float RimShadeBorder { get; set; } + + /// Rim Shade Blur + /// v1.6.0 added + //[Range(0.0f, 1.0f)] + //[DefaultValue(1.0f)] + float RimShadeBlur { get; set; } + + /// Rim Shade Fresnel Power + /// v1.6.0 added + //[Range(0.01f, 50.0f)] + //[DefaultValue(1.0f)] + float RimShadeFresnelPower { get; set; } + } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilRimShade.cs.meta b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilRimShade.cs.meta new file mode 100644 index 0000000..752c964 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilRimShade.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: ab730773dd539f74a9b7c794b7230c64 \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilShadow.cs b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilShadow.cs new file mode 100644 index 0000000..fa0df2b --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilShadow.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : ILilShadow +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Shadow Interface + /// + public interface ILilShadow : v1_6_0.ILilShadow { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilShadow.cs.meta b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilShadow.cs.meta new file mode 100644 index 0000000..2cee5a5 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilShadow.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: aef74b2f0183843488abbcde9edb593d \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilTessellation.cs b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilTessellation.cs new file mode 100644 index 0000000..a3ca35c --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilTessellation.cs @@ -0,0 +1,12 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : ILilTessellation +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Tessellation Interface + /// + public interface ILilTessellation : v1_6_0.ILilTessellation { } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilTessellation.cs.meta b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilTessellation.cs.meta new file mode 100644 index 0000000..c2ca0f8 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilTessellation.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 175fb31d80d58c145a022e5b28ca21a0 \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilUdimDiscard.cs b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilUdimDiscard.cs new file mode 100644 index 0000000..6968476 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilUdimDiscard.cs @@ -0,0 +1,108 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : ILilUdimDiscard +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon UDIM Discard Interface + /// + public interface ILilUdimDiscard + { + /// UDIM Discard Compile + /// v1.7.0 added + //[DefaultValue(false)] + bool UDIMDiscardCompile { get; set; } + + /// UDIM Discard UV + /// v1.7.0 added + //[DefaultValue(LilUdimDiscardUVMode.UV0)] + LilUdimDiscardUVMode UDIMDiscardUV { get; set; } + + /// UDIM Discard Mode + /// v1.7.0 added + //[DefaultValue(LilUdimDiscardMode.Vertex)] + LilUdimDiscardMode UDIMDiscardMode { get; set; } + + /// UDIM Discard Row 3-3 + /// v1.7.0 added + //[DefaultValue(false)] + bool UDIMDiscardRow3_3 { get; set; } + + /// UDIM Discard Row 3-2 + /// v1.7.0 added + //[DefaultValue(false)] + bool UDIMDiscardRow3_2 { get; set; } + + /// UDIM Discard Row 3-1 + /// v1.7.0 added + //[DefaultValue(false)] + bool UDIMDiscardRow3_1 { get; set; } + + /// UDIM Discard Row 3-0 + /// v1.7.0 added + //[DefaultValue(false)] + bool UDIMDiscardRow3_0 { get; set; } + + /// UDIM Discard Row 2-3 + /// v1.7.0 added + //[DefaultValue(false)] + bool UDIMDiscardRow2_3 { get; set; } + + /// UDIM Discard Row 2-2 + /// v1.7.0 added + //[DefaultValue(false)] + bool UDIMDiscardRow2_2 { get; set; } + + /// UDIM Discard Row 2-1 + /// v1.7.0 added + //[DefaultValue(false)] + bool UDIMDiscardRow2_1 { get; set; } + + /// UDIM Discard Row 2-0 + /// v1.7.0 added + //[DefaultValue(false)] + bool UDIMDiscardRow2_0 { get; set; } + + /// UDIM Discard Row 1-3 + /// v1.7.0 added + //[DefaultValue(false)] + bool UDIMDiscardRow1_3 { get; set; } + + /// UDIM Discard Row 1-2 + /// v1.7.0 added + //[DefaultValue(false)] + bool UDIMDiscardRow1_2 { get; set; } + + /// UDIM Discard Row 1-1 + /// v1.7.0 added + //[DefaultValue(false)] + bool UDIMDiscardRow1_1 { get; set; } + + /// UDIM Discard Row 1-0 + /// v1.7.0 added + //[DefaultValue(false)] + bool UDIMDiscardRow1_0 { get; set; } + + /// UDIM Discard Row 0-3 + /// v1.7.0 added + //[DefaultValue(false)] + bool UDIMDiscardRow0_3 { get; set; } + + /// UDIM Discard Row 0-2 + /// v1.7.0 added + //[DefaultValue(false)] + bool UDIMDiscardRow0_2 { get; set; } + + /// UDIM Discard Row 0-1 + /// v1.7.0 added + //[DefaultValue(false)] + bool UDIMDiscardRow0_1 { get; set; } + + /// UDIM Discard Row 0-0 + /// v1.7.0 added + //[DefaultValue(false)] + bool UDIMDiscardRow0_0 { get; set; } + } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilUdimDiscard.cs.meta b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilUdimDiscard.cs.meta new file mode 100644 index 0000000..d46807f --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/Interfaces/Normal/ILilUdimDiscard.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: f3c5f8e56f02f01438f2e7756dec67d0 \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/LilToonFakeShadowPropertyEntity.cs b/Runtime/PropertyEntities/v1.7.0/LilToonFakeShadowPropertyEntity.cs new file mode 100644 index 0000000..55d027f --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/LilToonFakeShadowPropertyEntity.cs @@ -0,0 +1,34 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : LilToonFakeShadowPropertyEntity +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Fake Shadow Property Entity + /// + /// + /// lts_fakeshadow.shader + /// + public class LilToonFakeShadowPropertyEntity : LilToonPropertyEntityBase + { + /// Base + public LilFakeShadowBase? Base { get; set; } + + /// Main + public LilFakeShadowMain? Main { get; set; } + + /// Encryption + public LilEncryption? Encryption { get; set; } + + /// Rendering + public LilRendering? Rendering { get; set; } + + /// Rendering Forward + public LilRenderingForward? RenderingForward { get; set; } + + /// Rendering Stencil + public LilRenderingStencil? RenderingStencil { get; set; } + } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/LilToonFakeShadowPropertyEntity.cs.meta b/Runtime/PropertyEntities/v1.7.0/LilToonFakeShadowPropertyEntity.cs.meta new file mode 100644 index 0000000..dc21d37 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/LilToonFakeShadowPropertyEntity.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 0ebf7cedfea2dc048bd535a64ea2dc70 \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/LilToonLitePropertyEntity.cs b/Runtime/PropertyEntities/v1.7.0/LilToonLitePropertyEntity.cs new file mode 100644 index 0000000..45c2dc1 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/LilToonLitePropertyEntity.cs @@ -0,0 +1,67 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : LilToonLitePropertyEntity +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Lite Property Entity + /// + /// + /// ltsl.shader + /// + public class LilToonLitePropertyEntity : LilToonPropertyEntityBase + { + /// Base + public LilLiteBase? Base { get; set; } + + /// Lighting + public LilLighting? Lighting { get; set; } + + /// Lighting Advanced + public LilLightingAdvanced? LightingAdvanced { get; set; } + + /// Main + public LilLiteMain? Main { get; set; } + + /// Shadow + public LilLiteShadow? Shadow { get; set; } + + /// MatCap + public LilLiteMatCap? MatCap { get; set; } + + /// Rim + public LilLiteRim? Rim { get; set; } + + /// Emission + public LilLiteEmission? Emission { get; set; } + + /// Outline + public LilLiteOutline? Outline { get; set; } + + /// Outline Rendering + public LilOutlineRendering? OutlineRendering { get; set; } + + /// Outline Rendering Forward + public LilOutlineRenderingForward? OutlineRenderingForward { get; set; } + + /// Outline Rendering Forward Add + public LilOutlineRenderingForwardAdd? OutlineRenderingForwardAdd { get; set; } + + /// Outline Rendering Stencil + public LilOutlineRenderingStencil? OutlineRenderingStencil { get; set; } + + /// Rendering + public LilRendering? Rendering { get; set; } + + /// Rendering Forward + public LilRenderingForward? RenderingForward { get; set; } + + /// Rendering Forward Add + public LilRenderingForwardAdd? RenderingForwardAdd { get; set; } + + /// Rendering Stencil + public LilRenderingStencil? RenderingStencil { get; set; } + } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/LilToonLitePropertyEntity.cs.meta b/Runtime/PropertyEntities/v1.7.0/LilToonLitePropertyEntity.cs.meta new file mode 100644 index 0000000..b10e511 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/LilToonLitePropertyEntity.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: b73f023eb74624549baa9b7b7b2fdb78 \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/LilToonNormalPropertyEntity.cs b/Runtime/PropertyEntities/v1.7.0/LilToonNormalPropertyEntity.cs new file mode 100644 index 0000000..64a06f5 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/LilToonNormalPropertyEntity.cs @@ -0,0 +1,169 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : LilToonNormalPropertyEntity +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Normal Property Entity + /// + /// + /// lts.shader + /// ltsmulti.shader + /// + public class LilToonNormalPropertyEntity : LilToonPropertyEntityBase + { + /// Base + public LilBase? Base { get; set; } + + /// Lighting + public LilLighting? Lighting { get; set; } + + /// Lighting Advanced + public LilLightingAdvanced? LightingAdvanced { get; set; } + + /// Main + public LilMain? Main { get; set; } + + /// Main 2nd + public LilMain2nd? Main2nd { get; set; } + + /// Main 3rd + public LilMain3rd? Main3rd { get; set; } + + /// Alpha Mask + public LilAlphaMask? AlphaMask { get; set; } + + /// NormalMap + public LilNormalMap? NormalMap { get; set; } + + /// NormalMap 2nd + public LilNormalMap2nd? NormalMap2nd { get; set; } + + /// Anisotropy + public LilAnisotropy? Anisotropy { get; set; } + + /// Backlight + public LilBacklight? Backlight { get; set; } + + /// Shadow + public LilShadow? Shadow { get; set; } + + /// Rim Shade + /// v1.6.0 added + public LilRimShade? RimShade { get; set; } + + /// Reflection + public LilReflection? Reflection { get; set; } + + /// MatCap + public LilMatCap? MatCap { get; set; } + + /// MatCap 2nd + public LilMatCap2nd? MatCap2nd { get; set; } + + /// Rim + public LilRim? Rim { get; set; } + + /// Glitter + public LilGlitter? Glitter { get; set; } + + /// Emission + public LilEmission? Emission { get; set; } + + /// Emission Gradation + public LilEmissionGradation? EmissionGradation { get; set; } + + /// Emission 2nd + public LilEmission2nd? Emission2nd { get; set; } + + /// Emission 2nd Gradation + public LilEmission2ndGradation? Emission2ndGradation { get; set; } + + /// Parallax + public LilParallax? Parallax { get; set; } + + /// Distance Fade + public LilDistanceFade? DistanceFade { get; set; } + + /// Audio Link + public LilAudioLink? AudioLink { get; set; } + + /// Dissolve + public LilDissolve? Dissolve { get; set; } + + /// ID Mask + /// v1.4.0 added + public LilIDMask? IDMask { get; set; } + + /// UDIM (UV Tile) Discard + /// v1.7.0 added + public LilUdimDiscard? UdimDiscard { get; set; } + + /// Encryption + public LilEncryption? Encryption { get; set; } + + /// Refraction + /// RenderingMode is Refraction or Gem + public LilRefraction? Refraction { get; set; } + + /// Fur + /// RenderingMode is Fur + public LilFur? Fur { get; set; } + + /// Fur Rendering + /// RenderingMode is Fur + public LilFurRendering? FurRendering { get; set; } + + /// Fur Rendering Forward + /// RenderingMode is Fur + public LilFurRenderingForward? FurRenderingForward { get; set; } + + /// Fur Rendering Forward Add + /// RenderingMode is Fur + public LilFurRenderingForwardAdd? FurRenderingForwardAdd { get; set; } + + /// Fur Rendering Stencil + /// RenderingMode is Fur + public LilFurRenderingStencil? FurRenderingStencil { get; set; } + + /// Gem + /// RenderingMode is Gem + public LilGem? Gem { get; set; } + + /// Tessellation + public LilTessellation? Tessellation { get; set; } + + /// Outline + public LilOutline? Outline { get; set; } + + /// Outline Rendering + public LilOutlineRendering? OutlineRendering { get; set; } + + /// Outline Rendering Forward + public LilOutlineRenderingForward? OutlineRenderingForward { get; set; } + + /// Outline Rendering Forward Add + public LilOutlineRenderingForwardAdd? OutlineRenderingForwardAdd { get; set; } + + /// Outline Rendering Stencil + public LilOutlineRenderingStencil? OutlineRenderingStencil { get; set; } + + /// Multi + /// v1.3.0 added + public LilMulti? Multi { get; set; } + + /// Rendering + public LilRendering? Rendering { get; set; } + + /// Rendering Forward + public LilRenderingForward? RenderingForward { get; set; } + + /// Rendering Forward Add + public LilRenderingForwardAdd? RenderingForwardAdd { get; set; } + + /// Rendering Stencil + public LilRenderingStencil? RenderingStencil { get; set; } + } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/LilToonNormalPropertyEntity.cs.meta b/Runtime/PropertyEntities/v1.7.0/LilToonNormalPropertyEntity.cs.meta new file mode 100644 index 0000000..2659eb0 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/LilToonNormalPropertyEntity.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: bc068be79a72ec64e9d280b3865a59a9 \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/LilToonPropertyContainer.cs b/Runtime/PropertyEntities/v1.7.0/LilToonPropertyContainer.cs new file mode 100644 index 0000000..6dd1a68 --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/LilToonPropertyContainer.cs @@ -0,0 +1,22 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.v1_7_0 +// @Class : LilToonPropertyContainer +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.v1_7_0 +{ + /// + /// lilToon Property Container + /// + public class LilToonPropertyContainer : LilToonPropertyContainerBase + { + /// Normal Property Entity + public LilToonNormalPropertyEntity? NormalProperty { get; set; } + + /// Lite Property Entity + public LilToonLitePropertyEntity? LiteProperty { get; set; } + + /// Fake Shadow Property Entity + public LilToonFakeShadowPropertyEntity? FakeShadowProperty { get; set; } + } +} \ No newline at end of file diff --git a/Runtime/PropertyEntities/v1.7.0/LilToonPropertyContainer.cs.meta b/Runtime/PropertyEntities/v1.7.0/LilToonPropertyContainer.cs.meta new file mode 100644 index 0000000..244a16d --- /dev/null +++ b/Runtime/PropertyEntities/v1.7.0/LilToonPropertyContainer.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: a815eb643f25bcf4997c7898fb08d10e \ No newline at end of file diff --git a/Runtime/Proxies/Normal/LilUdimDiscardMaterialProxy.cs b/Runtime/Proxies/Normal/LilUdimDiscardMaterialProxy.cs new file mode 100644 index 0000000..c87b0ab --- /dev/null +++ b/Runtime/Proxies/Normal/LilUdimDiscardMaterialProxy.cs @@ -0,0 +1,203 @@ +// ---------------------------------------------------------------------- +// @Namespace : LilToonShader.Proxies +// @Class : LilUdimDiscardMaterialProxy +// ---------------------------------------------------------------------- +#nullable enable +namespace LilToonShader.Proxies +{ + using LilToonShader.Extensions; + using UnityEngine; + + /// + /// lilToon UDIM Discard Material Proxy + /// + public class LilUdimDiscardMaterialProxy : LilMaterialProxyBase + { + #region Properties + + /// UDIM Discard Compile + /// v1.7.0 added + //[DefaultValue(false)] + public bool UDIMDiscardCompile + { + get => _Material.GetSafeBool(PropertyNameID.UDIMDiscardCompile, false); + set => _Material.SetSafeBool(PropertyNameID.UDIMDiscardCompile, value); + } + + /// UDIM Discard UV + /// v1.7.0 added + //[DefaultValue(LilUdimDiscardUVMode.UV0)] + public LilUdimDiscardUVMode UDIMDiscardUV + { + get => _Material.GetSafeEnum(PropertyNameID.UDIMDiscardUV, LilUdimDiscardUVMode.UV0); + set => _Material.SetSafeInt(PropertyNameID.UDIMDiscardUV, (int)value); + } + + /// UDIM Discard Mode + /// v1.7.0 added + //[DefaultValue(LilUdimDiscardMode.Vertex)] + public LilUdimDiscardMode UDIMDiscardMode + { + get => _Material.GetSafeEnum(PropertyNameID.UDIMDiscardMode, LilUdimDiscardMode.Vertex); + set => _Material.SetSafeInt(PropertyNameID.UDIMDiscardMode, (int)value); + } + + /// UDIM Discard Row 3-3 + /// v1.7.0 added + //[DefaultValue(false)] + public bool UDIMDiscardRow3_3 + { + get => _Material.GetSafeBool(PropertyNameID.UDIMDiscardRow3_3, false); + set => _Material.SetSafeBool(PropertyNameID.UDIMDiscardRow3_3, value); + } + + /// UDIM Discard Row 3-2 + /// v1.7.0 added + //[DefaultValue(false)] + public bool UDIMDiscardRow3_2 + { + get => _Material.GetSafeBool(PropertyNameID.UDIMDiscardRow3_2, false); + set => _Material.SetSafeBool(PropertyNameID.UDIMDiscardRow3_2, value); + } + + /// UDIM Discard Row 3-1 + /// v1.7.0 added + //[DefaultValue(false)] + public bool UDIMDiscardRow3_1 + { + get => _Material.GetSafeBool(PropertyNameID.UDIMDiscardRow3_1, false); + set => _Material.SetSafeBool(PropertyNameID.UDIMDiscardRow3_1, value); + } + + /// UDIM Discard Row 3-0 + /// v1.7.0 added + //[DefaultValue(false)] + public bool UDIMDiscardRow3_0 + { + get => _Material.GetSafeBool(PropertyNameID.UDIMDiscardRow3_0, false); + set => _Material.SetSafeBool(PropertyNameID.UDIMDiscardRow3_0, value); + } + + /// UDIM Discard Row 2-3 + /// v1.7.0 added + //[DefaultValue(false)] + public bool UDIMDiscardRow2_3 + { + get => _Material.GetSafeBool(PropertyNameID.UDIMDiscardRow2_3, false); + set => _Material.SetSafeBool(PropertyNameID.UDIMDiscardRow2_3, value); + } + + /// UDIM Discard Row 2-2 + /// v1.7.0 added + //[DefaultValue(false)] + public bool UDIMDiscardRow2_2 + { + get => _Material.GetSafeBool(PropertyNameID.UDIMDiscardRow2_2, false); + set => _Material.SetSafeBool(PropertyNameID.UDIMDiscardRow2_2, value); + } + + /// UDIM Discard Row 2-1 + /// v1.7.0 added + //[DefaultValue(false)] + public bool UDIMDiscardRow2_1 + { + get => _Material.GetSafeBool(PropertyNameID.UDIMDiscardRow2_1, false); + set => _Material.SetSafeBool(PropertyNameID.UDIMDiscardRow2_1, value); + } + + /// UDIM Discard Row 2-0 + /// v1.7.0 added + //[DefaultValue(false)] + public bool UDIMDiscardRow2_0 + { + get => _Material.GetSafeBool(PropertyNameID.UDIMDiscardRow2_0, false); + set => _Material.SetSafeBool(PropertyNameID.UDIMDiscardRow2_0, value); + } + + /// UDIM Discard Row 1-3 + /// v1.7.0 added + //[DefaultValue(false)] + public bool UDIMDiscardRow1_3 + { + get => _Material.GetSafeBool(PropertyNameID.UDIMDiscardRow1_3, false); + set => _Material.SetSafeBool(PropertyNameID.UDIMDiscardRow1_3, value); + } + + /// UDIM Discard Row 1-2 + /// v1.7.0 added + //[DefaultValue(false)] + public bool UDIMDiscardRow1_2 + { + get => _Material.GetSafeBool(PropertyNameID.UDIMDiscardRow1_2, false); + set => _Material.SetSafeBool(PropertyNameID.UDIMDiscardRow1_2, value); + } + + /// UDIM Discard Row 1-1 + /// v1.7.0 added + //[DefaultValue(false)] + public bool UDIMDiscardRow1_1 + { + get => _Material.GetSafeBool(PropertyNameID.UDIMDiscardRow1_1, false); + set => _Material.SetSafeBool(PropertyNameID.UDIMDiscardRow1_1, value); + } + + /// UDIM Discard Row 1-0 + /// v1.7.0 added + //[DefaultValue(false)] + public bool UDIMDiscardRow1_0 + { + get => _Material.GetSafeBool(PropertyNameID.UDIMDiscardRow1_0, false); + set => _Material.SetSafeBool(PropertyNameID.UDIMDiscardRow1_0, value); + } + + /// UDIM Discard Row 0-3 + /// v1.7.0 added + //[DefaultValue(false)] + public bool UDIMDiscardRow0_3 + { + get => _Material.GetSafeBool(PropertyNameID.UDIMDiscardRow0_3, false); + set => _Material.SetSafeBool(PropertyNameID.UDIMDiscardRow0_3, value); + } + + /// UDIM Discard Row 0-2 + /// v1.7.0 added + //[DefaultValue(false)] + public bool UDIMDiscardRow0_2 + { + get => _Material.GetSafeBool(PropertyNameID.UDIMDiscardRow0_2, false); + set => _Material.SetSafeBool(PropertyNameID.UDIMDiscardRow0_2, value); + } + + /// UDIM Discard Row 0-1 + /// v1.7.0 added + //[DefaultValue(false)] + public bool UDIMDiscardRow0_1 + { + get => _Material.GetSafeBool(PropertyNameID.UDIMDiscardRow0_1, false); + set => _Material.SetSafeBool(PropertyNameID.UDIMDiscardRow0_1, value); + } + + /// UDIM Discard Row 0-0 + /// v1.7.0 added + //[DefaultValue(false)] + public bool UDIMDiscardRow0_0 + { + get => _Material.GetSafeBool(PropertyNameID.UDIMDiscardRow0_0, false); + set => _Material.SetSafeBool(PropertyNameID.UDIMDiscardRow0_0, value); + } + + #endregion + + #region Constructors + + /// + /// Create a new instance of LilUdimDiscardMaterialProxy. + /// + /// The lilToon material. + public LilUdimDiscardMaterialProxy(Material material) : base(material) + { + } + + #endregion + } +} \ No newline at end of file diff --git a/Runtime/Proxies/Normal/LilUdimDiscardMaterialProxy.cs.meta b/Runtime/Proxies/Normal/LilUdimDiscardMaterialProxy.cs.meta new file mode 100644 index 0000000..3d9bd74 --- /dev/null +++ b/Runtime/Proxies/Normal/LilUdimDiscardMaterialProxy.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: acac93688e3ae5c469ee61ce5a5a0dac \ No newline at end of file diff --git a/package.json b/package.json index 34d45df..1aa178b 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "com.izayoi.liltoon.shader.utility", "displayName": "lilToon Shader Utility", "description": "This package is utility scripts to get/set lilToon shader property values.", - "version": "1.6.0", + "version": "1.7.0", "type": "tool", "category": "", "keywords": [