Import art/VFX asset packs + game-feel systems; normalize texture extensions to lowercase for LFS
Add BefourStudios SciFi environment packs, Gabriel Aguiar VFX, and the ShaderCrew Toon Shader embedded packages, plus combat/enemy/wave/death gameplay systems and supporting vault docs/screenshots. Rename 11 vendor textures from uppercase .PNG/.HDR to lowercase so the case-sensitive Git LFS filters (*.png/*.hdr) match on case-sensitive filesystems (Linux CI, case-sensitive macOS), not just locally where core.ignorecase=true masks the gap. Each .meta moved with its asset so GUID references are preserved. All ~1000 binaries tracked via LFS. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 36b201c088f7f2d488a16919e2f71fcf
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 25e88aaf0a761444eb7efd305b7dc978
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
+206
@@ -0,0 +1,206 @@
|
||||
#if UNITY_EDITOR
|
||||
using System;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using UnityEditor;
|
||||
using UnityEditor.PackageManager;
|
||||
using UnityEngine;
|
||||
|
||||
namespace ShaderCrew.TheToonShader
|
||||
{
|
||||
[InitializeOnLoad]
|
||||
public static class TheToonShaderPackageInitializer
|
||||
{
|
||||
//private const string CurrentPackageVersion = "1.3.1";
|
||||
private const string VersionKey = "IsTheToonShaderPackageInitialized";
|
||||
|
||||
static TheToonShaderPackageInitializer()
|
||||
{
|
||||
EditorApplication.delayCall += RunInitialization;
|
||||
Events.registeredPackages += OnPackagesRegistered;
|
||||
}
|
||||
|
||||
private static void RunInitialization()
|
||||
{
|
||||
string storedVersion = EditorPrefs.GetString(VersionKey + Application.productName, "");
|
||||
if (storedVersion != TheToonShaderConstants.THETOONSHADER_VERSION_3D)
|
||||
{
|
||||
#if !__SHADERCREW_DEV_ENV__
|
||||
EditorPrefs.SetString(VersionKey + Application.productName, TheToonShaderConstants.THETOONSHADER_VERSION_3D);
|
||||
DoTildeShaderFolderAdjustments();
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
private static void OnPackagesRegistered(PackageRegistrationEventArgs args)
|
||||
{
|
||||
//if(args.added != null)
|
||||
//{
|
||||
// foreach (UnityEditor.PackageManager.PackageInfo item in args.added)
|
||||
// {
|
||||
// Debug.Log(item.name);
|
||||
// }
|
||||
//}
|
||||
if (args.added != null && args.added.Any(pkg => pkg.name == "com.shadercrew.the-toon-shader.3d") ||
|
||||
args.changedFrom != null && args.changedFrom.Any(pkg => pkg.name == "com.shadercrew.the-toon-shader.3d") ||
|
||||
args.added != null && args.added.Any(pkg => pkg.name == "com.shadercrew.seethroughshader.3d") ||
|
||||
args.removed != null && args.removed.Any(pkg => pkg.name == "com.shadercrew.seethroughshader.3d"))
|
||||
{
|
||||
#if !__SHADERCREW_DEV_ENV__
|
||||
DoTildeShaderFolderAdjustments();
|
||||
#endif
|
||||
}
|
||||
}
|
||||
private static void DoTildeShaderFolderAdjustments()
|
||||
{
|
||||
|
||||
string shaderPackageFolder = "Packages/com.shadercrew.the-toon-shader.3d/";
|
||||
|
||||
string nativeShaderFolderURP = shaderPackageFolder + "Scripts/Shaders/Native/URP";
|
||||
string nativeShaderFolderURPTilde = nativeShaderFolderURP + "~";
|
||||
|
||||
|
||||
#if USING_URP
|
||||
RenameFolder(nativeShaderFolderURPTilde, nativeShaderFolderURP);
|
||||
|
||||
string nativeShaderFolderURP2020 = nativeShaderFolderURP + "/2020";
|
||||
string nativeShaderFolderURP2020Tilde = nativeShaderFolderURP2020 + "~";
|
||||
|
||||
string nativeShaderFolderURP2021 = nativeShaderFolderURP + "/2021";
|
||||
string nativeShaderFolderURP2021Tilde = nativeShaderFolderURP2021 + "~";
|
||||
|
||||
string nativeShaderFolderURP2022 = nativeShaderFolderURP + "/2022";
|
||||
string nativeShaderFolderURP2022Tilde = nativeShaderFolderURP2022 + "~";
|
||||
|
||||
string nativeShaderFolderURPUnity6 = nativeShaderFolderURP + "/Unity6";
|
||||
string nativeShaderFolderURPUnity6Tilde = nativeShaderFolderURPUnity6 + "~";
|
||||
|
||||
string nativeShaderFolderURPUnity6_3 = nativeShaderFolderURP + "/Unity6_3";
|
||||
string nativeShaderFolderURPUnity6_3Tilde = nativeShaderFolderURPUnity6_3 + "~";
|
||||
|
||||
|
||||
#if UNITY_2020_1_OR_NEWER && !UNITY_2021_1_OR_NEWER
|
||||
RenameFolder(nativeShaderFolderURP2020Tilde, nativeShaderFolderURP2020);
|
||||
#else
|
||||
RenameFolder(nativeShaderFolderURP2020, nativeShaderFolderURP2020Tilde);
|
||||
#endif
|
||||
|
||||
#if UNITY_2021_1_OR_NEWER && !UNITY_2022_1_OR_NEWER
|
||||
RenameFolder(nativeShaderFolderURP2021Tilde, nativeShaderFolderURP2021);
|
||||
#else
|
||||
RenameFolder(nativeShaderFolderURP2021, nativeShaderFolderURP2021Tilde);
|
||||
#endif
|
||||
|
||||
#if UNITY_2022_1_OR_NEWER && !UNITY_2023_1_OR_NEWER
|
||||
RenameFolder(nativeShaderFolderURP2022Tilde, nativeShaderFolderURP2022);
|
||||
#else
|
||||
RenameFolder(nativeShaderFolderURP2022, nativeShaderFolderURP2022Tilde);
|
||||
#endif
|
||||
|
||||
#if UNITY_2023_1_OR_NEWER && !UNITY_6000_3_OR_NEWER
|
||||
RenameFolder(nativeShaderFolderURPUnity6Tilde, nativeShaderFolderURPUnity6);
|
||||
#else
|
||||
RenameFolder(nativeShaderFolderURPUnity6, nativeShaderFolderURPUnity6Tilde);
|
||||
#endif
|
||||
|
||||
#if UNITY_6000_3_OR_NEWER
|
||||
RenameFolder(nativeShaderFolderURPUnity6_3Tilde, nativeShaderFolderURPUnity6_3);
|
||||
#else
|
||||
RenameFolder(nativeShaderFolderURPUnity6_3, nativeShaderFolderURPUnity6_3Tilde);
|
||||
#endif
|
||||
|
||||
#else
|
||||
RenameFolder(nativeShaderFolderURP, nativeShaderFolderURPTilde);
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
string stsShaderFolder = shaderPackageFolder + "Scripts/Shaders/STS";
|
||||
string stsShaderFolderTilde = stsShaderFolder + "~";
|
||||
|
||||
string stsShaderFolderURP = shaderPackageFolder + "Scripts/Shaders/STS/URP";
|
||||
string stsShaderFolderURPTilde = stsShaderFolderURP + "~";
|
||||
|
||||
#if USING_SEE_THROUGH_SHADER
|
||||
RenameFolder(stsShaderFolderTilde, stsShaderFolder);
|
||||
|
||||
|
||||
#if USING_URP
|
||||
RenameFolder(stsShaderFolderURPTilde, stsShaderFolderURP);
|
||||
|
||||
string stsShaderFolderURP2020 = stsShaderFolderURP + "/2020";
|
||||
string stsShaderFolderURP2020Tilde = stsShaderFolderURP2020 + "~";
|
||||
|
||||
string stsShaderFolderURP2021 = stsShaderFolderURP + "/2021";
|
||||
string stsShaderFolderURP2021Tilde = stsShaderFolderURP2021 + "~";
|
||||
|
||||
string stsShaderFolderURP2022 = stsShaderFolderURP + "/2022";
|
||||
string stsShaderFolderURP2022Tilde = stsShaderFolderURP2022 + "~";
|
||||
|
||||
string stsShaderFolderURPUnity6 = stsShaderFolderURP + "/Unity6";
|
||||
string stsShaderFolderURPUnity6Tilde = stsShaderFolderURPUnity6 + "~";
|
||||
|
||||
string stsShaderFolderURPUnity6_3 = stsShaderFolderURP + "/Unity6_3";
|
||||
string stsShaderFolderURPUnity6_3Tilde = stsShaderFolderURPUnity6_3 + "~";
|
||||
|
||||
|
||||
#if UNITY_2020_1_OR_NEWER && !UNITY_2021_1_OR_NEWER
|
||||
RenameFolder(stsShaderFolderURP2020Tilde, stsShaderFolderURP2020);
|
||||
#else
|
||||
RenameFolder(stsShaderFolderURP2020, stsShaderFolderURP2020Tilde);
|
||||
#endif
|
||||
|
||||
#if UNITY_2021_1_OR_NEWER && !UNITY_2022_1_OR_NEWER
|
||||
RenameFolder(stsShaderFolderURP2021Tilde, stsShaderFolderURP2021);
|
||||
#else
|
||||
RenameFolder(stsShaderFolderURP2021, stsShaderFolderURP2021Tilde);
|
||||
#endif
|
||||
|
||||
#if UNITY_2022_1_OR_NEWER && !UNITY_2023_1_OR_NEWER
|
||||
RenameFolder(stsShaderFolderURP2022Tilde, stsShaderFolderURP2022);
|
||||
#else
|
||||
RenameFolder(stsShaderFolderURP2022, stsShaderFolderURP2022Tilde);
|
||||
#endif
|
||||
|
||||
#if UNITY_2023_1_OR_NEWER && !UNITY_6000_3_OR_NEWER
|
||||
RenameFolder(stsShaderFolderURPUnity6Tilde, stsShaderFolderURPUnity6);
|
||||
#else
|
||||
RenameFolder(stsShaderFolderURPUnity6, stsShaderFolderURPUnity6Tilde);
|
||||
#endif
|
||||
|
||||
#if UNITY_6000_3_OR_NEWER
|
||||
RenameFolder(stsShaderFolderURPUnity6_3Tilde, stsShaderFolderURPUnity6_3);
|
||||
#else
|
||||
RenameFolder(stsShaderFolderURPUnity6_3, stsShaderFolderURPUnity6_3Tilde);
|
||||
#endif
|
||||
|
||||
#else
|
||||
RenameFolder(stsShaderFolderURP, stsShaderFolderURPTilde);
|
||||
#endif
|
||||
#else
|
||||
RenameFolder(stsShaderFolder, stsShaderFolderTilde);
|
||||
#endif
|
||||
}
|
||||
|
||||
private static void RenameFolder(string oldName, string newName)
|
||||
{
|
||||
if (Directory.Exists(oldName))
|
||||
{
|
||||
Directory.Move(oldName, newName);
|
||||
string meta = oldName + ".meta";
|
||||
if (File.Exists(meta))
|
||||
{
|
||||
File.Delete(meta);
|
||||
}
|
||||
AssetDatabase.Refresh();
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
#endif
|
||||
+18
@@ -0,0 +1,18 @@
|
||||
fileFormatVersion: 2
|
||||
guid: caeee248b68067048b371329da21af54
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 269238
|
||||
packageName: The Toon Shader
|
||||
packageVersion: 1.4.2
|
||||
assetPath: Packages/com.shadercrew.the-toon-shader.3d/Scripts/Editor/Common/TheToonShaderPackageInitializer.cs
|
||||
uploadId: 919972
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 0be7bf4dc430a2c4398d08c83fadaca0
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
+2491
File diff suppressed because it is too large
Load Diff
+18
@@ -0,0 +1,18 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 5a4d89afa711b8c40a4a9841631ac7df
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 269238
|
||||
packageName: The Toon Shader
|
||||
packageVersion: 1.4.2
|
||||
assetPath: Packages/com.shadercrew.the-toon-shader.3d/Scripts/Editor/Components/ReplaceOrSynchronizeToonSettingsEditor.cs
|
||||
uploadId: 919972
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 8dcd426c88cc85548a60832beca1a83e
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,399 @@
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using UnityEditor;
|
||||
using UnityEngine;
|
||||
using static ShaderCrew.TheToonShader.ShaderUtils;
|
||||
|
||||
namespace ShaderCrew.TheToonShader
|
||||
{
|
||||
[CustomEditor(typeof(RPHelper))]
|
||||
public class RPHelperEditor : Editor
|
||||
{
|
||||
|
||||
bool m_FirstTimeApply = true;
|
||||
|
||||
bool LinkLabel(GUIContent label)
|
||||
{
|
||||
GUIStyle m_LinkStyle = new GUIStyle(EditorStyles.label);
|
||||
m_LinkStyle.wordWrap = false;
|
||||
m_LinkStyle.normal.textColor = new Color(0x00 / 255f, 0x78 / 255f, 0xDA / 255f, 1f);
|
||||
m_LinkStyle.stretchWidth = false;
|
||||
//m_LinkStyle.contentOffset = new Vector2(15, 0);
|
||||
m_LinkStyle.alignment = TextAnchor.MiddleCenter;
|
||||
m_LinkStyle.fontStyle = FontStyle.Bold;
|
||||
m_LinkStyle.fontSize = 15;
|
||||
|
||||
return GUILayout.Button(label, m_LinkStyle);
|
||||
}
|
||||
|
||||
Material[] mats;
|
||||
UnityVersionRenderPipelineShaderInfo unityVersionRenderPipelineShader;
|
||||
|
||||
Dictionary<string, string> UnityToSTSShaderNameMapping;
|
||||
|
||||
Dictionary<string, Shader> UnityToSTSShaderMapping;
|
||||
|
||||
GUIStyle stepHeaderStyle;
|
||||
GUIStyle centerLabelStyle;
|
||||
GUIStyle textAreaStyle;
|
||||
GUIStyle m_LinkStyle;
|
||||
GUIStyle headerStyle;
|
||||
GUIStyle grayHeaderStyle;
|
||||
GUIStyle bigTextStyle;
|
||||
GUIStyle bigErrorStyle;
|
||||
GUIStyle textAreaBoldStyle;
|
||||
GUIStyle step2TextStyle;
|
||||
|
||||
string richColor;
|
||||
|
||||
Color buttonColor;
|
||||
|
||||
|
||||
public override void OnInspectorGUI()
|
||||
{
|
||||
|
||||
|
||||
if (m_FirstTimeApply)
|
||||
{
|
||||
m_FirstTimeApply = false;
|
||||
DoSetup();
|
||||
m_FirstTimeApply = false;
|
||||
}
|
||||
|
||||
if (UnityToSTSShaderNameMapping == null) {
|
||||
UnityToSTSShaderNameMapping = getUnityToTTSShaderMapping();
|
||||
}
|
||||
|
||||
if (UnityToSTSShaderMapping == null)
|
||||
{
|
||||
UnityToSTSShaderMapping = new Dictionary<string, Shader>();
|
||||
}
|
||||
foreach (string key in UnityToSTSShaderNameMapping.Keys.ToList())
|
||||
{
|
||||
Shader shader = Shader.Find(UnityToSTSShaderNameMapping[key]);
|
||||
UnityToSTSShaderMapping[key] = shader ?? Shader.Find(UnityToSTSShaderNameMapping[TheToonShaderConstants.TTS_SHADER_DEFAULT_KEY]);
|
||||
}
|
||||
|
||||
serializedObject.Update();
|
||||
EditorUtils.usualStart("Render Pipeline Setup Helper");
|
||||
|
||||
EditorGUILayout.Space(5);
|
||||
|
||||
|
||||
GUILayout.Label("Welcome to the 'The Toon Shader' Demo!", headerStyle);
|
||||
EditorUtils.DrawUILineGray(2, 0);
|
||||
|
||||
EditorGUILayout.Space(10);
|
||||
GUILayout.TextArea("When you import the package for the first time, " +
|
||||
"it is set up for the 'Built-in' Render Pipeline. To ensure that it works with URP" + //" or HDRP, depending on which Render Pipeline you chose," +
|
||||
" we have to do some minor changes to the materials, i.e. assign the correct shader! " +
|
||||
"\nHere we will walk you through the needed steps. So let's get started! :) ", textAreaStyle);
|
||||
EditorGUILayout.Space(10);
|
||||
EditorUtils.DrawUILineGray(2, 0);
|
||||
unityVersionRenderPipelineShader = getUnityVersionAndRenderPipelineCorrectedShaderString();
|
||||
EditorGUILayout.Space(10);
|
||||
|
||||
|
||||
GUILayout.Label("RenderPipeline currently in use ", grayHeaderStyle);
|
||||
GUILayout.Label(unityVersionRenderPipelineShader.renderPipeline, bigTextStyle);
|
||||
|
||||
|
||||
EditorGUILayout.Space(5);
|
||||
|
||||
|
||||
bool isCorrectShaderUsed = true;
|
||||
mats = Resources.LoadAll("TTSReferenceMaterials", typeof(Material)).Cast<Material>().ToArray();
|
||||
|
||||
List<Material> matListNotCorrectShader = new List<Material>();
|
||||
if (mats != null)
|
||||
{
|
||||
foreach (Material mat in mats)
|
||||
{
|
||||
//if (mat.shader.name != unityVersionRenderPipelineShader.versionAndRPCorrectedShader)
|
||||
if (!UnityToSTSShaderNameMapping.Values.Contains(mat.shader.name))
|
||||
{
|
||||
isCorrectShaderUsed = false;
|
||||
matListNotCorrectShader.Add(mat);
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
Debug.LogError("Reference mats are empty. Please check if all your materials are inside resources/TTSReferenceMaterials");
|
||||
isCorrectShaderUsed = false;
|
||||
}
|
||||
|
||||
GUILayout.Label("Reference Materials Shader", grayHeaderStyle);
|
||||
if (isCorrectShaderUsed)
|
||||
{
|
||||
GUILayout.Label(unityVersionRenderPipelineShader.shaderFolder, bigTextStyle);
|
||||
}
|
||||
else
|
||||
{
|
||||
GUILayout.Label("One or more of your reference materials have the wrong shader assigned! \n Action is required!", bigErrorStyle);
|
||||
GUILayout.Label("Materials with incorrect shaders: ", bigErrorStyle);
|
||||
foreach (Material item in matListNotCorrectShader)
|
||||
{
|
||||
GUILayout.Label(item.name + " with shader: \n" + item.shader.name);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
EditorGUILayout.Space(10);
|
||||
|
||||
if (!isCorrectShaderUsed)
|
||||
{
|
||||
if ((unityVersionRenderPipelineShader.renderPipeline == "Built-in RP"))
|
||||
{
|
||||
autoAssignShader(mats, unityVersionRenderPipelineShader);
|
||||
}
|
||||
else if ((unityVersionRenderPipelineShader.renderPipeline == "URP"))
|
||||
{
|
||||
displayStepsForURPandHDRP(true);
|
||||
|
||||
}
|
||||
else if ((unityVersionRenderPipelineShader.renderPipeline == "HDRP"))
|
||||
{
|
||||
displayStepsForURPandHDRP(false);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
GUILayout.Label("Everything should work fine! No changes needed!", stepHeaderStyle);
|
||||
}
|
||||
|
||||
EditorGUILayout.Space(10);
|
||||
|
||||
//base.DrawDefaultInspector();
|
||||
EditorUtils.usualEnd();
|
||||
//EditorStyles.label.normal.textColor = oriCol;
|
||||
serializedObject.ApplyModifiedProperties();
|
||||
}
|
||||
void DoSetup()
|
||||
{
|
||||
m_LinkStyle = new GUIStyle(EditorStyles.label);
|
||||
m_LinkStyle.wordWrap = false;
|
||||
m_LinkStyle.stretchWidth = false;
|
||||
|
||||
headerStyle = new GUIStyle();
|
||||
headerStyle.alignment = TextAnchor.MiddleCenter;
|
||||
headerStyle.fontStyle = FontStyle.Bold;
|
||||
headerStyle.fontSize = 15;
|
||||
|
||||
grayHeaderStyle = new GUIStyle();
|
||||
grayHeaderStyle.fontSize = 14;
|
||||
grayHeaderStyle.alignment = TextAnchor.MiddleCenter;
|
||||
grayHeaderStyle.wordWrap = true;
|
||||
|
||||
|
||||
bigTextStyle = new GUIStyle();
|
||||
|
||||
bigTextStyle.fontStyle = FontStyle.Bold;
|
||||
bigTextStyle.fontSize = 15;
|
||||
bigTextStyle.alignment = TextAnchor.MiddleCenter;
|
||||
|
||||
bigErrorStyle = new GUIStyle();
|
||||
bigErrorStyle.fontStyle = FontStyle.Bold;
|
||||
bigErrorStyle.fontSize = 13;
|
||||
bigErrorStyle.alignment = TextAnchor.MiddleCenter;
|
||||
bigErrorStyle.wordWrap = true;
|
||||
|
||||
textAreaStyle = new GUIStyle();
|
||||
|
||||
textAreaStyle.padding.left = 20;
|
||||
textAreaStyle.padding.right = 20;
|
||||
//textAreaStyle.fontStyle = FontStyle.Bold;
|
||||
textAreaStyle.wordWrap = true;
|
||||
textAreaStyle.fontSize = 15;
|
||||
textAreaStyle.richText = true;
|
||||
|
||||
textAreaBoldStyle = new GUIStyle();
|
||||
textAreaBoldStyle.normal.textColor = Color.white;
|
||||
textAreaBoldStyle.padding.left = 20;
|
||||
textAreaBoldStyle.padding.right = 20;
|
||||
textAreaBoldStyle.fontStyle = FontStyle.Bold;
|
||||
textAreaBoldStyle.wordWrap = true;
|
||||
textAreaBoldStyle.fontSize = 15;
|
||||
|
||||
stepHeaderStyle = new GUIStyle();
|
||||
stepHeaderStyle.fontStyle = FontStyle.Bold;
|
||||
stepHeaderStyle.alignment = TextAnchor.MiddleCenter;
|
||||
//bigTextStyle2.fontSize = 16;
|
||||
centerLabelStyle = new GUIStyle();
|
||||
centerLabelStyle.normal.textColor = Color.gray;
|
||||
centerLabelStyle.alignment = TextAnchor.MiddleCenter;
|
||||
|
||||
//textColor = Color.white;
|
||||
//oriCol = EditorStyles.label.normal.textColor;
|
||||
|
||||
step2TextStyle = new GUIStyle();
|
||||
|
||||
step2TextStyle.fontSize = 15;
|
||||
step2TextStyle.padding.left = 20;
|
||||
step2TextStyle.padding.right = 20;
|
||||
step2TextStyle.alignment = TextAnchor.MiddleCenter;
|
||||
step2TextStyle.wordWrap = true;
|
||||
|
||||
|
||||
if (EditorGUIUtility.isProSkin)
|
||||
{
|
||||
|
||||
m_LinkStyle.normal.textColor = new Color(1f, 0.3f, 0.3f, 1);
|
||||
headerStyle.normal.textColor = Color.white;
|
||||
grayHeaderStyle.normal.textColor = new Color(0.7f, 0.7f, 0.7f, 1);
|
||||
textAreaStyle.normal.textColor = Color.white;
|
||||
bigErrorStyle.normal.textColor = new Color(1f, 0.3f, 0.3f, 1);
|
||||
richColor = "silver";
|
||||
stepHeaderStyle.normal.textColor = Color.white;
|
||||
step2TextStyle.normal.textColor = new Color(0.7f, 0.7f, 0.7f, 1);
|
||||
bigTextStyle.normal.textColor = Color.white;
|
||||
buttonColor = new Color(0.6f, 0.6f, 0.6f, 1);
|
||||
}
|
||||
else
|
||||
{
|
||||
m_LinkStyle.normal.textColor = new Color(1f, 0.3f, 0.3f, 1);
|
||||
headerStyle.normal.textColor = Color.black;
|
||||
grayHeaderStyle.normal.textColor = new Color(0.2f, 0.2f, 0.2f, 1);
|
||||
textAreaStyle.normal.textColor = Color.black;
|
||||
bigErrorStyle.normal.textColor = new Color(0.6f, 0.0f, 0.0f, 1);
|
||||
richColor = "#161616";
|
||||
stepHeaderStyle.normal.textColor = Color.black;
|
||||
step2TextStyle.normal.textColor = Color.black;
|
||||
bigTextStyle.normal.textColor = Color.black;
|
||||
buttonColor = new Color(0.8f, 0.8f, 0.8f, 1);
|
||||
}
|
||||
}
|
||||
private void autoAssignShader(Material[] mats, UnityVersionRenderPipelineShaderInfo unityVersionRenderPipelineShader)
|
||||
{
|
||||
GUILayout.Label("Automatically assign the correct shader to your Reference Materials", step2TextStyle);
|
||||
GUILayout.BeginHorizontal();
|
||||
GUILayout.FlexibleSpace();
|
||||
Color originalBackgroundColor = GUI.backgroundColor;
|
||||
GUI.backgroundColor = buttonColor;
|
||||
if (GUILayout.Button("Assign Shader", GUILayout.Width(100), GUILayout.Height(30)))
|
||||
{
|
||||
if (mats != null)
|
||||
{
|
||||
foreach (Material mat in mats)
|
||||
{
|
||||
//if (mat.shader.name != unityVersionRenderPipelineShader.versionAndRPCorrectedShader)
|
||||
if (!UnityToSTSShaderMapping.Values.Contains(mat.shader))
|
||||
{
|
||||
if(mat.GetFloat("_EnableOutline") == 1.0)
|
||||
{
|
||||
mat.shader = UnityToSTSShaderMapping.TryGetValue(mat.shader.name, out Shader value) ? value : UnityToSTSShaderMapping[TheToonShaderConstants.TTS_SHADER_STANDARD_WITH_OUTLINE_KEY];
|
||||
}
|
||||
else
|
||||
{
|
||||
mat.shader = UnityToSTSShaderMapping.TryGetValue(mat.shader.name, out Shader value) ? value : UnityToSTSShaderMapping[TheToonShaderConstants.TTS_SHADER_STANDARD_KEY];
|
||||
}
|
||||
|
||||
//if((unityVersionRenderPipelineShader.renderPipeline == "URP"))
|
||||
//{
|
||||
// mat.SetColor("_BaseColor", mat.GetColor("_Color"));
|
||||
//}
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
Debug.LogError("Reference mats are empty. Can NOT do auto assign!");
|
||||
}
|
||||
}
|
||||
GUI.backgroundColor = originalBackgroundColor;
|
||||
GUILayout.FlexibleSpace();
|
||||
GUILayout.EndHorizontal();
|
||||
}
|
||||
|
||||
|
||||
private void displayStepsForURPandHDRP(bool isURP)
|
||||
{
|
||||
|
||||
string step1Text;
|
||||
string link;
|
||||
string commonNote = "\n\nIMPORTANT: <color=" + richColor + "> In case you added this asset to an existing project, please select all the materials inside </color>" +
|
||||
|
||||
"\n\nAssets/Samples/The Toon Shader/1.X.X/The Toon Shader Examples/Materials/" +
|
||||
"\n\nAssets/Samples/The Toon Shader/1.X.X/The Toon Shader Examples/Models/TempleForToon/" +
|
||||
"\n\n<color=" + richColor + "> and use </color> ";
|
||||
if (isURP)
|
||||
{
|
||||
step1Text = "<color=" + richColor + ">First you need to convert all standard shaders to Lit shaders using the tool provided by unity. For this go to </color> " +
|
||||
"<b>Edit > Render Pipeline > Universal Render Pipeline</b> <color=" + richColor + ">and then select</color> <b>Upgrade Project Materials to URP Materials</b>." +
|
||||
commonNote +
|
||||
"<b>Upgrade Selected Materials to URP Materials</b> <color=" + richColor + ">instead!</color>";
|
||||
|
||||
|
||||
#if UNITY_6000_3_OR_NEWER
|
||||
step1Text += "\n\n<color=" + richColor + ">In Unity 6.3, you need to use </color> <b>Window > Rendering > Render Pipeline Converter</b> <color=" + richColor + ">, since</color> " +
|
||||
"<b>Edit > Rendering > Materials > Convert Selected Built-in Materials to URP</b> <color=" + richColor + ">appears to be missing, despite being mentioned in the documentation.</color> ";
|
||||
#elif UNITY_6000_0_OR_NEWER
|
||||
step1Text += "\n\n<color=" + richColor + ">In newer Versions (Unity 6) the converter is located under</color> <b>Edit > Rendering > Materials > Convert Selected Built-in Materials to URP</b>";
|
||||
|
||||
#endif
|
||||
|
||||
#if UNITY_6000_0_OR_NEWER
|
||||
link = "https://docs.unity3d.com/6000.3/Documentation/Manual/upgrade-material.html";
|
||||
#else
|
||||
link = "https://docs.unity3d.com/Packages/com.unity.render-pipelines.universal@10.7/manual/upgrading-your-shaders.html";
|
||||
#endif
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
//step1Text = "<color=" + richColor + ">First you need to convert all standard shaders to Lit shaders using the tool provided by unity. For this go to </color> " +
|
||||
//"<b>Edit > Render Pipeline > High Definition RP</b> <color=" + richColor + ">and then select</color> <b>Upgrade Project Materials to High Definition Materials</b>" +
|
||||
// commonNote + "<b>Upgrade Selected Materials to High Definition Materials</b> <color=" + richColor + ">instead!</color>";
|
||||
//link = "https://docs.unity3d.com/Packages/com.unity.render-pipelines.high-definition@10.7/manual/Upgrading-To-HDRP.html";
|
||||
step1Text = "unsupported";
|
||||
link = "unsupported";
|
||||
}
|
||||
Rect rect = EditorGUILayout.BeginVertical();
|
||||
rect.width -= 20;
|
||||
rect.x += 10;
|
||||
//GUI.Box(rect, GUIContent.none);
|
||||
|
||||
if (EditorGUIUtility.isProSkin)
|
||||
{
|
||||
GUI.Box(rect, GUIContent.none);
|
||||
}
|
||||
else
|
||||
{
|
||||
EditorUtils.DrawBox(rect, new Color(0.8f, 0.8f, 0.8f, 1));
|
||||
}
|
||||
GUILayout.Label("STEP 1:", stepHeaderStyle);
|
||||
EditorGUILayout.Space(5);
|
||||
GUILayout.TextArea(step1Text, textAreaStyle);
|
||||
|
||||
EditorGUILayout.Space(10);
|
||||
GUILayout.Label("Link to Unity Documentation:", stepHeaderStyle);
|
||||
GUILayout.BeginHorizontal();
|
||||
GUILayout.FlexibleSpace();
|
||||
|
||||
if (LinkLabel(new GUIContent("Unity Documentation")))
|
||||
{
|
||||
Application.OpenURL(link);
|
||||
}
|
||||
|
||||
GUILayout.FlexibleSpace();
|
||||
GUILayout.EndHorizontal();
|
||||
|
||||
EditorGUILayout.Space(5);
|
||||
GUILayout.Label("Please finish step 1 before you do step 2!", centerLabelStyle);
|
||||
EditorGUILayout.Space(15);
|
||||
EditorUtils.DrawUILineCenter(new Color(0.2f, 0.2f, 0.2f, 1));
|
||||
|
||||
EditorGUILayout.Space(15);
|
||||
GUILayout.Label("STEP 2:", stepHeaderStyle);
|
||||
EditorGUILayout.Space(5);
|
||||
autoAssignShader(mats, unityVersionRenderPipelineShader);
|
||||
EditorGUILayout.Space(15);
|
||||
EditorGUILayout.EndVertical();
|
||||
EditorGUILayout.Space(100);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 2cf0780bcea1df74ebf3c684a4ed27e3
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 269238
|
||||
packageName: The Toon Shader
|
||||
packageVersion: 1.4.2
|
||||
assetPath: Packages/com.shadercrew.the-toon-shader.3d/Scripts/Editor/Demo/RPHelperEditor.cs
|
||||
uploadId: 919972
|
||||
+449
@@ -0,0 +1,449 @@
|
||||
#if USING_SEE_THROUGH_SHADER
|
||||
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using UnityEditor;
|
||||
using UnityEngine;
|
||||
using static ShaderCrew.TheToonShader.ShaderUtils;
|
||||
using static ShaderCrew.SeeThroughShader.GeneralUtils;
|
||||
using ShaderCrew.SeeThroughShader;
|
||||
|
||||
namespace ShaderCrew.TheToonShader
|
||||
{
|
||||
[CustomEditor(typeof(RPHelperToonSTS))]
|
||||
public class RPHelperToonSTSEditor : Editor
|
||||
{
|
||||
|
||||
bool m_FirstTimeApply = true;
|
||||
|
||||
bool LinkLabel(GUIContent label)
|
||||
{
|
||||
GUIStyle m_LinkStyle = new GUIStyle(EditorStyles.label);
|
||||
m_LinkStyle.wordWrap = false;
|
||||
m_LinkStyle.normal.textColor = new Color(0x00 / 255f, 0x78 / 255f, 0xDA / 255f, 1f);
|
||||
m_LinkStyle.stretchWidth = false;
|
||||
//m_LinkStyle.contentOffset = new Vector2(15, 0);
|
||||
m_LinkStyle.alignment = TextAnchor.MiddleCenter;
|
||||
|
||||
m_LinkStyle.fontStyle = FontStyle.Bold;
|
||||
m_LinkStyle.fontSize = 15;
|
||||
|
||||
return GUILayout.Button(label, m_LinkStyle);
|
||||
}
|
||||
|
||||
Material[] mats;
|
||||
TheToonShader.ShaderUtils.UnityVersionRenderPipelineShaderInfo unityVersionRenderPipelineShader;
|
||||
|
||||
Dictionary<string, string> UnityToSTSShaderNameMapping;
|
||||
Dictionary<string, string> UnityToTTSShaderNameMapping;
|
||||
|
||||
Dictionary<string, Shader> UnityToSTSShaderMapping;
|
||||
Dictionary<string, Shader> UnityToTTSShaderMapping;
|
||||
|
||||
GUIStyle stepHeaderStyle;
|
||||
GUIStyle centerLabelStyle;
|
||||
GUIStyle textAreaStyle;
|
||||
GUIStyle m_LinkStyle;
|
||||
GUIStyle headerStyle;
|
||||
GUIStyle grayHeaderStyle;
|
||||
GUIStyle bigTextStyle;
|
||||
GUIStyle bigErrorStyle;
|
||||
GUIStyle textAreaBoldStyle;
|
||||
GUIStyle step2TextStyle;
|
||||
|
||||
string richColor;
|
||||
|
||||
Color buttonColor;
|
||||
|
||||
|
||||
public override void OnInspectorGUI()
|
||||
{
|
||||
|
||||
|
||||
if (m_FirstTimeApply)
|
||||
{
|
||||
m_FirstTimeApply = false;
|
||||
DoSetup();
|
||||
m_FirstTimeApply = false;
|
||||
}
|
||||
|
||||
if (UnityToSTSShaderNameMapping == null)
|
||||
{
|
||||
UnityToSTSShaderNameMapping = ShaderCrew.SeeThroughShader.GeneralUtils.getUnityToSTSShaderMapping();
|
||||
}
|
||||
|
||||
if (UnityToTTSShaderNameMapping == null)
|
||||
{
|
||||
UnityToTTSShaderNameMapping = getUnityToTTSShaderMapping();
|
||||
}
|
||||
|
||||
|
||||
|
||||
if (UnityToSTSShaderMapping == null)
|
||||
{
|
||||
UnityToSTSShaderMapping = new Dictionary<string, Shader>();
|
||||
}
|
||||
foreach (string key in UnityToSTSShaderNameMapping.Keys.ToList())
|
||||
{
|
||||
Shader shader = Shader.Find(UnityToSTSShaderNameMapping[key]);
|
||||
UnityToSTSShaderMapping[key] = shader ?? Shader.Find(UnityToSTSShaderNameMapping[SeeThroughShaderConstants.STS_SHADER_DEFAULT_KEY]);
|
||||
}
|
||||
|
||||
|
||||
if (UnityToTTSShaderMapping == null)
|
||||
{
|
||||
UnityToTTSShaderMapping = new Dictionary<string, Shader>();
|
||||
}
|
||||
foreach (string key in UnityToTTSShaderNameMapping.Keys.ToList())
|
||||
{
|
||||
Shader shader = Shader.Find(UnityToTTSShaderNameMapping[key]);
|
||||
UnityToTTSShaderMapping[key] = shader ?? Shader.Find(UnityToTTSShaderNameMapping[TheToonShaderConstants.TTS_SHADER_DEFAULT_KEY]);
|
||||
}
|
||||
|
||||
serializedObject.Update();
|
||||
EditorUtils.usualStart("Render Pipeline Setup Helper");
|
||||
|
||||
EditorGUILayout.Space(5);
|
||||
|
||||
|
||||
GUILayout.Label("Welcome to the 'The Toon Shader' x 'See-through Shader' Demo!", headerStyle);
|
||||
EditorUtils.DrawUILineGray(2, 0);
|
||||
|
||||
EditorGUILayout.Space(10);
|
||||
GUILayout.TextArea("When you import the package for the first time, " +
|
||||
"it is set up for the 'Built-in' Render Pipeline. To ensure that it works with URP" + //" or HDRP, depending on which Render Pipeline you chose," +
|
||||
" we have to do some minor changes to the materials, i.e. assign the correct shader! " +
|
||||
"\nHere we will walk you through the needed steps. So let's get started! :) ", textAreaStyle);
|
||||
EditorGUILayout.Space(10);
|
||||
EditorUtils.DrawUILineGray(2, 0);
|
||||
unityVersionRenderPipelineShader = ShaderUtils.getUnityVersionAndRenderPipelineCorrectedShaderString();
|
||||
EditorGUILayout.Space(10);
|
||||
|
||||
|
||||
GUILayout.Label("RenderPipeline currently in use ", grayHeaderStyle);
|
||||
GUILayout.Label(unityVersionRenderPipelineShader.renderPipeline, bigTextStyle);
|
||||
|
||||
|
||||
EditorGUILayout.Space(5);
|
||||
|
||||
|
||||
bool isCorrectShaderUsed = true;
|
||||
mats = Resources.LoadAll("TTSxSTSMaterials", typeof(Material)).Cast<Material>().ToArray();
|
||||
|
||||
List<Material> matListNotCorrectShader = new List<Material>();
|
||||
if (mats != null)
|
||||
{
|
||||
foreach (Material mat in mats)
|
||||
{
|
||||
if(mat.HasProperty(TheToonShaderConstants.THETOONSHADER_IDENTIFIER_PROPERTY))
|
||||
{
|
||||
|
||||
if (!UnityToTTSShaderNameMapping.Values.Contains(mat.shader.name))
|
||||
{
|
||||
isCorrectShaderUsed = false;
|
||||
matListNotCorrectShader.Add(mat);
|
||||
}
|
||||
//if (mat.HasProperty(SeeThroughShader.SeeThroughShaderConstants.STS_SHADER_IDENTIFIER_PROPERTY))
|
||||
//{
|
||||
|
||||
//}
|
||||
//else
|
||||
//{
|
||||
|
||||
//}
|
||||
}
|
||||
else if (mat.HasProperty(SeeThroughShader.SeeThroughShaderConstants.STS_SHADER_IDENTIFIER_PROPERTY))
|
||||
{
|
||||
if (!UnityToSTSShaderNameMapping.Values.Contains(mat.shader.name))
|
||||
{
|
||||
isCorrectShaderUsed = false;
|
||||
matListNotCorrectShader.Add(mat);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
Debug.LogError("Reference mats are empty. Please check if all your materials are inside samples Resources/TTSxSTSMaterials");
|
||||
isCorrectShaderUsed = false;
|
||||
}
|
||||
|
||||
GUILayout.Label("Reference Materials Shader", grayHeaderStyle);
|
||||
if (isCorrectShaderUsed)
|
||||
{
|
||||
GUILayout.Label(unityVersionRenderPipelineShader.shaderFolder, bigTextStyle);
|
||||
}
|
||||
else
|
||||
{
|
||||
GUILayout.Label("One or more of your reference materials have the wrong shader assigned! \n Action is required!", bigErrorStyle);
|
||||
GUILayout.Label("Materials with incorrect shaders: ", bigErrorStyle);
|
||||
foreach (Material item in matListNotCorrectShader)
|
||||
{
|
||||
GUILayout.Label(item.name + " with shader: \n" + item.shader.name);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
EditorGUILayout.Space(10);
|
||||
|
||||
if (!isCorrectShaderUsed)
|
||||
{
|
||||
if ((unityVersionRenderPipelineShader.renderPipeline == "Built-in RP"))
|
||||
{
|
||||
autoAssignShader(mats, unityVersionRenderPipelineShader);
|
||||
}
|
||||
else if ((unityVersionRenderPipelineShader.renderPipeline == "URP"))
|
||||
{
|
||||
displayStepsForURPandHDRP(true);
|
||||
|
||||
}
|
||||
else if ((unityVersionRenderPipelineShader.renderPipeline == "HDRP"))
|
||||
{
|
||||
displayStepsForURPandHDRP(false);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
GUILayout.Label("Everything should work fine! No changes needed!", stepHeaderStyle);
|
||||
}
|
||||
|
||||
EditorGUILayout.Space(10);
|
||||
|
||||
//base.DrawDefaultInspector();
|
||||
EditorUtils.usualEnd();
|
||||
//EditorStyles.label.normal.textColor = oriCol;
|
||||
serializedObject.ApplyModifiedProperties();
|
||||
}
|
||||
void DoSetup()
|
||||
{
|
||||
m_LinkStyle = new GUIStyle(EditorStyles.label);
|
||||
m_LinkStyle.wordWrap = false;
|
||||
m_LinkStyle.stretchWidth = false;
|
||||
|
||||
headerStyle = new GUIStyle();
|
||||
headerStyle.alignment = TextAnchor.MiddleCenter;
|
||||
headerStyle.fontStyle = FontStyle.Bold;
|
||||
headerStyle.fontSize = 15;
|
||||
|
||||
grayHeaderStyle = new GUIStyle();
|
||||
grayHeaderStyle.fontSize = 14;
|
||||
grayHeaderStyle.alignment = TextAnchor.MiddleCenter;
|
||||
grayHeaderStyle.wordWrap = true;
|
||||
|
||||
|
||||
bigTextStyle = new GUIStyle();
|
||||
|
||||
bigTextStyle.fontStyle = FontStyle.Bold;
|
||||
bigTextStyle.fontSize = 15;
|
||||
bigTextStyle.alignment = TextAnchor.MiddleCenter;
|
||||
|
||||
bigErrorStyle = new GUIStyle();
|
||||
bigErrorStyle.fontStyle = FontStyle.Bold;
|
||||
bigErrorStyle.fontSize = 13;
|
||||
bigErrorStyle.alignment = TextAnchor.MiddleCenter;
|
||||
bigErrorStyle.wordWrap = true;
|
||||
|
||||
textAreaStyle = new GUIStyle();
|
||||
|
||||
textAreaStyle.padding.left = 20;
|
||||
textAreaStyle.padding.right = 20;
|
||||
//textAreaStyle.fontStyle = FontStyle.Bold;
|
||||
textAreaStyle.wordWrap = true;
|
||||
textAreaStyle.fontSize = 15;
|
||||
textAreaStyle.richText = true;
|
||||
|
||||
textAreaBoldStyle = new GUIStyle();
|
||||
textAreaBoldStyle.normal.textColor = Color.white;
|
||||
textAreaBoldStyle.padding.left = 20;
|
||||
textAreaBoldStyle.padding.right = 20;
|
||||
textAreaBoldStyle.fontStyle = FontStyle.Bold;
|
||||
textAreaBoldStyle.wordWrap = true;
|
||||
textAreaBoldStyle.fontSize = 15;
|
||||
|
||||
stepHeaderStyle = new GUIStyle();
|
||||
stepHeaderStyle.fontStyle = FontStyle.Bold;
|
||||
stepHeaderStyle.alignment = TextAnchor.MiddleCenter;
|
||||
//bigTextStyle2.fontSize = 16;
|
||||
centerLabelStyle = new GUIStyle();
|
||||
centerLabelStyle.normal.textColor = Color.gray;
|
||||
centerLabelStyle.alignment = TextAnchor.MiddleCenter;
|
||||
|
||||
//textColor = Color.white;
|
||||
//oriCol = EditorStyles.label.normal.textColor;
|
||||
|
||||
step2TextStyle = new GUIStyle();
|
||||
|
||||
step2TextStyle.fontSize = 15;
|
||||
step2TextStyle.padding.left = 20;
|
||||
step2TextStyle.padding.right = 20;
|
||||
step2TextStyle.alignment = TextAnchor.MiddleCenter;
|
||||
step2TextStyle.wordWrap = true;
|
||||
|
||||
|
||||
if (EditorGUIUtility.isProSkin)
|
||||
{
|
||||
|
||||
m_LinkStyle.normal.textColor = new Color(1f, 0.3f, 0.3f, 1);
|
||||
headerStyle.normal.textColor = Color.white;
|
||||
grayHeaderStyle.normal.textColor = new Color(0.7f, 0.7f, 0.7f, 1);
|
||||
textAreaStyle.normal.textColor = Color.white;
|
||||
bigErrorStyle.normal.textColor = new Color(1f, 0.3f, 0.3f, 1);
|
||||
richColor = "silver";
|
||||
stepHeaderStyle.normal.textColor = Color.white;
|
||||
step2TextStyle.normal.textColor = new Color(0.7f, 0.7f, 0.7f, 1);
|
||||
bigTextStyle.normal.textColor = Color.white;
|
||||
buttonColor = new Color(0.6f, 0.6f, 0.6f, 1);
|
||||
}
|
||||
else
|
||||
{
|
||||
m_LinkStyle.normal.textColor = new Color(1f, 0.3f, 0.3f, 1);
|
||||
headerStyle.normal.textColor = Color.black;
|
||||
grayHeaderStyle.normal.textColor = new Color(0.2f, 0.2f, 0.2f, 1);
|
||||
textAreaStyle.normal.textColor = Color.black;
|
||||
bigErrorStyle.normal.textColor = new Color(0.6f, 0.0f, 0.0f, 1);
|
||||
richColor = "#161616";
|
||||
stepHeaderStyle.normal.textColor = Color.black;
|
||||
step2TextStyle.normal.textColor = Color.black;
|
||||
bigTextStyle.normal.textColor = Color.black;
|
||||
buttonColor = new Color(0.8f, 0.8f, 0.8f, 1);
|
||||
}
|
||||
}
|
||||
private void autoAssignShader(Material[] mats, TheToonShader.ShaderUtils.UnityVersionRenderPipelineShaderInfo unityVersionRenderPipelineShader)
|
||||
{
|
||||
GUILayout.Label("Automatically assign the correct shader to your Reference Materials", step2TextStyle);
|
||||
GUILayout.BeginHorizontal();
|
||||
GUILayout.FlexibleSpace();
|
||||
Color originalBackgroundColor = GUI.backgroundColor;
|
||||
GUI.backgroundColor = buttonColor;
|
||||
if (GUILayout.Button("Assign Shader", GUILayout.Width(100), GUILayout.Height(30)))
|
||||
{
|
||||
if (mats != null)
|
||||
{
|
||||
foreach (Material mat in mats)
|
||||
{
|
||||
|
||||
|
||||
if (mat.HasProperty(TheToonShaderConstants.THETOONSHADER_IDENTIFIER_PROPERTY))
|
||||
{
|
||||
if (!UnityToTTSShaderMapping.Values.Contains(mat.shader))
|
||||
{
|
||||
if (mat.HasProperty(SeeThroughShader.SeeThroughShaderConstants.STS_SHADER_IDENTIFIER_PROPERTY))
|
||||
{
|
||||
if (mat.GetFloat("_EnableOutline") == 1.0)
|
||||
{
|
||||
mat.shader = UnityToTTSShaderMapping.TryGetValue(mat.shader.name, out Shader value) ? value : UnityToTTSShaderMapping[TheToonShaderConstants.TTS_SHADER_STS_WITH_OUTLINE_KEY];
|
||||
}
|
||||
else
|
||||
{
|
||||
mat.shader = UnityToTTSShaderMapping.TryGetValue(mat.shader.name, out Shader value) ? value : UnityToTTSShaderMapping[TheToonShaderConstants.TTS_SHADER_STS_KEY];
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
if (mat.GetFloat("_EnableOutline") == 1.0)
|
||||
{
|
||||
mat.shader = UnityToTTSShaderMapping.TryGetValue(mat.shader.name, out Shader value) ? value : UnityToTTSShaderMapping[TheToonShaderConstants.TTS_SHADER_STANDARD_WITH_OUTLINE_KEY];
|
||||
}
|
||||
else
|
||||
{
|
||||
mat.shader = UnityToTTSShaderMapping.TryGetValue(mat.shader.name, out Shader value) ? value : UnityToTTSShaderMapping[TheToonShaderConstants.TTS_SHADER_STANDARD_KEY];
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
else if (mat.HasProperty(SeeThroughShader.SeeThroughShaderConstants.STS_SHADER_IDENTIFIER_PROPERTY))
|
||||
{
|
||||
if (!UnityToSTSShaderNameMapping.Values.Contains(mat.shader.name))
|
||||
{
|
||||
//if (mat.shader.name != unityVersionRenderPipelineShader.versionAndRPCorrectedShader)
|
||||
if (!UnityToSTSShaderMapping.Values.Contains(mat.shader))
|
||||
{
|
||||
mat.shader = UnityToSTSShaderMapping.TryGetValue(mat.shader.name, out Shader value) ? value : UnityToSTSShaderMapping[SeeThroughShaderConstants.STS_SHADER_DEFAULT_KEY];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
Debug.LogError("Reference mats are empty. Can NOT do auto assign!");
|
||||
}
|
||||
}
|
||||
GUI.backgroundColor = originalBackgroundColor;
|
||||
GUILayout.FlexibleSpace();
|
||||
GUILayout.EndHorizontal();
|
||||
}
|
||||
|
||||
|
||||
private void displayStepsForURPandHDRP(bool isURP)
|
||||
{
|
||||
|
||||
//string step1Text;
|
||||
//string link;
|
||||
//string commonNote = "\n\nIMPORTANT: <color=" + richColor + "> In case you added this asset to an existing project, please select all the materials inside </color>" +
|
||||
|
||||
// "\n\nAssets/Samples/The Toon Shader/1.X.X/The Toon Shader Examples/Materials/" +
|
||||
// "\n\nAssets/Samples/The Toon Shader/1.X.X/The Toon Shader Examples/Models/TempleForToon/" +
|
||||
// "\n\n<color=" + richColor + "> and use </color> ";
|
||||
//if (isURP)
|
||||
//{
|
||||
// step1Text = "<color=" + richColor + ">First you need to convert all standard shaders to Lit shaders using the tool provided by unity. For this go to </color> " +
|
||||
// "<b>Edit > Render Pipeline > Universal Render Pipeline</b> <color=" + richColor + ">and then select</color> <b>Upgrade Project Materials to URP Materials</b>." +
|
||||
// commonNote +
|
||||
// "<b>Upgrade Selected Materials to URP Materials</b> <color=" + richColor + ">instead!</color>";
|
||||
// link = "https://docs.unity3d.com/Packages/com.unity.render-pipelines.universal@10.7/manual/upgrading-your-shaders.html";
|
||||
//}
|
||||
//else
|
||||
//{
|
||||
// step1Text = "<color=" + richColor + ">First you need to convert all standard shaders to Lit shaders using the tool provided by unity. For this go to </color> " +
|
||||
// "<b>Edit > Render Pipeline > High Definition RP</b> <color=" + richColor + ">and then select</color> <b>Upgrade Project Materials to High Definition Materials</b>" +
|
||||
// commonNote + "<b>Upgrade Selected Materials to High Definition Materials</b> <color=" + richColor + ">instead!</color>";
|
||||
// link = "https://docs.unity3d.com/Packages/com.unity.render-pipelines.high-definition@10.7/manual/Upgrading-To-HDRP.html";
|
||||
//}
|
||||
Rect rect = EditorGUILayout.BeginVertical();
|
||||
rect.width -= 20;
|
||||
rect.x += 10;
|
||||
////GUI.Box(rect, GUIContent.none);
|
||||
|
||||
//if (EditorGUIUtility.isProSkin)
|
||||
//{
|
||||
// GUI.Box(rect, GUIContent.none);
|
||||
//}
|
||||
//else
|
||||
//{
|
||||
// EditorUtils.DrawBox(rect, new Color(0.8f, 0.8f, 0.8f, 1));
|
||||
//}
|
||||
//GUILayout.Label("STEP 1:", stepHeaderStyle);
|
||||
//EditorGUILayout.Space(5);
|
||||
//GUILayout.TextArea(step1Text, textAreaStyle);
|
||||
//if (LinkLabel(new GUIContent("Unity Documentation")))
|
||||
//{
|
||||
// Application.OpenURL(link);
|
||||
//}
|
||||
////GUILayout.FlexibleSpace();
|
||||
|
||||
//EditorGUILayout.Space(5);
|
||||
//GUILayout.Label("Please finish step 1 before you do step 2!", centerLabelStyle);
|
||||
//EditorGUILayout.Space(15);
|
||||
//EditorUtils.DrawUILineCenter(new Color(0.2f, 0.2f, 0.2f, 1));
|
||||
|
||||
EditorGUILayout.Space(15);
|
||||
//GUILayout.Label("STEP 1:", stepHeaderStyle);
|
||||
EditorGUILayout.Space(5);
|
||||
autoAssignShader(mats, unityVersionRenderPipelineShader);
|
||||
EditorGUILayout.Space(15);
|
||||
EditorGUILayout.EndVertical();
|
||||
//EditorGUILayout.Space(100);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
#endif
|
||||
+18
@@ -0,0 +1,18 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 833cd64d1a1171844afeb4eb8d5d061e
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 269238
|
||||
packageName: The Toon Shader
|
||||
packageVersion: 1.4.2
|
||||
assetPath: Packages/com.shadercrew.the-toon-shader.3d/Scripts/Editor/Demo/RPHelperEditorToonSTS.cs
|
||||
uploadId: 919972
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: e8525b9e08e07834eb695f50b353be5d
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: f89e1bcd519f2f94d890414b627e563d
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
+44
@@ -0,0 +1,44 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!114 &11400000
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: abb55f1f10b566340bf309a09598fc57, type: 3}
|
||||
m_Name: 07_Hatching_PsychedelicVisions_TTS_RefMatLight
|
||||
m_EditorClassIdentifier:
|
||||
gradient:
|
||||
serializedVersion: 2
|
||||
key0: {r: 0, g: 0.5205393, b: 1, a: 1}
|
||||
key1: {r: 0, g: 0.078727365, b: 0.1509434, a: 1}
|
||||
key2: {r: 0.9130574, g: 0.045257032, b: 0.2563889, a: 0}
|
||||
key3: {r: 1, g: 0.8608516, b: 0, a: 0}
|
||||
key4: {r: 1, g: 0.14244922, b: 0, a: 0}
|
||||
key5: {r: 1, g: 0, b: 0.89338493, a: 0}
|
||||
key6: {r: 0, g: 0, b: 0, a: 0}
|
||||
key7: {r: 0, g: 0, b: 0, a: 0}
|
||||
ctime0: 27563
|
||||
ctime1: 31997
|
||||
ctime2: 36044
|
||||
ctime3: 58018
|
||||
ctime4: 53970
|
||||
ctime5: 59560
|
||||
ctime6: 0
|
||||
ctime7: 0
|
||||
atime0: 0
|
||||
atime1: 65535
|
||||
atime2: 0
|
||||
atime3: 0
|
||||
atime4: 0
|
||||
atime5: 0
|
||||
atime6: 0
|
||||
atime7: 0
|
||||
m_Mode: 0
|
||||
m_NumColorKeys: 4
|
||||
m_NumAlphaKeys: 2
|
||||
isBakedToTexture: 1
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 01a14e01d1fd4e34289cfaab1062927f
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 11400000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 269238
|
||||
packageName: The Toon Shader
|
||||
packageVersion: 1.4.2
|
||||
assetPath: Packages/com.shadercrew.the-toon-shader.3d/Scripts/Editor/Resources/GradientScriptableObjects/07_Hatching_PsychedelicVisions_TTS_RefMatLight.asset
|
||||
uploadId: 919972
|
||||
+44
@@ -0,0 +1,44 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!114 &11400000
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: abb55f1f10b566340bf309a09598fc57, type: 3}
|
||||
m_Name: HatchingXHalftone_00_CaliforniaSunrise_TTS_RefMatLight
|
||||
m_EditorClassIdentifier:
|
||||
gradient:
|
||||
serializedVersion: 2
|
||||
key0: {r: 0, g: 0.5205393, b: 1, a: 1}
|
||||
key1: {r: 0.9130574, g: 0.045257032, b: 0.2563889, a: 1}
|
||||
key2: {r: 1, g: 0, b: 0.89338493, a: 0}
|
||||
key3: {r: 1, g: 0.8608516, b: 0, a: 0}
|
||||
key4: {r: 0, g: 0, b: 0, a: 0}
|
||||
key5: {r: 0, g: 0, b: 0, a: 0}
|
||||
key6: {r: 0, g: 0, b: 0, a: 0}
|
||||
key7: {r: 0, g: 0, b: 0, a: 0}
|
||||
ctime0: 31997
|
||||
ctime1: 35466
|
||||
ctime2: 48959
|
||||
ctime3: 65535
|
||||
ctime4: 0
|
||||
ctime5: 0
|
||||
ctime6: 0
|
||||
ctime7: 0
|
||||
atime0: 0
|
||||
atime1: 65535
|
||||
atime2: 0
|
||||
atime3: 0
|
||||
atime4: 0
|
||||
atime5: 0
|
||||
atime6: 0
|
||||
atime7: 0
|
||||
m_Mode: 0
|
||||
m_NumColorKeys: 4
|
||||
m_NumAlphaKeys: 2
|
||||
isBakedToTexture: 1
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 219e20f223847824180bd98c10d9b76b
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 11400000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 269238
|
||||
packageName: The Toon Shader
|
||||
packageVersion: 1.4.2
|
||||
assetPath: Packages/com.shadercrew.the-toon-shader.3d/Scripts/Editor/Resources/GradientScriptableObjects/HatchingXHalftone_00_CaliforniaSunrise_TTS_RefMatLight.asset
|
||||
uploadId: 919972
|
||||
+44
@@ -0,0 +1,44 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!114 &11400000
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: abb55f1f10b566340bf309a09598fc57, type: 3}
|
||||
m_Name: NoStyling_05_ColorBasedGradient1_TTS_RefMatLight
|
||||
m_EditorClassIdentifier:
|
||||
gradient:
|
||||
serializedVersion: 2
|
||||
key0: {r: 0.4245283, g: 0.006007465, b: 0.042794917, a: 1}
|
||||
key1: {r: 0, g: 0.46160936, b: 1, a: 1}
|
||||
key2: {r: 0, g: 0, b: 0, a: 0}
|
||||
key3: {r: 1, g: 0.4631136, b: 0, a: 0}
|
||||
key4: {r: 1, g: 0.6925416, b: 0, a: 0}
|
||||
key5: {r: 1, g: 1, b: 1, a: 0}
|
||||
key6: {r: 0, g: 0, b: 0, a: 0}
|
||||
key7: {r: 0, g: 0, b: 0, a: 0}
|
||||
ctime0: 0
|
||||
ctime1: 21588
|
||||
ctime2: 32960
|
||||
ctime3: 49922
|
||||
ctime4: 58211
|
||||
ctime5: 65535
|
||||
ctime6: 0
|
||||
ctime7: 0
|
||||
atime0: 0
|
||||
atime1: 65535
|
||||
atime2: 0
|
||||
atime3: 0
|
||||
atime4: 0
|
||||
atime5: 0
|
||||
atime6: 0
|
||||
atime7: 0
|
||||
m_Mode: 0
|
||||
m_NumColorKeys: 6
|
||||
m_NumAlphaKeys: 2
|
||||
isBakedToTexture: 1
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
fileFormatVersion: 2
|
||||
guid: b8019300e2f66244c8b16dba83376cbd
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 11400000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 269238
|
||||
packageName: The Toon Shader
|
||||
packageVersion: 1.4.2
|
||||
assetPath: Packages/com.shadercrew.the-toon-shader.3d/Scripts/Editor/Resources/GradientScriptableObjects/NoStyling_05_ColorBasedGradient1_TTS_RefMatLight.asset
|
||||
uploadId: 919972
|
||||
+44
@@ -0,0 +1,44 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!114 &11400000
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: abb55f1f10b566340bf309a09598fc57, type: 3}
|
||||
m_Name: NoStyling_06_ColorBasedGradient2_TTS_RefMatLight
|
||||
m_EditorClassIdentifier:
|
||||
gradient:
|
||||
serializedVersion: 2
|
||||
key0: {r: 1, g: 1, b: 1, a: 1}
|
||||
key1: {r: 1, g: 1, b: 1, a: 1}
|
||||
key2: {r: 0.014705882, g: 0.014705882, b: 0.014705882, a: 0}
|
||||
key3: {r: 0, g: 0, b: 0, a: 0}
|
||||
key4: {r: 0, g: 0, b: 0, a: 0}
|
||||
key5: {r: 0, g: 0, b: 0, a: 0}
|
||||
key6: {r: 0, g: 0, b: 0, a: 0}
|
||||
key7: {r: 0, g: 0, b: 0, a: 0}
|
||||
ctime0: 0
|
||||
ctime1: 33924
|
||||
ctime2: 65535
|
||||
ctime3: 0
|
||||
ctime4: 0
|
||||
ctime5: 0
|
||||
ctime6: 0
|
||||
ctime7: 0
|
||||
atime0: 0
|
||||
atime1: 65535
|
||||
atime2: 0
|
||||
atime3: 0
|
||||
atime4: 0
|
||||
atime5: 0
|
||||
atime6: 0
|
||||
atime7: 0
|
||||
m_Mode: 0
|
||||
m_NumColorKeys: 3
|
||||
m_NumAlphaKeys: 2
|
||||
isBakedToTexture: 1
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
fileFormatVersion: 2
|
||||
guid: c57bdc59cf5297b4ebedc0662e74ea59
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 11400000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 269238
|
||||
packageName: The Toon Shader
|
||||
packageVersion: 1.4.2
|
||||
assetPath: Packages/com.shadercrew.the-toon-shader.3d/Scripts/Editor/Resources/GradientScriptableObjects/NoStyling_06_ColorBasedGradient2_TTS_RefMatLight.asset
|
||||
uploadId: 919972
|
||||
+44
@@ -0,0 +1,44 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!114 &11400000
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: abb55f1f10b566340bf309a09598fc57, type: 3}
|
||||
m_Name: NoStyling_07_ColorBasedGradient3_TTS_RefMatLight
|
||||
m_EditorClassIdentifier:
|
||||
gradient:
|
||||
serializedVersion: 2
|
||||
key0: {r: 0, g: 0, b: 0, a: 1}
|
||||
key1: {r: 1, g: 1, b: 1, a: 1}
|
||||
key2: {r: 0, g: 0.4932413, b: 1, a: 0}
|
||||
key3: {r: 1, g: 0.112586915, b: 0.05098039, a: 0}
|
||||
key4: {r: 0, g: 0, b: 0, a: 0}
|
||||
key5: {r: 0, g: 0.5243557, b: 0.9843137, a: 0}
|
||||
key6: {r: 0, g: 0, b: 0, a: 0}
|
||||
key7: {r: 1, g: 1, b: 1, a: 0}
|
||||
ctime0: 22166
|
||||
ctime1: 24672
|
||||
ctime2: 29684
|
||||
ctime3: 36044
|
||||
ctime4: 39514
|
||||
ctime5: 44333
|
||||
ctime6: 53006
|
||||
ctime7: 55512
|
||||
atime0: 0
|
||||
atime1: 65535
|
||||
atime2: 0
|
||||
atime3: 0
|
||||
atime4: 0
|
||||
atime5: 0
|
||||
atime6: 0
|
||||
atime7: 0
|
||||
m_Mode: 0
|
||||
m_NumColorKeys: 8
|
||||
m_NumAlphaKeys: 2
|
||||
isBakedToTexture: 1
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 9a5aa29bd84fa8e4bb8a9433b93e549e
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 11400000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 269238
|
||||
packageName: The Toon Shader
|
||||
packageVersion: 1.4.2
|
||||
assetPath: Packages/com.shadercrew.the-toon-shader.3d/Scripts/Editor/Resources/GradientScriptableObjects/NoStyling_07_ColorBasedGradient3_TTS_RefMatLight.asset
|
||||
uploadId: 919972
|
||||
+44
@@ -0,0 +1,44 @@
|
||||
{
|
||||
"name": "ShaderCrew.TheToonShader.3D.Editor",
|
||||
"rootNamespace": "",
|
||||
"references": [
|
||||
"GUID:78bd2ddd6e276394a9615c203e574844",
|
||||
"GUID:3eae0364be2026648bf74846acb8a731",
|
||||
"GUID:be0903cd8e1546f498710afdc59db5eb",
|
||||
"GUID:457756d89b35d2941b3e7b37b4ece6f1",
|
||||
"GUID:df380645f10b7bc4b97d4f5eb6303d95",
|
||||
"GUID:c579267770062bf448e75eb160330b7f",
|
||||
"GUID:1e1df38bdb063c04fb8d144480b35d37",
|
||||
"GUID:6a37219044b169f4fa7e60a15e3e8279",
|
||||
"GUID:83e2004185752be4684414733d22e0e7",
|
||||
"GUID:771e886dc8ff2624f9fb1e98ab52afc2",
|
||||
"GUID:41ed22f5c389313468c5d7b2eff1a2c6"
|
||||
],
|
||||
"includePlatforms": [
|
||||
"Editor"
|
||||
],
|
||||
"excludePlatforms": [],
|
||||
"allowUnsafeCode": false,
|
||||
"overrideReferences": true,
|
||||
"precompiledReferences": [],
|
||||
"autoReferenced": true,
|
||||
"defineConstraints": [],
|
||||
"versionDefines": [
|
||||
{
|
||||
"name": "com.unity.render-pipelines.universal",
|
||||
"expression": "",
|
||||
"define": "USING_URP"
|
||||
},
|
||||
{
|
||||
"name": "com.unity.render-pipelines.high-definition",
|
||||
"expression": "",
|
||||
"define": "USING_HDRP"
|
||||
},
|
||||
{
|
||||
"name": "com.shadercrew.seethroughshader.core",
|
||||
"expression": "",
|
||||
"define": "USING_SEE_THROUGH_SHADER"
|
||||
}
|
||||
],
|
||||
"noEngineReferences": false
|
||||
}
|
||||
+14
@@ -0,0 +1,14 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 82f1604cc6c567146849908ed4b6a7b4
|
||||
AssemblyDefinitionImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 269238
|
||||
packageName: The Toon Shader
|
||||
packageVersion: 1.4.2
|
||||
assetPath: Packages/com.shadercrew.the-toon-shader.3d/Scripts/Editor/ShaderCrew.TheToonShader.3D.Editor.asmdef
|
||||
uploadId: 919972
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 769ba0368327e094c9b62cb884ceb111
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: e8f10322d452de84fbc52dc37ee9da79
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
BIN
Binary file not shown.
+134
@@ -0,0 +1,134 @@
|
||||
fileFormatVersion: 2
|
||||
guid: c1baff8b1609fcd49b607d7e36eb2ea0
|
||||
TextureImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 13
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 1
|
||||
sRGBTexture: 1
|
||||
linearTexture: 0
|
||||
fadeOut: 0
|
||||
borderMipMap: 0
|
||||
mipMapsPreserveCoverage: 0
|
||||
alphaTestReferenceValue: 0.5
|
||||
mipMapFadeDistanceStart: 1
|
||||
mipMapFadeDistanceEnd: 3
|
||||
bumpmap:
|
||||
convertToNormalMap: 0
|
||||
externalNormalMap: 0
|
||||
heightScale: 0.25
|
||||
normalMapFilter: 0
|
||||
flipGreenChannel: 0
|
||||
isReadable: 1
|
||||
streamingMipmaps: 0
|
||||
streamingMipmapsPriority: 0
|
||||
vTOnly: 0
|
||||
ignoreMipmapLimit: 0
|
||||
grayScaleToAlpha: 0
|
||||
generateCubemap: 6
|
||||
cubemapConvolution: 0
|
||||
seamlessCubemap: 0
|
||||
textureFormat: 1
|
||||
maxTextureSize: 2048
|
||||
textureSettings:
|
||||
serializedVersion: 2
|
||||
filterMode: 1
|
||||
aniso: 1
|
||||
mipBias: 0
|
||||
wrapU: 0
|
||||
wrapV: 0
|
||||
wrapW: 0
|
||||
nPOTScale: 1
|
||||
lightmap: 0
|
||||
compressionQuality: 50
|
||||
spriteMode: 0
|
||||
spriteExtrude: 1
|
||||
spriteMeshType: 1
|
||||
alignment: 0
|
||||
spritePivot: {x: 0.5, y: 0.5}
|
||||
spritePixelsToUnits: 100
|
||||
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
||||
spriteGenerateFallbackPhysicsShape: 1
|
||||
alphaUsage: 1
|
||||
alphaIsTransparency: 0
|
||||
spriteTessellationDetail: -1
|
||||
textureType: 0
|
||||
textureShape: 1
|
||||
singleChannelComponent: 0
|
||||
flipbookRows: 1
|
||||
flipbookColumns: 1
|
||||
maxTextureSizeSet: 0
|
||||
compressionQualitySet: 0
|
||||
textureFormatSet: 0
|
||||
ignorePngGamma: 0
|
||||
applyGammaDecoding: 0
|
||||
swizzle: 50462976
|
||||
cookieLightType: 0
|
||||
platformSettings:
|
||||
- serializedVersion: 3
|
||||
buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 3
|
||||
buildTarget: Standalone
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 3
|
||||
buildTarget: Android
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites: []
|
||||
outline: []
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID:
|
||||
internalID: 0
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 269238
|
||||
packageName: The Toon Shader
|
||||
packageVersion: 1.4.2
|
||||
assetPath: Packages/com.shadercrew.the-toon-shader.3d/Scripts/Resources/Gradients/07_Hatching_PsychedelicVisions_TTS_RefMat.png
|
||||
uploadId: 919972
|
||||
BIN
Binary file not shown.
+134
@@ -0,0 +1,134 @@
|
||||
fileFormatVersion: 2
|
||||
guid: dedd17e1ab575e144bedb1baa5b58665
|
||||
TextureImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 13
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 1
|
||||
sRGBTexture: 1
|
||||
linearTexture: 0
|
||||
fadeOut: 0
|
||||
borderMipMap: 0
|
||||
mipMapsPreserveCoverage: 0
|
||||
alphaTestReferenceValue: 0.5
|
||||
mipMapFadeDistanceStart: 1
|
||||
mipMapFadeDistanceEnd: 3
|
||||
bumpmap:
|
||||
convertToNormalMap: 0
|
||||
externalNormalMap: 0
|
||||
heightScale: 0.25
|
||||
normalMapFilter: 0
|
||||
flipGreenChannel: 0
|
||||
isReadable: 1
|
||||
streamingMipmaps: 0
|
||||
streamingMipmapsPriority: 0
|
||||
vTOnly: 0
|
||||
ignoreMipmapLimit: 0
|
||||
grayScaleToAlpha: 0
|
||||
generateCubemap: 6
|
||||
cubemapConvolution: 0
|
||||
seamlessCubemap: 0
|
||||
textureFormat: 1
|
||||
maxTextureSize: 2048
|
||||
textureSettings:
|
||||
serializedVersion: 2
|
||||
filterMode: 1
|
||||
aniso: 1
|
||||
mipBias: 0
|
||||
wrapU: 0
|
||||
wrapV: 0
|
||||
wrapW: 0
|
||||
nPOTScale: 1
|
||||
lightmap: 0
|
||||
compressionQuality: 50
|
||||
spriteMode: 0
|
||||
spriteExtrude: 1
|
||||
spriteMeshType: 1
|
||||
alignment: 0
|
||||
spritePivot: {x: 0.5, y: 0.5}
|
||||
spritePixelsToUnits: 100
|
||||
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
||||
spriteGenerateFallbackPhysicsShape: 1
|
||||
alphaUsage: 1
|
||||
alphaIsTransparency: 0
|
||||
spriteTessellationDetail: -1
|
||||
textureType: 0
|
||||
textureShape: 1
|
||||
singleChannelComponent: 0
|
||||
flipbookRows: 1
|
||||
flipbookColumns: 1
|
||||
maxTextureSizeSet: 0
|
||||
compressionQualitySet: 0
|
||||
textureFormatSet: 0
|
||||
ignorePngGamma: 0
|
||||
applyGammaDecoding: 0
|
||||
swizzle: 50462976
|
||||
cookieLightType: 0
|
||||
platformSettings:
|
||||
- serializedVersion: 3
|
||||
buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 3
|
||||
buildTarget: Standalone
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 3
|
||||
buildTarget: Android
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites: []
|
||||
outline: []
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID:
|
||||
internalID: 0
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 269238
|
||||
packageName: The Toon Shader
|
||||
packageVersion: 1.4.2
|
||||
assetPath: Packages/com.shadercrew.the-toon-shader.3d/Scripts/Resources/Gradients/HatchingXHalftone_00_CaliforniaSunrise_TTS_RefMat.png
|
||||
uploadId: 919972
|
||||
BIN
Binary file not shown.
+134
@@ -0,0 +1,134 @@
|
||||
fileFormatVersion: 2
|
||||
guid: bac2d90f6324edb46aed875d9d7963ee
|
||||
TextureImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 13
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 1
|
||||
sRGBTexture: 1
|
||||
linearTexture: 0
|
||||
fadeOut: 0
|
||||
borderMipMap: 0
|
||||
mipMapsPreserveCoverage: 0
|
||||
alphaTestReferenceValue: 0.5
|
||||
mipMapFadeDistanceStart: 1
|
||||
mipMapFadeDistanceEnd: 3
|
||||
bumpmap:
|
||||
convertToNormalMap: 0
|
||||
externalNormalMap: 0
|
||||
heightScale: 0.25
|
||||
normalMapFilter: 0
|
||||
flipGreenChannel: 0
|
||||
isReadable: 1
|
||||
streamingMipmaps: 0
|
||||
streamingMipmapsPriority: 0
|
||||
vTOnly: 0
|
||||
ignoreMipmapLimit: 0
|
||||
grayScaleToAlpha: 0
|
||||
generateCubemap: 6
|
||||
cubemapConvolution: 0
|
||||
seamlessCubemap: 0
|
||||
textureFormat: 1
|
||||
maxTextureSize: 2048
|
||||
textureSettings:
|
||||
serializedVersion: 2
|
||||
filterMode: 1
|
||||
aniso: 1
|
||||
mipBias: 0
|
||||
wrapU: 0
|
||||
wrapV: 0
|
||||
wrapW: 0
|
||||
nPOTScale: 1
|
||||
lightmap: 0
|
||||
compressionQuality: 50
|
||||
spriteMode: 0
|
||||
spriteExtrude: 1
|
||||
spriteMeshType: 1
|
||||
alignment: 0
|
||||
spritePivot: {x: 0.5, y: 0.5}
|
||||
spritePixelsToUnits: 100
|
||||
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
||||
spriteGenerateFallbackPhysicsShape: 1
|
||||
alphaUsage: 1
|
||||
alphaIsTransparency: 0
|
||||
spriteTessellationDetail: -1
|
||||
textureType: 0
|
||||
textureShape: 1
|
||||
singleChannelComponent: 0
|
||||
flipbookRows: 1
|
||||
flipbookColumns: 1
|
||||
maxTextureSizeSet: 0
|
||||
compressionQualitySet: 0
|
||||
textureFormatSet: 0
|
||||
ignorePngGamma: 0
|
||||
applyGammaDecoding: 0
|
||||
swizzle: 50462976
|
||||
cookieLightType: 0
|
||||
platformSettings:
|
||||
- serializedVersion: 3
|
||||
buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 3
|
||||
buildTarget: Standalone
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 3
|
||||
buildTarget: Android
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites: []
|
||||
outline: []
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID:
|
||||
internalID: 0
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 269238
|
||||
packageName: The Toon Shader
|
||||
packageVersion: 1.4.2
|
||||
assetPath: Packages/com.shadercrew.the-toon-shader.3d/Scripts/Resources/Gradients/NoStyling_05_ColorBasedGradient1_TTS_RefMat.png
|
||||
uploadId: 919972
|
||||
BIN
Binary file not shown.
+134
@@ -0,0 +1,134 @@
|
||||
fileFormatVersion: 2
|
||||
guid: eab01850233e70645a998a3781a4f2b3
|
||||
TextureImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 13
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 1
|
||||
sRGBTexture: 1
|
||||
linearTexture: 0
|
||||
fadeOut: 0
|
||||
borderMipMap: 0
|
||||
mipMapsPreserveCoverage: 0
|
||||
alphaTestReferenceValue: 0.5
|
||||
mipMapFadeDistanceStart: 1
|
||||
mipMapFadeDistanceEnd: 3
|
||||
bumpmap:
|
||||
convertToNormalMap: 0
|
||||
externalNormalMap: 0
|
||||
heightScale: 0.25
|
||||
normalMapFilter: 0
|
||||
flipGreenChannel: 0
|
||||
isReadable: 1
|
||||
streamingMipmaps: 0
|
||||
streamingMipmapsPriority: 0
|
||||
vTOnly: 0
|
||||
ignoreMipmapLimit: 0
|
||||
grayScaleToAlpha: 0
|
||||
generateCubemap: 6
|
||||
cubemapConvolution: 0
|
||||
seamlessCubemap: 0
|
||||
textureFormat: 1
|
||||
maxTextureSize: 2048
|
||||
textureSettings:
|
||||
serializedVersion: 2
|
||||
filterMode: 1
|
||||
aniso: 1
|
||||
mipBias: 0
|
||||
wrapU: 0
|
||||
wrapV: 0
|
||||
wrapW: 0
|
||||
nPOTScale: 1
|
||||
lightmap: 0
|
||||
compressionQuality: 50
|
||||
spriteMode: 0
|
||||
spriteExtrude: 1
|
||||
spriteMeshType: 1
|
||||
alignment: 0
|
||||
spritePivot: {x: 0.5, y: 0.5}
|
||||
spritePixelsToUnits: 100
|
||||
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
||||
spriteGenerateFallbackPhysicsShape: 1
|
||||
alphaUsage: 1
|
||||
alphaIsTransparency: 0
|
||||
spriteTessellationDetail: -1
|
||||
textureType: 0
|
||||
textureShape: 1
|
||||
singleChannelComponent: 0
|
||||
flipbookRows: 1
|
||||
flipbookColumns: 1
|
||||
maxTextureSizeSet: 0
|
||||
compressionQualitySet: 0
|
||||
textureFormatSet: 0
|
||||
ignorePngGamma: 0
|
||||
applyGammaDecoding: 0
|
||||
swizzle: 50462976
|
||||
cookieLightType: 0
|
||||
platformSettings:
|
||||
- serializedVersion: 3
|
||||
buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 3
|
||||
buildTarget: Standalone
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 3
|
||||
buildTarget: Android
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites: []
|
||||
outline: []
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID:
|
||||
internalID: 0
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 269238
|
||||
packageName: The Toon Shader
|
||||
packageVersion: 1.4.2
|
||||
assetPath: Packages/com.shadercrew.the-toon-shader.3d/Scripts/Resources/Gradients/NoStyling_06_ColorBasedGradient2_TTS_RefMat.png
|
||||
uploadId: 919972
|
||||
BIN
Binary file not shown.
+134
@@ -0,0 +1,134 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 502e7a2f1d5083d479302d81b4f9c488
|
||||
TextureImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 13
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 1
|
||||
sRGBTexture: 1
|
||||
linearTexture: 0
|
||||
fadeOut: 0
|
||||
borderMipMap: 0
|
||||
mipMapsPreserveCoverage: 0
|
||||
alphaTestReferenceValue: 0.5
|
||||
mipMapFadeDistanceStart: 1
|
||||
mipMapFadeDistanceEnd: 3
|
||||
bumpmap:
|
||||
convertToNormalMap: 0
|
||||
externalNormalMap: 0
|
||||
heightScale: 0.25
|
||||
normalMapFilter: 0
|
||||
flipGreenChannel: 0
|
||||
isReadable: 1
|
||||
streamingMipmaps: 0
|
||||
streamingMipmapsPriority: 0
|
||||
vTOnly: 0
|
||||
ignoreMipmapLimit: 0
|
||||
grayScaleToAlpha: 0
|
||||
generateCubemap: 6
|
||||
cubemapConvolution: 0
|
||||
seamlessCubemap: 0
|
||||
textureFormat: 1
|
||||
maxTextureSize: 2048
|
||||
textureSettings:
|
||||
serializedVersion: 2
|
||||
filterMode: 1
|
||||
aniso: 1
|
||||
mipBias: 0
|
||||
wrapU: 0
|
||||
wrapV: 0
|
||||
wrapW: 0
|
||||
nPOTScale: 1
|
||||
lightmap: 0
|
||||
compressionQuality: 50
|
||||
spriteMode: 0
|
||||
spriteExtrude: 1
|
||||
spriteMeshType: 1
|
||||
alignment: 0
|
||||
spritePivot: {x: 0.5, y: 0.5}
|
||||
spritePixelsToUnits: 100
|
||||
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
||||
spriteGenerateFallbackPhysicsShape: 1
|
||||
alphaUsage: 1
|
||||
alphaIsTransparency: 0
|
||||
spriteTessellationDetail: -1
|
||||
textureType: 0
|
||||
textureShape: 1
|
||||
singleChannelComponent: 0
|
||||
flipbookRows: 1
|
||||
flipbookColumns: 1
|
||||
maxTextureSizeSet: 0
|
||||
compressionQualitySet: 0
|
||||
textureFormatSet: 0
|
||||
ignorePngGamma: 0
|
||||
applyGammaDecoding: 0
|
||||
swizzle: 50462976
|
||||
cookieLightType: 0
|
||||
platformSettings:
|
||||
- serializedVersion: 3
|
||||
buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 3
|
||||
buildTarget: Standalone
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 3
|
||||
buildTarget: Android
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites: []
|
||||
outline: []
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID:
|
||||
internalID: 0
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 269238
|
||||
packageName: The Toon Shader
|
||||
packageVersion: 1.4.2
|
||||
assetPath: Packages/com.shadercrew.the-toon-shader.3d/Scripts/Resources/Gradients/NoStyling_07_ColorBasedGradient3_TTS_RefMat.png
|
||||
uploadId: 919972
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: f70d0419a2fb3004e9a7c23b45b39d75
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
+409
@@ -0,0 +1,409 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!114 &-7617746012844444677
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 4
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: 00_Hatching_BallpointPen_TTS_RefMat
|
||||
m_Shader: {fileID: 4800000, guid: 1c6b3902befc80643a83432be8825adc, type: 3}
|
||||
m_ValidKeywords:
|
||||
- _SHADING_COLOR
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 0
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses: []
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _BaseMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BumpMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailAlbedoMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailMask:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailNormalMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _EmissionMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _GradientTex:
|
||||
m_Texture: {fileID: 2800000, guid: 6b923a350a3eec547a2e5e79ada1927b, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _HatchingMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MainTex:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MetallicGlossMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NoiseMap1:
|
||||
m_Texture: {fileID: 2800000, guid: 0528154608ff38a4c845b6622c088ea0, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NoiseMap2:
|
||||
m_Texture: {fileID: 2800000, guid: f40d12a41bafa6749a1465879341fff5, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _OcclusionMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ParallaxMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ShadingGradientCurve:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SpecGlossMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _AdjustStylingDistanceFadeValue: 0
|
||||
- _AlphaClip: 0
|
||||
- _AmbientColorContribution: 0
|
||||
- _AnchorSSToObjectsOrigin: 1
|
||||
- _Blend: 0
|
||||
- _BumpScale: 1
|
||||
- _CastShadowColorMode: 0
|
||||
- _CastShadowsAnchorSSToObjectsOrigin: 1
|
||||
- _CastShadowsCoordinateSystem: 0
|
||||
- _CastShadowsDrawSpace: 0
|
||||
- _CastShadowsHardnessRandomIntensity: 0.107
|
||||
- _CastShadowsHardnessRandomMode: 1
|
||||
- _CastShadowsLengthRandomIntensity: 0.562
|
||||
- _CastShadowsLengthRandomMode: 2
|
||||
- _CastShadowsNoise1Seed: 1
|
||||
- _CastShadowsNoise1Size: 1.79
|
||||
- _CastShadowsNoise2Seed: 1
|
||||
- _CastShadowsNoiseIntensity: 0
|
||||
- _CastShadowsNumberOfCellsHatching: 3
|
||||
- _CastShadowsOpacityRandomIntensity: 0
|
||||
- _CastShadowsOpacityRandomMode: 0
|
||||
- _CastShadowsPolarCenterMode: 0
|
||||
- _CastShadowsSSCameraDistanceScaled: 1
|
||||
- _CastShadowsSmoothness: 0.9
|
||||
- _CastShadowsSpacingRandomIntensity: 1
|
||||
- _CastShadowsSpacingRandomMode: 2
|
||||
- _CastShadowsStrength: 0
|
||||
- _CastShadowsStyle: 0
|
||||
- _CastShadowsThicknessRandomMode: 1
|
||||
- _CastShadowsThicknesshRandomIntensity: 0.727
|
||||
- _CastShadowsUVSet: 0
|
||||
- _CategoryOutline: 0
|
||||
- _CategoryStyling: 0
|
||||
- _CategorySurfaceOptionsAndInputs: 0
|
||||
- _CategoryToonShading: 0
|
||||
- _CellTransitionSmoothness: 0.256
|
||||
- _ClearCoatMask: 0
|
||||
- _ClearCoatSmoothness: 0
|
||||
- _CoordinateSystem: 0
|
||||
- _Cull: 2
|
||||
- _CustomizeCastShadowsColor: 0
|
||||
- _Cutoff: 0.5
|
||||
- _DetailAlbedoMapScale: 1
|
||||
- _DetailNormalMapScale: 1
|
||||
- _DrawSpace: 0
|
||||
- _DstBlend: 0
|
||||
- _EnableAntiAliasing: 1
|
||||
- _EnableCastShadows: 0
|
||||
- _EnableCastShadowsRandomizer: 1
|
||||
- _EnableCastShadowsStyling: 1
|
||||
- _EnableOutline: 1
|
||||
- _EnableRim: 0
|
||||
- _EnableRimRandomizer: 1
|
||||
- _EnableRimStyling: 1
|
||||
- _EnableShadingRandomizer: 1
|
||||
- _EnableShadingStyling: 1
|
||||
- _EnableShadows: 1
|
||||
- _EnableSpecular: 0
|
||||
- _EnableSpecularRandomizer: 1
|
||||
- _EnableSpecularStyling: 0
|
||||
- _EnableStyling: 1
|
||||
- _EnableStylingDistanceFade: 0
|
||||
- _EnableToonShading: 1
|
||||
- _EnvironmentReflections: 1
|
||||
- _GlossMapScale: 0
|
||||
- _Glossiness: 0
|
||||
- _GlossyReflections: 0
|
||||
- _GradientBlendFactor: 1
|
||||
- _GradientBlending: 0
|
||||
- _GradientMode: 0
|
||||
- _HalftonePattern: 1
|
||||
- _HalftonePatternCameraDistanceFade: 0
|
||||
- _HardnessRandomIntensity: 0.107
|
||||
- _HardnessRandomMode: 1
|
||||
- _HatchingAffectedByNormalMap: 1
|
||||
- _HatchingCameraDistanceFade: 0
|
||||
- _IsOptimized: 0
|
||||
- _LengthRandomIntensity: 0.562
|
||||
- _LengthRandomMode: 2
|
||||
- _LightColorContribution: 0
|
||||
- _LightFunction: 0
|
||||
- _LightFunctionLerpValue: 0.5
|
||||
- _LightSource: 0
|
||||
- _Metallic: 0.722
|
||||
- _Mode: 0
|
||||
- _NoiseIntensity: 0
|
||||
- _NoiseTextureQuality: 0
|
||||
- _NumberOfCells: 1
|
||||
- _NumberOfCellsHatching: 3
|
||||
- _OcclusionStrength: 1
|
||||
- _OpacityRandomIntensity: 0
|
||||
- _OpacityRandomMode: 0
|
||||
- _OutlineCameraDistanceImpact: 0
|
||||
- _OutlineConstantScreenWidth: 1
|
||||
- _OutlineDepthOffset: 0
|
||||
- _OutlineWidth: 2.4
|
||||
- _Parallax: 0.005
|
||||
- _PerlinNoiseSize: 0.245
|
||||
- _PolarCenterMode: 0
|
||||
- _QueueControl: -1
|
||||
- _QueueOffset: 0
|
||||
- _ReceiveShadows: 1
|
||||
- _RimAffectedArea: 1
|
||||
- _RimAffectedByNormalMap: 1
|
||||
- _RimAnchorSSToObjectsOrigin: 1
|
||||
- _RimBlending: 0
|
||||
- _RimCoordinateSystem: 0
|
||||
- _RimDrawSpace: 0
|
||||
- _RimHardnessRandomIntensity: 0.107
|
||||
- _RimHardnessRandomMode: 1
|
||||
- _RimLengthRandomIntensity: 0.562
|
||||
- _RimLengthRandomMode: 2
|
||||
- _RimNoise1Seed: 1
|
||||
- _RimNoise1Size: 1.79
|
||||
- _RimNoise2Seed: 1
|
||||
- _RimNoiseIntensity: 0
|
||||
- _RimOpacity: 1
|
||||
- _RimOpacityRandomIntensity: 0
|
||||
- _RimOpacityRandomMode: 0
|
||||
- _RimPerlinNoiseSeed: 1
|
||||
- _RimPerlinNoiseSize: 1
|
||||
- _RimPolarCenterMode: 0
|
||||
- _RimSSCameraDistanceScaled: 1
|
||||
- _RimSize: 0.445
|
||||
- _RimSmoothness: 0
|
||||
- _RimSpacingRandomIntensity: 1
|
||||
- _RimSpacingRandomMode: 2
|
||||
- _RimStyle: 0
|
||||
- _RimThicknessRandomMode: 1
|
||||
- _RimThicknesshRandomIntensity: 0.727
|
||||
- _RimUVSet: 0
|
||||
- _RimWhiteNoiseSeed: 1
|
||||
- _SSCameraDistanceScaled: 1
|
||||
- _ShadingAffectByNormalMap: 1
|
||||
- _ShadingAffectedByNormalMap: 1
|
||||
- _ShadingBlending: 0
|
||||
- _ShadingFunction: 0
|
||||
- _ShadingMode: 0
|
||||
- _ShadingNoise1Seed: 1
|
||||
- _ShadingNoise1Size: 1.79
|
||||
- _ShadingNoise2Seed: 1
|
||||
- _ShadingStyle: 0
|
||||
- _ShadingUseLightColors: 0
|
||||
- _ShadowMode: 0
|
||||
- _ShadowsAffectByNormalMap: 1
|
||||
- _Smoothness: 0.336
|
||||
- _SmoothnessSource: 0
|
||||
- _SmoothnessTextureChannel: 0
|
||||
- _SpacingRandomIntensity: 1
|
||||
- _SpacingRandomMode: 2
|
||||
- _SpecularAffectedByNormalMap: 1
|
||||
- _SpecularAnchorSSToObjectsOrigin: 1
|
||||
- _SpecularBlending: 1
|
||||
- _SpecularCoordinateSystem: 0
|
||||
- _SpecularDrawSpace: 1
|
||||
- _SpecularHardnessRandomIntensity: 0.155
|
||||
- _SpecularHardnessRandomMode: 2
|
||||
- _SpecularHighlights: 1
|
||||
- _SpecularLengthRandomIntensity: 0.418
|
||||
- _SpecularLengthRandomMode: 1
|
||||
- _SpecularNoise1Seed: 1
|
||||
- _SpecularNoise1Size: 1
|
||||
- _SpecularNoise2Seed: 1
|
||||
- _SpecularNoiseIntensity: 0
|
||||
- _SpecularOpacity: 1
|
||||
- _SpecularOpacityRandomIntensity: 0.09
|
||||
- _SpecularOpacityRandomMode: 1
|
||||
- _SpecularPerlinNoiseSeed: 1
|
||||
- _SpecularPerlinNoiseSize: 1
|
||||
- _SpecularPolarCenterMode: 0
|
||||
- _SpecularSSCameraDistanceScaled: 1
|
||||
- _SpecularSize: 0
|
||||
- _SpecularSmoothness: 0
|
||||
- _SpecularSpacingRandomIntensity: 1
|
||||
- _SpecularSpacingRandomMode: 2
|
||||
- _SpecularStyle: 0
|
||||
- _SpecularThicknessRandomMode: 1
|
||||
- _SpecularThicknesshRandomIntensity: 1
|
||||
- _SpecularUVSet: 0
|
||||
- _SpecularUseLightColors: 1
|
||||
- _SpecularWhiteNoiseSeed: 1
|
||||
- _SrcBlend: 1
|
||||
- _StylingAdjustDistanceFadeValue: 1
|
||||
- _StylingCastShadowsBlending: 0
|
||||
- _StylingCastShadowsDensity: 220.5
|
||||
- _StylingCastShadowsHalftonesOffset: 0.513
|
||||
- _StylingCastShadowsHalftonesRoundness: 1
|
||||
- _StylingCastShadowsHalftonesRoundnessFalloff: 0
|
||||
- _StylingCastShadowsHardness: 1
|
||||
- _StylingCastShadowsInitialDirection: 61
|
||||
- _StylingCastShadowsIsInverted: 0
|
||||
- _StylingCastShadowsOpacity: 1
|
||||
- _StylingCastShadowsOpacityFalloff: 0.171
|
||||
- _StylingCastShadowsRotationBetweenCells: -63
|
||||
- _StylingCastShadowsSmoothness: 1
|
||||
- _StylingCastShadowsSyncWithOtherStyling: 1
|
||||
- _StylingCastShadowsThickness: 0.807
|
||||
- _StylingCastShadowsThicknessControl: 0
|
||||
- _StylingCastShadowsThicknessFalloff: 0.346
|
||||
- _StylingDFFalloff: 7.8
|
||||
- _StylingDFStartingDistance: 4.38
|
||||
- _StylingDistanceFadeValue: 0.169
|
||||
- _StylingOvermodelingFactor: 0.999
|
||||
- _StylingRimAffectedArea: 1
|
||||
- _StylingRimBlending: 0
|
||||
- _StylingRimDensity: 220.5
|
||||
- _StylingRimHalftonesOffset: 0.513
|
||||
- _StylingRimHalftonesRoundness: 1
|
||||
- _StylingRimHalftonesRoundnessFalloff: 0
|
||||
- _StylingRimHardness: 1
|
||||
- _StylingRimIsInverted: 0
|
||||
- _StylingRimOpacity: 1
|
||||
- _StylingRimOpacityFalloff: 0.171
|
||||
- _StylingRimPosition: 0
|
||||
- _StylingRimRotation: 61
|
||||
- _StylingRimSize: 0.349
|
||||
- _StylingRimSmoothness: 0.583
|
||||
- _StylingRimSyncWithOtherStyling: 1
|
||||
- _StylingRimThickness: 0.807
|
||||
- _StylingRimThicknessControl: 0
|
||||
- _StylingRimThicknessFalloff: 0.346
|
||||
- _StylingShadingBlending: 0
|
||||
- _StylingShadingDensity: 220.5
|
||||
- _StylingShadingHalftonesOffset: 0.513
|
||||
- _StylingShadingHalftonesRoundness: 1
|
||||
- _StylingShadingHalftonesRoundnessFalloff: 0
|
||||
- _StylingShadingHardness: 1
|
||||
- _StylingShadingInitialDirection: 61
|
||||
- _StylingShadingIsInverted: 0
|
||||
- _StylingShadingOpacity: 1
|
||||
- _StylingShadingOpacityFalloff: 0.171
|
||||
- _StylingShadingPosition: 0
|
||||
- _StylingShadingRotationBetweenCells: -63
|
||||
- _StylingShadingSyncWithOtherStyling: 0
|
||||
- _StylingShadingThickness: 0.807
|
||||
- _StylingShadingThicknessControl: 0
|
||||
- _StylingShadingThicknessFalloff: 0.346
|
||||
- _StylingSpecularBlending: 0
|
||||
- _StylingSpecularCutOutShading: 0
|
||||
- _StylingSpecularDensity: 34.03
|
||||
- _StylingSpecularHalftonesOffset: 0.513
|
||||
- _StylingSpecularHalftonesRoundness: 1
|
||||
- _StylingSpecularHalftonesRoundnessFalloff: 0
|
||||
- _StylingSpecularHardness: 0.949
|
||||
- _StylingSpecularIsInverted: 0
|
||||
- _StylingSpecularOpacity: 1
|
||||
- _StylingSpecularOpacityFalloff: 0
|
||||
- _StylingSpecularPosition: 0
|
||||
- _StylingSpecularRotation: 61
|
||||
- _StylingSpecularSize: 0.818
|
||||
- _StylingSpecularSmoothness: 0.206
|
||||
- _StylingSpecularSyncWithOtherStyling: 0
|
||||
- _StylingSpecularThickness: 0.644
|
||||
- _StylingSpecularThicknessControl: 0
|
||||
- _StylingSpecularThicknessFalloff: 0.629
|
||||
- _StylingSpecularUseLightColors: 0
|
||||
- _StylingTerminatorPosition: 0
|
||||
- _SumLightsBeforePosterization: 1
|
||||
- _Surface: 0
|
||||
- _SyncWithLightPartitioning: 0
|
||||
- _SyncWithRim: 0
|
||||
- _SyncWithSpecular: 0
|
||||
- _TerminatorPosition: 0
|
||||
- _TerminatorSmoothness: 0.685
|
||||
- _TerminatorWidth: 1
|
||||
- _TheToonShaderIdentifier: 1
|
||||
- _ThicknessRandomMode: 1
|
||||
- _ThicknesshRandomIntensity: 0.727
|
||||
- _UVSec: 0
|
||||
- _UVSet: 0
|
||||
- _UseAlphaOnlyFromBaseMap: 0
|
||||
- _UseCurve: 1
|
||||
- _UsePBRLighting: 0
|
||||
- _WorkflowMode: 1
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _BaseColor: {r: 0.8301887, g: 0.8235862, b: 0.7714489, a: 1}
|
||||
- _CastShadowColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _CastShadowsPolarCenter: {r: 0.54, g: 0.47, b: 0, a: 0}
|
||||
- _Color: {r: 0.83137256, g: 0.8235294, b: 0.77254903, a: 1}
|
||||
- _CoreShadowColor: {r: 0, g: 0.01321578, b: 0.5, a: 1}
|
||||
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _FormShadowColor: {r: 0.20754719, g: 0.20754719, b: 0.20754719, a: 1}
|
||||
- _OutlineColor: {r: 0, g: 0.05882353, b: 0.49019608, a: 1}
|
||||
- _PolarCenter: {r: 0.54, g: 0.47, b: 0, a: 0}
|
||||
- _RimColor: {r: 1, g: 0, b: 0, a: 1}
|
||||
- _RimPolarCenter: {r: 0.54, g: 0.47, b: 0, a: 0}
|
||||
- _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1}
|
||||
- _SpecularColor: {r: 1, g: 1, b: 0, a: 1}
|
||||
- _SpecularPolarCenter: {r: 0.54, g: 0.47, b: 0, a: 0}
|
||||
- _StylingCastShadowsColor: {r: 0, g: 0.05882353, b: 0.49019608, a: 1}
|
||||
- _StylingColor: {r: 0, g: 0.05733885, b: 0.49056602, a: 1}
|
||||
- _StylingRimColor: {r: 0.7877358, g: 0.8155007, b: 1, a: 1}
|
||||
- _StylingSpecularColor: {r: 1, g: 0.9744728, b: 0.8915094, a: 1}
|
||||
m_BuildTextureStacks: []
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 4f806137ad8f38344a482dfd3b966102
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 269238
|
||||
packageName: The Toon Shader
|
||||
packageVersion: 1.4.2
|
||||
assetPath: Packages/com.shadercrew.the-toon-shader.3d/Scripts/Resources/TTSReferenceMaterials/00_Hatching_BallpointPen_TTS_RefMat.mat
|
||||
uploadId: 919972
|
||||
+409
@@ -0,0 +1,409 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!114 &-7617746012844444677
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 4
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: 01_Hatching_FinelinerRedBase_TTS_RefMat
|
||||
m_Shader: {fileID: 4800000, guid: cdb1479f619aff740b0cea7a60a84201, type: 3}
|
||||
m_ValidKeywords:
|
||||
- _SHADING_COLOR
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 0
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses: []
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _BaseMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BumpMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailAlbedoMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailMask:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailNormalMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _EmissionMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _GradientTex:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _HatchingMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MainTex:
|
||||
m_Texture: {fileID: 2800000, guid: 0471008cf8fbd8b4a9b59fec47f7b993, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MetallicGlossMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NoiseMap1:
|
||||
m_Texture: {fileID: 2800000, guid: 0528154608ff38a4c845b6622c088ea0, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NoiseMap2:
|
||||
m_Texture: {fileID: 2800000, guid: f40d12a41bafa6749a1465879341fff5, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _OcclusionMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ParallaxMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ShadingGradientCurve:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SpecGlossMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _AdjustStylingDistanceFadeValue: 0
|
||||
- _AlphaClip: 0
|
||||
- _AmbientColorContribution: 0
|
||||
- _AnchorSSToObjectsOrigin: 1
|
||||
- _Blend: 0
|
||||
- _BumpScale: 1
|
||||
- _CastShadowColorMode: 0
|
||||
- _CastShadowsAnchorSSToObjectsOrigin: 1
|
||||
- _CastShadowsCoordinateSystem: 0
|
||||
- _CastShadowsDrawSpace: 0
|
||||
- _CastShadowsHardnessRandomIntensity: 0
|
||||
- _CastShadowsHardnessRandomMode: 2
|
||||
- _CastShadowsLengthRandomIntensity: 1
|
||||
- _CastShadowsLengthRandomMode: 1
|
||||
- _CastShadowsNoise1Seed: 1
|
||||
- _CastShadowsNoise1Size: 1
|
||||
- _CastShadowsNoise2Seed: 1
|
||||
- _CastShadowsNoiseIntensity: 0
|
||||
- _CastShadowsNumberOfCellsHatching: 4
|
||||
- _CastShadowsOpacityRandomIntensity: 0
|
||||
- _CastShadowsOpacityRandomMode: 2
|
||||
- _CastShadowsPolarCenterMode: 0
|
||||
- _CastShadowsSSCameraDistanceScaled: 0
|
||||
- _CastShadowsSmoothness: 0.9
|
||||
- _CastShadowsSpacingRandomIntensity: 1
|
||||
- _CastShadowsSpacingRandomMode: 0
|
||||
- _CastShadowsStrength: 0
|
||||
- _CastShadowsStyle: 0
|
||||
- _CastShadowsThicknessRandomMode: 1
|
||||
- _CastShadowsThicknesshRandomIntensity: 0
|
||||
- _CastShadowsUVSet: 0
|
||||
- _CategoryOutline: 0
|
||||
- _CategoryStyling: 0
|
||||
- _CategorySurfaceOptionsAndInputs: 0
|
||||
- _CategoryToonShading: 0
|
||||
- _CellTransitionSmoothness: 0.111
|
||||
- _ClearCoatMask: 0
|
||||
- _ClearCoatSmoothness: 0
|
||||
- _CoordinateSystem: 0
|
||||
- _Cull: 2
|
||||
- _CustomizeCastShadowsColor: 0
|
||||
- _Cutoff: 0.5
|
||||
- _DetailAlbedoMapScale: 1
|
||||
- _DetailNormalMapScale: 1
|
||||
- _DrawSpace: 0
|
||||
- _DstBlend: 0
|
||||
- _EnableAntiAliasing: 1
|
||||
- _EnableCastShadows: 0
|
||||
- _EnableCastShadowsRandomizer: 1
|
||||
- _EnableCastShadowsStyling: 1
|
||||
- _EnableOutline: 0
|
||||
- _EnableRim: 0
|
||||
- _EnableRimRandomizer: 1
|
||||
- _EnableRimStyling: 1
|
||||
- _EnableShadingRandomizer: 1
|
||||
- _EnableShadingStyling: 1
|
||||
- _EnableShadows: 1
|
||||
- _EnableSpecular: 0
|
||||
- _EnableSpecularRandomizer: 1
|
||||
- _EnableSpecularStyling: 1
|
||||
- _EnableStyling: 1
|
||||
- _EnableStylingDistanceFade: 0
|
||||
- _EnableToonShading: 1
|
||||
- _EnvironmentReflections: 1
|
||||
- _GlossMapScale: 1
|
||||
- _Glossiness: 0
|
||||
- _GlossyReflections: 1
|
||||
- _GradientBlendFactor: 1
|
||||
- _GradientBlending: 2
|
||||
- _GradientMode: 0
|
||||
- _HalftonePattern: 1
|
||||
- _HalftonePatternCameraDistanceFade: 0
|
||||
- _HardnessRandomIntensity: 0
|
||||
- _HardnessRandomMode: 2
|
||||
- _HatchingAffectedByNormalMap: 0
|
||||
- _HatchingCameraDistanceFade: 0
|
||||
- _IsOptimized: 0
|
||||
- _LengthRandomIntensity: 1
|
||||
- _LengthRandomMode: 1
|
||||
- _LightColorContribution: 0
|
||||
- _LightFunction: 1
|
||||
- _LightFunctionLerpValue: 0.5
|
||||
- _LightSource: 0
|
||||
- _Metallic: 0
|
||||
- _Mode: 0
|
||||
- _NoiseIntensity: 0
|
||||
- _NoiseTextureQuality: 0
|
||||
- _NumberOfCells: 1
|
||||
- _NumberOfCellsHatching: 4
|
||||
- _OcclusionStrength: 1
|
||||
- _OpacityRandomIntensity: 0
|
||||
- _OpacityRandomMode: 2
|
||||
- _OutlineCameraDistanceImpact: 0
|
||||
- _OutlineConstantScreenWidth: 0
|
||||
- _OutlineDepthOffset: 0
|
||||
- _OutlineWidth: 3.1
|
||||
- _Parallax: 0.02
|
||||
- _PerlinNoiseSize: 8.9
|
||||
- _PolarCenterMode: 0
|
||||
- _QueueControl: -1
|
||||
- _QueueOffset: 0
|
||||
- _ReceiveShadows: 1
|
||||
- _RimAffectedArea: 1
|
||||
- _RimAffectedByNormalMap: 1
|
||||
- _RimAnchorSSToObjectsOrigin: 1
|
||||
- _RimBlending: 0
|
||||
- _RimCoordinateSystem: 0
|
||||
- _RimDrawSpace: 0
|
||||
- _RimHardnessRandomIntensity: 0
|
||||
- _RimHardnessRandomMode: 2
|
||||
- _RimLengthRandomIntensity: 1
|
||||
- _RimLengthRandomMode: 1
|
||||
- _RimNoise1Seed: 1
|
||||
- _RimNoise1Size: 1
|
||||
- _RimNoise2Seed: 1
|
||||
- _RimNoiseIntensity: 0
|
||||
- _RimOpacity: 1
|
||||
- _RimOpacityRandomIntensity: 0
|
||||
- _RimOpacityRandomMode: 2
|
||||
- _RimPerlinNoiseSeed: 1
|
||||
- _RimPerlinNoiseSize: 1
|
||||
- _RimPolarCenterMode: 0
|
||||
- _RimSSCameraDistanceScaled: 0
|
||||
- _RimSize: 0.4
|
||||
- _RimSmoothness: 0
|
||||
- _RimSpacingRandomIntensity: 1
|
||||
- _RimSpacingRandomMode: 0
|
||||
- _RimStyle: 0
|
||||
- _RimThicknessRandomMode: 1
|
||||
- _RimThicknesshRandomIntensity: 0
|
||||
- _RimUVSet: 0
|
||||
- _RimWhiteNoiseSeed: 1
|
||||
- _SSCameraDistanceScaled: 0
|
||||
- _ShadingAffectByNormalMap: 1
|
||||
- _ShadingAffectedByNormalMap: 1
|
||||
- _ShadingBlending: 0
|
||||
- _ShadingFunction: 0
|
||||
- _ShadingMode: 0
|
||||
- _ShadingNoise1Seed: 1
|
||||
- _ShadingNoise1Size: 1
|
||||
- _ShadingNoise2Seed: 1
|
||||
- _ShadingStyle: 0
|
||||
- _ShadingUseLightColors: 1
|
||||
- _ShadowMode: 0
|
||||
- _ShadowsAffectByNormalMap: 1
|
||||
- _Smoothness: 0
|
||||
- _SmoothnessSource: 0
|
||||
- _SmoothnessTextureChannel: 0
|
||||
- _SpacingRandomIntensity: 1
|
||||
- _SpacingRandomMode: 0
|
||||
- _SpecularAffectedByNormalMap: 1
|
||||
- _SpecularAnchorSSToObjectsOrigin: 1
|
||||
- _SpecularBlending: 1
|
||||
- _SpecularCoordinateSystem: 0
|
||||
- _SpecularDrawSpace: 0
|
||||
- _SpecularHardnessRandomIntensity: 0
|
||||
- _SpecularHardnessRandomMode: 2
|
||||
- _SpecularHighlights: 1
|
||||
- _SpecularLengthRandomIntensity: 1
|
||||
- _SpecularLengthRandomMode: 1
|
||||
- _SpecularNoise1Seed: 1
|
||||
- _SpecularNoise1Size: 1
|
||||
- _SpecularNoise2Seed: 1
|
||||
- _SpecularNoiseIntensity: 0
|
||||
- _SpecularOpacity: 1
|
||||
- _SpecularOpacityRandomIntensity: 0
|
||||
- _SpecularOpacityRandomMode: 2
|
||||
- _SpecularPerlinNoiseSeed: 1
|
||||
- _SpecularPerlinNoiseSize: 7.13
|
||||
- _SpecularPolarCenterMode: 0
|
||||
- _SpecularSSCameraDistanceScaled: 0
|
||||
- _SpecularSize: 0
|
||||
- _SpecularSmoothness: 0
|
||||
- _SpecularSpacingRandomIntensity: 1
|
||||
- _SpecularSpacingRandomMode: 0
|
||||
- _SpecularStyle: 0
|
||||
- _SpecularThicknessRandomMode: 1
|
||||
- _SpecularThicknesshRandomIntensity: 0
|
||||
- _SpecularUVSet: 0
|
||||
- _SpecularUseLightColors: 1
|
||||
- _SpecularWhiteNoiseSeed: 1
|
||||
- _SrcBlend: 1
|
||||
- _StylingAdjustDistanceFadeValue: 1
|
||||
- _StylingCastShadowsBlending: 0
|
||||
- _StylingCastShadowsDensity: 197.13
|
||||
- _StylingCastShadowsHalftonesOffset: 1
|
||||
- _StylingCastShadowsHalftonesRoundness: 1
|
||||
- _StylingCastShadowsHalftonesRoundnessFalloff: 1
|
||||
- _StylingCastShadowsHardness: 0.852
|
||||
- _StylingCastShadowsInitialDirection: 45
|
||||
- _StylingCastShadowsIsInverted: 0
|
||||
- _StylingCastShadowsOpacity: 1
|
||||
- _StylingCastShadowsOpacityFalloff: 0
|
||||
- _StylingCastShadowsRotationBetweenCells: 47
|
||||
- _StylingCastShadowsSmoothness: 1
|
||||
- _StylingCastShadowsSyncWithOtherStyling: 1
|
||||
- _StylingCastShadowsThickness: 0.408
|
||||
- _StylingCastShadowsThicknessControl: 0
|
||||
- _StylingCastShadowsThicknessFalloff: 0.298
|
||||
- _StylingDFFalloff: 3.95
|
||||
- _StylingDFStartingDistance: 1.76
|
||||
- _StylingDistanceFadeValue: 0.026
|
||||
- _StylingOvermodelingFactor: 0.999
|
||||
- _StylingRimAffectedArea: 1
|
||||
- _StylingRimBlending: 0
|
||||
- _StylingRimDensity: 197.13
|
||||
- _StylingRimHalftonesOffset: 1
|
||||
- _StylingRimHalftonesRoundness: 1
|
||||
- _StylingRimHalftonesRoundnessFalloff: 1
|
||||
- _StylingRimHardness: 0.852
|
||||
- _StylingRimIsInverted: 0
|
||||
- _StylingRimOpacity: 1
|
||||
- _StylingRimOpacityFalloff: 0
|
||||
- _StylingRimPosition: 0
|
||||
- _StylingRimRotation: 45
|
||||
- _StylingRimSize: 0.041
|
||||
- _StylingRimSmoothness: 0.157
|
||||
- _StylingRimSyncWithOtherStyling: 1
|
||||
- _StylingRimThickness: 0.408
|
||||
- _StylingRimThicknessControl: 0
|
||||
- _StylingRimThicknessFalloff: 0.298
|
||||
- _StylingShadingBlending: 0
|
||||
- _StylingShadingDensity: 197.13
|
||||
- _StylingShadingHalftonesOffset: 1
|
||||
- _StylingShadingHalftonesRoundness: 1
|
||||
- _StylingShadingHalftonesRoundnessFalloff: 1
|
||||
- _StylingShadingHardness: 0.852
|
||||
- _StylingShadingInitialDirection: 45
|
||||
- _StylingShadingIsInverted: 0
|
||||
- _StylingShadingOpacity: 1
|
||||
- _StylingShadingOpacityFalloff: 0
|
||||
- _StylingShadingPosition: 0
|
||||
- _StylingShadingRotationBetweenCells: 47
|
||||
- _StylingShadingSyncWithOtherStyling: 0
|
||||
- _StylingShadingThickness: 0.408
|
||||
- _StylingShadingThicknessControl: 0
|
||||
- _StylingShadingThicknessFalloff: 0.298
|
||||
- _StylingSpecularBlending: 0
|
||||
- _StylingSpecularCutOutShading: 0
|
||||
- _StylingSpecularDensity: 197.13
|
||||
- _StylingSpecularHalftonesOffset: 1
|
||||
- _StylingSpecularHalftonesRoundness: 1
|
||||
- _StylingSpecularHalftonesRoundnessFalloff: 1
|
||||
- _StylingSpecularHardness: 0.852
|
||||
- _StylingSpecularIsInverted: 0
|
||||
- _StylingSpecularOpacity: 1
|
||||
- _StylingSpecularOpacityFalloff: 0
|
||||
- _StylingSpecularPosition: 0
|
||||
- _StylingSpecularRotation: 45
|
||||
- _StylingSpecularSize: 0.508
|
||||
- _StylingSpecularSmoothness: 0.265
|
||||
- _StylingSpecularSyncWithOtherStyling: 1
|
||||
- _StylingSpecularThickness: 0.408
|
||||
- _StylingSpecularThicknessControl: 0
|
||||
- _StylingSpecularThicknessFalloff: 0.298
|
||||
- _StylingSpecularUseLightColors: 0
|
||||
- _StylingTerminatorPosition: 0
|
||||
- _SumLightsBeforePosterization: 1
|
||||
- _Surface: 0
|
||||
- _SyncWithLightPartitioning: 0
|
||||
- _SyncWithRim: 0
|
||||
- _SyncWithSpecular: 0
|
||||
- _TerminatorPosition: 0
|
||||
- _TerminatorSmoothness: 0.614
|
||||
- _TerminatorWidth: 0.423
|
||||
- _TheToonShaderIdentifier: 1
|
||||
- _ThicknessRandomMode: 1
|
||||
- _ThicknesshRandomIntensity: 0
|
||||
- _UVSec: 0
|
||||
- _UVSet: 0
|
||||
- _UseAlphaOnlyFromBaseMap: 0
|
||||
- _UseCurve: 1
|
||||
- _UsePBRLighting: 0
|
||||
- _WorkflowMode: 1
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _BaseColor: {r: 1, g: 0.46666664, b: 0.4879858, a: 1}
|
||||
- _CastShadowColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _CastShadowsPolarCenter: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _Color: {r: 1, g: 0.4575472, b: 0.4575472, a: 1}
|
||||
- _CoreShadowColor: {r: 0.0017354898, g: 0.016474923, b: 0.122641504, a: 1}
|
||||
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _FormShadowColor: {r: 0.8066038, g: 0.84412843, b: 1, a: 1}
|
||||
- _OutlineColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _PolarCenter: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _RimColor: {r: 1, g: 0, b: 0, a: 1}
|
||||
- _RimPolarCenter: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1}
|
||||
- _SpecularColor: {r: 1, g: 1, b: 0, a: 1}
|
||||
- _SpecularPolarCenter: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _StylingCastShadowsColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _StylingColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _StylingRimColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _StylingSpecularColor: {r: 1, g: 0.96504843, b: 0.7877358, a: 1}
|
||||
m_BuildTextureStacks: []
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
fileFormatVersion: 2
|
||||
guid: d76a2fc09c9dc6e4b8afcbc4e1c223a7
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 269238
|
||||
packageName: The Toon Shader
|
||||
packageVersion: 1.4.2
|
||||
assetPath: Packages/com.shadercrew.the-toon-shader.3d/Scripts/Resources/TTSReferenceMaterials/01_Hatching_FinelinerRedBase_TTS_RefMat.mat
|
||||
uploadId: 919972
|
||||
+409
@@ -0,0 +1,409 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!114 &-7617746012844444677
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 4
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: 02_Hatching_CrazyInk_TTS_RefMat
|
||||
m_Shader: {fileID: 4800000, guid: cdb1479f619aff740b0cea7a60a84201, type: 3}
|
||||
m_ValidKeywords:
|
||||
- _SHADING_COLOR
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 0
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses: []
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _BaseMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BumpMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailAlbedoMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailMask:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailNormalMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _EmissionMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _GradientTex:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _HatchingMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MainTex:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MetallicGlossMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NoiseMap1:
|
||||
m_Texture: {fileID: 2800000, guid: 0528154608ff38a4c845b6622c088ea0, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NoiseMap2:
|
||||
m_Texture: {fileID: 2800000, guid: f40d12a41bafa6749a1465879341fff5, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _OcclusionMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ParallaxMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ShadingGradientCurve:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SpecGlossMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _AdjustStylingDistanceFadeValue: 0
|
||||
- _AlphaClip: 0
|
||||
- _AmbientColorContribution: 0
|
||||
- _AnchorSSToObjectsOrigin: 1
|
||||
- _Blend: 0
|
||||
- _BumpScale: 1
|
||||
- _CastShadowColorMode: 0
|
||||
- _CastShadowsAnchorSSToObjectsOrigin: 1
|
||||
- _CastShadowsCoordinateSystem: 0
|
||||
- _CastShadowsDrawSpace: 0
|
||||
- _CastShadowsHardnessRandomIntensity: 0.637
|
||||
- _CastShadowsHardnessRandomMode: 1
|
||||
- _CastShadowsLengthRandomIntensity: 0.18
|
||||
- _CastShadowsLengthRandomMode: 2
|
||||
- _CastShadowsNoise1Seed: 1
|
||||
- _CastShadowsNoise1Size: 1.25
|
||||
- _CastShadowsNoise2Seed: 1
|
||||
- _CastShadowsNoiseIntensity: 0
|
||||
- _CastShadowsNumberOfCellsHatching: 4
|
||||
- _CastShadowsOpacityRandomIntensity: 0
|
||||
- _CastShadowsOpacityRandomMode: 0
|
||||
- _CastShadowsPolarCenterMode: 0
|
||||
- _CastShadowsSSCameraDistanceScaled: 0
|
||||
- _CastShadowsSmoothness: 0.9
|
||||
- _CastShadowsSpacingRandomIntensity: 1
|
||||
- _CastShadowsSpacingRandomMode: 0
|
||||
- _CastShadowsStrength: 0
|
||||
- _CastShadowsStyle: 0
|
||||
- _CastShadowsThicknessRandomMode: 1
|
||||
- _CastShadowsThicknesshRandomIntensity: 1
|
||||
- _CastShadowsUVSet: 0
|
||||
- _CategoryOutline: 0
|
||||
- _CategoryStyling: 0
|
||||
- _CategorySurfaceOptionsAndInputs: 0
|
||||
- _CategoryToonShading: 0
|
||||
- _CellTransitionSmoothness: 0.166
|
||||
- _ClearCoatMask: 0
|
||||
- _ClearCoatSmoothness: 0
|
||||
- _CoordinateSystem: 0
|
||||
- _Cull: 2
|
||||
- _CustomizeCastShadowsColor: 0
|
||||
- _Cutoff: 0.5
|
||||
- _DetailAlbedoMapScale: 1
|
||||
- _DetailNormalMapScale: 1
|
||||
- _DrawSpace: 0
|
||||
- _DstBlend: 0
|
||||
- _EnableAntiAliasing: 0
|
||||
- _EnableCastShadows: 1
|
||||
- _EnableCastShadowsRandomizer: 1
|
||||
- _EnableCastShadowsStyling: 1
|
||||
- _EnableOutline: 0
|
||||
- _EnableRim: 0
|
||||
- _EnableRimRandomizer: 0
|
||||
- _EnableRimStyling: 0
|
||||
- _EnableShadingRandomizer: 1
|
||||
- _EnableShadingStyling: 1
|
||||
- _EnableShadows: 1
|
||||
- _EnableSpecular: 0
|
||||
- _EnableSpecularRandomizer: 0
|
||||
- _EnableSpecularStyling: 0
|
||||
- _EnableStyling: 1
|
||||
- _EnableStylingDistanceFade: 0
|
||||
- _EnableToonShading: 1
|
||||
- _EnvironmentReflections: 1
|
||||
- _GlossMapScale: 0
|
||||
- _Glossiness: 0
|
||||
- _GlossyReflections: 0
|
||||
- _GradientBlendFactor: 1
|
||||
- _GradientBlending: 2
|
||||
- _GradientMode: 0
|
||||
- _HalftonePattern: 1
|
||||
- _HalftonePatternCameraDistanceFade: 0
|
||||
- _HardnessRandomIntensity: 0.637
|
||||
- _HardnessRandomMode: 1
|
||||
- _HatchingAffectedByNormalMap: 0
|
||||
- _HatchingCameraDistanceFade: 0
|
||||
- _IsOptimized: 0
|
||||
- _LengthRandomIntensity: 0.18
|
||||
- _LengthRandomMode: 2
|
||||
- _LightColorContribution: 0
|
||||
- _LightFunction: 1
|
||||
- _LightFunctionLerpValue: 0.5
|
||||
- _LightSource: 0
|
||||
- _Metallic: 0
|
||||
- _Mode: 0
|
||||
- _NoiseIntensity: 0
|
||||
- _NoiseTextureQuality: 0
|
||||
- _NumberOfCells: 1
|
||||
- _NumberOfCellsHatching: 4
|
||||
- _OcclusionStrength: 1
|
||||
- _OpacityRandomIntensity: 0
|
||||
- _OpacityRandomMode: 0
|
||||
- _OutlineCameraDistanceImpact: 0
|
||||
- _OutlineConstantScreenWidth: 0
|
||||
- _OutlineDepthOffset: 0
|
||||
- _OutlineWidth: 6
|
||||
- _Parallax: 0.005
|
||||
- _PerlinNoiseSize: 1
|
||||
- _PolarCenterMode: 0
|
||||
- _QueueControl: -1
|
||||
- _QueueOffset: 0
|
||||
- _ReceiveShadows: 1
|
||||
- _RimAffectedArea: 1
|
||||
- _RimAffectedByNormalMap: 1
|
||||
- _RimAnchorSSToObjectsOrigin: 1
|
||||
- _RimBlending: 0
|
||||
- _RimCoordinateSystem: 0
|
||||
- _RimDrawSpace: 0
|
||||
- _RimHardnessRandomIntensity: 0
|
||||
- _RimHardnessRandomMode: 0
|
||||
- _RimLengthRandomIntensity: 0
|
||||
- _RimLengthRandomMode: 0
|
||||
- _RimNoise1Seed: 1
|
||||
- _RimNoise1Size: 1
|
||||
- _RimNoise2Seed: 1
|
||||
- _RimNoiseIntensity: 0
|
||||
- _RimOpacity: 1
|
||||
- _RimOpacityRandomIntensity: 0
|
||||
- _RimOpacityRandomMode: 0
|
||||
- _RimPerlinNoiseSeed: 1
|
||||
- _RimPerlinNoiseSize: 1
|
||||
- _RimPolarCenterMode: 0
|
||||
- _RimSSCameraDistanceScaled: 0
|
||||
- _RimSize: 0.4
|
||||
- _RimSmoothness: 0
|
||||
- _RimSpacingRandomIntensity: 0
|
||||
- _RimSpacingRandomMode: 0
|
||||
- _RimStyle: 0
|
||||
- _RimThicknessRandomMode: 0
|
||||
- _RimThicknesshRandomIntensity: 0
|
||||
- _RimUVSet: 0
|
||||
- _RimWhiteNoiseSeed: 1
|
||||
- _SSCameraDistanceScaled: 0
|
||||
- _ShadingAffectByNormalMap: 1
|
||||
- _ShadingAffectedByNormalMap: 1
|
||||
- _ShadingBlending: 0
|
||||
- _ShadingFunction: 0
|
||||
- _ShadingMode: 0
|
||||
- _ShadingNoise1Seed: 1
|
||||
- _ShadingNoise1Size: 1.25
|
||||
- _ShadingNoise2Seed: 1
|
||||
- _ShadingStyle: 0
|
||||
- _ShadingUseLightColors: 1
|
||||
- _ShadowMode: 0
|
||||
- _ShadowsAffectByNormalMap: 1
|
||||
- _Smoothness: 0.5
|
||||
- _SmoothnessSource: 0
|
||||
- _SmoothnessTextureChannel: 0
|
||||
- _SpacingRandomIntensity: 1
|
||||
- _SpacingRandomMode: 0
|
||||
- _SpecularAffectedByNormalMap: 1
|
||||
- _SpecularAnchorSSToObjectsOrigin: 1
|
||||
- _SpecularBlending: 1
|
||||
- _SpecularCoordinateSystem: 0
|
||||
- _SpecularDrawSpace: 0
|
||||
- _SpecularHardnessRandomIntensity: 0
|
||||
- _SpecularHardnessRandomMode: 0
|
||||
- _SpecularHighlights: 1
|
||||
- _SpecularLengthRandomIntensity: 0
|
||||
- _SpecularLengthRandomMode: 0
|
||||
- _SpecularNoise1Seed: 1
|
||||
- _SpecularNoise1Size: 1
|
||||
- _SpecularNoise2Seed: 1
|
||||
- _SpecularNoiseIntensity: 0
|
||||
- _SpecularOpacity: 1
|
||||
- _SpecularOpacityRandomIntensity: 0
|
||||
- _SpecularOpacityRandomMode: 0
|
||||
- _SpecularPerlinNoiseSeed: 1
|
||||
- _SpecularPerlinNoiseSize: 1
|
||||
- _SpecularPolarCenterMode: 0
|
||||
- _SpecularSSCameraDistanceScaled: 0
|
||||
- _SpecularSize: 0
|
||||
- _SpecularSmoothness: 0
|
||||
- _SpecularSpacingRandomIntensity: 0
|
||||
- _SpecularSpacingRandomMode: 0
|
||||
- _SpecularStyle: 0
|
||||
- _SpecularThicknessRandomMode: 0
|
||||
- _SpecularThicknesshRandomIntensity: 0
|
||||
- _SpecularUVSet: 0
|
||||
- _SpecularUseLightColors: 1
|
||||
- _SpecularWhiteNoiseSeed: 1
|
||||
- _SrcBlend: 1
|
||||
- _StylingAdjustDistanceFadeValue: 0
|
||||
- _StylingCastShadowsBlending: 0
|
||||
- _StylingCastShadowsDensity: 114.6
|
||||
- _StylingCastShadowsHalftonesOffset: 1
|
||||
- _StylingCastShadowsHalftonesRoundness: 1
|
||||
- _StylingCastShadowsHalftonesRoundnessFalloff: 1
|
||||
- _StylingCastShadowsHardness: 1
|
||||
- _StylingCastShadowsInitialDirection: 45
|
||||
- _StylingCastShadowsIsInverted: 0
|
||||
- _StylingCastShadowsOpacity: 1
|
||||
- _StylingCastShadowsOpacityFalloff: 0
|
||||
- _StylingCastShadowsRotationBetweenCells: 30
|
||||
- _StylingCastShadowsSmoothness: 1
|
||||
- _StylingCastShadowsSyncWithOtherStyling: 1
|
||||
- _StylingCastShadowsThickness: 1
|
||||
- _StylingCastShadowsThicknessControl: 0
|
||||
- _StylingCastShadowsThicknessFalloff: 0.608
|
||||
- _StylingDFFalloff: 0
|
||||
- _StylingDFStartingDistance: 0
|
||||
- _StylingDistanceFadeValue: 0
|
||||
- _StylingOvermodelingFactor: 0.696
|
||||
- _StylingRimAffectedArea: 1
|
||||
- _StylingRimBlending: 0
|
||||
- _StylingRimDensity: 10
|
||||
- _StylingRimHalftonesOffset: 1
|
||||
- _StylingRimHalftonesRoundness: 1
|
||||
- _StylingRimHalftonesRoundnessFalloff: 1
|
||||
- _StylingRimHardness: 0.9
|
||||
- _StylingRimIsInverted: 0
|
||||
- _StylingRimOpacity: 1
|
||||
- _StylingRimOpacityFalloff: 0
|
||||
- _StylingRimPosition: 0
|
||||
- _StylingRimRotation: 0
|
||||
- _StylingRimSize: 0
|
||||
- _StylingRimSmoothness: 0
|
||||
- _StylingRimSyncWithOtherStyling: 0
|
||||
- _StylingRimThickness: 0.8
|
||||
- _StylingRimThicknessControl: 0
|
||||
- _StylingRimThicknessFalloff: 0.1
|
||||
- _StylingShadingBlending: 0
|
||||
- _StylingShadingDensity: 114.6
|
||||
- _StylingShadingHalftonesOffset: 1
|
||||
- _StylingShadingHalftonesRoundness: 1
|
||||
- _StylingShadingHalftonesRoundnessFalloff: 1
|
||||
- _StylingShadingHardness: 1
|
||||
- _StylingShadingInitialDirection: 45
|
||||
- _StylingShadingIsInverted: 0
|
||||
- _StylingShadingOpacity: 1
|
||||
- _StylingShadingOpacityFalloff: 0
|
||||
- _StylingShadingPosition: 0
|
||||
- _StylingShadingRotationBetweenCells: 30
|
||||
- _StylingShadingSyncWithOtherStyling: 0
|
||||
- _StylingShadingThickness: 1
|
||||
- _StylingShadingThicknessControl: 0
|
||||
- _StylingShadingThicknessFalloff: 0.608
|
||||
- _StylingSpecularBlending: 0
|
||||
- _StylingSpecularCutOutShading: 0
|
||||
- _StylingSpecularDensity: 70
|
||||
- _StylingSpecularHalftonesOffset: 1
|
||||
- _StylingSpecularHalftonesRoundness: 1
|
||||
- _StylingSpecularHalftonesRoundnessFalloff: 1
|
||||
- _StylingSpecularHardness: 0.826
|
||||
- _StylingSpecularIsInverted: 0
|
||||
- _StylingSpecularOpacity: 0
|
||||
- _StylingSpecularOpacityFalloff: 0
|
||||
- _StylingSpecularPosition: 0
|
||||
- _StylingSpecularRotation: 0
|
||||
- _StylingSpecularSize: 0.8
|
||||
- _StylingSpecularSmoothness: 0.7
|
||||
- _StylingSpecularSyncWithOtherStyling: 0
|
||||
- _StylingSpecularThickness: 0.8
|
||||
- _StylingSpecularThicknessControl: 0
|
||||
- _StylingSpecularThicknessFalloff: 1
|
||||
- _StylingSpecularUseLightColors: 0
|
||||
- _StylingTerminatorPosition: 0
|
||||
- _SumLightsBeforePosterization: 1
|
||||
- _Surface: 0
|
||||
- _SyncWithLightPartitioning: 0
|
||||
- _SyncWithRim: 1
|
||||
- _SyncWithSpecular: 0
|
||||
- _TerminatorPosition: 0
|
||||
- _TerminatorSmoothness: 0.97
|
||||
- _TerminatorWidth: 0.17
|
||||
- _TheToonShaderIdentifier: 1
|
||||
- _ThicknessRandomMode: 1
|
||||
- _ThicknesshRandomIntensity: 1
|
||||
- _UVSec: 0
|
||||
- _UVSet: 0
|
||||
- _UseAlphaOnlyFromBaseMap: 0
|
||||
- _UseCurve: 1
|
||||
- _UsePBRLighting: 0
|
||||
- _WorkflowMode: 1
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _BaseColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _CastShadowColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _CastShadowsPolarCenter: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _Color: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _CoreShadowColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _FormShadowColor: {r: 0.254717, g: 0.254717, b: 0.254717, a: 1}
|
||||
- _OutlineColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _PolarCenter: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _RimColor: {r: 1, g: 0, b: 0, a: 1}
|
||||
- _RimPolarCenter: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1}
|
||||
- _SpecularColor: {r: 1, g: 1, b: 0, a: 1}
|
||||
- _SpecularPolarCenter: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _StylingCastShadowsColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _StylingColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _StylingRimColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _StylingSpecularColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
m_BuildTextureStacks: []
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 47d4f5b14243c124e9529c1d4a98de4f
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 269238
|
||||
packageName: The Toon Shader
|
||||
packageVersion: 1.4.2
|
||||
assetPath: Packages/com.shadercrew.the-toon-shader.3d/Scripts/Resources/TTSReferenceMaterials/02_Hatching_CrazyInk_TTS_RefMat.mat
|
||||
uploadId: 919972
|
||||
+388
@@ -0,0 +1,388 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!114 &-2336413758554962453
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 7
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: 03_Hatching_MessyPaint_TTS_RefMat
|
||||
m_Shader: {fileID: 4800000, guid: cdb1479f619aff740b0cea7a60a84201, type: 3}
|
||||
m_ValidKeywords:
|
||||
- _SHADING_COLOR
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 0
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses: []
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _BaseMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BumpMap:
|
||||
m_Texture: {fileID: 2800000, guid: 3fcd64e182dbb264c9ce6e50cd6a618d, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailAlbedoMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailMask:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailNormalMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _EmissionMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _GradientTex:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MainTex:
|
||||
m_Texture: {fileID: 2800000, guid: 0471008cf8fbd8b4a9b59fec47f7b993, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MetallicGlossMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NoiseMap1:
|
||||
m_Texture: {fileID: 2800000, guid: 0528154608ff38a4c845b6622c088ea0, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NoiseMap2:
|
||||
m_Texture: {fileID: 2800000, guid: f40d12a41bafa6749a1465879341fff5, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _OcclusionMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ParallaxMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SpecGlossMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _AlphaClip: 0
|
||||
- _AlphaToMask: 0
|
||||
- _AnchorSSToObjectsOrigin: 1
|
||||
- _Blend: 0
|
||||
- _BlendModePreserveSpecular: 1
|
||||
- _BumpScale: 1
|
||||
- _CastShadowColorMode: 0
|
||||
- _CastShadowsAnchorSSToObjectsOrigin: 1
|
||||
- _CastShadowsCoordinateSystem: 0
|
||||
- _CastShadowsDrawSpace: 0
|
||||
- _CastShadowsHardnessRandomIntensity: 0.201
|
||||
- _CastShadowsHardnessRandomMode: 1
|
||||
- _CastShadowsLengthRandomIntensity: 0.192
|
||||
- _CastShadowsLengthRandomMode: 1
|
||||
- _CastShadowsNoise1Seed: 1
|
||||
- _CastShadowsNoise1Size: 1.27
|
||||
- _CastShadowsNoise2Seed: 1
|
||||
- _CastShadowsNoiseIntensity: 0
|
||||
- _CastShadowsNumberOfCellsHatching: 10
|
||||
- _CastShadowsOpacityRandomIntensity: 0
|
||||
- _CastShadowsOpacityRandomMode: 2
|
||||
- _CastShadowsPolarCenterMode: 0
|
||||
- _CastShadowsSSCameraDistanceScaled: 0
|
||||
- _CastShadowsSmoothness: 0.9
|
||||
- _CastShadowsSpacingRandomIntensity: 1
|
||||
- _CastShadowsSpacingRandomMode: 0
|
||||
- _CastShadowsStrength: 0
|
||||
- _CastShadowsStyle: 0
|
||||
- _CastShadowsThicknessRandomMode: 1
|
||||
- _CastShadowsThicknesshRandomIntensity: 0.008
|
||||
- _CastShadowsUVSet: 0
|
||||
- _CellTransitionSmoothness: 0.23
|
||||
- _ClearCoatMask: 0
|
||||
- _ClearCoatSmoothness: 0
|
||||
- _CoordinateSystem: 0
|
||||
- _Cull: 2
|
||||
- _Cutoff: 0.5
|
||||
- _DetailAlbedoMapScale: 1
|
||||
- _DetailNormalMapScale: 1
|
||||
- _DrawSpace: 0
|
||||
- _DstBlend: 0
|
||||
- _DstBlendAlpha: 0
|
||||
- _EnableAntiAliasing: 0
|
||||
- _EnableCastShadows: 1
|
||||
- _EnableCastShadowsRandomizer: 1
|
||||
- _EnableCastShadowsStyling: 1
|
||||
- _EnableOutline: 0
|
||||
- _EnableRim: 0
|
||||
- _EnableRimRandomizer: 1
|
||||
- _EnableRimStyling: 1
|
||||
- _EnableShadingRandomizer: 1
|
||||
- _EnableShadingStyling: 1
|
||||
- _EnableShadows: 1
|
||||
- _EnableSpecular: 1
|
||||
- _EnableSpecularRandomizer: 0
|
||||
- _EnableSpecularStyling: 1
|
||||
- _EnableStyling: 1
|
||||
- _EnableStylingDistanceFade: 0
|
||||
- _EnableToonShading: 1
|
||||
- _EnvironmentReflections: 1
|
||||
- _GlossMapScale: 1
|
||||
- _Glossiness: 0
|
||||
- _GlossyReflections: 1
|
||||
- _GradientBlendFactor: 1
|
||||
- _GradientBlending: 2
|
||||
- _GradientMode: 0
|
||||
- _HalftonePatternCameraDistanceFade: 0
|
||||
- _HardnessRandomIntensity: 0.201
|
||||
- _HardnessRandomMode: 1
|
||||
- _HatchingAffectedByNormalMap: 0
|
||||
- _HatchingCameraDistanceFade: 0
|
||||
- _IsOptimized: 0
|
||||
- _LengthRandomIntensity: 0.192
|
||||
- _LengthRandomMode: 1
|
||||
- _LightFunction: 1
|
||||
- _LightSource: 0
|
||||
- _Metallic: 0
|
||||
- _Mode: 0
|
||||
- _NoiseIntensity: 0
|
||||
- _NoiseTextureQuality: 0
|
||||
- _NumberOfCells: 2
|
||||
- _NumberOfCellsHatching: 10
|
||||
- _OcclusionStrength: 1
|
||||
- _OpacityRandomIntensity: 0
|
||||
- _OpacityRandomMode: 2
|
||||
- _OutlineCameraDistanceImpact: 0
|
||||
- _OutlineConstantScreenWidth: 0
|
||||
- _OutlineDepthOffset: 0
|
||||
- _OutlineWidth: 6
|
||||
- _Parallax: 0.02
|
||||
- _PerlinNoiseSize: 4.6
|
||||
- _PolarCenterMode: 0
|
||||
- _QueueControl: -1
|
||||
- _QueueOffset: 0
|
||||
- _ReceiveShadows: 1
|
||||
- _RimAffectedArea: 1
|
||||
- _RimAffectedByNormalMap: 1
|
||||
- _RimAnchorSSToObjectsOrigin: 1
|
||||
- _RimBlending: 0
|
||||
- _RimCoordinateSystem: 0
|
||||
- _RimDrawSpace: 0
|
||||
- _RimHardnessRandomIntensity: 0.201
|
||||
- _RimHardnessRandomMode: 1
|
||||
- _RimLengthRandomIntensity: 0.192
|
||||
- _RimLengthRandomMode: 1
|
||||
- _RimNoise1Seed: 1
|
||||
- _RimNoise1Size: 1.27
|
||||
- _RimNoise2Seed: 1
|
||||
- _RimNoiseIntensity: 0
|
||||
- _RimOpacity: 1
|
||||
- _RimOpacityRandomIntensity: 0
|
||||
- _RimOpacityRandomMode: 2
|
||||
- _RimPerlinNoiseSeed: 1
|
||||
- _RimPerlinNoiseSize: 1
|
||||
- _RimPolarCenterMode: 0
|
||||
- _RimSSCameraDistanceScaled: 0
|
||||
- _RimSize: 0.4
|
||||
- _RimSmoothness: 0
|
||||
- _RimSpacingRandomIntensity: 1
|
||||
- _RimSpacingRandomMode: 0
|
||||
- _RimStyle: 0
|
||||
- _RimThicknessRandomMode: 1
|
||||
- _RimThicknesshRandomIntensity: 0.008
|
||||
- _RimUVSet: 0
|
||||
- _RimWhiteNoiseSeed: 1
|
||||
- _SSCameraDistanceScaled: 0
|
||||
- _ShadingAffectByNormalMap: 1
|
||||
- _ShadingAffectedByNormalMap: 1
|
||||
- _ShadingFunction: 0
|
||||
- _ShadingMode: 0
|
||||
- _ShadingNoise1Seed: 1
|
||||
- _ShadingNoise1Size: 1.27
|
||||
- _ShadingNoise2Seed: 1
|
||||
- _ShadingStyle: 0
|
||||
- _ShadingUseLightColors: 0
|
||||
- _ShadowsAffectByNormalMap: 1
|
||||
- _Smoothness: 0
|
||||
- _SmoothnessSource: 0
|
||||
- _SmoothnessTextureChannel: 0
|
||||
- _SpacingRandomIntensity: 1
|
||||
- _SpacingRandomMode: 0
|
||||
- _SpecularAffectedByNormalMap: 1
|
||||
- _SpecularAnchorSSToObjectsOrigin: 1
|
||||
- _SpecularBlending: 1
|
||||
- _SpecularCoordinateSystem: 0
|
||||
- _SpecularDrawSpace: 0
|
||||
- _SpecularHardnessRandomIntensity: 0
|
||||
- _SpecularHardnessRandomMode: 0
|
||||
- _SpecularHighlights: 1
|
||||
- _SpecularLengthRandomIntensity: 0
|
||||
- _SpecularLengthRandomMode: 0
|
||||
- _SpecularNoise1Seed: 1
|
||||
- _SpecularNoise1Size: 1
|
||||
- _SpecularNoise2Seed: 1
|
||||
- _SpecularNoiseIntensity: 0
|
||||
- _SpecularOpacity: 1
|
||||
- _SpecularOpacityRandomIntensity: 0
|
||||
- _SpecularOpacityRandomMode: 0
|
||||
- _SpecularPerlinNoiseSeed: 1
|
||||
- _SpecularPerlinNoiseSize: 1
|
||||
- _SpecularPolarCenterMode: 0
|
||||
- _SpecularSSCameraDistanceScaled: 0
|
||||
- _SpecularSize: 0.731
|
||||
- _SpecularSmoothness: 0.148
|
||||
- _SpecularSpacingRandomIntensity: 0
|
||||
- _SpecularSpacingRandomMode: 0
|
||||
- _SpecularStyle: 0
|
||||
- _SpecularThicknessRandomMode: 0
|
||||
- _SpecularThicknesshRandomIntensity: 0
|
||||
- _SpecularUVSet: 0
|
||||
- _SpecularUseLightColors: 1
|
||||
- _SpecularWhiteNoiseSeed: 1
|
||||
- _SrcBlend: 1
|
||||
- _SrcBlendAlpha: 1
|
||||
- _StylingAdjustDistanceFadeValue: 1
|
||||
- _StylingCastShadowsBlending: 0
|
||||
- _StylingCastShadowsDensity: 0.95
|
||||
- _StylingCastShadowsHalftonesOffset: 1
|
||||
- _StylingCastShadowsHalftonesRoundness: 1
|
||||
- _StylingCastShadowsHalftonesRoundnessFalloff: 1
|
||||
- _StylingCastShadowsHardness: 0.971
|
||||
- _StylingCastShadowsInitialDirection: 45
|
||||
- _StylingCastShadowsIsInverted: 0
|
||||
- _StylingCastShadowsOpacity: 1
|
||||
- _StylingCastShadowsOpacityFalloff: 0
|
||||
- _StylingCastShadowsRotationBetweenCells: 47
|
||||
- _StylingCastShadowsSmoothness: 1
|
||||
- _StylingCastShadowsSyncWithOtherStyling: 1
|
||||
- _StylingCastShadowsThickness: 0.439
|
||||
- _StylingCastShadowsThicknessControl: 0
|
||||
- _StylingCastShadowsThicknessFalloff: 0.463
|
||||
- _StylingDFFalloff: 1.58
|
||||
- _StylingDFStartingDistance: 2.46
|
||||
- _StylingDistanceFadeValue: 0
|
||||
- _StylingOvermodelingFactor: 0.044
|
||||
- _StylingRimAffectedArea: 1
|
||||
- _StylingRimBlending: 0
|
||||
- _StylingRimDensity: 0.95
|
||||
- _StylingRimHalftonesOffset: 1
|
||||
- _StylingRimHalftonesRoundness: 1
|
||||
- _StylingRimHalftonesRoundnessFalloff: 1
|
||||
- _StylingRimHardness: 0.971
|
||||
- _StylingRimIsInverted: 0
|
||||
- _StylingRimOpacity: 1
|
||||
- _StylingRimOpacityFalloff: 0
|
||||
- _StylingRimRotation: 45
|
||||
- _StylingRimSize: 0.213
|
||||
- _StylingRimSmoothness: 0.37
|
||||
- _StylingRimSyncWithOtherStyling: 1
|
||||
- _StylingRimThickness: 0.439
|
||||
- _StylingRimThicknessControl: 0
|
||||
- _StylingRimThicknessFalloff: 0.463
|
||||
- _StylingShadingBlending: 0
|
||||
- _StylingShadingDensity: 0.95
|
||||
- _StylingShadingHalftonesOffset: 1
|
||||
- _StylingShadingHalftonesRoundness: 1
|
||||
- _StylingShadingHalftonesRoundnessFalloff: 1
|
||||
- _StylingShadingHardness: 0.971
|
||||
- _StylingShadingInitialDirection: 45
|
||||
- _StylingShadingIsInverted: 0
|
||||
- _StylingShadingOpacity: 1
|
||||
- _StylingShadingOpacityFalloff: 0
|
||||
- _StylingShadingRotationBetweenCells: 47
|
||||
- _StylingShadingSyncWithOtherStyling: 0
|
||||
- _StylingShadingThickness: 0.439
|
||||
- _StylingShadingThicknessControl: 0
|
||||
- _StylingShadingThicknessFalloff: 0.463
|
||||
- _StylingSpecularBlending: 0
|
||||
- _StylingSpecularCutOutShading: 0
|
||||
- _StylingSpecularDensity: 28.27
|
||||
- _StylingSpecularHalftonesOffset: 1
|
||||
- _StylingSpecularHalftonesRoundness: 1
|
||||
- _StylingSpecularHalftonesRoundnessFalloff: 1
|
||||
- _StylingSpecularHardness: 0.9
|
||||
- _StylingSpecularIsInverted: 0
|
||||
- _StylingSpecularOpacity: 1
|
||||
- _StylingSpecularOpacityFalloff: 0
|
||||
- _StylingSpecularRotation: 0
|
||||
- _StylingSpecularSize: 0.411
|
||||
- _StylingSpecularSmoothness: 0.7
|
||||
- _StylingSpecularSyncWithOtherStyling: 0
|
||||
- _StylingSpecularThickness: 0.8
|
||||
- _StylingSpecularThicknessControl: 0
|
||||
- _StylingSpecularThicknessFalloff: 1
|
||||
- _StylingSpecularUseLightColors: 0
|
||||
- _StylingTerminatorPosition: 0
|
||||
- _SumLightsBeforePosterization: 1
|
||||
- _Surface: 0
|
||||
- _SyncWithLightPartitioning: 0
|
||||
- _SyncWithRim: 0
|
||||
- _SyncWithSpecular: 0
|
||||
- _TerminatorPosition: 0
|
||||
- _TerminatorSmoothness: 0
|
||||
- _TerminatorWidth: 0
|
||||
- _TheToonShaderIdentifier: 1
|
||||
- _ThicknessRandomMode: 1
|
||||
- _ThicknesshRandomIntensity: 0.008
|
||||
- _UVSec: 0
|
||||
- _UVSet: 0
|
||||
- _UseAlphaOnlyFromBaseMap: 0
|
||||
- _WorkflowMode: 1
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _BaseColor: {r: 0.5764706, g: 0.69803923, b: 0.9058824, a: 1}
|
||||
- _CastShadowColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _CastShadowsPolarCenter: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _Color: {r: 0.5764706, g: 0.69803923, b: 0.9063317, a: 1}
|
||||
- _CoreShadowColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _FormShadowColor: {r: 0.06603773, g: 0.10447759, b: 0.26415092, a: 1}
|
||||
- _OutlineColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _PolarCenter: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _RimColor: {r: 1, g: 0, b: 0, a: 1}
|
||||
- _RimPolarCenter: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1}
|
||||
- _SpecularColor: {r: 1, g: 1, b: 0, a: 1}
|
||||
- _SpecularPolarCenter: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _StylingCastShadowsColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _StylingColor: {r: 0.09433961, g: 0.039713364, b: 0, a: 1}
|
||||
- _StylingRimColor: {r: 0.56840867, g: 0, b: 0.6415094, a: 1}
|
||||
- _StylingSpecularColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
m_BuildTextureStacks: []
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 674f47e6809e363429aec7d7d672343f
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 269238
|
||||
packageName: The Toon Shader
|
||||
packageVersion: 1.4.2
|
||||
assetPath: Packages/com.shadercrew.the-toon-shader.3d/Scripts/Resources/TTSReferenceMaterials/03_Hatching_MessyPaint_TTS_RefMat.mat
|
||||
uploadId: 919972
|
||||
+389
@@ -0,0 +1,389 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!114 &-2336413758554962453
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 7
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: 04_Hatching_CleanStraightInking_TTS_RefMat
|
||||
m_Shader: {fileID: 4800000, guid: 1c6b3902befc80643a83432be8825adc, type: 3}
|
||||
m_ValidKeywords:
|
||||
- _SHADING_COLOR
|
||||
m_InvalidKeywords:
|
||||
- _OUTLINECONSTANTSCREENWIDTH_ON
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 0
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses: []
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _BaseMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BumpMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailAlbedoMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailMask:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailNormalMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _EmissionMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _GradientTex:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MainTex:
|
||||
m_Texture: {fileID: 2800000, guid: 0471008cf8fbd8b4a9b59fec47f7b993, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MetallicGlossMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NoiseMap1:
|
||||
m_Texture: {fileID: 2800000, guid: 0528154608ff38a4c845b6622c088ea0, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NoiseMap2:
|
||||
m_Texture: {fileID: 2800000, guid: f40d12a41bafa6749a1465879341fff5, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _OcclusionMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ParallaxMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SpecGlossMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _AlphaClip: 0
|
||||
- _AlphaToMask: 0
|
||||
- _AnchorSSToObjectsOrigin: 1
|
||||
- _Blend: 0
|
||||
- _BlendModePreserveSpecular: 1
|
||||
- _BumpScale: 1
|
||||
- _CastShadowColorMode: 0
|
||||
- _CastShadowsAnchorSSToObjectsOrigin: 1
|
||||
- _CastShadowsCoordinateSystem: 0
|
||||
- _CastShadowsDrawSpace: 1
|
||||
- _CastShadowsHardnessRandomIntensity: 0
|
||||
- _CastShadowsHardnessRandomMode: 2
|
||||
- _CastShadowsLengthRandomIntensity: 0.225
|
||||
- _CastShadowsLengthRandomMode: 0
|
||||
- _CastShadowsNoise1Seed: 1
|
||||
- _CastShadowsNoise1Size: 0.02
|
||||
- _CastShadowsNoise2Seed: 1
|
||||
- _CastShadowsNoiseIntensity: 0
|
||||
- _CastShadowsNumberOfCellsHatching: 1
|
||||
- _CastShadowsOpacityRandomIntensity: 0
|
||||
- _CastShadowsOpacityRandomMode: 1
|
||||
- _CastShadowsPolarCenterMode: 0
|
||||
- _CastShadowsSSCameraDistanceScaled: 1
|
||||
- _CastShadowsSmoothness: 0.9
|
||||
- _CastShadowsSpacingRandomIntensity: 1
|
||||
- _CastShadowsSpacingRandomMode: 0
|
||||
- _CastShadowsStrength: 0
|
||||
- _CastShadowsStyle: 0
|
||||
- _CastShadowsThicknessRandomMode: 1
|
||||
- _CastShadowsThicknesshRandomIntensity: 0.358
|
||||
- _CastShadowsUVSet: 0
|
||||
- _CellTransitionSmoothness: 0.353
|
||||
- _ClearCoatMask: 0
|
||||
- _ClearCoatSmoothness: 0
|
||||
- _CoordinateSystem: 0
|
||||
- _Cull: 2
|
||||
- _Cutoff: 0.5
|
||||
- _DetailAlbedoMapScale: 1
|
||||
- _DetailNormalMapScale: 1
|
||||
- _DrawSpace: 1
|
||||
- _DstBlend: 0
|
||||
- _DstBlendAlpha: 0
|
||||
- _EnableAntiAliasing: 1
|
||||
- _EnableCastShadows: 1
|
||||
- _EnableCastShadowsRandomizer: 1
|
||||
- _EnableCastShadowsStyling: 1
|
||||
- _EnableOutline: 1
|
||||
- _EnableRim: 0
|
||||
- _EnableRimRandomizer: 1
|
||||
- _EnableRimStyling: 0
|
||||
- _EnableShadingRandomizer: 1
|
||||
- _EnableShadingStyling: 1
|
||||
- _EnableShadows: 0
|
||||
- _EnableSpecular: 0
|
||||
- _EnableSpecularRandomizer: 1
|
||||
- _EnableSpecularStyling: 1
|
||||
- _EnableStyling: 1
|
||||
- _EnableStylingDistanceFade: 0
|
||||
- _EnableToonShading: 1
|
||||
- _EnvironmentReflections: 1
|
||||
- _GlossMapScale: 1
|
||||
- _Glossiness: 0
|
||||
- _GlossyReflections: 1
|
||||
- _GradientBlendFactor: 1
|
||||
- _GradientBlending: 2
|
||||
- _GradientMode: 0
|
||||
- _HalftonePatternCameraDistanceFade: 0
|
||||
- _HardnessRandomIntensity: 0
|
||||
- _HardnessRandomMode: 2
|
||||
- _HatchingAffectedByNormalMap: 0
|
||||
- _HatchingCameraDistanceFade: 0
|
||||
- _IsOptimized: 0
|
||||
- _LengthRandomIntensity: 0.225
|
||||
- _LengthRandomMode: 0
|
||||
- _LightFunction: 1
|
||||
- _LightSource: 0
|
||||
- _Metallic: 0
|
||||
- _Mode: 0
|
||||
- _NoiseIntensity: 0
|
||||
- _NoiseTextureQuality: 0
|
||||
- _NumberOfCells: 2
|
||||
- _NumberOfCellsHatching: 1
|
||||
- _OcclusionStrength: 1
|
||||
- _OpacityRandomIntensity: 0
|
||||
- _OpacityRandomMode: 1
|
||||
- _OutlineCameraDistanceImpact: 0
|
||||
- _OutlineConstantScreenWidth: 1
|
||||
- _OutlineDepthOffset: 0
|
||||
- _OutlineWidth: 1.5
|
||||
- _Parallax: 0.02
|
||||
- _PerlinNoiseSize: 4.6
|
||||
- _PolarCenterMode: 0
|
||||
- _QueueControl: -1
|
||||
- _QueueOffset: 0
|
||||
- _ReceiveShadows: 1
|
||||
- _RimAffectedArea: 2
|
||||
- _RimAffectedByNormalMap: 1
|
||||
- _RimAnchorSSToObjectsOrigin: 1
|
||||
- _RimBlending: 0
|
||||
- _RimCoordinateSystem: 0
|
||||
- _RimDrawSpace: 1
|
||||
- _RimHardnessRandomIntensity: 0
|
||||
- _RimHardnessRandomMode: 2
|
||||
- _RimLengthRandomIntensity: 0.25
|
||||
- _RimLengthRandomMode: 0
|
||||
- _RimNoise1Seed: 1
|
||||
- _RimNoise1Size: 0.02
|
||||
- _RimNoise2Seed: 1
|
||||
- _RimNoiseIntensity: 0
|
||||
- _RimOpacity: 1
|
||||
- _RimOpacityRandomIntensity: 0
|
||||
- _RimOpacityRandomMode: 1
|
||||
- _RimPerlinNoiseSeed: 1
|
||||
- _RimPerlinNoiseSize: 1
|
||||
- _RimPolarCenterMode: 0
|
||||
- _RimSSCameraDistanceScaled: 1
|
||||
- _RimSize: 0.026
|
||||
- _RimSmoothness: 0.443
|
||||
- _RimSpacingRandomIntensity: 1
|
||||
- _RimSpacingRandomMode: 0
|
||||
- _RimStyle: 0
|
||||
- _RimThicknessRandomMode: 1
|
||||
- _RimThicknesshRandomIntensity: 0.756
|
||||
- _RimUVSet: 0
|
||||
- _RimWhiteNoiseSeed: 1
|
||||
- _SSCameraDistanceScaled: 1
|
||||
- _ShadingAffectByNormalMap: 1
|
||||
- _ShadingAffectedByNormalMap: 1
|
||||
- _ShadingFunction: 0
|
||||
- _ShadingMode: 0
|
||||
- _ShadingNoise1Seed: 1
|
||||
- _ShadingNoise1Size: 0.02
|
||||
- _ShadingNoise2Seed: 1
|
||||
- _ShadingStyle: 0
|
||||
- _ShadingUseLightColors: 1
|
||||
- _ShadowsAffectByNormalMap: 1
|
||||
- _Smoothness: 0
|
||||
- _SmoothnessSource: 0
|
||||
- _SmoothnessTextureChannel: 0
|
||||
- _SpacingRandomIntensity: 1
|
||||
- _SpacingRandomMode: 0
|
||||
- _SpecularAffectedByNormalMap: 1
|
||||
- _SpecularAnchorSSToObjectsOrigin: 1
|
||||
- _SpecularBlending: 1
|
||||
- _SpecularCoordinateSystem: 0
|
||||
- _SpecularDrawSpace: 1
|
||||
- _SpecularHardnessRandomIntensity: 0
|
||||
- _SpecularHardnessRandomMode: 2
|
||||
- _SpecularHighlights: 1
|
||||
- _SpecularLengthRandomIntensity: 0.225
|
||||
- _SpecularLengthRandomMode: 0
|
||||
- _SpecularNoise1Seed: 1
|
||||
- _SpecularNoise1Size: 0.02
|
||||
- _SpecularNoise2Seed: 1
|
||||
- _SpecularNoiseIntensity: 0
|
||||
- _SpecularOpacity: 1
|
||||
- _SpecularOpacityRandomIntensity: 0
|
||||
- _SpecularOpacityRandomMode: 1
|
||||
- _SpecularPerlinNoiseSeed: 1
|
||||
- _SpecularPerlinNoiseSize: 1.93
|
||||
- _SpecularPolarCenterMode: 0
|
||||
- _SpecularSSCameraDistanceScaled: 1
|
||||
- _SpecularSize: 0.702
|
||||
- _SpecularSmoothness: 0.54
|
||||
- _SpecularSpacingRandomIntensity: 1
|
||||
- _SpecularSpacingRandomMode: 0
|
||||
- _SpecularStyle: 0
|
||||
- _SpecularThicknessRandomMode: 1
|
||||
- _SpecularThicknesshRandomIntensity: 0.358
|
||||
- _SpecularUVSet: 0
|
||||
- _SpecularUseLightColors: 1
|
||||
- _SpecularWhiteNoiseSeed: 1
|
||||
- _SrcBlend: 1
|
||||
- _SrcBlendAlpha: 1
|
||||
- _StylingAdjustDistanceFadeValue: 1
|
||||
- _StylingCastShadowsBlending: 0
|
||||
- _StylingCastShadowsDensity: 7.16
|
||||
- _StylingCastShadowsHalftonesOffset: 1
|
||||
- _StylingCastShadowsHalftonesRoundness: 1
|
||||
- _StylingCastShadowsHalftonesRoundnessFalloff: 1
|
||||
- _StylingCastShadowsHardness: 0.951
|
||||
- _StylingCastShadowsInitialDirection: 41
|
||||
- _StylingCastShadowsIsInverted: 0
|
||||
- _StylingCastShadowsOpacity: 1
|
||||
- _StylingCastShadowsOpacityFalloff: 0
|
||||
- _StylingCastShadowsRotationBetweenCells: -73
|
||||
- _StylingCastShadowsSmoothness: 1
|
||||
- _StylingCastShadowsSyncWithOtherStyling: 1
|
||||
- _StylingCastShadowsThickness: 0.484
|
||||
- _StylingCastShadowsThicknessControl: 0
|
||||
- _StylingCastShadowsThicknessFalloff: 0.201
|
||||
- _StylingDFFalloff: 1.58
|
||||
- _StylingDFStartingDistance: 2.46
|
||||
- _StylingDistanceFadeValue: 0
|
||||
- _StylingOvermodelingFactor: 0.424
|
||||
- _StylingRimAffectedArea: 1
|
||||
- _StylingRimBlending: 0
|
||||
- _StylingRimDensity: 2.31
|
||||
- _StylingRimHalftonesOffset: 1
|
||||
- _StylingRimHalftonesRoundness: 1
|
||||
- _StylingRimHalftonesRoundnessFalloff: 1
|
||||
- _StylingRimHardness: 0.73
|
||||
- _StylingRimIsInverted: 0
|
||||
- _StylingRimOpacity: 1
|
||||
- _StylingRimOpacityFalloff: 0
|
||||
- _StylingRimRotation: 41
|
||||
- _StylingRimSize: 0.184
|
||||
- _StylingRimSmoothness: 0.242
|
||||
- _StylingRimSyncWithOtherStyling: 1
|
||||
- _StylingRimThickness: 0.73
|
||||
- _StylingRimThicknessControl: 0
|
||||
- _StylingRimThicknessFalloff: 0.201
|
||||
- _StylingShadingBlending: 0
|
||||
- _StylingShadingDensity: 7.16
|
||||
- _StylingShadingHalftonesOffset: 1
|
||||
- _StylingShadingHalftonesRoundness: 1
|
||||
- _StylingShadingHalftonesRoundnessFalloff: 1
|
||||
- _StylingShadingHardness: 0.951
|
||||
- _StylingShadingInitialDirection: 41
|
||||
- _StylingShadingIsInverted: 0
|
||||
- _StylingShadingOpacity: 1
|
||||
- _StylingShadingOpacityFalloff: 0
|
||||
- _StylingShadingRotationBetweenCells: -73
|
||||
- _StylingShadingSyncWithOtherStyling: 0
|
||||
- _StylingShadingThickness: 0.484
|
||||
- _StylingShadingThicknessControl: 0
|
||||
- _StylingShadingThicknessFalloff: 0.201
|
||||
- _StylingSpecularBlending: 0
|
||||
- _StylingSpecularCutOutShading: 0
|
||||
- _StylingSpecularDensity: 7.16
|
||||
- _StylingSpecularHalftonesOffset: 1
|
||||
- _StylingSpecularHalftonesRoundness: 1
|
||||
- _StylingSpecularHalftonesRoundnessFalloff: 1
|
||||
- _StylingSpecularHardness: 0.951
|
||||
- _StylingSpecularIsInverted: 0
|
||||
- _StylingSpecularOpacity: 1
|
||||
- _StylingSpecularOpacityFalloff: 0
|
||||
- _StylingSpecularRotation: 41
|
||||
- _StylingSpecularSize: 0.919
|
||||
- _StylingSpecularSmoothness: 0.492
|
||||
- _StylingSpecularSyncWithOtherStyling: 1
|
||||
- _StylingSpecularThickness: 0.484
|
||||
- _StylingSpecularThicknessControl: 0
|
||||
- _StylingSpecularThicknessFalloff: 0.201
|
||||
- _StylingSpecularUseLightColors: 0
|
||||
- _StylingTerminatorPosition: 0
|
||||
- _SumLightsBeforePosterization: 1
|
||||
- _Surface: 0
|
||||
- _SyncWithLightPartitioning: 0
|
||||
- _SyncWithRim: 0
|
||||
- _SyncWithSpecular: 0
|
||||
- _TerminatorPosition: 0
|
||||
- _TerminatorSmoothness: 0.176
|
||||
- _TerminatorWidth: 0.205
|
||||
- _TheToonShaderIdentifier: 1
|
||||
- _ThicknessRandomMode: 1
|
||||
- _ThicknesshRandomIntensity: 0.358
|
||||
- _UVSec: 0
|
||||
- _UVSet: 0
|
||||
- _UseAlphaOnlyFromBaseMap: 0
|
||||
- _WorkflowMode: 1
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _BaseColor: {r: 0.8207547, g: 0.8050365, b: 0.70848167, a: 1}
|
||||
- _CastShadowColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _CastShadowsPolarCenter: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _Color: {r: 0.81960785, g: 0.8039216, b: 0.70980394, a: 1}
|
||||
- _CoreShadowColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _FormShadowColor: {r: 0.3137255, g: 0.3647059, b: 0.5764706, a: 1}
|
||||
- _OutlineColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _PolarCenter: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _RimColor: {r: 1, g: 0, b: 0, a: 1}
|
||||
- _RimPolarCenter: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1}
|
||||
- _SpecularColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _SpecularPolarCenter: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _StylingCastShadowsColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _StylingColor: {r: 0.047169805, g: 0, b: 0.006612291, a: 1}
|
||||
- _StylingRimColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _StylingSpecularColor: {r: 1, g: 0.9570925, b: 0.7971698, a: 1}
|
||||
m_BuildTextureStacks: []
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
fileFormatVersion: 2
|
||||
guid: e9e9bf94567b43e4b992be214492474e
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 269238
|
||||
packageName: The Toon Shader
|
||||
packageVersion: 1.4.2
|
||||
assetPath: Packages/com.shadercrew.the-toon-shader.3d/Scripts/Resources/TTSReferenceMaterials/04_Hatching_CleanStraightInking_TTS_RefMat.mat
|
||||
uploadId: 919972
|
||||
+389
@@ -0,0 +1,389 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!114 &-2336413758554962453
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 7
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: 05_Hatching_FlatComicHatchingWithTexture_TTS_RefMat
|
||||
m_Shader: {fileID: 4800000, guid: 1c6b3902befc80643a83432be8825adc, type: 3}
|
||||
m_ValidKeywords:
|
||||
- _SHADING_COLOR
|
||||
m_InvalidKeywords:
|
||||
- _OUTLINECONSTANTSCREENWIDTH_ON
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 0
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses: []
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _BaseMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BumpMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailAlbedoMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailMask:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailNormalMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _EmissionMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _GradientTex:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MainTex:
|
||||
m_Texture: {fileID: 2800000, guid: 0471008cf8fbd8b4a9b59fec47f7b993, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MetallicGlossMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NoiseMap1:
|
||||
m_Texture: {fileID: 2800000, guid: 0528154608ff38a4c845b6622c088ea0, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NoiseMap2:
|
||||
m_Texture: {fileID: 2800000, guid: f40d12a41bafa6749a1465879341fff5, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _OcclusionMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ParallaxMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SpecGlossMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _AlphaClip: 0
|
||||
- _AlphaToMask: 0
|
||||
- _AnchorSSToObjectsOrigin: 1
|
||||
- _Blend: 0
|
||||
- _BlendModePreserveSpecular: 1
|
||||
- _BumpScale: 1
|
||||
- _CastShadowColorMode: 1
|
||||
- _CastShadowsAnchorSSToObjectsOrigin: 1
|
||||
- _CastShadowsCoordinateSystem: 0
|
||||
- _CastShadowsDrawSpace: 1
|
||||
- _CastShadowsHardnessRandomIntensity: 0
|
||||
- _CastShadowsHardnessRandomMode: 2
|
||||
- _CastShadowsLengthRandomIntensity: 0.426
|
||||
- _CastShadowsLengthRandomMode: 2
|
||||
- _CastShadowsNoise1Seed: 1
|
||||
- _CastShadowsNoise1Size: 0.1
|
||||
- _CastShadowsNoise2Seed: 1
|
||||
- _CastShadowsNoiseIntensity: 0
|
||||
- _CastShadowsNumberOfCellsHatching: 2
|
||||
- _CastShadowsOpacityRandomIntensity: 0
|
||||
- _CastShadowsOpacityRandomMode: 1
|
||||
- _CastShadowsPolarCenterMode: 0
|
||||
- _CastShadowsSSCameraDistanceScaled: 1
|
||||
- _CastShadowsSmoothness: 0.9
|
||||
- _CastShadowsSpacingRandomIntensity: 1
|
||||
- _CastShadowsSpacingRandomMode: 0
|
||||
- _CastShadowsStrength: 0
|
||||
- _CastShadowsStyle: 0
|
||||
- _CastShadowsThicknessRandomMode: 1
|
||||
- _CastShadowsThicknesshRandomIntensity: 0.849
|
||||
- _CastShadowsUVSet: 0
|
||||
- _CellTransitionSmoothness: 0.353
|
||||
- _ClearCoatMask: 0
|
||||
- _ClearCoatSmoothness: 0
|
||||
- _CoordinateSystem: 0
|
||||
- _Cull: 2
|
||||
- _Cutoff: 0.5
|
||||
- _DetailAlbedoMapScale: 1
|
||||
- _DetailNormalMapScale: 1
|
||||
- _DrawSpace: 1
|
||||
- _DstBlend: 0
|
||||
- _DstBlendAlpha: 0
|
||||
- _EnableAntiAliasing: 0
|
||||
- _EnableCastShadows: 1
|
||||
- _EnableCastShadowsRandomizer: 1
|
||||
- _EnableCastShadowsStyling: 1
|
||||
- _EnableOutline: 1
|
||||
- _EnableRim: 0
|
||||
- _EnableRimRandomizer: 1
|
||||
- _EnableRimStyling: 0
|
||||
- _EnableShadingRandomizer: 1
|
||||
- _EnableShadingStyling: 1
|
||||
- _EnableShadows: 1
|
||||
- _EnableSpecular: 0
|
||||
- _EnableSpecularRandomizer: 1
|
||||
- _EnableSpecularStyling: 0
|
||||
- _EnableStyling: 1
|
||||
- _EnableStylingDistanceFade: 0
|
||||
- _EnableToonShading: 1
|
||||
- _EnvironmentReflections: 1
|
||||
- _GlossMapScale: 1
|
||||
- _Glossiness: 0
|
||||
- _GlossyReflections: 1
|
||||
- _GradientBlendFactor: 1
|
||||
- _GradientBlending: 2
|
||||
- _GradientMode: 0
|
||||
- _HalftonePatternCameraDistanceFade: 0
|
||||
- _HardnessRandomIntensity: 0
|
||||
- _HardnessRandomMode: 2
|
||||
- _HatchingAffectedByNormalMap: 0
|
||||
- _HatchingCameraDistanceFade: 0
|
||||
- _IsOptimized: 0
|
||||
- _LengthRandomIntensity: 0.426
|
||||
- _LengthRandomMode: 2
|
||||
- _LightFunction: 1
|
||||
- _LightSource: 0
|
||||
- _Metallic: 0
|
||||
- _Mode: 0
|
||||
- _NoiseIntensity: 0
|
||||
- _NoiseTextureQuality: 0
|
||||
- _NumberOfCells: 1
|
||||
- _NumberOfCellsHatching: 2
|
||||
- _OcclusionStrength: 1
|
||||
- _OpacityRandomIntensity: 0
|
||||
- _OpacityRandomMode: 1
|
||||
- _OutlineCameraDistanceImpact: 0
|
||||
- _OutlineConstantScreenWidth: 1
|
||||
- _OutlineDepthOffset: 0
|
||||
- _OutlineWidth: 1.5
|
||||
- _Parallax: 0.02
|
||||
- _PerlinNoiseSize: 4.6
|
||||
- _PolarCenterMode: 0
|
||||
- _QueueControl: -1
|
||||
- _QueueOffset: 0
|
||||
- _ReceiveShadows: 1
|
||||
- _RimAffectedArea: 2
|
||||
- _RimAffectedByNormalMap: 1
|
||||
- _RimAnchorSSToObjectsOrigin: 1
|
||||
- _RimBlending: 0
|
||||
- _RimCoordinateSystem: 0
|
||||
- _RimDrawSpace: 0
|
||||
- _RimHardnessRandomIntensity: 0
|
||||
- _RimHardnessRandomMode: 1
|
||||
- _RimLengthRandomIntensity: 0
|
||||
- _RimLengthRandomMode: 0
|
||||
- _RimNoise1Seed: 1
|
||||
- _RimNoise1Size: 1
|
||||
- _RimNoise2Seed: 1
|
||||
- _RimNoiseIntensity: 0
|
||||
- _RimOpacity: 1
|
||||
- _RimOpacityRandomIntensity: 0
|
||||
- _RimOpacityRandomMode: 0
|
||||
- _RimPerlinNoiseSeed: 1
|
||||
- _RimPerlinNoiseSize: 1
|
||||
- _RimPolarCenterMode: 0
|
||||
- _RimSSCameraDistanceScaled: 0
|
||||
- _RimSize: 0.026
|
||||
- _RimSmoothness: 0.443
|
||||
- _RimSpacingRandomIntensity: 0
|
||||
- _RimSpacingRandomMode: 0
|
||||
- _RimStyle: 0
|
||||
- _RimThicknessRandomMode: 1
|
||||
- _RimThicknesshRandomIntensity: 0
|
||||
- _RimUVSet: 0
|
||||
- _RimWhiteNoiseSeed: 1
|
||||
- _SSCameraDistanceScaled: 1
|
||||
- _ShadingAffectByNormalMap: 1
|
||||
- _ShadingAffectedByNormalMap: 1
|
||||
- _ShadingFunction: 0
|
||||
- _ShadingMode: 0
|
||||
- _ShadingNoise1Seed: 1
|
||||
- _ShadingNoise1Size: 0.1
|
||||
- _ShadingNoise2Seed: 1
|
||||
- _ShadingStyle: 0
|
||||
- _ShadingUseLightColors: 1
|
||||
- _ShadowsAffectByNormalMap: 1
|
||||
- _Smoothness: 0
|
||||
- _SmoothnessSource: 0
|
||||
- _SmoothnessTextureChannel: 0
|
||||
- _SpacingRandomIntensity: 1
|
||||
- _SpacingRandomMode: 0
|
||||
- _SpecularAffectedByNormalMap: 1
|
||||
- _SpecularAnchorSSToObjectsOrigin: 1
|
||||
- _SpecularBlending: 1
|
||||
- _SpecularCoordinateSystem: 0
|
||||
- _SpecularDrawSpace: 1
|
||||
- _SpecularHardnessRandomIntensity: 0
|
||||
- _SpecularHardnessRandomMode: 2
|
||||
- _SpecularHighlights: 1
|
||||
- _SpecularLengthRandomIntensity: 0.25
|
||||
- _SpecularLengthRandomMode: 0
|
||||
- _SpecularNoise1Seed: 1
|
||||
- _SpecularNoise1Size: 0.1
|
||||
- _SpecularNoise2Seed: 1
|
||||
- _SpecularNoiseIntensity: 0
|
||||
- _SpecularOpacity: 1
|
||||
- _SpecularOpacityRandomIntensity: 0
|
||||
- _SpecularOpacityRandomMode: 1
|
||||
- _SpecularPerlinNoiseSeed: 1
|
||||
- _SpecularPerlinNoiseSize: 1.93
|
||||
- _SpecularPolarCenterMode: 0
|
||||
- _SpecularSSCameraDistanceScaled: 1
|
||||
- _SpecularSize: 0.702
|
||||
- _SpecularSmoothness: 0.54
|
||||
- _SpecularSpacingRandomIntensity: 1
|
||||
- _SpecularSpacingRandomMode: 0
|
||||
- _SpecularStyle: 0
|
||||
- _SpecularThicknessRandomMode: 1
|
||||
- _SpecularThicknesshRandomIntensity: 0.756
|
||||
- _SpecularUVSet: 0
|
||||
- _SpecularUseLightColors: 1
|
||||
- _SpecularWhiteNoiseSeed: 1
|
||||
- _SrcBlend: 1
|
||||
- _SrcBlendAlpha: 1
|
||||
- _StylingAdjustDistanceFadeValue: 1
|
||||
- _StylingCastShadowsBlending: 0
|
||||
- _StylingCastShadowsDensity: 5.67
|
||||
- _StylingCastShadowsHalftonesOffset: 1
|
||||
- _StylingCastShadowsHalftonesRoundness: 1
|
||||
- _StylingCastShadowsHalftonesRoundnessFalloff: 1
|
||||
- _StylingCastShadowsHardness: 0.73
|
||||
- _StylingCastShadowsInitialDirection: 41
|
||||
- _StylingCastShadowsIsInverted: 0
|
||||
- _StylingCastShadowsOpacity: 1
|
||||
- _StylingCastShadowsOpacityFalloff: 0
|
||||
- _StylingCastShadowsRotationBetweenCells: -73
|
||||
- _StylingCastShadowsSmoothness: 1
|
||||
- _StylingCastShadowsSyncWithOtherStyling: 1
|
||||
- _StylingCastShadowsThickness: 0.73
|
||||
- _StylingCastShadowsThicknessControl: 0
|
||||
- _StylingCastShadowsThicknessFalloff: 0.201
|
||||
- _StylingDFFalloff: 1.58
|
||||
- _StylingDFStartingDistance: 2.46
|
||||
- _StylingDistanceFadeValue: 0
|
||||
- _StylingOvermodelingFactor: 0.424
|
||||
- _StylingRimAffectedArea: 1
|
||||
- _StylingRimBlending: 0
|
||||
- _StylingRimDensity: 4.3
|
||||
- _StylingRimHalftonesOffset: 1
|
||||
- _StylingRimHalftonesRoundness: 1
|
||||
- _StylingRimHalftonesRoundnessFalloff: 1
|
||||
- _StylingRimHardness: 0.9
|
||||
- _StylingRimIsInverted: 0
|
||||
- _StylingRimOpacity: 1
|
||||
- _StylingRimOpacityFalloff: 0
|
||||
- _StylingRimRotation: 0
|
||||
- _StylingRimSize: 0
|
||||
- _StylingRimSmoothness: 0
|
||||
- _StylingRimSyncWithOtherStyling: 0
|
||||
- _StylingRimThickness: 0.8
|
||||
- _StylingRimThicknessControl: 0
|
||||
- _StylingRimThicknessFalloff: 0.1
|
||||
- _StylingShadingBlending: 0
|
||||
- _StylingShadingDensity: 5.67
|
||||
- _StylingShadingHalftonesOffset: 1
|
||||
- _StylingShadingHalftonesRoundness: 1
|
||||
- _StylingShadingHalftonesRoundnessFalloff: 1
|
||||
- _StylingShadingHardness: 0.73
|
||||
- _StylingShadingInitialDirection: 41
|
||||
- _StylingShadingIsInverted: 0
|
||||
- _StylingShadingOpacity: 1
|
||||
- _StylingShadingOpacityFalloff: 0
|
||||
- _StylingShadingRotationBetweenCells: -73
|
||||
- _StylingShadingSyncWithOtherStyling: 0
|
||||
- _StylingShadingThickness: 0.73
|
||||
- _StylingShadingThicknessControl: 0
|
||||
- _StylingShadingThicknessFalloff: 0.201
|
||||
- _StylingSpecularBlending: 0
|
||||
- _StylingSpecularCutOutShading: 0
|
||||
- _StylingSpecularDensity: 40.8
|
||||
- _StylingSpecularHalftonesOffset: 1
|
||||
- _StylingSpecularHalftonesRoundness: 1
|
||||
- _StylingSpecularHalftonesRoundnessFalloff: 1
|
||||
- _StylingSpecularHardness: 0.73
|
||||
- _StylingSpecularIsInverted: 0
|
||||
- _StylingSpecularOpacity: 1
|
||||
- _StylingSpecularOpacityFalloff: 0
|
||||
- _StylingSpecularRotation: 41
|
||||
- _StylingSpecularSize: 0.8
|
||||
- _StylingSpecularSmoothness: 0.7
|
||||
- _StylingSpecularSyncWithOtherStyling: 1
|
||||
- _StylingSpecularThickness: 0.73
|
||||
- _StylingSpecularThicknessControl: 0
|
||||
- _StylingSpecularThicknessFalloff: 0.201
|
||||
- _StylingSpecularUseLightColors: 0
|
||||
- _StylingTerminatorPosition: 0
|
||||
- _SumLightsBeforePosterization: 1
|
||||
- _Surface: 0
|
||||
- _SyncWithLightPartitioning: 0
|
||||
- _SyncWithRim: 0
|
||||
- _SyncWithSpecular: 0
|
||||
- _TerminatorPosition: 0
|
||||
- _TerminatorSmoothness: 0.428
|
||||
- _TerminatorWidth: 0.658
|
||||
- _TheToonShaderIdentifier: 1
|
||||
- _ThicknessRandomMode: 1
|
||||
- _ThicknesshRandomIntensity: 0.849
|
||||
- _UVSec: 0
|
||||
- _UVSet: 0
|
||||
- _UseAlphaOnlyFromBaseMap: 0
|
||||
- _WorkflowMode: 1
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _BaseColor: {r: 0.8207547, g: 0.8050365, b: 0.70848167, a: 1}
|
||||
- _CastShadowColor: {r: 0.46226418, g: 0.46226418, b: 0.46226418, a: 1}
|
||||
- _CastShadowsPolarCenter: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _Color: {r: 0.9063317, g: 0.9063317, b: 0.9063317, a: 1}
|
||||
- _CoreShadowColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _FormShadowColor: {r: 0.3726415, g: 0.63025105, b: 1, a: 1}
|
||||
- _OutlineColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _PolarCenter: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _RimColor: {r: 1, g: 0, b: 0, a: 1}
|
||||
- _RimPolarCenter: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1}
|
||||
- _SpecularColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _SpecularPolarCenter: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _StylingCastShadowsColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _StylingColor: {r: 0.047169805, g: 0, b: 0.006612291, a: 1}
|
||||
- _StylingRimColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _StylingSpecularColor: {r: 0.990566, g: 0.8811385, b: 0.6401299, a: 1}
|
||||
m_BuildTextureStacks: []
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 3266196dbb885ca41972f9ba466e6581
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 269238
|
||||
packageName: The Toon Shader
|
||||
packageVersion: 1.4.2
|
||||
assetPath: Packages/com.shadercrew.the-toon-shader.3d/Scripts/Resources/TTSReferenceMaterials/05_Hatching_FlatComicHatchingWithTexture_TTS_RefMat.mat
|
||||
uploadId: 919972
|
||||
+388
@@ -0,0 +1,388 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!114 &-2336413758554962453
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 7
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: 06_Hatching_FountainPenWithRim_TTS_RefMat
|
||||
m_Shader: {fileID: 4800000, guid: cdb1479f619aff740b0cea7a60a84201, type: 3}
|
||||
m_ValidKeywords:
|
||||
- _SHADING_COLOR
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 0
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses: []
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _BaseMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BumpMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailAlbedoMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailMask:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailNormalMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _EmissionMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _GradientTex:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MainTex:
|
||||
m_Texture: {fileID: 2800000, guid: 0471008cf8fbd8b4a9b59fec47f7b993, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MetallicGlossMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NoiseMap1:
|
||||
m_Texture: {fileID: 2800000, guid: 0528154608ff38a4c845b6622c088ea0, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NoiseMap2:
|
||||
m_Texture: {fileID: 2800000, guid: f40d12a41bafa6749a1465879341fff5, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _OcclusionMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ParallaxMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SpecGlossMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _AlphaClip: 0
|
||||
- _AlphaToMask: 0
|
||||
- _AnchorSSToObjectsOrigin: 1
|
||||
- _Blend: 0
|
||||
- _BlendModePreserveSpecular: 1
|
||||
- _BumpScale: 1
|
||||
- _CastShadowColorMode: 0
|
||||
- _CastShadowsAnchorSSToObjectsOrigin: 1
|
||||
- _CastShadowsCoordinateSystem: 0
|
||||
- _CastShadowsDrawSpace: 0
|
||||
- _CastShadowsHardnessRandomIntensity: 0.145
|
||||
- _CastShadowsHardnessRandomMode: 2
|
||||
- _CastShadowsLengthRandomIntensity: 0.667
|
||||
- _CastShadowsLengthRandomMode: 1
|
||||
- _CastShadowsNoise1Seed: 1
|
||||
- _CastShadowsNoise1Size: 1
|
||||
- _CastShadowsNoise2Seed: 1
|
||||
- _CastShadowsNoiseIntensity: 0
|
||||
- _CastShadowsNumberOfCellsHatching: 10
|
||||
- _CastShadowsOpacityRandomIntensity: 0.093
|
||||
- _CastShadowsOpacityRandomMode: 2
|
||||
- _CastShadowsPolarCenterMode: 0
|
||||
- _CastShadowsSSCameraDistanceScaled: 0
|
||||
- _CastShadowsSmoothness: 0.9
|
||||
- _CastShadowsSpacingRandomIntensity: 0.904
|
||||
- _CastShadowsSpacingRandomMode: 0
|
||||
- _CastShadowsStrength: 0
|
||||
- _CastShadowsStyle: 0
|
||||
- _CastShadowsThicknessRandomMode: 1
|
||||
- _CastShadowsThicknesshRandomIntensity: 0.793
|
||||
- _CastShadowsUVSet: 0
|
||||
- _CellTransitionSmoothness: 0.353
|
||||
- _ClearCoatMask: 0
|
||||
- _ClearCoatSmoothness: 0
|
||||
- _CoordinateSystem: 0
|
||||
- _Cull: 2
|
||||
- _Cutoff: 0.5
|
||||
- _DetailAlbedoMapScale: 1
|
||||
- _DetailNormalMapScale: 1
|
||||
- _DrawSpace: 0
|
||||
- _DstBlend: 0
|
||||
- _DstBlendAlpha: 0
|
||||
- _EnableAntiAliasing: 0
|
||||
- _EnableCastShadows: 0
|
||||
- _EnableCastShadowsRandomizer: 1
|
||||
- _EnableCastShadowsStyling: 1
|
||||
- _EnableOutline: 0
|
||||
- _EnableRim: 1
|
||||
- _EnableRimRandomizer: 1
|
||||
- _EnableRimStyling: 1
|
||||
- _EnableShadingRandomizer: 1
|
||||
- _EnableShadingStyling: 1
|
||||
- _EnableShadows: 1
|
||||
- _EnableSpecular: 0
|
||||
- _EnableSpecularRandomizer: 1
|
||||
- _EnableSpecularStyling: 1
|
||||
- _EnableStyling: 1
|
||||
- _EnableStylingDistanceFade: 0
|
||||
- _EnableToonShading: 1
|
||||
- _EnvironmentReflections: 1
|
||||
- _GlossMapScale: 1
|
||||
- _Glossiness: 0
|
||||
- _GlossyReflections: 1
|
||||
- _GradientBlendFactor: 1
|
||||
- _GradientBlending: 2
|
||||
- _GradientMode: 0
|
||||
- _HalftonePatternCameraDistanceFade: 0
|
||||
- _HardnessRandomIntensity: 0.145
|
||||
- _HardnessRandomMode: 2
|
||||
- _HatchingAffectedByNormalMap: 1
|
||||
- _HatchingCameraDistanceFade: 0
|
||||
- _IsOptimized: 0
|
||||
- _LengthRandomIntensity: 0.667
|
||||
- _LengthRandomMode: 1
|
||||
- _LightFunction: 1
|
||||
- _LightSource: 0
|
||||
- _Metallic: 0
|
||||
- _Mode: 0
|
||||
- _NoiseIntensity: 0
|
||||
- _NoiseTextureQuality: 0
|
||||
- _NumberOfCells: 2
|
||||
- _NumberOfCellsHatching: 10
|
||||
- _OcclusionStrength: 1
|
||||
- _OpacityRandomIntensity: 0.093
|
||||
- _OpacityRandomMode: 2
|
||||
- _OutlineCameraDistanceImpact: 0
|
||||
- _OutlineConstantScreenWidth: 0
|
||||
- _OutlineDepthOffset: 0
|
||||
- _OutlineWidth: 6
|
||||
- _Parallax: 0.02
|
||||
- _PerlinNoiseSize: 4.6
|
||||
- _PolarCenterMode: 0
|
||||
- _QueueControl: -1
|
||||
- _QueueOffset: 0
|
||||
- _ReceiveShadows: 1
|
||||
- _RimAffectedArea: 2
|
||||
- _RimAffectedByNormalMap: 1
|
||||
- _RimAnchorSSToObjectsOrigin: 1
|
||||
- _RimBlending: 0
|
||||
- _RimCoordinateSystem: 0
|
||||
- _RimDrawSpace: 0
|
||||
- _RimHardnessRandomIntensity: 0
|
||||
- _RimHardnessRandomMode: 1
|
||||
- _RimLengthRandomIntensity: 0
|
||||
- _RimLengthRandomMode: 0
|
||||
- _RimNoise1Seed: 1
|
||||
- _RimNoise1Size: 1
|
||||
- _RimNoise2Seed: 1
|
||||
- _RimNoiseIntensity: 0
|
||||
- _RimOpacity: 1
|
||||
- _RimOpacityRandomIntensity: 0
|
||||
- _RimOpacityRandomMode: 0
|
||||
- _RimPerlinNoiseSeed: 1
|
||||
- _RimPerlinNoiseSize: 1
|
||||
- _RimPolarCenterMode: 0
|
||||
- _RimSSCameraDistanceScaled: 0
|
||||
- _RimSize: 0.026
|
||||
- _RimSmoothness: 0.443
|
||||
- _RimSpacingRandomIntensity: 0
|
||||
- _RimSpacingRandomMode: 0
|
||||
- _RimStyle: 0
|
||||
- _RimThicknessRandomMode: 1
|
||||
- _RimThicknesshRandomIntensity: 0
|
||||
- _RimUVSet: 0
|
||||
- _RimWhiteNoiseSeed: 1
|
||||
- _SSCameraDistanceScaled: 0
|
||||
- _ShadingAffectByNormalMap: 1
|
||||
- _ShadingAffectedByNormalMap: 1
|
||||
- _ShadingFunction: 0
|
||||
- _ShadingMode: 0
|
||||
- _ShadingNoise1Seed: 1
|
||||
- _ShadingNoise1Size: 1
|
||||
- _ShadingNoise2Seed: 1
|
||||
- _ShadingStyle: 0
|
||||
- _ShadingUseLightColors: 1
|
||||
- _ShadowsAffectByNormalMap: 1
|
||||
- _Smoothness: 0
|
||||
- _SmoothnessSource: 0
|
||||
- _SmoothnessTextureChannel: 0
|
||||
- _SpacingRandomIntensity: 0.904
|
||||
- _SpacingRandomMode: 0
|
||||
- _SpecularAffectedByNormalMap: 1
|
||||
- _SpecularAnchorSSToObjectsOrigin: 1
|
||||
- _SpecularBlending: 1
|
||||
- _SpecularCoordinateSystem: 0
|
||||
- _SpecularDrawSpace: 0
|
||||
- _SpecularHardnessRandomIntensity: 0.145
|
||||
- _SpecularHardnessRandomMode: 2
|
||||
- _SpecularHighlights: 1
|
||||
- _SpecularLengthRandomIntensity: 0.667
|
||||
- _SpecularLengthRandomMode: 1
|
||||
- _SpecularNoise1Seed: 1
|
||||
- _SpecularNoise1Size: 1
|
||||
- _SpecularNoise2Seed: 1
|
||||
- _SpecularNoiseIntensity: 0
|
||||
- _SpecularOpacity: 1
|
||||
- _SpecularOpacityRandomIntensity: 0.093
|
||||
- _SpecularOpacityRandomMode: 2
|
||||
- _SpecularPerlinNoiseSeed: 1
|
||||
- _SpecularPerlinNoiseSize: 1.93
|
||||
- _SpecularPolarCenterMode: 0
|
||||
- _SpecularSSCameraDistanceScaled: 0
|
||||
- _SpecularSize: 0.702
|
||||
- _SpecularSmoothness: 0.54
|
||||
- _SpecularSpacingRandomIntensity: 0.904
|
||||
- _SpecularSpacingRandomMode: 0
|
||||
- _SpecularStyle: 0
|
||||
- _SpecularThicknessRandomMode: 1
|
||||
- _SpecularThicknesshRandomIntensity: 0.793
|
||||
- _SpecularUVSet: 0
|
||||
- _SpecularUseLightColors: 1
|
||||
- _SpecularWhiteNoiseSeed: 1
|
||||
- _SrcBlend: 1
|
||||
- _SrcBlendAlpha: 1
|
||||
- _StylingAdjustDistanceFadeValue: 1
|
||||
- _StylingCastShadowsBlending: 0
|
||||
- _StylingCastShadowsDensity: 117
|
||||
- _StylingCastShadowsHalftonesOffset: 1
|
||||
- _StylingCastShadowsHalftonesRoundness: 1
|
||||
- _StylingCastShadowsHalftonesRoundnessFalloff: 1
|
||||
- _StylingCastShadowsHardness: 1
|
||||
- _StylingCastShadowsInitialDirection: 45
|
||||
- _StylingCastShadowsIsInverted: 0
|
||||
- _StylingCastShadowsOpacity: 1
|
||||
- _StylingCastShadowsOpacityFalloff: 0.63
|
||||
- _StylingCastShadowsRotationBetweenCells: 47
|
||||
- _StylingCastShadowsSmoothness: 1
|
||||
- _StylingCastShadowsSyncWithOtherStyling: 1
|
||||
- _StylingCastShadowsThickness: 0.611
|
||||
- _StylingCastShadowsThicknessControl: 0
|
||||
- _StylingCastShadowsThicknessFalloff: 0.12
|
||||
- _StylingDFFalloff: 1.58
|
||||
- _StylingDFStartingDistance: 2.46
|
||||
- _StylingDistanceFadeValue: 0
|
||||
- _StylingOvermodelingFactor: 0
|
||||
- _StylingRimAffectedArea: 1
|
||||
- _StylingRimBlending: 0
|
||||
- _StylingRimDensity: 4.3
|
||||
- _StylingRimHalftonesOffset: 1
|
||||
- _StylingRimHalftonesRoundness: 1
|
||||
- _StylingRimHalftonesRoundnessFalloff: 1
|
||||
- _StylingRimHardness: 0.9
|
||||
- _StylingRimIsInverted: 0
|
||||
- _StylingRimOpacity: 1
|
||||
- _StylingRimOpacityFalloff: 0
|
||||
- _StylingRimRotation: 0
|
||||
- _StylingRimSize: 0
|
||||
- _StylingRimSmoothness: 0
|
||||
- _StylingRimSyncWithOtherStyling: 0
|
||||
- _StylingRimThickness: 0.8
|
||||
- _StylingRimThicknessControl: 0
|
||||
- _StylingRimThicknessFalloff: 0.1
|
||||
- _StylingShadingBlending: 0
|
||||
- _StylingShadingDensity: 117
|
||||
- _StylingShadingHalftonesOffset: 1
|
||||
- _StylingShadingHalftonesRoundness: 1
|
||||
- _StylingShadingHalftonesRoundnessFalloff: 1
|
||||
- _StylingShadingHardness: 1
|
||||
- _StylingShadingInitialDirection: 45
|
||||
- _StylingShadingIsInverted: 0
|
||||
- _StylingShadingOpacity: 1
|
||||
- _StylingShadingOpacityFalloff: 0.63
|
||||
- _StylingShadingRotationBetweenCells: 47
|
||||
- _StylingShadingSyncWithOtherStyling: 0
|
||||
- _StylingShadingThickness: 0.611
|
||||
- _StylingShadingThicknessControl: 0
|
||||
- _StylingShadingThicknessFalloff: 0.12
|
||||
- _StylingSpecularBlending: 0
|
||||
- _StylingSpecularCutOutShading: 0
|
||||
- _StylingSpecularDensity: 117
|
||||
- _StylingSpecularHalftonesOffset: 1
|
||||
- _StylingSpecularHalftonesRoundness: 1
|
||||
- _StylingSpecularHalftonesRoundnessFalloff: 1
|
||||
- _StylingSpecularHardness: 1
|
||||
- _StylingSpecularIsInverted: 0
|
||||
- _StylingSpecularOpacity: 1
|
||||
- _StylingSpecularOpacityFalloff: 0.63
|
||||
- _StylingSpecularRotation: 45
|
||||
- _StylingSpecularSize: 0.8
|
||||
- _StylingSpecularSmoothness: 0.7
|
||||
- _StylingSpecularSyncWithOtherStyling: 1
|
||||
- _StylingSpecularThickness: 0.611
|
||||
- _StylingSpecularThicknessControl: 0
|
||||
- _StylingSpecularThicknessFalloff: 0.12
|
||||
- _StylingSpecularUseLightColors: 0
|
||||
- _StylingTerminatorPosition: 0
|
||||
- _SumLightsBeforePosterization: 1
|
||||
- _Surface: 0
|
||||
- _SyncWithLightPartitioning: 0
|
||||
- _SyncWithRim: 0
|
||||
- _SyncWithSpecular: 0
|
||||
- _TerminatorPosition: 0
|
||||
- _TerminatorSmoothness: 0.176
|
||||
- _TerminatorWidth: 0.205
|
||||
- _TheToonShaderIdentifier: 1
|
||||
- _ThicknessRandomMode: 1
|
||||
- _ThicknesshRandomIntensity: 0.793
|
||||
- _UVSec: 0
|
||||
- _UVSet: 0
|
||||
- _UseAlphaOnlyFromBaseMap: 0
|
||||
- _WorkflowMode: 1
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _BaseColor: {r: 0.6740388, g: 0.764151, b: 0.7469131, a: 1}
|
||||
- _CastShadowColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _CastShadowsPolarCenter: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _Color: {r: 0.6745098, g: 0.7647059, b: 0.74509805, a: 1}
|
||||
- _CoreShadowColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _FormShadowColor: {r: 0.3137255, g: 0.3647059, b: 0.5764706, a: 1}
|
||||
- _OutlineColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _PolarCenter: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _RimColor: {r: 1, g: 0, b: 0, a: 1}
|
||||
- _RimPolarCenter: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1}
|
||||
- _SpecularColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _SpecularPolarCenter: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _StylingCastShadowsColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _StylingColor: {r: 0.047169805, g: 0, b: 0.006612291, a: 1}
|
||||
- _StylingRimColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _StylingSpecularColor: {r: 0.990566, g: 0.8811385, b: 0.6401299, a: 1}
|
||||
m_BuildTextureStacks: []
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 5874954c710d0d44db11b02c4ddbe8d5
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 269238
|
||||
packageName: The Toon Shader
|
||||
packageVersion: 1.4.2
|
||||
assetPath: Packages/com.shadercrew.the-toon-shader.3d/Scripts/Resources/TTSReferenceMaterials/06_Hatching_FountainPenWithRim_TTS_RefMat.mat
|
||||
uploadId: 919972
|
||||
+408
@@ -0,0 +1,408 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!114 &-2336413758554962453
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 7
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: 07_Hatching_PsychedelicVisions_TTS_RefMat
|
||||
m_Shader: {fileID: 4800000, guid: 1c6b3902befc80643a83432be8825adc, type: 3}
|
||||
m_ValidKeywords:
|
||||
- _SHADING_COLOR
|
||||
m_InvalidKeywords:
|
||||
- _ANCHORSSTOOBJECTSORIGIN_ON
|
||||
- _CASTSHADOWSANCHORSSTOOBJECTSORIGIN_ON
|
||||
- _CASTSHADOWSSSCAMERADISTANCESCALED_ON
|
||||
- _ENABLECASTSHADOWSRANDOMIZER_ON
|
||||
- _ENABLEOUTLINE_ON
|
||||
- _ENABLERIMRANDOMIZER_ON
|
||||
- _ENABLESHADINGRANDOMIZER_ON
|
||||
- _ENABLESHADINGSTYLING_ON
|
||||
- _ENABLESHADOWS_ON
|
||||
- _ENABLESPECULAR_ON
|
||||
- _ENABLESTYLING_ON
|
||||
- _ENABLETOONSHADING_ON
|
||||
- _OUTLINECONSTANTSCREENWIDTH_ON
|
||||
- _RIMANCHORSSTOOBJECTSORIGIN_ON
|
||||
- _SHADINGAFFECTEDBYNORMALMAP_ON
|
||||
- _SPECULARANCHORSSTOOBJECTSORIGIN_ON
|
||||
- _SPECULARUSELIGHTCOLORS_ON
|
||||
- _SSCAMERADISTANCESCALED_ON
|
||||
- _STYLINGADJUSTDISTANCEFADEVALUE_ON
|
||||
- _SUMLIGHTSBEFOREPOSTERIZATION_ON
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 0
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses: []
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _BaseMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BumpMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailAlbedoMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailMask:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailNormalMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _EmissionMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _GradientTex:
|
||||
m_Texture: {fileID: 2800000, guid: c1baff8b1609fcd49b607d7e36eb2ea0, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MainTex:
|
||||
m_Texture: {fileID: 2800000, guid: 0471008cf8fbd8b4a9b59fec47f7b993, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MetallicGlossMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NoiseMap1:
|
||||
m_Texture: {fileID: 2800000, guid: 0528154608ff38a4c845b6622c088ea0, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NoiseMap2:
|
||||
m_Texture: {fileID: 2800000, guid: f40d12a41bafa6749a1465879341fff5, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _OcclusionMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ParallaxMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SpecGlossMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _AlphaClip: 0
|
||||
- _AlphaToMask: 0
|
||||
- _AnchorSSToObjectsOrigin: 1
|
||||
- _Blend: 0
|
||||
- _BlendModePreserveSpecular: 1
|
||||
- _BumpScale: 1
|
||||
- _CastShadowColorMode: 0
|
||||
- _CastShadowsAnchorSSToObjectsOrigin: 1
|
||||
- _CastShadowsCoordinateSystem: 1
|
||||
- _CastShadowsDrawSpace: 1
|
||||
- _CastShadowsHardnessRandomIntensity: 0
|
||||
- _CastShadowsHardnessRandomMode: 2
|
||||
- _CastShadowsLengthRandomIntensity: 0.585
|
||||
- _CastShadowsLengthRandomMode: 0
|
||||
- _CastShadowsNoise1Seed: 1
|
||||
- _CastShadowsNoise1Size: 0.01
|
||||
- _CastShadowsNoise2Seed: 1
|
||||
- _CastShadowsNoiseIntensity: 0
|
||||
- _CastShadowsNumberOfCellsHatching: 1
|
||||
- _CastShadowsOpacityRandomIntensity: 0
|
||||
- _CastShadowsOpacityRandomMode: 2
|
||||
- _CastShadowsPolarCenterMode: 0
|
||||
- _CastShadowsSSCameraDistanceScaled: 1
|
||||
- _CastShadowsSmoothness: 0.9
|
||||
- _CastShadowsSpacingRandomIntensity: 1
|
||||
- _CastShadowsSpacingRandomMode: 0
|
||||
- _CastShadowsStrength: 0
|
||||
- _CastShadowsStyle: 0
|
||||
- _CastShadowsThicknessRandomMode: 1
|
||||
- _CastShadowsThicknesshRandomIntensity: 0.996
|
||||
- _CastShadowsUVSet: 0
|
||||
- _CellTransitionSmoothness: 0.353
|
||||
- _ClearCoatMask: 0
|
||||
- _ClearCoatSmoothness: 0
|
||||
- _CoordinateSystem: 1
|
||||
- _Cull: 2
|
||||
- _Cutoff: 0.5
|
||||
- _DetailAlbedoMapScale: 1
|
||||
- _DetailNormalMapScale: 1
|
||||
- _DrawSpace: 1
|
||||
- _DstBlend: 0
|
||||
- _DstBlendAlpha: 0
|
||||
- _EnableAntiAliasing: 0
|
||||
- _EnableCastShadows: 0
|
||||
- _EnableCastShadowsRandomizer: 1
|
||||
- _EnableCastShadowsStyling: 1
|
||||
- _EnableOutline: 1
|
||||
- _EnableRim: 0
|
||||
- _EnableRimRandomizer: 1
|
||||
- _EnableRimStyling: 0
|
||||
- _EnableShadingRandomizer: 1
|
||||
- _EnableShadingStyling: 1
|
||||
- _EnableShadows: 1
|
||||
- _EnableSpecular: 1
|
||||
- _EnableSpecularRandomizer: 0
|
||||
- _EnableSpecularStyling: 0
|
||||
- _EnableStyling: 1
|
||||
- _EnableStylingDistanceFade: 0
|
||||
- _EnableToonShading: 1
|
||||
- _EnvironmentReflections: 1
|
||||
- _GlossMapScale: 1
|
||||
- _Glossiness: 0
|
||||
- _GlossyReflections: 1
|
||||
- _GradientBlendFactor: 1
|
||||
- _GradientBlending: 2
|
||||
- _GradientMode: 0
|
||||
- _HalftonePatternCameraDistanceFade: 0
|
||||
- _HardnessRandomIntensity: 0
|
||||
- _HardnessRandomMode: 2
|
||||
- _HatchingAffectedByNormalMap: 0
|
||||
- _HatchingCameraDistanceFade: 0
|
||||
- _IsOptimized: 0
|
||||
- _LengthRandomIntensity: 0.585
|
||||
- _LengthRandomMode: 0
|
||||
- _LightFunction: 1
|
||||
- _LightSource: 0
|
||||
- _Metallic: 0
|
||||
- _Mode: 0
|
||||
- _NoiseIntensity: 0
|
||||
- _NoiseTextureQuality: 0
|
||||
- _NumberOfCells: 2
|
||||
- _NumberOfCellsHatching: 1
|
||||
- _OcclusionStrength: 1
|
||||
- _OpacityRandomIntensity: 0
|
||||
- _OpacityRandomMode: 2
|
||||
- _OutlineCameraDistanceImpact: 0
|
||||
- _OutlineConstantScreenWidth: 1
|
||||
- _OutlineDepthOffset: 0
|
||||
- _OutlineWidth: 1.6
|
||||
- _Parallax: 0.02
|
||||
- _PerlinNoiseSize: 4.6
|
||||
- _PolarCenterMode: 0
|
||||
- _QueueControl: -1
|
||||
- _QueueOffset: 0
|
||||
- _ReceiveShadows: 1
|
||||
- _RimAffectedArea: 2
|
||||
- _RimAffectedByNormalMap: 0
|
||||
- _RimAnchorSSToObjectsOrigin: 1
|
||||
- _RimBlending: 0
|
||||
- _RimCoordinateSystem: 0
|
||||
- _RimDrawSpace: 0
|
||||
- _RimHardnessRandomIntensity: 0
|
||||
- _RimHardnessRandomMode: 1
|
||||
- _RimLengthRandomIntensity: 0
|
||||
- _RimLengthRandomMode: 0
|
||||
- _RimNoise1Seed: 1
|
||||
- _RimNoise1Size: 1
|
||||
- _RimNoise2Seed: 1
|
||||
- _RimNoiseIntensity: 0
|
||||
- _RimOpacity: 1
|
||||
- _RimOpacityRandomIntensity: 0
|
||||
- _RimOpacityRandomMode: 0
|
||||
- _RimPerlinNoiseSeed: 1
|
||||
- _RimPerlinNoiseSize: 1
|
||||
- _RimPolarCenterMode: 0
|
||||
- _RimSSCameraDistanceScaled: 0
|
||||
- _RimSize: 0.026
|
||||
- _RimSmoothness: 0.443
|
||||
- _RimSpacingRandomIntensity: 0
|
||||
- _RimSpacingRandomMode: 0
|
||||
- _RimStyle: 0
|
||||
- _RimThicknessRandomMode: 1
|
||||
- _RimThicknesshRandomIntensity: 0
|
||||
- _RimUVSet: 0
|
||||
- _RimWhiteNoiseSeed: 1
|
||||
- _SSCameraDistanceScaled: 1
|
||||
- _ShadingAffectByNormalMap: 1
|
||||
- _ShadingAffectedByNormalMap: 1
|
||||
- _ShadingFunction: 1
|
||||
- _ShadingMode: 0
|
||||
- _ShadingNoise1Seed: 1
|
||||
- _ShadingNoise1Size: 0.01
|
||||
- _ShadingNoise2Seed: 1
|
||||
- _ShadingStyle: 0
|
||||
- _ShadingUseLightColors: 0
|
||||
- _ShadowsAffectByNormalMap: 0
|
||||
- _Smoothness: 0
|
||||
- _SmoothnessSource: 0
|
||||
- _SmoothnessTextureChannel: 0
|
||||
- _SpacingRandomIntensity: 1
|
||||
- _SpacingRandomMode: 0
|
||||
- _SpecularAffectedByNormalMap: 0
|
||||
- _SpecularAnchorSSToObjectsOrigin: 1
|
||||
- _SpecularBlending: 1
|
||||
- _SpecularCoordinateSystem: 0
|
||||
- _SpecularDrawSpace: 0
|
||||
- _SpecularHardnessRandomIntensity: 0.704
|
||||
- _SpecularHardnessRandomMode: 2
|
||||
- _SpecularHighlights: 1
|
||||
- _SpecularLengthRandomIntensity: 0.667
|
||||
- _SpecularLengthRandomMode: 1
|
||||
- _SpecularNoise1Seed: 1
|
||||
- _SpecularNoise1Size: 1
|
||||
- _SpecularNoise2Seed: 1
|
||||
- _SpecularNoiseIntensity: 0
|
||||
- _SpecularOpacity: 1
|
||||
- _SpecularOpacityRandomIntensity: 0
|
||||
- _SpecularOpacityRandomMode: 2
|
||||
- _SpecularPerlinNoiseSeed: 1
|
||||
- _SpecularPerlinNoiseSize: 1.93
|
||||
- _SpecularPolarCenterMode: 0
|
||||
- _SpecularSSCameraDistanceScaled: 0
|
||||
- _SpecularSize: 0.338
|
||||
- _SpecularSmoothness: 0.134
|
||||
- _SpecularSpacingRandomIntensity: 1
|
||||
- _SpecularSpacingRandomMode: 0
|
||||
- _SpecularStyle: 0
|
||||
- _SpecularThicknessRandomMode: 1
|
||||
- _SpecularThicknesshRandomIntensity: 0.278
|
||||
- _SpecularUVSet: 0
|
||||
- _SpecularUseLightColors: 1
|
||||
- _SpecularWhiteNoiseSeed: 1
|
||||
- _SrcBlend: 1
|
||||
- _SrcBlendAlpha: 1
|
||||
- _StylingAdjustDistanceFadeValue: 1
|
||||
- _StylingCastShadowsBlending: 0
|
||||
- _StylingCastShadowsDensity: 3.22
|
||||
- _StylingCastShadowsHalftonesOffset: 1
|
||||
- _StylingCastShadowsHalftonesRoundness: 1
|
||||
- _StylingCastShadowsHalftonesRoundnessFalloff: 1
|
||||
- _StylingCastShadowsHardness: 0.889
|
||||
- _StylingCastShadowsInitialDirection: 90
|
||||
- _StylingCastShadowsIsInverted: 0
|
||||
- _StylingCastShadowsOpacity: 1
|
||||
- _StylingCastShadowsOpacityFalloff: 0
|
||||
- _StylingCastShadowsRotationBetweenCells: 47
|
||||
- _StylingCastShadowsSmoothness: 1
|
||||
- _StylingCastShadowsSyncWithOtherStyling: 1
|
||||
- _StylingCastShadowsThickness: 1
|
||||
- _StylingCastShadowsThicknessControl: 0
|
||||
- _StylingCastShadowsThicknessFalloff: 0.514
|
||||
- _StylingDFFalloff: 1.58
|
||||
- _StylingDFStartingDistance: 2.46
|
||||
- _StylingDistanceFadeValue: 0
|
||||
- _StylingOvermodelingFactor: 0.338
|
||||
- _StylingRimAffectedArea: 1
|
||||
- _StylingRimBlending: 0
|
||||
- _StylingRimDensity: 4.3
|
||||
- _StylingRimHalftonesOffset: 1
|
||||
- _StylingRimHalftonesRoundness: 1
|
||||
- _StylingRimHalftonesRoundnessFalloff: 1
|
||||
- _StylingRimHardness: 0.9
|
||||
- _StylingRimIsInverted: 0
|
||||
- _StylingRimOpacity: 1
|
||||
- _StylingRimOpacityFalloff: 0
|
||||
- _StylingRimRotation: 0
|
||||
- _StylingRimSize: 0
|
||||
- _StylingRimSmoothness: 0
|
||||
- _StylingRimSyncWithOtherStyling: 0
|
||||
- _StylingRimThickness: 0.8
|
||||
- _StylingRimThicknessControl: 0
|
||||
- _StylingRimThicknessFalloff: 0.1
|
||||
- _StylingShadingBlending: 0
|
||||
- _StylingShadingDensity: 3.22
|
||||
- _StylingShadingHalftonesOffset: 1
|
||||
- _StylingShadingHalftonesRoundness: 1
|
||||
- _StylingShadingHalftonesRoundnessFalloff: 1
|
||||
- _StylingShadingHardness: 0.889
|
||||
- _StylingShadingInitialDirection: 90
|
||||
- _StylingShadingIsInverted: 0
|
||||
- _StylingShadingOpacity: 1
|
||||
- _StylingShadingOpacityFalloff: 0
|
||||
- _StylingShadingRotationBetweenCells: 47
|
||||
- _StylingShadingSyncWithOtherStyling: 0
|
||||
- _StylingShadingThickness: 1
|
||||
- _StylingShadingThicknessControl: 0
|
||||
- _StylingShadingThicknessFalloff: 0.514
|
||||
- _StylingSpecularBlending: 0
|
||||
- _StylingSpecularCutOutShading: 0
|
||||
- _StylingSpecularDensity: 117.5
|
||||
- _StylingSpecularHalftonesOffset: 1
|
||||
- _StylingSpecularHalftonesRoundness: 1
|
||||
- _StylingSpecularHalftonesRoundnessFalloff: 1
|
||||
- _StylingSpecularHardness: 0.981
|
||||
- _StylingSpecularIsInverted: 0
|
||||
- _StylingSpecularOpacity: 1
|
||||
- _StylingSpecularOpacityFalloff: 0.63
|
||||
- _StylingSpecularRotation: 45
|
||||
- _StylingSpecularSize: 0.8
|
||||
- _StylingSpecularSmoothness: 0.7
|
||||
- _StylingSpecularSyncWithOtherStyling: 1
|
||||
- _StylingSpecularThickness: 0.611
|
||||
- _StylingSpecularThicknessControl: 0
|
||||
- _StylingSpecularThicknessFalloff: 0.436
|
||||
- _StylingSpecularUseLightColors: 0
|
||||
- _StylingTerminatorPosition: 0
|
||||
- _SumLightsBeforePosterization: 1
|
||||
- _Surface: 0
|
||||
- _SyncWithLightPartitioning: 0
|
||||
- _SyncWithRim: 0
|
||||
- _SyncWithSpecular: 0
|
||||
- _TerminatorPosition: 0
|
||||
- _TerminatorSmoothness: 0.176
|
||||
- _TerminatorWidth: 0.205
|
||||
- _TheToonShaderIdentifier: 1
|
||||
- _ThicknessRandomMode: 1
|
||||
- _ThicknesshRandomIntensity: 0.996
|
||||
- _UVSec: 0
|
||||
- _UVSet: 0
|
||||
- _UseAlphaOnlyFromBaseMap: 0
|
||||
- _WorkflowMode: 1
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _BaseColor: {r: 0.6740388, g: 0.764151, b: 0.7469131, a: 1}
|
||||
- _CastShadowColor: {r: 1, g: 0.57254905, b: 0, a: 1}
|
||||
- _CastShadowsPolarCenter: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _Color: {r: 0.9063317, g: 0.9063317, b: 0.9063317, a: 1}
|
||||
- _CoreShadowColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _FormShadowColor: {r: 0.3137255, g: 0.3647059, b: 0.5764706, a: 1}
|
||||
- _OutlineColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _PolarCenter: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _RimColor: {r: 1, g: 0, b: 0, a: 1}
|
||||
- _RimPolarCenter: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1}
|
||||
- _SpecularColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _SpecularPolarCenter: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _StylingCastShadowsColor: {r: 0, g: 0.07450981, b: 0.09803922, a: 1}
|
||||
- _StylingColor: {r: 0, g: 0.070927404, b: 0.09433961, a: 1}
|
||||
- _StylingRimColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _StylingSpecularColor: {r: 0.990566, g: 0.8811385, b: 0.6401299, a: 1}
|
||||
m_BuildTextureStacks: []
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 2b83e2542634b4f4c827a4a469a46326
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 269238
|
||||
packageName: The Toon Shader
|
||||
packageVersion: 1.4.2
|
||||
assetPath: Packages/com.shadercrew.the-toon-shader.3d/Scripts/Resources/TTSReferenceMaterials/07_Hatching_PsychedelicVisions_TTS_RefMat.mat
|
||||
uploadId: 919972
|
||||
+409
@@ -0,0 +1,409 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!114 &-7617746012844444677
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 4
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: 08_Hatching_SanguineChalk_TTS_RefMat
|
||||
m_Shader: {fileID: 4800000, guid: 1c6b3902befc80643a83432be8825adc, type: 3}
|
||||
m_ValidKeywords:
|
||||
- _SHADING_COLOR
|
||||
m_InvalidKeywords:
|
||||
- _OUTLINECONSTANTSCREENWIDTH_ON
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 0
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses: []
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _BaseMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BumpMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailAlbedoMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailMask:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailNormalMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _EmissionMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _GradientTex:
|
||||
m_Texture: {fileID: 2800000, guid: 6b923a350a3eec547a2e5e79ada1927b, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _HatchingMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MainTex:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MetallicGlossMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NoiseMap1:
|
||||
m_Texture: {fileID: 2800000, guid: 0528154608ff38a4c845b6622c088ea0, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NoiseMap2:
|
||||
m_Texture: {fileID: 2800000, guid: f40d12a41bafa6749a1465879341fff5, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _OcclusionMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ParallaxMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ShadingGradientCurve:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SpecGlossMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _AlphaClip: 0
|
||||
- _AmbientColorContribution: 0
|
||||
- _AnchorSSToObjectsOrigin: 1
|
||||
- _Blend: 0
|
||||
- _BumpScale: 1
|
||||
- _CastShadowColorMode: 0
|
||||
- _CastShadowsAnchorSSToObjectsOrigin: 1
|
||||
- _CastShadowsCoordinateSystem: 0
|
||||
- _CastShadowsDrawSpace: 0
|
||||
- _CastShadowsHardnessRandomIntensity: 0.169
|
||||
- _CastShadowsHardnessRandomMode: 2
|
||||
- _CastShadowsLengthRandomIntensity: 0.425
|
||||
- _CastShadowsLengthRandomMode: 1
|
||||
- _CastShadowsNoise1Seed: 1
|
||||
- _CastShadowsNoise1Size: 4.83
|
||||
- _CastShadowsNoise2Seed: 1
|
||||
- _CastShadowsNoiseIntensity: 0.8
|
||||
- _CastShadowsNumberOfCellsHatching: 2
|
||||
- _CastShadowsOpacityRandomIntensity: 0.094
|
||||
- _CastShadowsOpacityRandomMode: 2
|
||||
- _CastShadowsPolarCenterMode: 1
|
||||
- _CastShadowsSSCameraDistanceScaled: 1
|
||||
- _CastShadowsSmoothness: 0.9
|
||||
- _CastShadowsSpacingRandomIntensity: 1
|
||||
- _CastShadowsSpacingRandomMode: 2
|
||||
- _CastShadowsStrength: 0
|
||||
- _CastShadowsStyle: 0
|
||||
- _CastShadowsThicknessRandomMode: 1
|
||||
- _CastShadowsThicknesshRandomIntensity: 0.572
|
||||
- _CastShadowsUVSet: 0
|
||||
- _CategoryOutline: 0
|
||||
- _CategoryStyling: 0
|
||||
- _CategorySurfaceOptionsAndInputs: 0
|
||||
- _CategoryToonShading: 0
|
||||
- _CellTransitionSmoothness: 0.086
|
||||
- _ClearCoatMask: 0
|
||||
- _ClearCoatSmoothness: 0
|
||||
- _CoordinateSystem: 0
|
||||
- _Cull: 2
|
||||
- _CustomizeCastShadowsColor: 0
|
||||
- _Cutoff: 0.5
|
||||
- _DetailAlbedoMapScale: 1
|
||||
- _DetailNormalMapScale: 1
|
||||
- _DrawSpace: 0
|
||||
- _DstBlend: 0
|
||||
- _EnableAntiAliasing: 1
|
||||
- _EnableCastShadows: 1
|
||||
- _EnableCastShadowsRandomizer: 1
|
||||
- _EnableCastShadowsStyling: 1
|
||||
- _EnableOutline: 1
|
||||
- _EnableRim: 0
|
||||
- _EnableRimRandomizer: 1
|
||||
- _EnableRimStyling: 0
|
||||
- _EnableShadingRandomizer: 1
|
||||
- _EnableShadingStyling: 1
|
||||
- _EnableShadows: 1
|
||||
- _EnableSpecular: 1
|
||||
- _EnableSpecularRandomizer: 1
|
||||
- _EnableSpecularStyling: 1
|
||||
- _EnableStyling: 1
|
||||
- _EnableStylingDistanceFade: 0
|
||||
- _EnableToonShading: 1
|
||||
- _EnvironmentReflections: 1
|
||||
- _GlossMapScale: 0
|
||||
- _Glossiness: 0
|
||||
- _GlossyReflections: 0
|
||||
- _GradientBlendFactor: 1
|
||||
- _GradientBlending: 0
|
||||
- _GradientMode: 0
|
||||
- _HalftonePattern: 1
|
||||
- _HalftonePatternCameraDistanceFade: 0
|
||||
- _HardnessRandomIntensity: 0.281
|
||||
- _HardnessRandomMode: 2
|
||||
- _HatchingAffectedByNormalMap: 0
|
||||
- _HatchingCameraDistanceFade: 0
|
||||
- _IsOptimized: 0
|
||||
- _LengthRandomIntensity: 0.169
|
||||
- _LengthRandomMode: 1
|
||||
- _LightColorContribution: 0
|
||||
- _LightFunction: 0
|
||||
- _LightFunctionLerpValue: 0.5
|
||||
- _LightSource: 0
|
||||
- _Metallic: 0.722
|
||||
- _Mode: 0
|
||||
- _NoiseIntensity: 0.29
|
||||
- _NoiseTextureQuality: 0
|
||||
- _NumberOfCells: 1
|
||||
- _NumberOfCellsHatching: 4
|
||||
- _OcclusionStrength: 1
|
||||
- _OpacityRandomIntensity: 0.092
|
||||
- _OpacityRandomMode: 2
|
||||
- _OutlineCameraDistanceImpact: 0
|
||||
- _OutlineConstantScreenWidth: 1
|
||||
- _OutlineDepthOffset: 0
|
||||
- _OutlineWidth: 2.8
|
||||
- _Parallax: 0.005
|
||||
- _PerlinNoiseSize: 1
|
||||
- _PolarCenterMode: 1
|
||||
- _QueueControl: -1
|
||||
- _QueueOffset: 0
|
||||
- _ReceiveShadows: 1
|
||||
- _RimAffectedArea: 1
|
||||
- _RimAffectedByNormalMap: 1
|
||||
- _RimAnchorSSToObjectsOrigin: 1
|
||||
- _RimBlending: 0
|
||||
- _RimCoordinateSystem: 0
|
||||
- _RimDrawSpace: 0
|
||||
- _RimHardnessRandomIntensity: 0
|
||||
- _RimHardnessRandomMode: 0
|
||||
- _RimLengthRandomIntensity: 1
|
||||
- _RimLengthRandomMode: 1
|
||||
- _RimNoise1Seed: 1
|
||||
- _RimNoise1Size: 1
|
||||
- _RimNoise2Seed: 1
|
||||
- _RimNoiseIntensity: 0
|
||||
- _RimOpacity: 1
|
||||
- _RimOpacityRandomIntensity: 0
|
||||
- _RimOpacityRandomMode: 0
|
||||
- _RimPerlinNoiseSeed: 1
|
||||
- _RimPerlinNoiseSize: 1
|
||||
- _RimPolarCenterMode: 0
|
||||
- _RimSSCameraDistanceScaled: 0
|
||||
- _RimSize: 0.439
|
||||
- _RimSmoothness: 0
|
||||
- _RimSpacingRandomIntensity: 1
|
||||
- _RimSpacingRandomMode: 0
|
||||
- _RimStyle: 1
|
||||
- _RimThicknessRandomMode: 2
|
||||
- _RimThicknesshRandomIntensity: 0.423
|
||||
- _RimUVSet: 0
|
||||
- _RimWhiteNoiseSeed: 1
|
||||
- _SSCameraDistanceScaled: 1
|
||||
- _ShadingAffectByNormalMap: 1
|
||||
- _ShadingAffectedByNormalMap: 1
|
||||
- _ShadingBlending: 0
|
||||
- _ShadingFunction: 0
|
||||
- _ShadingMode: 0
|
||||
- _ShadingNoise1Seed: 1
|
||||
- _ShadingNoise1Size: 4.83
|
||||
- _ShadingNoise2Seed: 1
|
||||
- _ShadingStyle: 0
|
||||
- _ShadingUseLightColors: 1
|
||||
- _ShadowMode: 0
|
||||
- _ShadowsAffectByNormalMap: 1
|
||||
- _Smoothness: 0.336
|
||||
- _SmoothnessSource: 0
|
||||
- _SmoothnessTextureChannel: 0
|
||||
- _SpacingRandomIntensity: 1
|
||||
- _SpacingRandomMode: 2
|
||||
- _SpecularAffectedByNormalMap: 1
|
||||
- _SpecularAnchorSSToObjectsOrigin: 1
|
||||
- _SpecularBlending: 1
|
||||
- _SpecularCoordinateSystem: 0
|
||||
- _SpecularDrawSpace: 0
|
||||
- _SpecularHardnessRandomIntensity: 0.169
|
||||
- _SpecularHardnessRandomMode: 2
|
||||
- _SpecularHighlights: 1
|
||||
- _SpecularLengthRandomIntensity: 0.425
|
||||
- _SpecularLengthRandomMode: 1
|
||||
- _SpecularNoise1Seed: 1
|
||||
- _SpecularNoise1Size: 4.83
|
||||
- _SpecularNoise2Seed: 1
|
||||
- _SpecularNoiseIntensity: 0.8
|
||||
- _SpecularOpacity: 1
|
||||
- _SpecularOpacityRandomIntensity: 0.035
|
||||
- _SpecularOpacityRandomMode: 2
|
||||
- _SpecularPerlinNoiseSeed: 1
|
||||
- _SpecularPerlinNoiseSize: 1
|
||||
- _SpecularPolarCenterMode: 1
|
||||
- _SpecularSSCameraDistanceScaled: 1
|
||||
- _SpecularSize: 0.877
|
||||
- _SpecularSmoothness: 0.771
|
||||
- _SpecularSpacingRandomIntensity: 1
|
||||
- _SpecularSpacingRandomMode: 2
|
||||
- _SpecularStyle: 0
|
||||
- _SpecularThicknessRandomMode: 1
|
||||
- _SpecularThicknesshRandomIntensity: 0.572
|
||||
- _SpecularUVSet: 0
|
||||
- _SpecularUseLightColors: 1
|
||||
- _SpecularWhiteNoiseSeed: 1
|
||||
- _SrcBlend: 1
|
||||
- _StylingAdjustDistanceFadeValue: 0
|
||||
- _StylingCastShadowsBlending: 0
|
||||
- _StylingCastShadowsDensity: 230.6
|
||||
- _StylingCastShadowsHalftonesOffset: 0.513
|
||||
- _StylingCastShadowsHalftonesRoundness: 1
|
||||
- _StylingCastShadowsHalftonesRoundnessFalloff: 0
|
||||
- _StylingCastShadowsHardness: 0.669
|
||||
- _StylingCastShadowsInitialDirection: 73
|
||||
- _StylingCastShadowsIsInverted: 0
|
||||
- _StylingCastShadowsOpacity: 1
|
||||
- _StylingCastShadowsOpacityFalloff: 0.771
|
||||
- _StylingCastShadowsRotationBetweenCells: -123
|
||||
- _StylingCastShadowsSmoothness: 1
|
||||
- _StylingCastShadowsSyncWithOtherStyling: 0
|
||||
- _StylingCastShadowsThickness: 0.636
|
||||
- _StylingCastShadowsThicknessControl: 0
|
||||
- _StylingCastShadowsThicknessFalloff: 0.314
|
||||
- _StylingDFFalloff: 0
|
||||
- _StylingDFStartingDistance: 0
|
||||
- _StylingDistanceFadeValue: 0
|
||||
- _StylingOvermodelingFactor: 0.999
|
||||
- _StylingRimAffectedArea: 1
|
||||
- _StylingRimBlending: 0
|
||||
- _StylingRimDensity: 63.02
|
||||
- _StylingRimHalftonesOffset: 1
|
||||
- _StylingRimHalftonesRoundness: 1
|
||||
- _StylingRimHalftonesRoundnessFalloff: 1
|
||||
- _StylingRimHardness: 0.9
|
||||
- _StylingRimIsInverted: 0
|
||||
- _StylingRimOpacity: 1
|
||||
- _StylingRimOpacityFalloff: 1
|
||||
- _StylingRimPosition: 0
|
||||
- _StylingRimRotation: 0
|
||||
- _StylingRimSize: 0.147
|
||||
- _StylingRimSmoothness: 0.683
|
||||
- _StylingRimSyncWithOtherStyling: 0
|
||||
- _StylingRimThickness: 0.738
|
||||
- _StylingRimThicknessControl: 0
|
||||
- _StylingRimThicknessFalloff: 0.537
|
||||
- _StylingShadingBlending: 0
|
||||
- _StylingShadingDensity: 218.22
|
||||
- _StylingShadingHalftonesOffset: 0.513
|
||||
- _StylingShadingHalftonesRoundness: 1
|
||||
- _StylingShadingHalftonesRoundnessFalloff: 0
|
||||
- _StylingShadingHardness: 0.955
|
||||
- _StylingShadingInitialDirection: 73
|
||||
- _StylingShadingIsInverted: 0
|
||||
- _StylingShadingOpacity: 1
|
||||
- _StylingShadingOpacityFalloff: 0.17
|
||||
- _StylingShadingPosition: 0
|
||||
- _StylingShadingRotationBetweenCells: -123
|
||||
- _StylingShadingSyncWithOtherStyling: 0
|
||||
- _StylingShadingThickness: 0.959
|
||||
- _StylingShadingThicknessControl: 0
|
||||
- _StylingShadingThicknessFalloff: 0.684
|
||||
- _StylingSpecularBlending: 0
|
||||
- _StylingSpecularCutOutShading: 0
|
||||
- _StylingSpecularDensity: 230.6
|
||||
- _StylingSpecularHalftonesOffset: 0.513
|
||||
- _StylingSpecularHalftonesRoundness: 1
|
||||
- _StylingSpecularHalftonesRoundnessFalloff: 0
|
||||
- _StylingSpecularHardness: 0.669
|
||||
- _StylingSpecularIsInverted: 0
|
||||
- _StylingSpecularOpacity: 1
|
||||
- _StylingSpecularOpacityFalloff: 0.592
|
||||
- _StylingSpecularPosition: 0
|
||||
- _StylingSpecularRotation: 73
|
||||
- _StylingSpecularSize: 0.742
|
||||
- _StylingSpecularSmoothness: 0.172
|
||||
- _StylingSpecularSyncWithOtherStyling: 0
|
||||
- _StylingSpecularThickness: 0.636
|
||||
- _StylingSpecularThicknessControl: 0
|
||||
- _StylingSpecularThicknessFalloff: 0.314
|
||||
- _StylingSpecularUseLightColors: 0
|
||||
- _StylingTerminatorPosition: 0
|
||||
- _SumLightsBeforePosterization: 1
|
||||
- _Surface: 0
|
||||
- _SyncWithLightPartitioning: 0
|
||||
- _SyncWithRim: 0
|
||||
- _SyncWithSpecular: 0
|
||||
- _TerminatorPosition: 0
|
||||
- _TerminatorSmoothness: 0.188
|
||||
- _TerminatorWidth: 0.219
|
||||
- _TheToonShaderIdentifier: 1
|
||||
- _ThicknessRandomMode: 1
|
||||
- _ThicknesshRandomIntensity: 0.572
|
||||
- _UVSec: 0
|
||||
- _UVSet: 0
|
||||
- _UseAlphaOnlyFromBaseMap: 0
|
||||
- _UseCurve: 1
|
||||
- _UsePBRLighting: 0
|
||||
- _WorkflowMode: 1
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _BaseColor: {r: 0.7924528, g: 0.70810854, b: 0.58686364, a: 1}
|
||||
- _CastShadowColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _CastShadowsPolarCenter: {r: 0.54, g: 0.47, b: 0, a: 0}
|
||||
- _Color: {r: 0.7921569, g: 0.70980394, b: 0.5882353, a: 1}
|
||||
- _CoreShadowColor: {r: 0.6981132, g: 0.4107452, b: 0.30624774, a: 1}
|
||||
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _FormShadowColor: {r: 0.7264151, g: 0.40302747, b: 0.2021627, a: 1}
|
||||
- _OutlineColor: {r: 0.3773585, g: 0.0654088, b: 0, a: 1}
|
||||
- _PolarCenter: {r: 0.54, g: 0.47, b: 0, a: 0}
|
||||
- _RimColor: {r: 1, g: 0, b: 0, a: 1}
|
||||
- _RimPolarCenter: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1}
|
||||
- _SpecularColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _SpecularPolarCenter: {r: 0.54, g: 0.47, b: 0, a: 0}
|
||||
- _StylingCastShadowsColor: {r: 0.2924528, g: 0.019240318, b: 0, a: 1}
|
||||
- _StylingColor: {r: 0.50980395, g: 0.20773716, b: 0.113725476, a: 1}
|
||||
- _StylingRimColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _StylingSpecularColor: {r: 1, g: 0.9441681, b: 0.9009434, a: 1}
|
||||
m_BuildTextureStacks: []
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 21c7ade09a9222b459c13d136a768765
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 269238
|
||||
packageName: The Toon Shader
|
||||
packageVersion: 1.4.2
|
||||
assetPath: Packages/com.shadercrew.the-toon-shader.3d/Scripts/Resources/TTSReferenceMaterials/08_Hatching_SanguineChalk_TTS_RefMat.mat
|
||||
uploadId: 919972
|
||||
+410
@@ -0,0 +1,410 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!114 &-7617746012844444677
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 4
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: Halftone_00_RetroColorful_TTS_RefMat
|
||||
m_Shader: {fileID: 4800000, guid: 1c6b3902befc80643a83432be8825adc, type: 3}
|
||||
m_ValidKeywords:
|
||||
- _SHADING_COLOR
|
||||
m_InvalidKeywords:
|
||||
- _OUTLINECONSTANTSCREENWIDTH_ON
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 0
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses: []
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _BaseMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BumpMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailAlbedoMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailMask:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailNormalMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _EmissionMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _GradientTex:
|
||||
m_Texture: {fileID: 2800000, guid: 6b923a350a3eec547a2e5e79ada1927b, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _HatchingMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MainTex:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MetallicGlossMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NoiseMap1:
|
||||
m_Texture: {fileID: 2800000, guid: 0528154608ff38a4c845b6622c088ea0, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NoiseMap2:
|
||||
m_Texture: {fileID: 2800000, guid: f40d12a41bafa6749a1465879341fff5, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _OcclusionMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ParallaxMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ShadingGradientCurve:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SpecGlossMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _AdjustStylingDistanceFadeValue: 0
|
||||
- _AlphaClip: 0
|
||||
- _AmbientColorContribution: 0
|
||||
- _AnchorSSToObjectsOrigin: 1
|
||||
- _Blend: 0
|
||||
- _BumpScale: 1
|
||||
- _CastShadowColorMode: 0
|
||||
- _CastShadowsAnchorSSToObjectsOrigin: 1
|
||||
- _CastShadowsCoordinateSystem: 0
|
||||
- _CastShadowsDrawSpace: 1
|
||||
- _CastShadowsHardnessRandomIntensity: 0.159
|
||||
- _CastShadowsHardnessRandomMode: 1
|
||||
- _CastShadowsLengthRandomIntensity: 0.13
|
||||
- _CastShadowsLengthRandomMode: 2
|
||||
- _CastShadowsNoise1Seed: 1
|
||||
- _CastShadowsNoise1Size: 1.79
|
||||
- _CastShadowsNoise2Seed: 1
|
||||
- _CastShadowsNoiseIntensity: 0
|
||||
- _CastShadowsNumberOfCellsHatching: 3
|
||||
- _CastShadowsOpacityRandomIntensity: 0
|
||||
- _CastShadowsOpacityRandomMode: 0
|
||||
- _CastShadowsPolarCenterMode: 0
|
||||
- _CastShadowsSSCameraDistanceScaled: 1
|
||||
- _CastShadowsSmoothness: 0.9
|
||||
- _CastShadowsSpacingRandomIntensity: 1
|
||||
- _CastShadowsSpacingRandomMode: 2
|
||||
- _CastShadowsStrength: 0
|
||||
- _CastShadowsStyle: 1
|
||||
- _CastShadowsThicknessRandomMode: 1
|
||||
- _CastShadowsThicknesshRandomIntensity: 0.145
|
||||
- _CastShadowsUVSet: 0
|
||||
- _CategoryOutline: 0
|
||||
- _CategoryStyling: 0
|
||||
- _CategorySurfaceOptionsAndInputs: 0
|
||||
- _CategoryToonShading: 0
|
||||
- _CellTransitionSmoothness: 0.256
|
||||
- _ClearCoatMask: 0
|
||||
- _ClearCoatSmoothness: 0
|
||||
- _CoordinateSystem: 0
|
||||
- _Cull: 2
|
||||
- _CustomizeCastShadowsColor: 0
|
||||
- _Cutoff: 0.5
|
||||
- _DetailAlbedoMapScale: 1
|
||||
- _DetailNormalMapScale: 1
|
||||
- _DrawSpace: 1
|
||||
- _DstBlend: 0
|
||||
- _EnableAntiAliasing: 0
|
||||
- _EnableCastShadows: 1
|
||||
- _EnableCastShadowsRandomizer: 1
|
||||
- _EnableCastShadowsStyling: 1
|
||||
- _EnableOutline: 1
|
||||
- _EnableRim: 0
|
||||
- _EnableRimRandomizer: 1
|
||||
- _EnableRimStyling: 1
|
||||
- _EnableShadingRandomizer: 1
|
||||
- _EnableShadingStyling: 1
|
||||
- _EnableShadows: 1
|
||||
- _EnableSpecular: 0
|
||||
- _EnableSpecularRandomizer: 1
|
||||
- _EnableSpecularStyling: 1
|
||||
- _EnableStyling: 1
|
||||
- _EnableStylingDistanceFade: 0
|
||||
- _EnableToonShading: 1
|
||||
- _EnvironmentReflections: 1
|
||||
- _GlossMapScale: 0
|
||||
- _Glossiness: 0
|
||||
- _GlossyReflections: 0
|
||||
- _GradientBlendFactor: 1
|
||||
- _GradientBlending: 0
|
||||
- _GradientMode: 0
|
||||
- _HalftonePattern: 1
|
||||
- _HalftonePatternCameraDistanceFade: 0
|
||||
- _HardnessRandomIntensity: 0.159
|
||||
- _HardnessRandomMode: 1
|
||||
- _HatchingAffectedByNormalMap: 1
|
||||
- _HatchingCameraDistanceFade: 0
|
||||
- _IsOptimized: 0
|
||||
- _LengthRandomIntensity: 0.13
|
||||
- _LengthRandomMode: 2
|
||||
- _LightColorContribution: 0
|
||||
- _LightFunction: 0
|
||||
- _LightFunctionLerpValue: 0.5
|
||||
- _LightSource: 0
|
||||
- _Metallic: 0.722
|
||||
- _Mode: 0
|
||||
- _NoiseIntensity: 0
|
||||
- _NoiseTextureQuality: 0
|
||||
- _NumberOfCells: 1
|
||||
- _NumberOfCellsHatching: 3
|
||||
- _OcclusionStrength: 1
|
||||
- _OpacityRandomIntensity: 0
|
||||
- _OpacityRandomMode: 0
|
||||
- _OutlineCameraDistanceImpact: 0
|
||||
- _OutlineConstantScreenWidth: 1
|
||||
- _OutlineDepthOffset: 0
|
||||
- _OutlineWidth: 1.5
|
||||
- _Parallax: 0.005
|
||||
- _PerlinNoiseSize: 0.245
|
||||
- _PolarCenterMode: 0
|
||||
- _QueueControl: -1
|
||||
- _QueueOffset: 0
|
||||
- _ReceiveShadows: 1
|
||||
- _RimAffectedArea: 1
|
||||
- _RimAffectedByNormalMap: 1
|
||||
- _RimAnchorSSToObjectsOrigin: 1
|
||||
- _RimBlending: 0
|
||||
- _RimCoordinateSystem: 0
|
||||
- _RimDrawSpace: 1
|
||||
- _RimHardnessRandomIntensity: 0.159
|
||||
- _RimHardnessRandomMode: 1
|
||||
- _RimLengthRandomIntensity: 0.13
|
||||
- _RimLengthRandomMode: 2
|
||||
- _RimNoise1Seed: 1
|
||||
- _RimNoise1Size: 1.79
|
||||
- _RimNoise2Seed: 1
|
||||
- _RimNoiseIntensity: 0
|
||||
- _RimOpacity: 1
|
||||
- _RimOpacityRandomIntensity: 0
|
||||
- _RimOpacityRandomMode: 0
|
||||
- _RimPerlinNoiseSeed: 1
|
||||
- _RimPerlinNoiseSize: 1
|
||||
- _RimPolarCenterMode: 0
|
||||
- _RimSSCameraDistanceScaled: 1
|
||||
- _RimSize: 0.445
|
||||
- _RimSmoothness: 0
|
||||
- _RimSpacingRandomIntensity: 1
|
||||
- _RimSpacingRandomMode: 2
|
||||
- _RimStyle: 1
|
||||
- _RimThicknessRandomMode: 1
|
||||
- _RimThicknesshRandomIntensity: 0.145
|
||||
- _RimUVSet: 0
|
||||
- _RimWhiteNoiseSeed: 1
|
||||
- _SSCameraDistanceScaled: 1
|
||||
- _ShadingAffectByNormalMap: 1
|
||||
- _ShadingAffectedByNormalMap: 1
|
||||
- _ShadingBlending: 0
|
||||
- _ShadingFunction: 0
|
||||
- _ShadingMode: 0
|
||||
- _ShadingNoise1Seed: 1
|
||||
- _ShadingNoise1Size: 1.79
|
||||
- _ShadingNoise2Seed: 1
|
||||
- _ShadingStyle: 1
|
||||
- _ShadingUseLightColors: 1
|
||||
- _ShadowMode: 0
|
||||
- _ShadowsAffectByNormalMap: 1
|
||||
- _Smoothness: 0.336
|
||||
- _SmoothnessSource: 0
|
||||
- _SmoothnessTextureChannel: 0
|
||||
- _SpacingRandomIntensity: 1
|
||||
- _SpacingRandomMode: 2
|
||||
- _SpecularAffectedByNormalMap: 1
|
||||
- _SpecularAnchorSSToObjectsOrigin: 1
|
||||
- _SpecularBlending: 1
|
||||
- _SpecularCoordinateSystem: 0
|
||||
- _SpecularDrawSpace: 1
|
||||
- _SpecularHardnessRandomIntensity: 0.159
|
||||
- _SpecularHardnessRandomMode: 1
|
||||
- _SpecularHighlights: 1
|
||||
- _SpecularLengthRandomIntensity: 0.13
|
||||
- _SpecularLengthRandomMode: 2
|
||||
- _SpecularNoise1Seed: 1
|
||||
- _SpecularNoise1Size: 1.79
|
||||
- _SpecularNoise2Seed: 1
|
||||
- _SpecularNoiseIntensity: 0
|
||||
- _SpecularOpacity: 1
|
||||
- _SpecularOpacityRandomIntensity: 0
|
||||
- _SpecularOpacityRandomMode: 0
|
||||
- _SpecularPerlinNoiseSeed: 1
|
||||
- _SpecularPerlinNoiseSize: 1
|
||||
- _SpecularPolarCenterMode: 0
|
||||
- _SpecularSSCameraDistanceScaled: 1
|
||||
- _SpecularSize: 0
|
||||
- _SpecularSmoothness: 0
|
||||
- _SpecularSpacingRandomIntensity: 1
|
||||
- _SpecularSpacingRandomMode: 2
|
||||
- _SpecularStyle: 1
|
||||
- _SpecularThicknessRandomMode: 1
|
||||
- _SpecularThicknesshRandomIntensity: 0.145
|
||||
- _SpecularUVSet: 0
|
||||
- _SpecularUseLightColors: 1
|
||||
- _SpecularWhiteNoiseSeed: 1
|
||||
- _SrcBlend: 1
|
||||
- _StylingAdjustDistanceFadeValue: 1
|
||||
- _StylingCastShadowsBlending: 0
|
||||
- _StylingCastShadowsDensity: 3.2
|
||||
- _StylingCastShadowsHalftonesOffset: 0.513
|
||||
- _StylingCastShadowsHalftonesRoundness: 1
|
||||
- _StylingCastShadowsHalftonesRoundnessFalloff: 0
|
||||
- _StylingCastShadowsHardness: 0.822
|
||||
- _StylingCastShadowsInitialDirection: 61
|
||||
- _StylingCastShadowsIsInverted: 0
|
||||
- _StylingCastShadowsOpacity: 1
|
||||
- _StylingCastShadowsOpacityFalloff: 0.355
|
||||
- _StylingCastShadowsRotationBetweenCells: -63
|
||||
- _StylingCastShadowsSmoothness: 1
|
||||
- _StylingCastShadowsSyncWithOtherStyling: 1
|
||||
- _StylingCastShadowsThickness: 1
|
||||
- _StylingCastShadowsThicknessControl: 0
|
||||
- _StylingCastShadowsThicknessFalloff: 0.62
|
||||
- _StylingDFFalloff: 7.8
|
||||
- _StylingDFStartingDistance: 4.38
|
||||
- _StylingDistanceFadeValue: 0.169
|
||||
- _StylingOvermodelingFactor: 1
|
||||
- _StylingRimAffectedArea: 1
|
||||
- _StylingRimBlending: 0
|
||||
- _StylingRimDensity: 3.2
|
||||
- _StylingRimHalftonesOffset: 0.513
|
||||
- _StylingRimHalftonesRoundness: 1
|
||||
- _StylingRimHalftonesRoundnessFalloff: 0
|
||||
- _StylingRimHardness: 0.822
|
||||
- _StylingRimIsInverted: 0
|
||||
- _StylingRimOpacity: 1
|
||||
- _StylingRimOpacityFalloff: 0.355
|
||||
- _StylingRimPosition: 0
|
||||
- _StylingRimRotation: 61
|
||||
- _StylingRimSize: 0.349
|
||||
- _StylingRimSmoothness: 0.583
|
||||
- _StylingRimSyncWithOtherStyling: 1
|
||||
- _StylingRimThickness: 1
|
||||
- _StylingRimThicknessControl: 0
|
||||
- _StylingRimThicknessFalloff: 0.62
|
||||
- _StylingShadingBlending: 0
|
||||
- _StylingShadingDensity: 3.2
|
||||
- _StylingShadingHalftonesOffset: 0.513
|
||||
- _StylingShadingHalftonesRoundness: 1
|
||||
- _StylingShadingHalftonesRoundnessFalloff: 0
|
||||
- _StylingShadingHardness: 0.822
|
||||
- _StylingShadingInitialDirection: 61
|
||||
- _StylingShadingIsInverted: 0
|
||||
- _StylingShadingOpacity: 1
|
||||
- _StylingShadingOpacityFalloff: 0.355
|
||||
- _StylingShadingPosition: 0
|
||||
- _StylingShadingRotationBetweenCells: -63
|
||||
- _StylingShadingSyncWithOtherStyling: 0
|
||||
- _StylingShadingThickness: 1
|
||||
- _StylingShadingThicknessControl: 0
|
||||
- _StylingShadingThicknessFalloff: 0.62
|
||||
- _StylingSpecularBlending: 0
|
||||
- _StylingSpecularCutOutShading: 0
|
||||
- _StylingSpecularDensity: 3.2
|
||||
- _StylingSpecularHalftonesOffset: 0.513
|
||||
- _StylingSpecularHalftonesRoundness: 1
|
||||
- _StylingSpecularHalftonesRoundnessFalloff: 0
|
||||
- _StylingSpecularHardness: 0.822
|
||||
- _StylingSpecularIsInverted: 0
|
||||
- _StylingSpecularOpacity: 1
|
||||
- _StylingSpecularOpacityFalloff: 0.355
|
||||
- _StylingSpecularPosition: 0
|
||||
- _StylingSpecularRotation: 61
|
||||
- _StylingSpecularSize: 0.818
|
||||
- _StylingSpecularSmoothness: 0.206
|
||||
- _StylingSpecularSyncWithOtherStyling: 1
|
||||
- _StylingSpecularThickness: 1
|
||||
- _StylingSpecularThicknessControl: 0
|
||||
- _StylingSpecularThicknessFalloff: 0.62
|
||||
- _StylingSpecularUseLightColors: 0
|
||||
- _StylingTerminatorPosition: 0
|
||||
- _SumLightsBeforePosterization: 1
|
||||
- _Surface: 0
|
||||
- _SyncWithLightPartitioning: 0
|
||||
- _SyncWithRim: 0
|
||||
- _SyncWithSpecular: 0
|
||||
- _TerminatorPosition: 0
|
||||
- _TerminatorSmoothness: 0
|
||||
- _TerminatorWidth: 1
|
||||
- _TheToonShaderIdentifier: 1
|
||||
- _ThicknessRandomMode: 1
|
||||
- _ThicknesshRandomIntensity: 0.145
|
||||
- _UVSec: 0
|
||||
- _UVSet: 0
|
||||
- _UseAlphaOnlyFromBaseMap: 0
|
||||
- _UseCurve: 1
|
||||
- _UsePBRLighting: 0
|
||||
- _WorkflowMode: 1
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _BaseColor: {r: 0.8301887, g: 0.8235862, b: 0.7714489, a: 1}
|
||||
- _CastShadowColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _CastShadowsPolarCenter: {r: 0.54, g: 0.47, b: 0, a: 0}
|
||||
- _Color: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _CoreShadowColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _FormShadowColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _OutlineColor: {r: 0, g: 0.05882353, b: 0.49019608, a: 1}
|
||||
- _PolarCenter: {r: 0.54, g: 0.47, b: 0, a: 0}
|
||||
- _RimColor: {r: 1, g: 0, b: 0, a: 1}
|
||||
- _RimPolarCenter: {r: 0.54, g: 0.47, b: 0, a: 0}
|
||||
- _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1}
|
||||
- _SpecularColor: {r: 1, g: 1, b: 0, a: 1}
|
||||
- _SpecularPolarCenter: {r: 0.54, g: 0.47, b: 0, a: 0}
|
||||
- _StylingCastShadowsColor: {r: 0, g: 0.05882353, b: 0.49019608, a: 1}
|
||||
- _StylingColor: {r: 1, g: 0.15377249, b: 0, a: 1}
|
||||
- _StylingRimColor: {r: 0, g: 0.22719002, b: 1, a: 1}
|
||||
- _StylingSpecularColor: {r: 1, g: 0.9744728, b: 0.8915094, a: 1}
|
||||
m_BuildTextureStacks: []
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 461505673de31e745adc553b3bddf7e5
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 269238
|
||||
packageName: The Toon Shader
|
||||
packageVersion: 1.4.2
|
||||
assetPath: Packages/com.shadercrew.the-toon-shader.3d/Scripts/Resources/TTSReferenceMaterials/Halftone_00_RetroColorful_TTS_RefMat.mat
|
||||
uploadId: 919972
|
||||
+410
@@ -0,0 +1,410 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!114 &-7617746012844444677
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 4
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: Halftone_01_NiceSquares_TTS_RefMat
|
||||
m_Shader: {fileID: 4800000, guid: 1c6b3902befc80643a83432be8825adc, type: 3}
|
||||
m_ValidKeywords:
|
||||
- _SHADING_COLOR
|
||||
m_InvalidKeywords:
|
||||
- _OUTLINECONSTANTSCREENWIDTH_ON
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 0
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses: []
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _BaseMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BumpMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailAlbedoMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailMask:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailNormalMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _EmissionMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _GradientTex:
|
||||
m_Texture: {fileID: 2800000, guid: 6b923a350a3eec547a2e5e79ada1927b, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _HatchingMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MainTex:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MetallicGlossMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NoiseMap1:
|
||||
m_Texture: {fileID: 2800000, guid: 0528154608ff38a4c845b6622c088ea0, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NoiseMap2:
|
||||
m_Texture: {fileID: 2800000, guid: f40d12a41bafa6749a1465879341fff5, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _OcclusionMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ParallaxMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ShadingGradientCurve:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SpecGlossMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _AdjustStylingDistanceFadeValue: 0
|
||||
- _AlphaClip: 0
|
||||
- _AmbientColorContribution: 0
|
||||
- _AnchorSSToObjectsOrigin: 1
|
||||
- _Blend: 0
|
||||
- _BumpScale: 1
|
||||
- _CastShadowColorMode: 0
|
||||
- _CastShadowsAnchorSSToObjectsOrigin: 1
|
||||
- _CastShadowsCoordinateSystem: 0
|
||||
- _CastShadowsDrawSpace: 1
|
||||
- _CastShadowsHardnessRandomIntensity: 0.159
|
||||
- _CastShadowsHardnessRandomMode: 1
|
||||
- _CastShadowsLengthRandomIntensity: 0.13
|
||||
- _CastShadowsLengthRandomMode: 2
|
||||
- _CastShadowsNoise1Seed: 1
|
||||
- _CastShadowsNoise1Size: 1.79
|
||||
- _CastShadowsNoise2Seed: 1
|
||||
- _CastShadowsNoiseIntensity: 0
|
||||
- _CastShadowsNumberOfCellsHatching: 3
|
||||
- _CastShadowsOpacityRandomIntensity: 0
|
||||
- _CastShadowsOpacityRandomMode: 0
|
||||
- _CastShadowsPolarCenterMode: 0
|
||||
- _CastShadowsSSCameraDistanceScaled: 1
|
||||
- _CastShadowsSmoothness: 0.9
|
||||
- _CastShadowsSpacingRandomIntensity: 1
|
||||
- _CastShadowsSpacingRandomMode: 2
|
||||
- _CastShadowsStrength: 0
|
||||
- _CastShadowsStyle: 1
|
||||
- _CastShadowsThicknessRandomMode: 1
|
||||
- _CastShadowsThicknesshRandomIntensity: 0.145
|
||||
- _CastShadowsUVSet: 0
|
||||
- _CategoryOutline: 0
|
||||
- _CategoryStyling: 0
|
||||
- _CategorySurfaceOptionsAndInputs: 0
|
||||
- _CategoryToonShading: 0
|
||||
- _CellTransitionSmoothness: 0.256
|
||||
- _ClearCoatMask: 0
|
||||
- _ClearCoatSmoothness: 0
|
||||
- _CoordinateSystem: 0
|
||||
- _Cull: 2
|
||||
- _CustomizeCastShadowsColor: 0
|
||||
- _Cutoff: 0.5
|
||||
- _DetailAlbedoMapScale: 1
|
||||
- _DetailNormalMapScale: 1
|
||||
- _DrawSpace: 1
|
||||
- _DstBlend: 0
|
||||
- _EnableAntiAliasing: 0
|
||||
- _EnableCastShadows: 1
|
||||
- _EnableCastShadowsRandomizer: 0
|
||||
- _EnableCastShadowsStyling: 1
|
||||
- _EnableOutline: 1
|
||||
- _EnableRim: 0
|
||||
- _EnableRimRandomizer: 0
|
||||
- _EnableRimStyling: 1
|
||||
- _EnableShadingRandomizer: 0
|
||||
- _EnableShadingStyling: 1
|
||||
- _EnableShadows: 1
|
||||
- _EnableSpecular: 0
|
||||
- _EnableSpecularRandomizer: 0
|
||||
- _EnableSpecularStyling: 1
|
||||
- _EnableStyling: 1
|
||||
- _EnableStylingDistanceFade: 0
|
||||
- _EnableToonShading: 1
|
||||
- _EnvironmentReflections: 1
|
||||
- _GlossMapScale: 0
|
||||
- _Glossiness: 0
|
||||
- _GlossyReflections: 0
|
||||
- _GradientBlendFactor: 1
|
||||
- _GradientBlending: 0
|
||||
- _GradientMode: 0
|
||||
- _HalftonePattern: 1
|
||||
- _HalftonePatternCameraDistanceFade: 0
|
||||
- _HardnessRandomIntensity: 0.159
|
||||
- _HardnessRandomMode: 1
|
||||
- _HatchingAffectedByNormalMap: 0
|
||||
- _HatchingCameraDistanceFade: 0
|
||||
- _IsOptimized: 0
|
||||
- _LengthRandomIntensity: 0.13
|
||||
- _LengthRandomMode: 2
|
||||
- _LightColorContribution: 0
|
||||
- _LightFunction: 0
|
||||
- _LightFunctionLerpValue: 0.5
|
||||
- _LightSource: 0
|
||||
- _Metallic: 0.722
|
||||
- _Mode: 0
|
||||
- _NoiseIntensity: 0
|
||||
- _NoiseTextureQuality: 0
|
||||
- _NumberOfCells: 1
|
||||
- _NumberOfCellsHatching: 3
|
||||
- _OcclusionStrength: 1
|
||||
- _OpacityRandomIntensity: 0
|
||||
- _OpacityRandomMode: 0
|
||||
- _OutlineCameraDistanceImpact: 0
|
||||
- _OutlineConstantScreenWidth: 1
|
||||
- _OutlineDepthOffset: 0
|
||||
- _OutlineWidth: 1.5
|
||||
- _Parallax: 0.005
|
||||
- _PerlinNoiseSize: 0.245
|
||||
- _PolarCenterMode: 0
|
||||
- _QueueControl: -1
|
||||
- _QueueOffset: 0
|
||||
- _ReceiveShadows: 1
|
||||
- _RimAffectedArea: 1
|
||||
- _RimAffectedByNormalMap: 1
|
||||
- _RimAnchorSSToObjectsOrigin: 1
|
||||
- _RimBlending: 0
|
||||
- _RimCoordinateSystem: 0
|
||||
- _RimDrawSpace: 1
|
||||
- _RimHardnessRandomIntensity: 0.159
|
||||
- _RimHardnessRandomMode: 1
|
||||
- _RimLengthRandomIntensity: 0.13
|
||||
- _RimLengthRandomMode: 2
|
||||
- _RimNoise1Seed: 1
|
||||
- _RimNoise1Size: 1.79
|
||||
- _RimNoise2Seed: 1
|
||||
- _RimNoiseIntensity: 0
|
||||
- _RimOpacity: 1
|
||||
- _RimOpacityRandomIntensity: 0
|
||||
- _RimOpacityRandomMode: 0
|
||||
- _RimPerlinNoiseSeed: 1
|
||||
- _RimPerlinNoiseSize: 1
|
||||
- _RimPolarCenterMode: 0
|
||||
- _RimSSCameraDistanceScaled: 1
|
||||
- _RimSize: 0.445
|
||||
- _RimSmoothness: 0
|
||||
- _RimSpacingRandomIntensity: 1
|
||||
- _RimSpacingRandomMode: 2
|
||||
- _RimStyle: 1
|
||||
- _RimThicknessRandomMode: 1
|
||||
- _RimThicknesshRandomIntensity: 0.145
|
||||
- _RimUVSet: 0
|
||||
- _RimWhiteNoiseSeed: 1
|
||||
- _SSCameraDistanceScaled: 1
|
||||
- _ShadingAffectByNormalMap: 1
|
||||
- _ShadingAffectedByNormalMap: 1
|
||||
- _ShadingBlending: 0
|
||||
- _ShadingFunction: 0
|
||||
- _ShadingMode: 0
|
||||
- _ShadingNoise1Seed: 1
|
||||
- _ShadingNoise1Size: 1.79
|
||||
- _ShadingNoise2Seed: 1
|
||||
- _ShadingStyle: 1
|
||||
- _ShadingUseLightColors: 1
|
||||
- _ShadowMode: 0
|
||||
- _ShadowsAffectByNormalMap: 1
|
||||
- _Smoothness: 0.336
|
||||
- _SmoothnessSource: 0
|
||||
- _SmoothnessTextureChannel: 0
|
||||
- _SpacingRandomIntensity: 1
|
||||
- _SpacingRandomMode: 2
|
||||
- _SpecularAffectedByNormalMap: 1
|
||||
- _SpecularAnchorSSToObjectsOrigin: 1
|
||||
- _SpecularBlending: 1
|
||||
- _SpecularCoordinateSystem: 0
|
||||
- _SpecularDrawSpace: 1
|
||||
- _SpecularHardnessRandomIntensity: 0.159
|
||||
- _SpecularHardnessRandomMode: 1
|
||||
- _SpecularHighlights: 1
|
||||
- _SpecularLengthRandomIntensity: 0.13
|
||||
- _SpecularLengthRandomMode: 2
|
||||
- _SpecularNoise1Seed: 1
|
||||
- _SpecularNoise1Size: 1.79
|
||||
- _SpecularNoise2Seed: 1
|
||||
- _SpecularNoiseIntensity: 0
|
||||
- _SpecularOpacity: 1
|
||||
- _SpecularOpacityRandomIntensity: 0
|
||||
- _SpecularOpacityRandomMode: 0
|
||||
- _SpecularPerlinNoiseSeed: 1
|
||||
- _SpecularPerlinNoiseSize: 1
|
||||
- _SpecularPolarCenterMode: 0
|
||||
- _SpecularSSCameraDistanceScaled: 1
|
||||
- _SpecularSize: 0
|
||||
- _SpecularSmoothness: 0
|
||||
- _SpecularSpacingRandomIntensity: 1
|
||||
- _SpecularSpacingRandomMode: 2
|
||||
- _SpecularStyle: 1
|
||||
- _SpecularThicknessRandomMode: 1
|
||||
- _SpecularThicknesshRandomIntensity: 0.145
|
||||
- _SpecularUVSet: 0
|
||||
- _SpecularUseLightColors: 1
|
||||
- _SpecularWhiteNoiseSeed: 1
|
||||
- _SrcBlend: 1
|
||||
- _StylingAdjustDistanceFadeValue: 1
|
||||
- _StylingCastShadowsBlending: 0
|
||||
- _StylingCastShadowsDensity: 3.71
|
||||
- _StylingCastShadowsHalftonesOffset: 0
|
||||
- _StylingCastShadowsHalftonesRoundness: 0
|
||||
- _StylingCastShadowsHalftonesRoundnessFalloff: 1
|
||||
- _StylingCastShadowsHardness: 0.761
|
||||
- _StylingCastShadowsInitialDirection: 90
|
||||
- _StylingCastShadowsIsInverted: 0
|
||||
- _StylingCastShadowsOpacity: 1
|
||||
- _StylingCastShadowsOpacityFalloff: 0.061
|
||||
- _StylingCastShadowsRotationBetweenCells: -63
|
||||
- _StylingCastShadowsSmoothness: 1
|
||||
- _StylingCastShadowsSyncWithOtherStyling: 1
|
||||
- _StylingCastShadowsThickness: 1
|
||||
- _StylingCastShadowsThicknessControl: 0
|
||||
- _StylingCastShadowsThicknessFalloff: 0.798
|
||||
- _StylingDFFalloff: 7.8
|
||||
- _StylingDFStartingDistance: 4.38
|
||||
- _StylingDistanceFadeValue: 0.169
|
||||
- _StylingOvermodelingFactor: 1
|
||||
- _StylingRimAffectedArea: 1
|
||||
- _StylingRimBlending: 0
|
||||
- _StylingRimDensity: 3.71
|
||||
- _StylingRimHalftonesOffset: 0
|
||||
- _StylingRimHalftonesRoundness: 0
|
||||
- _StylingRimHalftonesRoundnessFalloff: 1
|
||||
- _StylingRimHardness: 0.761
|
||||
- _StylingRimIsInverted: 0
|
||||
- _StylingRimOpacity: 1
|
||||
- _StylingRimOpacityFalloff: 0.061
|
||||
- _StylingRimPosition: 0
|
||||
- _StylingRimRotation: 90
|
||||
- _StylingRimSize: 0.349
|
||||
- _StylingRimSmoothness: 0.583
|
||||
- _StylingRimSyncWithOtherStyling: 1
|
||||
- _StylingRimThickness: 1
|
||||
- _StylingRimThicknessControl: 0
|
||||
- _StylingRimThicknessFalloff: 0.798
|
||||
- _StylingShadingBlending: 0
|
||||
- _StylingShadingDensity: 3.71
|
||||
- _StylingShadingHalftonesOffset: 0
|
||||
- _StylingShadingHalftonesRoundness: 0
|
||||
- _StylingShadingHalftonesRoundnessFalloff: 1
|
||||
- _StylingShadingHardness: 0.761
|
||||
- _StylingShadingInitialDirection: 90
|
||||
- _StylingShadingIsInverted: 0
|
||||
- _StylingShadingOpacity: 1
|
||||
- _StylingShadingOpacityFalloff: 0.061
|
||||
- _StylingShadingPosition: 0
|
||||
- _StylingShadingRotationBetweenCells: -63
|
||||
- _StylingShadingSyncWithOtherStyling: 0
|
||||
- _StylingShadingThickness: 1
|
||||
- _StylingShadingThicknessControl: 0
|
||||
- _StylingShadingThicknessFalloff: 0.798
|
||||
- _StylingSpecularBlending: 0
|
||||
- _StylingSpecularCutOutShading: 0
|
||||
- _StylingSpecularDensity: 3.71
|
||||
- _StylingSpecularHalftonesOffset: 0
|
||||
- _StylingSpecularHalftonesRoundness: 0
|
||||
- _StylingSpecularHalftonesRoundnessFalloff: 1
|
||||
- _StylingSpecularHardness: 0.761
|
||||
- _StylingSpecularIsInverted: 0
|
||||
- _StylingSpecularOpacity: 1
|
||||
- _StylingSpecularOpacityFalloff: 0.061
|
||||
- _StylingSpecularPosition: 0
|
||||
- _StylingSpecularRotation: 90
|
||||
- _StylingSpecularSize: 0.871
|
||||
- _StylingSpecularSmoothness: 0.135
|
||||
- _StylingSpecularSyncWithOtherStyling: 1
|
||||
- _StylingSpecularThickness: 1
|
||||
- _StylingSpecularThicknessControl: 0
|
||||
- _StylingSpecularThicknessFalloff: 0.798
|
||||
- _StylingSpecularUseLightColors: 0
|
||||
- _StylingTerminatorPosition: 0
|
||||
- _SumLightsBeforePosterization: 1
|
||||
- _Surface: 0
|
||||
- _SyncWithLightPartitioning: 0
|
||||
- _SyncWithRim: 0
|
||||
- _SyncWithSpecular: 0
|
||||
- _TerminatorPosition: 0
|
||||
- _TerminatorSmoothness: 0.685
|
||||
- _TerminatorWidth: 1
|
||||
- _TheToonShaderIdentifier: 1
|
||||
- _ThicknessRandomMode: 1
|
||||
- _ThicknesshRandomIntensity: 0.145
|
||||
- _UVSec: 0
|
||||
- _UVSet: 0
|
||||
- _UseAlphaOnlyFromBaseMap: 0
|
||||
- _UseCurve: 1
|
||||
- _UsePBRLighting: 0
|
||||
- _WorkflowMode: 1
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _BaseColor: {r: 0.8301887, g: 0.8235862, b: 0.7714489, a: 1}
|
||||
- _CastShadowColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _CastShadowsPolarCenter: {r: 0.54, g: 0.47, b: 0, a: 0}
|
||||
- _Color: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _CoreShadowColor: {r: 0.1981132, g: 0.1981132, b: 0.1981132, a: 1}
|
||||
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _FormShadowColor: {r: 0.20754719, g: 0.20754719, b: 0.20754719, a: 1}
|
||||
- _OutlineColor: {r: 0, g: 0.05882353, b: 0.49019608, a: 1}
|
||||
- _PolarCenter: {r: 0.54, g: 0.47, b: 0, a: 0}
|
||||
- _RimColor: {r: 1, g: 0, b: 0, a: 1}
|
||||
- _RimPolarCenter: {r: 0.54, g: 0.47, b: 0, a: 0}
|
||||
- _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1}
|
||||
- _SpecularColor: {r: 1, g: 1, b: 0, a: 1}
|
||||
- _SpecularPolarCenter: {r: 0.54, g: 0.47, b: 0, a: 0}
|
||||
- _StylingCastShadowsColor: {r: 0.5849056, g: 0, b: 0.095457934, a: 1}
|
||||
- _StylingColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _StylingRimColor: {r: 0.5518868, g: 0.6333068, b: 1, a: 1}
|
||||
- _StylingSpecularColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
m_BuildTextureStacks: []
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 6dcc2ff131e333b4296a4dbc1e536ac2
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 269238
|
||||
packageName: The Toon Shader
|
||||
packageVersion: 1.4.2
|
||||
assetPath: Packages/com.shadercrew.the-toon-shader.3d/Scripts/Resources/TTSReferenceMaterials/Halftone_01_NiceSquares_TTS_RefMat.mat
|
||||
uploadId: 919972
|
||||
+409
@@ -0,0 +1,409 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!114 &-7617746012844444677
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 4
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: Halftone_02_InvertedWithPBR_TTS_RefMat
|
||||
m_Shader: {fileID: 4800000, guid: cdb1479f619aff740b0cea7a60a84201, type: 3}
|
||||
m_ValidKeywords:
|
||||
- _SHADING_PBR
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 0
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses: []
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _BaseMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BumpMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailAlbedoMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailMask:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailNormalMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _EmissionMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _GradientTex:
|
||||
m_Texture: {fileID: 2800000, guid: 6b923a350a3eec547a2e5e79ada1927b, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _HatchingMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MainTex:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MetallicGlossMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NoiseMap1:
|
||||
m_Texture: {fileID: 2800000, guid: 0528154608ff38a4c845b6622c088ea0, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NoiseMap2:
|
||||
m_Texture: {fileID: 2800000, guid: f40d12a41bafa6749a1465879341fff5, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _OcclusionMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ParallaxMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ShadingGradientCurve:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SpecGlossMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _AdjustStylingDistanceFadeValue: 0
|
||||
- _AlphaClip: 0
|
||||
- _AmbientColorContribution: 0
|
||||
- _AnchorSSToObjectsOrigin: 1
|
||||
- _Blend: 0
|
||||
- _BumpScale: 1
|
||||
- _CastShadowColorMode: 0
|
||||
- _CastShadowsAnchorSSToObjectsOrigin: 1
|
||||
- _CastShadowsCoordinateSystem: 0
|
||||
- _CastShadowsDrawSpace: 1
|
||||
- _CastShadowsHardnessRandomIntensity: 0
|
||||
- _CastShadowsHardnessRandomMode: 1
|
||||
- _CastShadowsLengthRandomIntensity: 0.13
|
||||
- _CastShadowsLengthRandomMode: 2
|
||||
- _CastShadowsNoise1Seed: 1
|
||||
- _CastShadowsNoise1Size: 0.56
|
||||
- _CastShadowsNoise2Seed: 1
|
||||
- _CastShadowsNoiseIntensity: 0.16
|
||||
- _CastShadowsNumberOfCellsHatching: 3
|
||||
- _CastShadowsOpacityRandomIntensity: 0
|
||||
- _CastShadowsOpacityRandomMode: 0
|
||||
- _CastShadowsPolarCenterMode: 0
|
||||
- _CastShadowsSSCameraDistanceScaled: 1
|
||||
- _CastShadowsSmoothness: 0.9
|
||||
- _CastShadowsSpacingRandomIntensity: 0
|
||||
- _CastShadowsSpacingRandomMode: 2
|
||||
- _CastShadowsStrength: 0
|
||||
- _CastShadowsStyle: 1
|
||||
- _CastShadowsThicknessRandomMode: 1
|
||||
- _CastShadowsThicknesshRandomIntensity: 0
|
||||
- _CastShadowsUVSet: 0
|
||||
- _CategoryOutline: 0
|
||||
- _CategoryStyling: 0
|
||||
- _CategorySurfaceOptionsAndInputs: 0
|
||||
- _CategoryToonShading: 0
|
||||
- _CellTransitionSmoothness: 0
|
||||
- _ClearCoatMask: 0
|
||||
- _ClearCoatSmoothness: 0
|
||||
- _CoordinateSystem: 0
|
||||
- _Cull: 2
|
||||
- _CustomizeCastShadowsColor: 0
|
||||
- _Cutoff: 0.5
|
||||
- _DetailAlbedoMapScale: 1
|
||||
- _DetailNormalMapScale: 1
|
||||
- _DrawSpace: 1
|
||||
- _DstBlend: 0
|
||||
- _EnableAntiAliasing: 0
|
||||
- _EnableCastShadows: 0
|
||||
- _EnableCastShadowsRandomizer: 1
|
||||
- _EnableCastShadowsStyling: 0
|
||||
- _EnableOutline: 0
|
||||
- _EnableRim: 0
|
||||
- _EnableRimRandomizer: 1
|
||||
- _EnableRimStyling: 1
|
||||
- _EnableShadingRandomizer: 1
|
||||
- _EnableShadingStyling: 1
|
||||
- _EnableShadows: 1
|
||||
- _EnableSpecular: 0
|
||||
- _EnableSpecularRandomizer: 0
|
||||
- _EnableSpecularStyling: 0
|
||||
- _EnableStyling: 1
|
||||
- _EnableStylingDistanceFade: 0
|
||||
- _EnableToonShading: 0
|
||||
- _EnvironmentReflections: 1
|
||||
- _GlossMapScale: 0
|
||||
- _Glossiness: 0
|
||||
- _GlossyReflections: 0
|
||||
- _GradientBlendFactor: 1
|
||||
- _GradientBlending: 0
|
||||
- _GradientMode: 0
|
||||
- _HalftonePattern: 1
|
||||
- _HalftonePatternCameraDistanceFade: 0
|
||||
- _HardnessRandomIntensity: 0
|
||||
- _HardnessRandomMode: 1
|
||||
- _HatchingAffectedByNormalMap: 0
|
||||
- _HatchingCameraDistanceFade: 0
|
||||
- _IsOptimized: 0
|
||||
- _LengthRandomIntensity: 0.13
|
||||
- _LengthRandomMode: 2
|
||||
- _LightColorContribution: 0
|
||||
- _LightFunction: 1
|
||||
- _LightFunctionLerpValue: 0.5
|
||||
- _LightSource: 0
|
||||
- _Metallic: 0
|
||||
- _Mode: 0
|
||||
- _NoiseIntensity: 0.16
|
||||
- _NoiseTextureQuality: 0
|
||||
- _NumberOfCells: 1
|
||||
- _NumberOfCellsHatching: 3
|
||||
- _OcclusionStrength: 1
|
||||
- _OpacityRandomIntensity: 0
|
||||
- _OpacityRandomMode: 0
|
||||
- _OutlineCameraDistanceImpact: 0
|
||||
- _OutlineConstantScreenWidth: 0
|
||||
- _OutlineDepthOffset: 0
|
||||
- _OutlineWidth: 1.5
|
||||
- _Parallax: 0.005
|
||||
- _PerlinNoiseSize: 0.245
|
||||
- _PolarCenterMode: 0
|
||||
- _QueueControl: 0
|
||||
- _QueueOffset: 0
|
||||
- _ReceiveShadows: 1
|
||||
- _RimAffectedArea: 1
|
||||
- _RimAffectedByNormalMap: 1
|
||||
- _RimAnchorSSToObjectsOrigin: 1
|
||||
- _RimBlending: 0
|
||||
- _RimCoordinateSystem: 0
|
||||
- _RimDrawSpace: 1
|
||||
- _RimHardnessRandomIntensity: 0
|
||||
- _RimHardnessRandomMode: 1
|
||||
- _RimLengthRandomIntensity: 0.13
|
||||
- _RimLengthRandomMode: 2
|
||||
- _RimNoise1Seed: 1
|
||||
- _RimNoise1Size: 0.56
|
||||
- _RimNoise2Seed: 1
|
||||
- _RimNoiseIntensity: 0.16
|
||||
- _RimOpacity: 1
|
||||
- _RimOpacityRandomIntensity: 0
|
||||
- _RimOpacityRandomMode: 0
|
||||
- _RimPerlinNoiseSeed: 1
|
||||
- _RimPerlinNoiseSize: 1
|
||||
- _RimPolarCenterMode: 0
|
||||
- _RimSSCameraDistanceScaled: 1
|
||||
- _RimSize: 0.445
|
||||
- _RimSmoothness: 0
|
||||
- _RimSpacingRandomIntensity: 0
|
||||
- _RimSpacingRandomMode: 2
|
||||
- _RimStyle: 1
|
||||
- _RimThicknessRandomMode: 1
|
||||
- _RimThicknesshRandomIntensity: 0
|
||||
- _RimUVSet: 0
|
||||
- _RimWhiteNoiseSeed: 1
|
||||
- _SSCameraDistanceScaled: 1
|
||||
- _ShadingAffectByNormalMap: 1
|
||||
- _ShadingAffectedByNormalMap: 1
|
||||
- _ShadingBlending: 0
|
||||
- _ShadingFunction: 0
|
||||
- _ShadingMode: 1
|
||||
- _ShadingNoise1Seed: 1
|
||||
- _ShadingNoise1Size: 0.56
|
||||
- _ShadingNoise2Seed: 1
|
||||
- _ShadingStyle: 1
|
||||
- _ShadingUseLightColors: 1
|
||||
- _ShadowMode: 0
|
||||
- _ShadowsAffectByNormalMap: 1
|
||||
- _Smoothness: 0.21
|
||||
- _SmoothnessSource: 0
|
||||
- _SmoothnessTextureChannel: 0
|
||||
- _SpacingRandomIntensity: 0
|
||||
- _SpacingRandomMode: 2
|
||||
- _SpecularAffectedByNormalMap: 1
|
||||
- _SpecularAnchorSSToObjectsOrigin: 1
|
||||
- _SpecularBlending: 1
|
||||
- _SpecularCoordinateSystem: 0
|
||||
- _SpecularDrawSpace: 1
|
||||
- _SpecularHardnessRandomIntensity: 0.159
|
||||
- _SpecularHardnessRandomMode: 1
|
||||
- _SpecularHighlights: 0
|
||||
- _SpecularLengthRandomIntensity: 0.13
|
||||
- _SpecularLengthRandomMode: 2
|
||||
- _SpecularNoise1Seed: 1
|
||||
- _SpecularNoise1Size: 1.79
|
||||
- _SpecularNoise2Seed: 1
|
||||
- _SpecularNoiseIntensity: 0
|
||||
- _SpecularOpacity: 1
|
||||
- _SpecularOpacityRandomIntensity: 0
|
||||
- _SpecularOpacityRandomMode: 0
|
||||
- _SpecularPerlinNoiseSeed: 1
|
||||
- _SpecularPerlinNoiseSize: 1
|
||||
- _SpecularPolarCenterMode: 0
|
||||
- _SpecularSSCameraDistanceScaled: 1
|
||||
- _SpecularSize: 0
|
||||
- _SpecularSmoothness: 0
|
||||
- _SpecularSpacingRandomIntensity: 1
|
||||
- _SpecularSpacingRandomMode: 2
|
||||
- _SpecularStyle: 1
|
||||
- _SpecularThicknessRandomMode: 1
|
||||
- _SpecularThicknesshRandomIntensity: 0.145
|
||||
- _SpecularUVSet: 0
|
||||
- _SpecularUseLightColors: 1
|
||||
- _SpecularWhiteNoiseSeed: 1
|
||||
- _SrcBlend: 1
|
||||
- _StylingAdjustDistanceFadeValue: 1
|
||||
- _StylingCastShadowsBlending: 0
|
||||
- _StylingCastShadowsDensity: 10.43
|
||||
- _StylingCastShadowsHalftonesOffset: 0.73
|
||||
- _StylingCastShadowsHalftonesRoundness: 1
|
||||
- _StylingCastShadowsHalftonesRoundnessFalloff: 0
|
||||
- _StylingCastShadowsHardness: 0.957
|
||||
- _StylingCastShadowsInitialDirection: 52
|
||||
- _StylingCastShadowsIsInverted: 1
|
||||
- _StylingCastShadowsOpacity: 1
|
||||
- _StylingCastShadowsOpacityFalloff: 0
|
||||
- _StylingCastShadowsRotationBetweenCells: -63
|
||||
- _StylingCastShadowsSmoothness: 1
|
||||
- _StylingCastShadowsSyncWithOtherStyling: 1
|
||||
- _StylingCastShadowsThickness: 1
|
||||
- _StylingCastShadowsThicknessControl: 0
|
||||
- _StylingCastShadowsThicknessFalloff: 0.313
|
||||
- _StylingDFFalloff: 7.8
|
||||
- _StylingDFStartingDistance: 4.38
|
||||
- _StylingDistanceFadeValue: 0.169
|
||||
- _StylingOvermodelingFactor: 1
|
||||
- _StylingRimAffectedArea: 1
|
||||
- _StylingRimBlending: 0
|
||||
- _StylingRimDensity: 1.21
|
||||
- _StylingRimHalftonesOffset: 0.73
|
||||
- _StylingRimHalftonesRoundness: 1
|
||||
- _StylingRimHalftonesRoundnessFalloff: 0
|
||||
- _StylingRimHardness: 0.957
|
||||
- _StylingRimIsInverted: 0
|
||||
- _StylingRimOpacity: 1
|
||||
- _StylingRimOpacityFalloff: 1
|
||||
- _StylingRimPosition: 0
|
||||
- _StylingRimRotation: 52
|
||||
- _StylingRimSize: 0.191
|
||||
- _StylingRimSmoothness: 1
|
||||
- _StylingRimSyncWithOtherStyling: 0
|
||||
- _StylingRimThickness: 0.749
|
||||
- _StylingRimThicknessControl: 0
|
||||
- _StylingRimThicknessFalloff: 0.791
|
||||
- _StylingShadingBlending: 0
|
||||
- _StylingShadingDensity: 2.27
|
||||
- _StylingShadingHalftonesOffset: 0.73
|
||||
- _StylingShadingHalftonesRoundness: 1
|
||||
- _StylingShadingHalftonesRoundnessFalloff: 0
|
||||
- _StylingShadingHardness: 0.773
|
||||
- _StylingShadingInitialDirection: 52
|
||||
- _StylingShadingIsInverted: 1
|
||||
- _StylingShadingOpacity: 1
|
||||
- _StylingShadingOpacityFalloff: 0
|
||||
- _StylingShadingPosition: 0
|
||||
- _StylingShadingRotationBetweenCells: -63
|
||||
- _StylingShadingSyncWithOtherStyling: 0
|
||||
- _StylingShadingThickness: 1
|
||||
- _StylingShadingThicknessControl: 0
|
||||
- _StylingShadingThicknessFalloff: 0.313
|
||||
- _StylingSpecularBlending: 0
|
||||
- _StylingSpecularCutOutShading: 0
|
||||
- _StylingSpecularDensity: 13.1
|
||||
- _StylingSpecularHalftonesOffset: 0
|
||||
- _StylingSpecularHalftonesRoundness: 1
|
||||
- _StylingSpecularHalftonesRoundnessFalloff: 0
|
||||
- _StylingSpecularHardness: 0.761
|
||||
- _StylingSpecularIsInverted: 1
|
||||
- _StylingSpecularOpacity: 1
|
||||
- _StylingSpecularOpacityFalloff: 0.061
|
||||
- _StylingSpecularPosition: 0
|
||||
- _StylingSpecularRotation: 147
|
||||
- _StylingSpecularSize: 0.871
|
||||
- _StylingSpecularSmoothness: 0.135
|
||||
- _StylingSpecularSyncWithOtherStyling: 1
|
||||
- _StylingSpecularThickness: 1
|
||||
- _StylingSpecularThicknessControl: 0
|
||||
- _StylingSpecularThicknessFalloff: 0.798
|
||||
- _StylingSpecularUseLightColors: 0
|
||||
- _StylingTerminatorPosition: 0
|
||||
- _SumLightsBeforePosterization: 1
|
||||
- _Surface: 0
|
||||
- _SyncWithLightPartitioning: 0
|
||||
- _SyncWithRim: 0
|
||||
- _SyncWithSpecular: 0
|
||||
- _TerminatorPosition: 0
|
||||
- _TerminatorSmoothness: 0.587
|
||||
- _TerminatorWidth: 1
|
||||
- _TheToonShaderIdentifier: 1
|
||||
- _ThicknessRandomMode: 1
|
||||
- _ThicknesshRandomIntensity: 0
|
||||
- _UVSec: 0
|
||||
- _UVSet: 0
|
||||
- _UseAlphaOnlyFromBaseMap: 0
|
||||
- _UseCurve: 1
|
||||
- _UsePBRLighting: 0
|
||||
- _WorkflowMode: 1
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _BaseColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _CastShadowColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _CastShadowsPolarCenter: {r: 0.54, g: 0.47, b: 0, a: 0}
|
||||
- _Color: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _CoreShadowColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _FormShadowColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _OutlineColor: {r: 0, g: 0.05882353, b: 0.49019608, a: 1}
|
||||
- _PolarCenter: {r: 0.54, g: 0.47, b: 0, a: 0}
|
||||
- _RimColor: {r: 1, g: 0, b: 0, a: 1}
|
||||
- _RimPolarCenter: {r: 0.54, g: 0.47, b: 0, a: 0}
|
||||
- _SpecColor: {r: 0.19999942, g: 0.19999942, b: 0.19999942, a: 0.21}
|
||||
- _SpecularColor: {r: 1, g: 1, b: 0, a: 1}
|
||||
- _SpecularPolarCenter: {r: 0.54, g: 0.47, b: 0, a: 0}
|
||||
- _StylingCastShadowsColor: {r: 0.5849056, g: 0, b: 0.095457934, a: 1}
|
||||
- _StylingColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _StylingRimColor: {r: 1, g: 0.059916537, b: 0, a: 1}
|
||||
- _StylingSpecularColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
m_BuildTextureStacks: []
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
fileFormatVersion: 2
|
||||
guid: dee0cde8324ad2a419693eb9b1f970af
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 269238
|
||||
packageName: The Toon Shader
|
||||
packageVersion: 1.4.2
|
||||
assetPath: Packages/com.shadercrew.the-toon-shader.3d/Scripts/Resources/TTSReferenceMaterials/Halftone_02_InvertedWithPBR_TTS_RefMat.mat
|
||||
uploadId: 919972
|
||||
+409
@@ -0,0 +1,409 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!114 &-7617746012844444677
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 4
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: Halftone_03_InvertedColorBased_TTS_RefMat
|
||||
m_Shader: {fileID: 4800000, guid: cdb1479f619aff740b0cea7a60a84201, type: 3}
|
||||
m_ValidKeywords:
|
||||
- _SHADING_COLOR
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 0
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses: []
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _BaseMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BumpMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailAlbedoMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailMask:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailNormalMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _EmissionMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _GradientTex:
|
||||
m_Texture: {fileID: 2800000, guid: e0e0b911f893d1540bb10dcf732fe382, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _HatchingMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MainTex:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MetallicGlossMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NoiseMap1:
|
||||
m_Texture: {fileID: 2800000, guid: 0528154608ff38a4c845b6622c088ea0, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NoiseMap2:
|
||||
m_Texture: {fileID: 2800000, guid: f40d12a41bafa6749a1465879341fff5, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _OcclusionMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ParallaxMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ShadingGradientCurve:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SpecGlossMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _AdjustStylingDistanceFadeValue: 0
|
||||
- _AlphaClip: 0
|
||||
- _AmbientColorContribution: 0
|
||||
- _AnchorSSToObjectsOrigin: 1
|
||||
- _Blend: 0
|
||||
- _BumpScale: 1
|
||||
- _CastShadowColorMode: 0
|
||||
- _CastShadowsAnchorSSToObjectsOrigin: 1
|
||||
- _CastShadowsCoordinateSystem: 0
|
||||
- _CastShadowsDrawSpace: 1
|
||||
- _CastShadowsHardnessRandomIntensity: 0
|
||||
- _CastShadowsHardnessRandomMode: 1
|
||||
- _CastShadowsLengthRandomIntensity: 0.092
|
||||
- _CastShadowsLengthRandomMode: 2
|
||||
- _CastShadowsNoise1Seed: 1
|
||||
- _CastShadowsNoise1Size: 0.56
|
||||
- _CastShadowsNoise2Seed: 1
|
||||
- _CastShadowsNoiseIntensity: 0
|
||||
- _CastShadowsNumberOfCellsHatching: 1
|
||||
- _CastShadowsOpacityRandomIntensity: 0
|
||||
- _CastShadowsOpacityRandomMode: 0
|
||||
- _CastShadowsPolarCenterMode: 0
|
||||
- _CastShadowsSSCameraDistanceScaled: 1
|
||||
- _CastShadowsSmoothness: 0.9
|
||||
- _CastShadowsSpacingRandomIntensity: 1
|
||||
- _CastShadowsSpacingRandomMode: 2
|
||||
- _CastShadowsStrength: 0
|
||||
- _CastShadowsStyle: 1
|
||||
- _CastShadowsThicknessRandomMode: 1
|
||||
- _CastShadowsThicknesshRandomIntensity: 0
|
||||
- _CastShadowsUVSet: 0
|
||||
- _CategoryOutline: 0
|
||||
- _CategoryStyling: 0
|
||||
- _CategorySurfaceOptionsAndInputs: 0
|
||||
- _CategoryToonShading: 0
|
||||
- _CellTransitionSmoothness: 0.081
|
||||
- _ClearCoatMask: 0
|
||||
- _ClearCoatSmoothness: 0
|
||||
- _CoordinateSystem: 0
|
||||
- _Cull: 2
|
||||
- _CustomizeCastShadowsColor: 0
|
||||
- _Cutoff: 0.5
|
||||
- _DetailAlbedoMapScale: 1
|
||||
- _DetailNormalMapScale: 1
|
||||
- _DrawSpace: 1
|
||||
- _DstBlend: 0
|
||||
- _EnableAntiAliasing: 0
|
||||
- _EnableCastShadows: 1
|
||||
- _EnableCastShadowsRandomizer: 1
|
||||
- _EnableCastShadowsStyling: 0
|
||||
- _EnableOutline: 0
|
||||
- _EnableRim: 0
|
||||
- _EnableRimRandomizer: 0
|
||||
- _EnableRimStyling: 1
|
||||
- _EnableShadingRandomizer: 1
|
||||
- _EnableShadingStyling: 1
|
||||
- _EnableShadows: 1
|
||||
- _EnableSpecular: 1
|
||||
- _EnableSpecularRandomizer: 1
|
||||
- _EnableSpecularStyling: 0
|
||||
- _EnableStyling: 1
|
||||
- _EnableStylingDistanceFade: 0
|
||||
- _EnableToonShading: 1
|
||||
- _EnvironmentReflections: 1
|
||||
- _GlossMapScale: 0
|
||||
- _Glossiness: 0
|
||||
- _GlossyReflections: 0
|
||||
- _GradientBlendFactor: 1
|
||||
- _GradientBlending: 0
|
||||
- _GradientMode: 0
|
||||
- _HalftonePattern: 1
|
||||
- _HalftonePatternCameraDistanceFade: 0
|
||||
- _HardnessRandomIntensity: 0
|
||||
- _HardnessRandomMode: 1
|
||||
- _HatchingAffectedByNormalMap: 0
|
||||
- _HatchingCameraDistanceFade: 0
|
||||
- _IsOptimized: 0
|
||||
- _LengthRandomIntensity: 0.092
|
||||
- _LengthRandomMode: 2
|
||||
- _LightColorContribution: 0
|
||||
- _LightFunction: 0
|
||||
- _LightFunctionLerpValue: 0.5
|
||||
- _LightSource: 0
|
||||
- _Metallic: 0
|
||||
- _Mode: 0
|
||||
- _NoiseIntensity: 0
|
||||
- _NoiseTextureQuality: 0
|
||||
- _NumberOfCells: 2
|
||||
- _NumberOfCellsHatching: 1
|
||||
- _OcclusionStrength: 1
|
||||
- _OpacityRandomIntensity: 0
|
||||
- _OpacityRandomMode: 0
|
||||
- _OutlineCameraDistanceImpact: 0
|
||||
- _OutlineConstantScreenWidth: 0
|
||||
- _OutlineDepthOffset: 0
|
||||
- _OutlineWidth: 1.5
|
||||
- _Parallax: 0.005
|
||||
- _PerlinNoiseSize: 0.245
|
||||
- _PolarCenterMode: 0
|
||||
- _QueueControl: 0
|
||||
- _QueueOffset: 0
|
||||
- _ReceiveShadows: 1
|
||||
- _RimAffectedArea: 2
|
||||
- _RimAffectedByNormalMap: 0
|
||||
- _RimAnchorSSToObjectsOrigin: 1
|
||||
- _RimBlending: 0
|
||||
- _RimCoordinateSystem: 0
|
||||
- _RimDrawSpace: 1
|
||||
- _RimHardnessRandomIntensity: 0
|
||||
- _RimHardnessRandomMode: 1
|
||||
- _RimLengthRandomIntensity: 0.13
|
||||
- _RimLengthRandomMode: 2
|
||||
- _RimNoise1Seed: 1
|
||||
- _RimNoise1Size: 0.56
|
||||
- _RimNoise2Seed: 1
|
||||
- _RimNoiseIntensity: 0.16
|
||||
- _RimOpacity: 1
|
||||
- _RimOpacityRandomIntensity: 0
|
||||
- _RimOpacityRandomMode: 0
|
||||
- _RimPerlinNoiseSeed: 1
|
||||
- _RimPerlinNoiseSize: 1
|
||||
- _RimPolarCenterMode: 0
|
||||
- _RimSSCameraDistanceScaled: 1
|
||||
- _RimSize: 0.62
|
||||
- _RimSmoothness: 0.136
|
||||
- _RimSpacingRandomIntensity: 0
|
||||
- _RimSpacingRandomMode: 2
|
||||
- _RimStyle: 1
|
||||
- _RimThicknessRandomMode: 1
|
||||
- _RimThicknesshRandomIntensity: 0
|
||||
- _RimUVSet: 0
|
||||
- _RimWhiteNoiseSeed: 1
|
||||
- _SSCameraDistanceScaled: 1
|
||||
- _ShadingAffectByNormalMap: 1
|
||||
- _ShadingAffectedByNormalMap: 1
|
||||
- _ShadingBlending: 0
|
||||
- _ShadingFunction: 0
|
||||
- _ShadingMode: 0
|
||||
- _ShadingNoise1Seed: 1
|
||||
- _ShadingNoise1Size: 0.56
|
||||
- _ShadingNoise2Seed: 1
|
||||
- _ShadingStyle: 1
|
||||
- _ShadingUseLightColors: 1
|
||||
- _ShadowMode: 0
|
||||
- _ShadowsAffectByNormalMap: 0
|
||||
- _Smoothness: 0.271
|
||||
- _SmoothnessSource: 0
|
||||
- _SmoothnessTextureChannel: 0
|
||||
- _SpacingRandomIntensity: 1
|
||||
- _SpacingRandomMode: 2
|
||||
- _SpecularAffectedByNormalMap: 0
|
||||
- _SpecularAnchorSSToObjectsOrigin: 1
|
||||
- _SpecularBlending: 0
|
||||
- _SpecularCoordinateSystem: 0
|
||||
- _SpecularDrawSpace: 1
|
||||
- _SpecularHardnessRandomIntensity: 0
|
||||
- _SpecularHardnessRandomMode: 1
|
||||
- _SpecularHighlights: 1
|
||||
- _SpecularLengthRandomIntensity: 0.092
|
||||
- _SpecularLengthRandomMode: 2
|
||||
- _SpecularNoise1Seed: 1
|
||||
- _SpecularNoise1Size: 0.56
|
||||
- _SpecularNoise2Seed: 1
|
||||
- _SpecularNoiseIntensity: 0
|
||||
- _SpecularOpacity: 1
|
||||
- _SpecularOpacityRandomIntensity: 0
|
||||
- _SpecularOpacityRandomMode: 0
|
||||
- _SpecularPerlinNoiseSeed: 1
|
||||
- _SpecularPerlinNoiseSize: 1
|
||||
- _SpecularPolarCenterMode: 0
|
||||
- _SpecularSSCameraDistanceScaled: 1
|
||||
- _SpecularSize: 0.786
|
||||
- _SpecularSmoothness: 0.13
|
||||
- _SpecularSpacingRandomIntensity: 1
|
||||
- _SpecularSpacingRandomMode: 2
|
||||
- _SpecularStyle: 1
|
||||
- _SpecularThicknessRandomMode: 1
|
||||
- _SpecularThicknesshRandomIntensity: 0
|
||||
- _SpecularUVSet: 0
|
||||
- _SpecularUseLightColors: 1
|
||||
- _SpecularWhiteNoiseSeed: 1
|
||||
- _SrcBlend: 1
|
||||
- _StylingAdjustDistanceFadeValue: 1
|
||||
- _StylingCastShadowsBlending: 0
|
||||
- _StylingCastShadowsDensity: 13.7
|
||||
- _StylingCastShadowsHalftonesOffset: 0.73
|
||||
- _StylingCastShadowsHalftonesRoundness: 1
|
||||
- _StylingCastShadowsHalftonesRoundnessFalloff: 0
|
||||
- _StylingCastShadowsHardness: 0.822
|
||||
- _StylingCastShadowsInitialDirection: 52
|
||||
- _StylingCastShadowsIsInverted: 1
|
||||
- _StylingCastShadowsOpacity: 1
|
||||
- _StylingCastShadowsOpacityFalloff: 0
|
||||
- _StylingCastShadowsRotationBetweenCells: 92
|
||||
- _StylingCastShadowsSmoothness: 1
|
||||
- _StylingCastShadowsSyncWithOtherStyling: 1
|
||||
- _StylingCastShadowsThickness: 1
|
||||
- _StylingCastShadowsThicknessControl: 0
|
||||
- _StylingCastShadowsThicknessFalloff: 0.485
|
||||
- _StylingDFFalloff: 7.8
|
||||
- _StylingDFStartingDistance: 4.38
|
||||
- _StylingDistanceFadeValue: 0.169
|
||||
- _StylingOvermodelingFactor: 1
|
||||
- _StylingRimAffectedArea: 0
|
||||
- _StylingRimBlending: 0
|
||||
- _StylingRimDensity: 17.6
|
||||
- _StylingRimHalftonesOffset: 0.73
|
||||
- _StylingRimHalftonesRoundness: 1
|
||||
- _StylingRimHalftonesRoundnessFalloff: 0
|
||||
- _StylingRimHardness: 0.822
|
||||
- _StylingRimIsInverted: 0
|
||||
- _StylingRimOpacity: 1
|
||||
- _StylingRimOpacityFalloff: 0
|
||||
- _StylingRimPosition: 0
|
||||
- _StylingRimRotation: 52
|
||||
- _StylingRimSize: 0.228
|
||||
- _StylingRimSmoothness: 0.331
|
||||
- _StylingRimSyncWithOtherStyling: 0
|
||||
- _StylingRimThickness: 1
|
||||
- _StylingRimThicknessControl: 0
|
||||
- _StylingRimThicknessFalloff: 0.122
|
||||
- _StylingShadingBlending: 0
|
||||
- _StylingShadingDensity: 5.94
|
||||
- _StylingShadingHalftonesOffset: 0.73
|
||||
- _StylingShadingHalftonesRoundness: 1
|
||||
- _StylingShadingHalftonesRoundnessFalloff: 0
|
||||
- _StylingShadingHardness: 0.947
|
||||
- _StylingShadingInitialDirection: 52
|
||||
- _StylingShadingIsInverted: 1
|
||||
- _StylingShadingOpacity: 1
|
||||
- _StylingShadingOpacityFalloff: 0
|
||||
- _StylingShadingPosition: 0
|
||||
- _StylingShadingRotationBetweenCells: 92
|
||||
- _StylingShadingSyncWithOtherStyling: 0
|
||||
- _StylingShadingThickness: 0.815
|
||||
- _StylingShadingThicknessControl: 0
|
||||
- _StylingShadingThicknessFalloff: 0.485
|
||||
- _StylingSpecularBlending: 0
|
||||
- _StylingSpecularCutOutShading: 0
|
||||
- _StylingSpecularDensity: 13.7
|
||||
- _StylingSpecularHalftonesOffset: 0.73
|
||||
- _StylingSpecularHalftonesRoundness: 1
|
||||
- _StylingSpecularHalftonesRoundnessFalloff: 0
|
||||
- _StylingSpecularHardness: 0.822
|
||||
- _StylingSpecularIsInverted: 1
|
||||
- _StylingSpecularOpacity: 1
|
||||
- _StylingSpecularOpacityFalloff: 0
|
||||
- _StylingSpecularPosition: 0
|
||||
- _StylingSpecularRotation: 52
|
||||
- _StylingSpecularSize: 0.871
|
||||
- _StylingSpecularSmoothness: 0.135
|
||||
- _StylingSpecularSyncWithOtherStyling: 1
|
||||
- _StylingSpecularThickness: 1
|
||||
- _StylingSpecularThicknessControl: 0
|
||||
- _StylingSpecularThicknessFalloff: 0.485
|
||||
- _StylingSpecularUseLightColors: 0
|
||||
- _StylingTerminatorPosition: 0
|
||||
- _SumLightsBeforePosterization: 1
|
||||
- _Surface: 0
|
||||
- _SyncWithLightPartitioning: 0
|
||||
- _SyncWithRim: 0
|
||||
- _SyncWithSpecular: 0
|
||||
- _TerminatorPosition: 0
|
||||
- _TerminatorSmoothness: 0.498
|
||||
- _TerminatorWidth: 0.161
|
||||
- _TheToonShaderIdentifier: 1
|
||||
- _ThicknessRandomMode: 1
|
||||
- _ThicknesshRandomIntensity: 0
|
||||
- _UVSec: 0
|
||||
- _UVSet: 0
|
||||
- _UseAlphaOnlyFromBaseMap: 0
|
||||
- _UseCurve: 1
|
||||
- _UsePBRLighting: 0
|
||||
- _WorkflowMode: 1
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _BaseColor: {r: 0, g: 0.7489488, b: 1, a: 1}
|
||||
- _CastShadowColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _CastShadowsPolarCenter: {r: 0.54, g: 0.47, b: 0, a: 0}
|
||||
- _Color: {r: 0, g: 0.7490196, b: 1, a: 1}
|
||||
- _CoreShadowColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _FormShadowColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _OutlineColor: {r: 0, g: 0.05882353, b: 0.49019608, a: 1}
|
||||
- _PolarCenter: {r: 0.54, g: 0.47, b: 0, a: 0}
|
||||
- _RimColor: {r: 1, g: 0, b: 0, a: 1}
|
||||
- _RimPolarCenter: {r: 0.54, g: 0.47, b: 0, a: 0}
|
||||
- _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1}
|
||||
- _SpecularColor: {r: 1, g: 0.808957, b: 0, a: 1}
|
||||
- _SpecularPolarCenter: {r: 0.54, g: 0.47, b: 0, a: 0}
|
||||
- _StylingCastShadowsColor: {r: 0.5849056, g: 0, b: 0.095457934, a: 1}
|
||||
- _StylingColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _StylingRimColor: {r: 0.7169812, g: 0.042175367, b: 0, a: 1}
|
||||
- _StylingSpecularColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
m_BuildTextureStacks: []
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
fileFormatVersion: 2
|
||||
guid: fb0b04d069fe93b47902965079779b5b
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 269238
|
||||
packageName: The Toon Shader
|
||||
packageVersion: 1.4.2
|
||||
assetPath: Packages/com.shadercrew.the-toon-shader.3d/Scripts/Resources/TTSReferenceMaterials/Halftone_03_InvertedColorBased_TTS_RefMat.mat
|
||||
uploadId: 919972
|
||||
+409
@@ -0,0 +1,409 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!114 &-7617746012844444677
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 4
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: Halftone_04_MellowBrown_TTS_RefMat
|
||||
m_Shader: {fileID: 4800000, guid: cdb1479f619aff740b0cea7a60a84201, type: 3}
|
||||
m_ValidKeywords:
|
||||
- _SHADING_COLOR
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 0
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses: []
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _BaseMap:
|
||||
m_Texture: {fileID: 2800000, guid: b1099990bb7f28548ad208f04cf39c5f, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BumpMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailAlbedoMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailMask:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailNormalMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _EmissionMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _GradientTex:
|
||||
m_Texture: {fileID: 2800000, guid: fd27826f2de204445941a7ac073955c7, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _HatchingMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MainTex:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MetallicGlossMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NoiseMap1:
|
||||
m_Texture: {fileID: 2800000, guid: 0528154608ff38a4c845b6622c088ea0, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NoiseMap2:
|
||||
m_Texture: {fileID: 2800000, guid: f40d12a41bafa6749a1465879341fff5, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _OcclusionMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ParallaxMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ShadingGradientCurve:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SpecGlossMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _AdjustStylingDistanceFadeValue: 0
|
||||
- _AlphaClip: 1
|
||||
- _AmbientColorContribution: 0
|
||||
- _AnchorSSToObjectsOrigin: 1
|
||||
- _Blend: 0
|
||||
- _BumpScale: 1
|
||||
- _CastShadowColorMode: 1
|
||||
- _CastShadowsAnchorSSToObjectsOrigin: 1
|
||||
- _CastShadowsCoordinateSystem: 0
|
||||
- _CastShadowsDrawSpace: 1
|
||||
- _CastShadowsHardnessRandomIntensity: 0.048
|
||||
- _CastShadowsHardnessRandomMode: 1
|
||||
- _CastShadowsLengthRandomIntensity: 0.091
|
||||
- _CastShadowsLengthRandomMode: 0
|
||||
- _CastShadowsNoise1Seed: 1
|
||||
- _CastShadowsNoise1Size: 1
|
||||
- _CastShadowsNoise2Seed: 1
|
||||
- _CastShadowsNoiseIntensity: 0
|
||||
- _CastShadowsNumberOfCellsHatching: 2
|
||||
- _CastShadowsOpacityRandomIntensity: 0
|
||||
- _CastShadowsOpacityRandomMode: 0
|
||||
- _CastShadowsPolarCenterMode: 0
|
||||
- _CastShadowsSSCameraDistanceScaled: 0
|
||||
- _CastShadowsSmoothness: 0.9
|
||||
- _CastShadowsSpacingRandomIntensity: 0
|
||||
- _CastShadowsSpacingRandomMode: 0
|
||||
- _CastShadowsStrength: 0
|
||||
- _CastShadowsStyle: 1
|
||||
- _CastShadowsThicknessRandomMode: 1
|
||||
- _CastShadowsThicknesshRandomIntensity: 0.06
|
||||
- _CastShadowsUVSet: 0
|
||||
- _CategoryOutline: 0
|
||||
- _CategoryStyling: 0
|
||||
- _CategorySurfaceOptionsAndInputs: 0
|
||||
- _CategoryToonShading: 0
|
||||
- _CellTransitionSmoothness: 0.2
|
||||
- _ClearCoatMask: 0
|
||||
- _ClearCoatSmoothness: 0
|
||||
- _CoordinateSystem: 0
|
||||
- _Cull: 2
|
||||
- _CustomizeCastShadowsColor: 0
|
||||
- _Cutoff: 0.5
|
||||
- _DetailAlbedoMapScale: 1
|
||||
- _DetailNormalMapScale: 1
|
||||
- _DrawSpace: 1
|
||||
- _DstBlend: 0
|
||||
- _EnableAntiAliasing: 0
|
||||
- _EnableCastShadows: 1
|
||||
- _EnableCastShadowsRandomizer: 1
|
||||
- _EnableCastShadowsStyling: 1
|
||||
- _EnableOutline: 0
|
||||
- _EnableRim: 1
|
||||
- _EnableRimRandomizer: 0
|
||||
- _EnableRimStyling: 0
|
||||
- _EnableShadingRandomizer: 1
|
||||
- _EnableShadingStyling: 1
|
||||
- _EnableShadows: 1
|
||||
- _EnableSpecular: 0
|
||||
- _EnableSpecularRandomizer: 0
|
||||
- _EnableSpecularStyling: 1
|
||||
- _EnableStyling: 1
|
||||
- _EnableStylingDistanceFade: 0
|
||||
- _EnableToonShading: 1
|
||||
- _EnvironmentReflections: 1
|
||||
- _GlossMapScale: 0
|
||||
- _Glossiness: 0
|
||||
- _GlossyReflections: 0
|
||||
- _GradientBlendFactor: 1
|
||||
- _GradientBlending: 0
|
||||
- _GradientMode: 0
|
||||
- _HalftonePattern: 1
|
||||
- _HalftonePatternCameraDistanceFade: 0
|
||||
- _HardnessRandomIntensity: 0.048
|
||||
- _HardnessRandomMode: 1
|
||||
- _HatchingAffectedByNormalMap: 0
|
||||
- _HatchingCameraDistanceFade: 0
|
||||
- _IsOptimized: 0
|
||||
- _LengthRandomIntensity: 0.091
|
||||
- _LengthRandomMode: 0
|
||||
- _LightColorContribution: 0
|
||||
- _LightFunction: 1
|
||||
- _LightFunctionLerpValue: 0.5
|
||||
- _LightSource: 0
|
||||
- _Metallic: 0
|
||||
- _Mode: 0
|
||||
- _NoiseIntensity: 0
|
||||
- _NoiseTextureQuality: 0
|
||||
- _NumberOfCells: 2
|
||||
- _NumberOfCellsHatching: 2
|
||||
- _OcclusionStrength: 1
|
||||
- _OpacityRandomIntensity: 0
|
||||
- _OpacityRandomMode: 0
|
||||
- _OutlineCameraDistanceImpact: 0
|
||||
- _OutlineConstantScreenWidth: 0
|
||||
- _OutlineDepthOffset: 0
|
||||
- _OutlineWidth: 6
|
||||
- _Parallax: 0.005
|
||||
- _PerlinNoiseSize: 1
|
||||
- _PolarCenterMode: 0
|
||||
- _QueueControl: -1
|
||||
- _QueueOffset: 0
|
||||
- _ReceiveShadows: 1
|
||||
- _RimAffectedArea: 0
|
||||
- _RimAffectedByNormalMap: 1
|
||||
- _RimAnchorSSToObjectsOrigin: 1
|
||||
- _RimBlending: 0
|
||||
- _RimCoordinateSystem: 0
|
||||
- _RimDrawSpace: 1
|
||||
- _RimHardnessRandomIntensity: 0
|
||||
- _RimHardnessRandomMode: 0
|
||||
- _RimLengthRandomIntensity: 0
|
||||
- _RimLengthRandomMode: 0
|
||||
- _RimNoise1Seed: 1
|
||||
- _RimNoise1Size: 1
|
||||
- _RimNoise2Seed: 1
|
||||
- _RimNoiseIntensity: 0
|
||||
- _RimOpacity: 1
|
||||
- _RimOpacityRandomIntensity: 0
|
||||
- _RimOpacityRandomMode: 0
|
||||
- _RimPerlinNoiseSeed: 1
|
||||
- _RimPerlinNoiseSize: 1
|
||||
- _RimPolarCenterMode: 0
|
||||
- _RimSSCameraDistanceScaled: 0
|
||||
- _RimSize: 0
|
||||
- _RimSmoothness: 0.201
|
||||
- _RimSpacingRandomIntensity: 0
|
||||
- _RimSpacingRandomMode: 0
|
||||
- _RimStyle: 1
|
||||
- _RimThicknessRandomMode: 0
|
||||
- _RimThicknesshRandomIntensity: 0
|
||||
- _RimUVSet: 0
|
||||
- _RimWhiteNoiseSeed: 1
|
||||
- _SSCameraDistanceScaled: 0
|
||||
- _ShadingAffectByNormalMap: 1
|
||||
- _ShadingAffectedByNormalMap: 1
|
||||
- _ShadingBlending: 0
|
||||
- _ShadingFunction: 0
|
||||
- _ShadingMode: 0
|
||||
- _ShadingNoise1Seed: 1
|
||||
- _ShadingNoise1Size: 1
|
||||
- _ShadingNoise2Seed: 1
|
||||
- _ShadingStyle: 1
|
||||
- _ShadingUseLightColors: 1
|
||||
- _ShadowMode: 0
|
||||
- _ShadowsAffectByNormalMap: 1
|
||||
- _Smoothness: 0.5
|
||||
- _SmoothnessSource: 0
|
||||
- _SmoothnessTextureChannel: 0
|
||||
- _SpacingRandomIntensity: 0
|
||||
- _SpacingRandomMode: 0
|
||||
- _SpecularAffectedByNormalMap: 0
|
||||
- _SpecularAnchorSSToObjectsOrigin: 1
|
||||
- _SpecularBlending: 1
|
||||
- _SpecularCoordinateSystem: 0
|
||||
- _SpecularDrawSpace: 1
|
||||
- _SpecularHardnessRandomIntensity: 0.048
|
||||
- _SpecularHardnessRandomMode: 1
|
||||
- _SpecularHighlights: 1
|
||||
- _SpecularLengthRandomIntensity: 0.091
|
||||
- _SpecularLengthRandomMode: 0
|
||||
- _SpecularNoise1Seed: 1
|
||||
- _SpecularNoise1Size: 1
|
||||
- _SpecularNoise2Seed: 1
|
||||
- _SpecularNoiseIntensity: 0
|
||||
- _SpecularOpacity: 1
|
||||
- _SpecularOpacityRandomIntensity: 0
|
||||
- _SpecularOpacityRandomMode: 0
|
||||
- _SpecularPerlinNoiseSeed: 1
|
||||
- _SpecularPerlinNoiseSize: 5.99
|
||||
- _SpecularPolarCenterMode: 0
|
||||
- _SpecularSSCameraDistanceScaled: 0
|
||||
- _SpecularSize: 0.651
|
||||
- _SpecularSmoothness: 0.393
|
||||
- _SpecularSpacingRandomIntensity: 0.069
|
||||
- _SpecularSpacingRandomMode: 0
|
||||
- _SpecularStyle: 1
|
||||
- _SpecularThicknessRandomMode: 1
|
||||
- _SpecularThicknesshRandomIntensity: 0.06
|
||||
- _SpecularUVSet: 0
|
||||
- _SpecularUseLightColors: 1
|
||||
- _SpecularWhiteNoiseSeed: 1
|
||||
- _SrcBlend: 1
|
||||
- _StylingAdjustDistanceFadeValue: 0
|
||||
- _StylingCastShadowsBlending: 0
|
||||
- _StylingCastShadowsDensity: 77.5
|
||||
- _StylingCastShadowsHalftonesOffset: 0
|
||||
- _StylingCastShadowsHalftonesRoundness: 1
|
||||
- _StylingCastShadowsHalftonesRoundnessFalloff: 1
|
||||
- _StylingCastShadowsHardness: 0.895
|
||||
- _StylingCastShadowsInitialDirection: 45
|
||||
- _StylingCastShadowsIsInverted: 0
|
||||
- _StylingCastShadowsOpacity: 1
|
||||
- _StylingCastShadowsOpacityFalloff: 0
|
||||
- _StylingCastShadowsRotationBetweenCells: 30
|
||||
- _StylingCastShadowsSmoothness: 1
|
||||
- _StylingCastShadowsSyncWithOtherStyling: 1
|
||||
- _StylingCastShadowsThickness: 1
|
||||
- _StylingCastShadowsThicknessControl: 0
|
||||
- _StylingCastShadowsThicknessFalloff: 1
|
||||
- _StylingDFFalloff: 0
|
||||
- _StylingDFStartingDistance: 0
|
||||
- _StylingDistanceFadeValue: 0
|
||||
- _StylingOvermodelingFactor: 0
|
||||
- _StylingRimAffectedArea: 1
|
||||
- _StylingRimBlending: 0
|
||||
- _StylingRimDensity: 45.99
|
||||
- _StylingRimHalftonesOffset: 1
|
||||
- _StylingRimHalftonesRoundness: 1
|
||||
- _StylingRimHalftonesRoundnessFalloff: 1
|
||||
- _StylingRimHardness: 0.9
|
||||
- _StylingRimIsInverted: 0
|
||||
- _StylingRimOpacity: 1
|
||||
- _StylingRimOpacityFalloff: 0
|
||||
- _StylingRimPosition: 0
|
||||
- _StylingRimRotation: 0
|
||||
- _StylingRimSize: 0
|
||||
- _StylingRimSmoothness: 0
|
||||
- _StylingRimSyncWithOtherStyling: 0
|
||||
- _StylingRimThickness: 0.8
|
||||
- _StylingRimThicknessControl: 0
|
||||
- _StylingRimThicknessFalloff: 0.1
|
||||
- _StylingShadingBlending: 0
|
||||
- _StylingShadingDensity: 77.5
|
||||
- _StylingShadingHalftonesOffset: 0
|
||||
- _StylingShadingHalftonesRoundness: 1
|
||||
- _StylingShadingHalftonesRoundnessFalloff: 1
|
||||
- _StylingShadingHardness: 0.895
|
||||
- _StylingShadingInitialDirection: 45
|
||||
- _StylingShadingIsInverted: 0
|
||||
- _StylingShadingOpacity: 1
|
||||
- _StylingShadingOpacityFalloff: 0
|
||||
- _StylingShadingPosition: 0
|
||||
- _StylingShadingRotationBetweenCells: 30
|
||||
- _StylingShadingSyncWithOtherStyling: 0
|
||||
- _StylingShadingThickness: 1
|
||||
- _StylingShadingThicknessControl: 0
|
||||
- _StylingShadingThicknessFalloff: 1
|
||||
- _StylingSpecularBlending: 0
|
||||
- _StylingSpecularCutOutShading: 0
|
||||
- _StylingSpecularDensity: 86.6
|
||||
- _StylingSpecularHalftonesOffset: 1
|
||||
- _StylingSpecularHalftonesRoundness: 1
|
||||
- _StylingSpecularHalftonesRoundnessFalloff: 1
|
||||
- _StylingSpecularHardness: 0.895
|
||||
- _StylingSpecularIsInverted: 0
|
||||
- _StylingSpecularOpacity: 1
|
||||
- _StylingSpecularOpacityFalloff: 0
|
||||
- _StylingSpecularPosition: 0
|
||||
- _StylingSpecularRotation: 45
|
||||
- _StylingSpecularSize: 0.663
|
||||
- _StylingSpecularSmoothness: 0.393
|
||||
- _StylingSpecularSyncWithOtherStyling: 0
|
||||
- _StylingSpecularThickness: 1
|
||||
- _StylingSpecularThicknessControl: 0
|
||||
- _StylingSpecularThicknessFalloff: 0.369
|
||||
- _StylingSpecularUseLightColors: 0
|
||||
- _StylingTerminatorPosition: 0
|
||||
- _SumLightsBeforePosterization: 1
|
||||
- _Surface: 0
|
||||
- _SyncWithLightPartitioning: 0
|
||||
- _SyncWithRim: 1
|
||||
- _SyncWithSpecular: 0
|
||||
- _TerminatorPosition: 0
|
||||
- _TerminatorSmoothness: 0
|
||||
- _TerminatorWidth: 0
|
||||
- _TheToonShaderIdentifier: 1
|
||||
- _ThicknessRandomMode: 1
|
||||
- _ThicknesshRandomIntensity: 0.06
|
||||
- _UVSec: 0
|
||||
- _UVSet: 0
|
||||
- _UseAlphaOnlyFromBaseMap: 0
|
||||
- _UseCurve: 1
|
||||
- _UsePBRLighting: 0
|
||||
- _WorkflowMode: 1
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _BaseColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _CastShadowColor: {r: 0.49350643, g: 0, b: 0.7169812, a: 1}
|
||||
- _CastShadowsPolarCenter: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _Color: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _CoreShadowColor: {r: 0.26415092, g: 0.26415092, b: 0.26415092, a: 1}
|
||||
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _FormShadowColor: {r: 0.11814703, g: 0.18808192, b: 0.4245283, a: 1}
|
||||
- _OutlineColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _PolarCenter: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _RimColor: {r: 0.9960785, g: 0.9960785, b: 0.9960785, a: 1}
|
||||
- _RimPolarCenter: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _SpecColor: {r: 0.5, g: 0.5, b: 0.5, a: 0.5}
|
||||
- _SpecularColor: {r: 1, g: 1, b: 0, a: 1}
|
||||
- _SpecularPolarCenter: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _StylingCastShadowsColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _StylingColor: {r: 0.4245283, g: 0, b: 0, a: 1}
|
||||
- _StylingRimColor: {r: 0.3490566, g: 0, b: 0, a: 1}
|
||||
- _StylingSpecularColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
m_BuildTextureStacks: []
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 17a008a99faf4a74598db06894aa1dac
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 269238
|
||||
packageName: The Toon Shader
|
||||
packageVersion: 1.4.2
|
||||
assetPath: Packages/com.shadercrew.the-toon-shader.3d/Scripts/Resources/TTSReferenceMaterials/Halftone_04_MellowBrown_TTS_RefMat.mat
|
||||
uploadId: 919972
|
||||
+409
@@ -0,0 +1,409 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!114 &-7617746012844444677
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 4
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: HatchingXHalftone_00_CaliforniaSunrise_TTS_RefMat
|
||||
m_Shader: {fileID: 4800000, guid: cdb1479f619aff740b0cea7a60a84201, type: 3}
|
||||
m_ValidKeywords:
|
||||
- _SHADING_COLOR
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 0
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses: []
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _BaseMap:
|
||||
m_Texture: {fileID: 2800000, guid: b1099990bb7f28548ad208f04cf39c5f, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BumpMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailAlbedoMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailMask:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailNormalMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _EmissionMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _GradientTex:
|
||||
m_Texture: {fileID: 2800000, guid: dedd17e1ab575e144bedb1baa5b58665, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _HatchingMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MainTex:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MetallicGlossMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NoiseMap1:
|
||||
m_Texture: {fileID: 2800000, guid: 0528154608ff38a4c845b6622c088ea0, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NoiseMap2:
|
||||
m_Texture: {fileID: 2800000, guid: f40d12a41bafa6749a1465879341fff5, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _OcclusionMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ParallaxMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ShadingGradientCurve:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SpecGlossMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _AdjustStylingDistanceFadeValue: 0
|
||||
- _AlphaClip: 1
|
||||
- _AmbientColorContribution: 0
|
||||
- _AnchorSSToObjectsOrigin: 1
|
||||
- _Blend: 0
|
||||
- _BumpScale: 1
|
||||
- _CastShadowColorMode: 0
|
||||
- _CastShadowsAnchorSSToObjectsOrigin: 1
|
||||
- _CastShadowsCoordinateSystem: 0
|
||||
- _CastShadowsDrawSpace: 1
|
||||
- _CastShadowsHardnessRandomIntensity: 0.048
|
||||
- _CastShadowsHardnessRandomMode: 1
|
||||
- _CastShadowsLengthRandomIntensity: 0.091
|
||||
- _CastShadowsLengthRandomMode: 0
|
||||
- _CastShadowsNoise1Seed: 1
|
||||
- _CastShadowsNoise1Size: 1
|
||||
- _CastShadowsNoise2Seed: 1
|
||||
- _CastShadowsNoiseIntensity: 0
|
||||
- _CastShadowsNumberOfCellsHatching: 1
|
||||
- _CastShadowsOpacityRandomIntensity: 0
|
||||
- _CastShadowsOpacityRandomMode: 0
|
||||
- _CastShadowsPolarCenterMode: 0
|
||||
- _CastShadowsSSCameraDistanceScaled: 0
|
||||
- _CastShadowsSmoothness: 0.9
|
||||
- _CastShadowsSpacingRandomIntensity: 0.069
|
||||
- _CastShadowsSpacingRandomMode: 0
|
||||
- _CastShadowsStrength: 0
|
||||
- _CastShadowsStyle: 0
|
||||
- _CastShadowsThicknessRandomMode: 1
|
||||
- _CastShadowsThicknesshRandomIntensity: 0.06
|
||||
- _CastShadowsUVSet: 0
|
||||
- _CategoryOutline: 0
|
||||
- _CategoryStyling: 0
|
||||
- _CategorySurfaceOptionsAndInputs: 0
|
||||
- _CategoryToonShading: 0
|
||||
- _CellTransitionSmoothness: 0.2
|
||||
- _ClearCoatMask: 0
|
||||
- _ClearCoatSmoothness: 0
|
||||
- _CoordinateSystem: 0
|
||||
- _Cull: 2
|
||||
- _CustomizeCastShadowsColor: 0
|
||||
- _Cutoff: 0.5
|
||||
- _DetailAlbedoMapScale: 1
|
||||
- _DetailNormalMapScale: 1
|
||||
- _DrawSpace: 1
|
||||
- _DstBlend: 0
|
||||
- _EnableAntiAliasing: 0
|
||||
- _EnableCastShadows: 1
|
||||
- _EnableCastShadowsRandomizer: 1
|
||||
- _EnableCastShadowsStyling: 1
|
||||
- _EnableOutline: 0
|
||||
- _EnableRim: 1
|
||||
- _EnableRimRandomizer: 0
|
||||
- _EnableRimStyling: 0
|
||||
- _EnableShadingRandomizer: 1
|
||||
- _EnableShadingStyling: 1
|
||||
- _EnableShadows: 1
|
||||
- _EnableSpecular: 1
|
||||
- _EnableSpecularRandomizer: 1
|
||||
- _EnableSpecularStyling: 1
|
||||
- _EnableStyling: 1
|
||||
- _EnableStylingDistanceFade: 0
|
||||
- _EnableToonShading: 1
|
||||
- _EnvironmentReflections: 1
|
||||
- _GlossMapScale: 0
|
||||
- _Glossiness: 0
|
||||
- _GlossyReflections: 0
|
||||
- _GradientBlendFactor: 1
|
||||
- _GradientBlending: 0
|
||||
- _GradientMode: 0
|
||||
- _HalftonePattern: 1
|
||||
- _HalftonePatternCameraDistanceFade: 0
|
||||
- _HardnessRandomIntensity: 0.048
|
||||
- _HardnessRandomMode: 1
|
||||
- _HatchingAffectedByNormalMap: 0
|
||||
- _HatchingCameraDistanceFade: 0
|
||||
- _IsOptimized: 0
|
||||
- _LengthRandomIntensity: 0.091
|
||||
- _LengthRandomMode: 0
|
||||
- _LightColorContribution: 0
|
||||
- _LightFunction: 1
|
||||
- _LightFunctionLerpValue: 0.5
|
||||
- _LightSource: 0
|
||||
- _Metallic: 0
|
||||
- _Mode: 0
|
||||
- _NoiseIntensity: 0
|
||||
- _NoiseTextureQuality: 0
|
||||
- _NumberOfCells: 2
|
||||
- _NumberOfCellsHatching: 2
|
||||
- _OcclusionStrength: 1
|
||||
- _OpacityRandomIntensity: 0
|
||||
- _OpacityRandomMode: 0
|
||||
- _OutlineCameraDistanceImpact: 0
|
||||
- _OutlineConstantScreenWidth: 0
|
||||
- _OutlineDepthOffset: 0
|
||||
- _OutlineWidth: 6
|
||||
- _Parallax: 0.005
|
||||
- _PerlinNoiseSize: 1
|
||||
- _PolarCenterMode: 0
|
||||
- _QueueControl: -1
|
||||
- _QueueOffset: 0
|
||||
- _ReceiveShadows: 1
|
||||
- _RimAffectedArea: 0
|
||||
- _RimAffectedByNormalMap: 1
|
||||
- _RimAnchorSSToObjectsOrigin: 1
|
||||
- _RimBlending: 0
|
||||
- _RimCoordinateSystem: 0
|
||||
- _RimDrawSpace: 1
|
||||
- _RimHardnessRandomIntensity: 0
|
||||
- _RimHardnessRandomMode: 0
|
||||
- _RimLengthRandomIntensity: 0
|
||||
- _RimLengthRandomMode: 0
|
||||
- _RimNoise1Seed: 1
|
||||
- _RimNoise1Size: 1
|
||||
- _RimNoise2Seed: 1
|
||||
- _RimNoiseIntensity: 0
|
||||
- _RimOpacity: 1
|
||||
- _RimOpacityRandomIntensity: 0
|
||||
- _RimOpacityRandomMode: 0
|
||||
- _RimPerlinNoiseSeed: 1
|
||||
- _RimPerlinNoiseSize: 1
|
||||
- _RimPolarCenterMode: 0
|
||||
- _RimSSCameraDistanceScaled: 0
|
||||
- _RimSize: 0
|
||||
- _RimSmoothness: 0.201
|
||||
- _RimSpacingRandomIntensity: 0
|
||||
- _RimSpacingRandomMode: 0
|
||||
- _RimStyle: 1
|
||||
- _RimThicknessRandomMode: 0
|
||||
- _RimThicknesshRandomIntensity: 0
|
||||
- _RimUVSet: 0
|
||||
- _RimWhiteNoiseSeed: 1
|
||||
- _SSCameraDistanceScaled: 0
|
||||
- _ShadingAffectByNormalMap: 1
|
||||
- _ShadingAffectedByNormalMap: 1
|
||||
- _ShadingBlending: 0
|
||||
- _ShadingFunction: 1
|
||||
- _ShadingMode: 0
|
||||
- _ShadingNoise1Seed: 1
|
||||
- _ShadingNoise1Size: 1
|
||||
- _ShadingNoise2Seed: 1
|
||||
- _ShadingStyle: 1
|
||||
- _ShadingUseLightColors: 0
|
||||
- _ShadowMode: 0
|
||||
- _ShadowsAffectByNormalMap: 1
|
||||
- _Smoothness: 0.5
|
||||
- _SmoothnessSource: 0
|
||||
- _SmoothnessTextureChannel: 0
|
||||
- _SpacingRandomIntensity: 0.069
|
||||
- _SpacingRandomMode: 0
|
||||
- _SpecularAffectedByNormalMap: 0
|
||||
- _SpecularAnchorSSToObjectsOrigin: 1
|
||||
- _SpecularBlending: 1
|
||||
- _SpecularCoordinateSystem: 0
|
||||
- _SpecularDrawSpace: 1
|
||||
- _SpecularHardnessRandomIntensity: 0.171
|
||||
- _SpecularHardnessRandomMode: 1
|
||||
- _SpecularHighlights: 1
|
||||
- _SpecularLengthRandomIntensity: 0.116
|
||||
- _SpecularLengthRandomMode: 0
|
||||
- _SpecularNoise1Seed: 1
|
||||
- _SpecularNoise1Size: 1
|
||||
- _SpecularNoise2Seed: 1
|
||||
- _SpecularNoiseIntensity: 0
|
||||
- _SpecularOpacity: 1
|
||||
- _SpecularOpacityRandomIntensity: 0
|
||||
- _SpecularOpacityRandomMode: 0
|
||||
- _SpecularPerlinNoiseSeed: 1
|
||||
- _SpecularPerlinNoiseSize: 5.99
|
||||
- _SpecularPolarCenterMode: 0
|
||||
- _SpecularSSCameraDistanceScaled: 0
|
||||
- _SpecularSize: 0.651
|
||||
- _SpecularSmoothness: 0.393
|
||||
- _SpecularSpacingRandomIntensity: 0
|
||||
- _SpecularSpacingRandomMode: 0
|
||||
- _SpecularStyle: 1
|
||||
- _SpecularThicknessRandomMode: 0
|
||||
- _SpecularThicknesshRandomIntensity: 0
|
||||
- _SpecularUVSet: 0
|
||||
- _SpecularUseLightColors: 1
|
||||
- _SpecularWhiteNoiseSeed: 1
|
||||
- _SrcBlend: 1
|
||||
- _StylingAdjustDistanceFadeValue: 0
|
||||
- _StylingCastShadowsBlending: 0
|
||||
- _StylingCastShadowsDensity: 78.28
|
||||
- _StylingCastShadowsHalftonesOffset: 1
|
||||
- _StylingCastShadowsHalftonesRoundness: 1
|
||||
- _StylingCastShadowsHalftonesRoundnessFalloff: 1
|
||||
- _StylingCastShadowsHardness: 0.705
|
||||
- _StylingCastShadowsInitialDirection: 45
|
||||
- _StylingCastShadowsIsInverted: 0
|
||||
- _StylingCastShadowsOpacity: 1
|
||||
- _StylingCastShadowsOpacityFalloff: 0
|
||||
- _StylingCastShadowsRotationBetweenCells: 30
|
||||
- _StylingCastShadowsSmoothness: 1
|
||||
- _StylingCastShadowsSyncWithOtherStyling: 0
|
||||
- _StylingCastShadowsThickness: 0.9
|
||||
- _StylingCastShadowsThicknessControl: 0
|
||||
- _StylingCastShadowsThicknessFalloff: 1
|
||||
- _StylingDFFalloff: 0
|
||||
- _StylingDFStartingDistance: 0
|
||||
- _StylingDistanceFadeValue: 0
|
||||
- _StylingOvermodelingFactor: 0
|
||||
- _StylingRimAffectedArea: 1
|
||||
- _StylingRimBlending: 0
|
||||
- _StylingRimDensity: 45.99
|
||||
- _StylingRimHalftonesOffset: 1
|
||||
- _StylingRimHalftonesRoundness: 1
|
||||
- _StylingRimHalftonesRoundnessFalloff: 1
|
||||
- _StylingRimHardness: 0.9
|
||||
- _StylingRimIsInverted: 0
|
||||
- _StylingRimOpacity: 1
|
||||
- _StylingRimOpacityFalloff: 0
|
||||
- _StylingRimPosition: 0
|
||||
- _StylingRimRotation: 0
|
||||
- _StylingRimSize: 0
|
||||
- _StylingRimSmoothness: 0
|
||||
- _StylingRimSyncWithOtherStyling: 0
|
||||
- _StylingRimThickness: 0.8
|
||||
- _StylingRimThicknessControl: 0
|
||||
- _StylingRimThicknessFalloff: 0.1
|
||||
- _StylingShadingBlending: 0
|
||||
- _StylingShadingDensity: 86.2
|
||||
- _StylingShadingHalftonesOffset: 1
|
||||
- _StylingShadingHalftonesRoundness: 1
|
||||
- _StylingShadingHalftonesRoundnessFalloff: 1
|
||||
- _StylingShadingHardness: 0.705
|
||||
- _StylingShadingInitialDirection: 45
|
||||
- _StylingShadingIsInverted: 0
|
||||
- _StylingShadingOpacity: 1
|
||||
- _StylingShadingOpacityFalloff: 0
|
||||
- _StylingShadingPosition: 0
|
||||
- _StylingShadingRotationBetweenCells: 30
|
||||
- _StylingShadingSyncWithOtherStyling: 0
|
||||
- _StylingShadingThickness: 0.9
|
||||
- _StylingShadingThicknessControl: 0
|
||||
- _StylingShadingThicknessFalloff: 1
|
||||
- _StylingSpecularBlending: 0
|
||||
- _StylingSpecularCutOutShading: 0
|
||||
- _StylingSpecularDensity: 77.8
|
||||
- _StylingSpecularHalftonesOffset: 1
|
||||
- _StylingSpecularHalftonesRoundness: 1
|
||||
- _StylingSpecularHalftonesRoundnessFalloff: 1
|
||||
- _StylingSpecularHardness: 0.573
|
||||
- _StylingSpecularIsInverted: 0
|
||||
- _StylingSpecularOpacity: 1
|
||||
- _StylingSpecularOpacityFalloff: 0
|
||||
- _StylingSpecularPosition: 0
|
||||
- _StylingSpecularRotation: 0
|
||||
- _StylingSpecularSize: 0.874
|
||||
- _StylingSpecularSmoothness: 0.406
|
||||
- _StylingSpecularSyncWithOtherStyling: 0
|
||||
- _StylingSpecularThickness: 0.8
|
||||
- _StylingSpecularThicknessControl: 0
|
||||
- _StylingSpecularThicknessFalloff: 0.1
|
||||
- _StylingSpecularUseLightColors: 0
|
||||
- _StylingTerminatorPosition: 0
|
||||
- _SumLightsBeforePosterization: 1
|
||||
- _Surface: 0
|
||||
- _SyncWithLightPartitioning: 0
|
||||
- _SyncWithRim: 1
|
||||
- _SyncWithSpecular: 0
|
||||
- _TerminatorPosition: 0
|
||||
- _TerminatorSmoothness: 0
|
||||
- _TerminatorWidth: 0
|
||||
- _TheToonShaderIdentifier: 1
|
||||
- _ThicknessRandomMode: 1
|
||||
- _ThicknesshRandomIntensity: 0.06
|
||||
- _UVSec: 0
|
||||
- _UVSet: 0
|
||||
- _UseAlphaOnlyFromBaseMap: 0
|
||||
- _UseCurve: 1
|
||||
- _UsePBRLighting: 0
|
||||
- _WorkflowMode: 1
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _BaseColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _CastShadowColor: {r: 0.49350643, g: 0, b: 0.7169812, a: 1}
|
||||
- _CastShadowsPolarCenter: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _Color: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _CoreShadowColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _FormShadowColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _OutlineColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _PolarCenter: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _RimColor: {r: 0.9960785, g: 0.9960785, b: 0.9960785, a: 1}
|
||||
- _RimPolarCenter: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _SpecColor: {r: 0.5, g: 0.5, b: 0.5, a: 0.5}
|
||||
- _SpecularColor: {r: 1, g: 1, b: 0, a: 1}
|
||||
- _SpecularPolarCenter: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _StylingCastShadowsColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _StylingColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _StylingRimColor: {r: 0.3490566, g: 0, b: 0, a: 1}
|
||||
- _StylingSpecularColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
m_BuildTextureStacks: []
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 41c992f9137c4b14aa8eecaabe4f529c
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 269238
|
||||
packageName: The Toon Shader
|
||||
packageVersion: 1.4.2
|
||||
assetPath: Packages/com.shadercrew.the-toon-shader.3d/Scripts/Resources/TTSReferenceMaterials/HatchingXHalftone_00_CaliforniaSunrise_TTS_RefMat.mat
|
||||
uploadId: 919972
|
||||
+410
@@ -0,0 +1,410 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!114 &-7617746012844444677
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 4
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: NoStyling_00_ColorBasedCell1_TTS_RefMat
|
||||
m_Shader: {fileID: 4800000, guid: 1c6b3902befc80643a83432be8825adc, type: 3}
|
||||
m_ValidKeywords:
|
||||
- _SHADING_COLOR
|
||||
m_InvalidKeywords:
|
||||
- _OUTLINECONSTANTSCREENWIDTH_ON
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 0
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses: []
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _BaseMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BumpMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailAlbedoMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailMask:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailNormalMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _EmissionMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _GradientTex:
|
||||
m_Texture: {fileID: 2800000, guid: 6b923a350a3eec547a2e5e79ada1927b, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _HatchingMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MainTex:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MetallicGlossMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NoiseMap1:
|
||||
m_Texture: {fileID: 2800000, guid: 0528154608ff38a4c845b6622c088ea0, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NoiseMap2:
|
||||
m_Texture: {fileID: 2800000, guid: f40d12a41bafa6749a1465879341fff5, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _OcclusionMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ParallaxMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ShadingGradientCurve:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SpecGlossMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _AdjustStylingDistanceFadeValue: 0
|
||||
- _AlphaClip: 0
|
||||
- _AmbientColorContribution: 0
|
||||
- _AnchorSSToObjectsOrigin: 1
|
||||
- _Blend: 0
|
||||
- _BumpScale: 1
|
||||
- _CastShadowColorMode: 0
|
||||
- _CastShadowsAnchorSSToObjectsOrigin: 1
|
||||
- _CastShadowsCoordinateSystem: 0
|
||||
- _CastShadowsDrawSpace: 1
|
||||
- _CastShadowsHardnessRandomIntensity: 0.159
|
||||
- _CastShadowsHardnessRandomMode: 1
|
||||
- _CastShadowsLengthRandomIntensity: 0.13
|
||||
- _CastShadowsLengthRandomMode: 2
|
||||
- _CastShadowsNoise1Seed: 1
|
||||
- _CastShadowsNoise1Size: 1.79
|
||||
- _CastShadowsNoise2Seed: 1
|
||||
- _CastShadowsNoiseIntensity: 0
|
||||
- _CastShadowsNumberOfCellsHatching: 3
|
||||
- _CastShadowsOpacityRandomIntensity: 0
|
||||
- _CastShadowsOpacityRandomMode: 0
|
||||
- _CastShadowsPolarCenterMode: 0
|
||||
- _CastShadowsSSCameraDistanceScaled: 1
|
||||
- _CastShadowsSmoothness: 0.9
|
||||
- _CastShadowsSpacingRandomIntensity: 1
|
||||
- _CastShadowsSpacingRandomMode: 2
|
||||
- _CastShadowsStrength: 0
|
||||
- _CastShadowsStyle: 1
|
||||
- _CastShadowsThicknessRandomMode: 1
|
||||
- _CastShadowsThicknesshRandomIntensity: 0.145
|
||||
- _CastShadowsUVSet: 0
|
||||
- _CategoryOutline: 0
|
||||
- _CategoryStyling: 0
|
||||
- _CategorySurfaceOptionsAndInputs: 0
|
||||
- _CategoryToonShading: 0
|
||||
- _CellTransitionSmoothness: 0.075
|
||||
- _ClearCoatMask: 0
|
||||
- _ClearCoatSmoothness: 0
|
||||
- _CoordinateSystem: 0
|
||||
- _Cull: 2
|
||||
- _CustomizeCastShadowsColor: 0
|
||||
- _Cutoff: 0.5
|
||||
- _DetailAlbedoMapScale: 1
|
||||
- _DetailNormalMapScale: 1
|
||||
- _DrawSpace: 1
|
||||
- _DstBlend: 0
|
||||
- _EnableAntiAliasing: 0
|
||||
- _EnableCastShadows: 1
|
||||
- _EnableCastShadowsRandomizer: 1
|
||||
- _EnableCastShadowsStyling: 1
|
||||
- _EnableOutline: 1
|
||||
- _EnableRim: 1
|
||||
- _EnableRimRandomizer: 1
|
||||
- _EnableRimStyling: 1
|
||||
- _EnableShadingRandomizer: 1
|
||||
- _EnableShadingStyling: 1
|
||||
- _EnableShadows: 1
|
||||
- _EnableSpecular: 1
|
||||
- _EnableSpecularRandomizer: 1
|
||||
- _EnableSpecularStyling: 1
|
||||
- _EnableStyling: 0
|
||||
- _EnableStylingDistanceFade: 0
|
||||
- _EnableToonShading: 1
|
||||
- _EnvironmentReflections: 1
|
||||
- _GlossMapScale: 0
|
||||
- _Glossiness: 0
|
||||
- _GlossyReflections: 0
|
||||
- _GradientBlendFactor: 1
|
||||
- _GradientBlending: 0
|
||||
- _GradientMode: 0
|
||||
- _HalftonePattern: 1
|
||||
- _HalftonePatternCameraDistanceFade: 0
|
||||
- _HardnessRandomIntensity: 0.159
|
||||
- _HardnessRandomMode: 1
|
||||
- _HatchingAffectedByNormalMap: 1
|
||||
- _HatchingCameraDistanceFade: 0
|
||||
- _IsOptimized: 0
|
||||
- _LengthRandomIntensity: 0.13
|
||||
- _LengthRandomMode: 2
|
||||
- _LightColorContribution: 0
|
||||
- _LightFunction: 0
|
||||
- _LightFunctionLerpValue: 0.5
|
||||
- _LightSource: 0
|
||||
- _Metallic: 0.722
|
||||
- _Mode: 0
|
||||
- _NoiseIntensity: 0
|
||||
- _NoiseTextureQuality: 0
|
||||
- _NumberOfCells: 2
|
||||
- _NumberOfCellsHatching: 3
|
||||
- _OcclusionStrength: 1
|
||||
- _OpacityRandomIntensity: 0
|
||||
- _OpacityRandomMode: 0
|
||||
- _OutlineCameraDistanceImpact: 0
|
||||
- _OutlineConstantScreenWidth: 1
|
||||
- _OutlineDepthOffset: 0
|
||||
- _OutlineWidth: 1.5
|
||||
- _Parallax: 0.005
|
||||
- _PerlinNoiseSize: 0.245
|
||||
- _PolarCenterMode: 0
|
||||
- _QueueControl: -1
|
||||
- _QueueOffset: 0
|
||||
- _ReceiveShadows: 1
|
||||
- _RimAffectedArea: 1
|
||||
- _RimAffectedByNormalMap: 1
|
||||
- _RimAnchorSSToObjectsOrigin: 1
|
||||
- _RimBlending: 0
|
||||
- _RimCoordinateSystem: 0
|
||||
- _RimDrawSpace: 1
|
||||
- _RimHardnessRandomIntensity: 0.159
|
||||
- _RimHardnessRandomMode: 1
|
||||
- _RimLengthRandomIntensity: 0.13
|
||||
- _RimLengthRandomMode: 2
|
||||
- _RimNoise1Seed: 1
|
||||
- _RimNoise1Size: 1.79
|
||||
- _RimNoise2Seed: 1
|
||||
- _RimNoiseIntensity: 0
|
||||
- _RimOpacity: 1
|
||||
- _RimOpacityRandomIntensity: 0
|
||||
- _RimOpacityRandomMode: 0
|
||||
- _RimPerlinNoiseSeed: 1
|
||||
- _RimPerlinNoiseSize: 1
|
||||
- _RimPolarCenterMode: 0
|
||||
- _RimSSCameraDistanceScaled: 1
|
||||
- _RimSize: 0.37
|
||||
- _RimSmoothness: 0.101
|
||||
- _RimSpacingRandomIntensity: 1
|
||||
- _RimSpacingRandomMode: 2
|
||||
- _RimStyle: 1
|
||||
- _RimThicknessRandomMode: 1
|
||||
- _RimThicknesshRandomIntensity: 0.145
|
||||
- _RimUVSet: 0
|
||||
- _RimWhiteNoiseSeed: 1
|
||||
- _SSCameraDistanceScaled: 1
|
||||
- _ShadingAffectByNormalMap: 1
|
||||
- _ShadingAffectedByNormalMap: 1
|
||||
- _ShadingBlending: 0
|
||||
- _ShadingFunction: 0
|
||||
- _ShadingMode: 0
|
||||
- _ShadingNoise1Seed: 1
|
||||
- _ShadingNoise1Size: 1.79
|
||||
- _ShadingNoise2Seed: 1
|
||||
- _ShadingStyle: 1
|
||||
- _ShadingUseLightColors: 1
|
||||
- _ShadowMode: 0
|
||||
- _ShadowsAffectByNormalMap: 0
|
||||
- _Smoothness: 0.336
|
||||
- _SmoothnessSource: 0
|
||||
- _SmoothnessTextureChannel: 0
|
||||
- _SpacingRandomIntensity: 1
|
||||
- _SpacingRandomMode: 2
|
||||
- _SpecularAffectedByNormalMap: 1
|
||||
- _SpecularAnchorSSToObjectsOrigin: 1
|
||||
- _SpecularBlending: 0
|
||||
- _SpecularCoordinateSystem: 0
|
||||
- _SpecularDrawSpace: 1
|
||||
- _SpecularHardnessRandomIntensity: 0.159
|
||||
- _SpecularHardnessRandomMode: 1
|
||||
- _SpecularHighlights: 1
|
||||
- _SpecularLengthRandomIntensity: 0.13
|
||||
- _SpecularLengthRandomMode: 2
|
||||
- _SpecularNoise1Seed: 1
|
||||
- _SpecularNoise1Size: 1.79
|
||||
- _SpecularNoise2Seed: 1
|
||||
- _SpecularNoiseIntensity: 0
|
||||
- _SpecularOpacity: 1
|
||||
- _SpecularOpacityRandomIntensity: 0
|
||||
- _SpecularOpacityRandomMode: 0
|
||||
- _SpecularPerlinNoiseSeed: 1
|
||||
- _SpecularPerlinNoiseSize: 1
|
||||
- _SpecularPolarCenterMode: 0
|
||||
- _SpecularSSCameraDistanceScaled: 1
|
||||
- _SpecularSize: 0.141
|
||||
- _SpecularSmoothness: 0.005
|
||||
- _SpecularSpacingRandomIntensity: 1
|
||||
- _SpecularSpacingRandomMode: 2
|
||||
- _SpecularStyle: 1
|
||||
- _SpecularThicknessRandomMode: 1
|
||||
- _SpecularThicknesshRandomIntensity: 0.145
|
||||
- _SpecularUVSet: 0
|
||||
- _SpecularUseLightColors: 1
|
||||
- _SpecularWhiteNoiseSeed: 1
|
||||
- _SrcBlend: 1
|
||||
- _StylingAdjustDistanceFadeValue: 1
|
||||
- _StylingCastShadowsBlending: 0
|
||||
- _StylingCastShadowsDensity: 13.1
|
||||
- _StylingCastShadowsHalftonesOffset: 0.513
|
||||
- _StylingCastShadowsHalftonesRoundness: 1
|
||||
- _StylingCastShadowsHalftonesRoundnessFalloff: 0
|
||||
- _StylingCastShadowsHardness: 0.822
|
||||
- _StylingCastShadowsInitialDirection: 61
|
||||
- _StylingCastShadowsIsInverted: 0
|
||||
- _StylingCastShadowsOpacity: 1
|
||||
- _StylingCastShadowsOpacityFalloff: 0.355
|
||||
- _StylingCastShadowsRotationBetweenCells: -63
|
||||
- _StylingCastShadowsSmoothness: 1
|
||||
- _StylingCastShadowsSyncWithOtherStyling: 1
|
||||
- _StylingCastShadowsThickness: 1
|
||||
- _StylingCastShadowsThicknessControl: 0
|
||||
- _StylingCastShadowsThicknessFalloff: 0.62
|
||||
- _StylingDFFalloff: 7.8
|
||||
- _StylingDFStartingDistance: 4.38
|
||||
- _StylingDistanceFadeValue: 0.169
|
||||
- _StylingOvermodelingFactor: 1
|
||||
- _StylingRimAffectedArea: 1
|
||||
- _StylingRimBlending: 0
|
||||
- _StylingRimDensity: 13.1
|
||||
- _StylingRimHalftonesOffset: 0.513
|
||||
- _StylingRimHalftonesRoundness: 1
|
||||
- _StylingRimHalftonesRoundnessFalloff: 0
|
||||
- _StylingRimHardness: 0.822
|
||||
- _StylingRimIsInverted: 0
|
||||
- _StylingRimOpacity: 1
|
||||
- _StylingRimOpacityFalloff: 0.355
|
||||
- _StylingRimPosition: 0
|
||||
- _StylingRimRotation: 61
|
||||
- _StylingRimSize: 0.349
|
||||
- _StylingRimSmoothness: 0.583
|
||||
- _StylingRimSyncWithOtherStyling: 1
|
||||
- _StylingRimThickness: 1
|
||||
- _StylingRimThicknessControl: 0
|
||||
- _StylingRimThicknessFalloff: 0.62
|
||||
- _StylingShadingBlending: 0
|
||||
- _StylingShadingDensity: 13.1
|
||||
- _StylingShadingHalftonesOffset: 0.513
|
||||
- _StylingShadingHalftonesRoundness: 1
|
||||
- _StylingShadingHalftonesRoundnessFalloff: 0
|
||||
- _StylingShadingHardness: 0.822
|
||||
- _StylingShadingInitialDirection: 61
|
||||
- _StylingShadingIsInverted: 0
|
||||
- _StylingShadingOpacity: 1
|
||||
- _StylingShadingOpacityFalloff: 0.355
|
||||
- _StylingShadingPosition: 0
|
||||
- _StylingShadingRotationBetweenCells: -63
|
||||
- _StylingShadingSyncWithOtherStyling: 0
|
||||
- _StylingShadingThickness: 1
|
||||
- _StylingShadingThicknessControl: 0
|
||||
- _StylingShadingThicknessFalloff: 0.62
|
||||
- _StylingSpecularBlending: 0
|
||||
- _StylingSpecularCutOutShading: 0
|
||||
- _StylingSpecularDensity: 13.1
|
||||
- _StylingSpecularHalftonesOffset: 0.513
|
||||
- _StylingSpecularHalftonesRoundness: 1
|
||||
- _StylingSpecularHalftonesRoundnessFalloff: 0
|
||||
- _StylingSpecularHardness: 0.822
|
||||
- _StylingSpecularIsInverted: 0
|
||||
- _StylingSpecularOpacity: 1
|
||||
- _StylingSpecularOpacityFalloff: 0.355
|
||||
- _StylingSpecularPosition: 0
|
||||
- _StylingSpecularRotation: 61
|
||||
- _StylingSpecularSize: 0.818
|
||||
- _StylingSpecularSmoothness: 0.206
|
||||
- _StylingSpecularSyncWithOtherStyling: 1
|
||||
- _StylingSpecularThickness: 1
|
||||
- _StylingSpecularThicknessControl: 0
|
||||
- _StylingSpecularThicknessFalloff: 0.62
|
||||
- _StylingSpecularUseLightColors: 0
|
||||
- _StylingTerminatorPosition: 0
|
||||
- _SumLightsBeforePosterization: 1
|
||||
- _Surface: 0
|
||||
- _SyncWithLightPartitioning: 0
|
||||
- _SyncWithRim: 0
|
||||
- _SyncWithSpecular: 0
|
||||
- _TerminatorPosition: 0
|
||||
- _TerminatorSmoothness: 0
|
||||
- _TerminatorWidth: 1
|
||||
- _TheToonShaderIdentifier: 1
|
||||
- _ThicknessRandomMode: 1
|
||||
- _ThicknesshRandomIntensity: 0.145
|
||||
- _UVSec: 0
|
||||
- _UVSet: 0
|
||||
- _UseAlphaOnlyFromBaseMap: 0
|
||||
- _UseCurve: 1
|
||||
- _UsePBRLighting: 0
|
||||
- _WorkflowMode: 1
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _BaseColor: {r: 1, g: 0.6538439, b: 0.41037738, a: 1}
|
||||
- _CastShadowColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _CastShadowsPolarCenter: {r: 0.54, g: 0.47, b: 0, a: 0}
|
||||
- _Color: {r: 1, g: 0.654902, b: 0.4117647, a: 1}
|
||||
- _CoreShadowColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _FormShadowColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _OutlineColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _PolarCenter: {r: 0.54, g: 0.47, b: 0, a: 0}
|
||||
- _RimColor: {r: 0, g: 0.7098851, b: 1, a: 1}
|
||||
- _RimPolarCenter: {r: 0.54, g: 0.47, b: 0, a: 0}
|
||||
- _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1}
|
||||
- _SpecularColor: {r: 1, g: 0.8885858, b: 0.6462264, a: 1}
|
||||
- _SpecularPolarCenter: {r: 0.54, g: 0.47, b: 0, a: 0}
|
||||
- _StylingCastShadowsColor: {r: 0, g: 0.05882353, b: 0.49019608, a: 1}
|
||||
- _StylingColor: {r: 1, g: 0.15377249, b: 0, a: 1}
|
||||
- _StylingRimColor: {r: 0, g: 0.22719002, b: 1, a: 1}
|
||||
- _StylingSpecularColor: {r: 1, g: 0.9744728, b: 0.8915094, a: 1}
|
||||
m_BuildTextureStacks: []
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 2594fdf0527f1e9459fe41d8154cbd68
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 269238
|
||||
packageName: The Toon Shader
|
||||
packageVersion: 1.4.2
|
||||
assetPath: Packages/com.shadercrew.the-toon-shader.3d/Scripts/Resources/TTSReferenceMaterials/NoStyling_00_ColorBasedCell1_TTS_RefMat.mat
|
||||
uploadId: 919972
|
||||
+410
@@ -0,0 +1,410 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!114 &-7617746012844444677
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 4
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: NoStyling_01_ColorBasedCell2_TTS_RefMat
|
||||
m_Shader: {fileID: 4800000, guid: 1c6b3902befc80643a83432be8825adc, type: 3}
|
||||
m_ValidKeywords:
|
||||
- _SHADING_COLOR
|
||||
m_InvalidKeywords:
|
||||
- _OUTLINECONSTANTSCREENWIDTH_ON
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 0
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses: []
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _BaseMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BumpMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailAlbedoMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailMask:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailNormalMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _EmissionMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _GradientTex:
|
||||
m_Texture: {fileID: 2800000, guid: 6b923a350a3eec547a2e5e79ada1927b, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _HatchingMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MainTex:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MetallicGlossMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NoiseMap1:
|
||||
m_Texture: {fileID: 2800000, guid: 0528154608ff38a4c845b6622c088ea0, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NoiseMap2:
|
||||
m_Texture: {fileID: 2800000, guid: f40d12a41bafa6749a1465879341fff5, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _OcclusionMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ParallaxMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ShadingGradientCurve:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SpecGlossMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _AdjustStylingDistanceFadeValue: 0
|
||||
- _AlphaClip: 0
|
||||
- _AmbientColorContribution: 0
|
||||
- _AnchorSSToObjectsOrigin: 1
|
||||
- _Blend: 0
|
||||
- _BumpScale: 1
|
||||
- _CastShadowColorMode: 1
|
||||
- _CastShadowsAnchorSSToObjectsOrigin: 1
|
||||
- _CastShadowsCoordinateSystem: 0
|
||||
- _CastShadowsDrawSpace: 1
|
||||
- _CastShadowsHardnessRandomIntensity: 0.159
|
||||
- _CastShadowsHardnessRandomMode: 1
|
||||
- _CastShadowsLengthRandomIntensity: 0.13
|
||||
- _CastShadowsLengthRandomMode: 2
|
||||
- _CastShadowsNoise1Seed: 1
|
||||
- _CastShadowsNoise1Size: 1.79
|
||||
- _CastShadowsNoise2Seed: 1
|
||||
- _CastShadowsNoiseIntensity: 0
|
||||
- _CastShadowsNumberOfCellsHatching: 3
|
||||
- _CastShadowsOpacityRandomIntensity: 0
|
||||
- _CastShadowsOpacityRandomMode: 0
|
||||
- _CastShadowsPolarCenterMode: 0
|
||||
- _CastShadowsSSCameraDistanceScaled: 1
|
||||
- _CastShadowsSmoothness: 0.9
|
||||
- _CastShadowsSpacingRandomIntensity: 1
|
||||
- _CastShadowsSpacingRandomMode: 2
|
||||
- _CastShadowsStrength: 0
|
||||
- _CastShadowsStyle: 1
|
||||
- _CastShadowsThicknessRandomMode: 1
|
||||
- _CastShadowsThicknesshRandomIntensity: 0.145
|
||||
- _CastShadowsUVSet: 0
|
||||
- _CategoryOutline: 0
|
||||
- _CategoryStyling: 0
|
||||
- _CategorySurfaceOptionsAndInputs: 0
|
||||
- _CategoryToonShading: 0
|
||||
- _CellTransitionSmoothness: 0.075
|
||||
- _ClearCoatMask: 0
|
||||
- _ClearCoatSmoothness: 0
|
||||
- _CoordinateSystem: 0
|
||||
- _Cull: 2
|
||||
- _CustomizeCastShadowsColor: 0
|
||||
- _Cutoff: 0.5
|
||||
- _DetailAlbedoMapScale: 1
|
||||
- _DetailNormalMapScale: 1
|
||||
- _DrawSpace: 1
|
||||
- _DstBlend: 0
|
||||
- _EnableAntiAliasing: 0
|
||||
- _EnableCastShadows: 1
|
||||
- _EnableCastShadowsRandomizer: 1
|
||||
- _EnableCastShadowsStyling: 1
|
||||
- _EnableOutline: 1
|
||||
- _EnableRim: 1
|
||||
- _EnableRimRandomizer: 1
|
||||
- _EnableRimStyling: 1
|
||||
- _EnableShadingRandomizer: 1
|
||||
- _EnableShadingStyling: 1
|
||||
- _EnableShadows: 1
|
||||
- _EnableSpecular: 1
|
||||
- _EnableSpecularRandomizer: 1
|
||||
- _EnableSpecularStyling: 1
|
||||
- _EnableStyling: 0
|
||||
- _EnableStylingDistanceFade: 0
|
||||
- _EnableToonShading: 1
|
||||
- _EnvironmentReflections: 1
|
||||
- _GlossMapScale: 0
|
||||
- _Glossiness: 0
|
||||
- _GlossyReflections: 0
|
||||
- _GradientBlendFactor: 1
|
||||
- _GradientBlending: 0
|
||||
- _GradientMode: 0
|
||||
- _HalftonePattern: 1
|
||||
- _HalftonePatternCameraDistanceFade: 0
|
||||
- _HardnessRandomIntensity: 0.159
|
||||
- _HardnessRandomMode: 1
|
||||
- _HatchingAffectedByNormalMap: 1
|
||||
- _HatchingCameraDistanceFade: 0
|
||||
- _IsOptimized: 0
|
||||
- _LengthRandomIntensity: 0.13
|
||||
- _LengthRandomMode: 2
|
||||
- _LightColorContribution: 0
|
||||
- _LightFunction: 0
|
||||
- _LightFunctionLerpValue: 0.5
|
||||
- _LightSource: 0
|
||||
- _Metallic: 0.722
|
||||
- _Mode: 0
|
||||
- _NoiseIntensity: 0
|
||||
- _NoiseTextureQuality: 0
|
||||
- _NumberOfCells: 2
|
||||
- _NumberOfCellsHatching: 3
|
||||
- _OcclusionStrength: 1
|
||||
- _OpacityRandomIntensity: 0
|
||||
- _OpacityRandomMode: 0
|
||||
- _OutlineCameraDistanceImpact: 0
|
||||
- _OutlineConstantScreenWidth: 1
|
||||
- _OutlineDepthOffset: 0
|
||||
- _OutlineWidth: 1.5
|
||||
- _Parallax: 0.005
|
||||
- _PerlinNoiseSize: 0.245
|
||||
- _PolarCenterMode: 0
|
||||
- _QueueControl: -1
|
||||
- _QueueOffset: 0
|
||||
- _ReceiveShadows: 1
|
||||
- _RimAffectedArea: 1
|
||||
- _RimAffectedByNormalMap: 1
|
||||
- _RimAnchorSSToObjectsOrigin: 1
|
||||
- _RimBlending: 0
|
||||
- _RimCoordinateSystem: 0
|
||||
- _RimDrawSpace: 1
|
||||
- _RimHardnessRandomIntensity: 0.159
|
||||
- _RimHardnessRandomMode: 1
|
||||
- _RimLengthRandomIntensity: 0.13
|
||||
- _RimLengthRandomMode: 2
|
||||
- _RimNoise1Seed: 1
|
||||
- _RimNoise1Size: 1.79
|
||||
- _RimNoise2Seed: 1
|
||||
- _RimNoiseIntensity: 0
|
||||
- _RimOpacity: 1
|
||||
- _RimOpacityRandomIntensity: 0
|
||||
- _RimOpacityRandomMode: 0
|
||||
- _RimPerlinNoiseSeed: 1
|
||||
- _RimPerlinNoiseSize: 1
|
||||
- _RimPolarCenterMode: 0
|
||||
- _RimSSCameraDistanceScaled: 1
|
||||
- _RimSize: 0.37
|
||||
- _RimSmoothness: 0.101
|
||||
- _RimSpacingRandomIntensity: 1
|
||||
- _RimSpacingRandomMode: 2
|
||||
- _RimStyle: 1
|
||||
- _RimThicknessRandomMode: 1
|
||||
- _RimThicknesshRandomIntensity: 0.145
|
||||
- _RimUVSet: 0
|
||||
- _RimWhiteNoiseSeed: 1
|
||||
- _SSCameraDistanceScaled: 1
|
||||
- _ShadingAffectByNormalMap: 1
|
||||
- _ShadingAffectedByNormalMap: 1
|
||||
- _ShadingBlending: 0
|
||||
- _ShadingFunction: 0
|
||||
- _ShadingMode: 0
|
||||
- _ShadingNoise1Seed: 1
|
||||
- _ShadingNoise1Size: 1.79
|
||||
- _ShadingNoise2Seed: 1
|
||||
- _ShadingStyle: 1
|
||||
- _ShadingUseLightColors: 1
|
||||
- _ShadowMode: 0
|
||||
- _ShadowsAffectByNormalMap: 0
|
||||
- _Smoothness: 0.336
|
||||
- _SmoothnessSource: 0
|
||||
- _SmoothnessTextureChannel: 0
|
||||
- _SpacingRandomIntensity: 1
|
||||
- _SpacingRandomMode: 2
|
||||
- _SpecularAffectedByNormalMap: 1
|
||||
- _SpecularAnchorSSToObjectsOrigin: 1
|
||||
- _SpecularBlending: 0
|
||||
- _SpecularCoordinateSystem: 0
|
||||
- _SpecularDrawSpace: 1
|
||||
- _SpecularHardnessRandomIntensity: 0.159
|
||||
- _SpecularHardnessRandomMode: 1
|
||||
- _SpecularHighlights: 1
|
||||
- _SpecularLengthRandomIntensity: 0.13
|
||||
- _SpecularLengthRandomMode: 2
|
||||
- _SpecularNoise1Seed: 1
|
||||
- _SpecularNoise1Size: 1.79
|
||||
- _SpecularNoise2Seed: 1
|
||||
- _SpecularNoiseIntensity: 0
|
||||
- _SpecularOpacity: 1
|
||||
- _SpecularOpacityRandomIntensity: 0
|
||||
- _SpecularOpacityRandomMode: 0
|
||||
- _SpecularPerlinNoiseSeed: 1
|
||||
- _SpecularPerlinNoiseSize: 1
|
||||
- _SpecularPolarCenterMode: 0
|
||||
- _SpecularSSCameraDistanceScaled: 1
|
||||
- _SpecularSize: 0.696
|
||||
- _SpecularSmoothness: 0.005
|
||||
- _SpecularSpacingRandomIntensity: 1
|
||||
- _SpecularSpacingRandomMode: 2
|
||||
- _SpecularStyle: 1
|
||||
- _SpecularThicknessRandomMode: 1
|
||||
- _SpecularThicknesshRandomIntensity: 0.145
|
||||
- _SpecularUVSet: 0
|
||||
- _SpecularUseLightColors: 1
|
||||
- _SpecularWhiteNoiseSeed: 1
|
||||
- _SrcBlend: 1
|
||||
- _StylingAdjustDistanceFadeValue: 1
|
||||
- _StylingCastShadowsBlending: 0
|
||||
- _StylingCastShadowsDensity: 13.1
|
||||
- _StylingCastShadowsHalftonesOffset: 0.513
|
||||
- _StylingCastShadowsHalftonesRoundness: 1
|
||||
- _StylingCastShadowsHalftonesRoundnessFalloff: 0
|
||||
- _StylingCastShadowsHardness: 0.822
|
||||
- _StylingCastShadowsInitialDirection: 61
|
||||
- _StylingCastShadowsIsInverted: 0
|
||||
- _StylingCastShadowsOpacity: 1
|
||||
- _StylingCastShadowsOpacityFalloff: 0.355
|
||||
- _StylingCastShadowsRotationBetweenCells: -63
|
||||
- _StylingCastShadowsSmoothness: 1
|
||||
- _StylingCastShadowsSyncWithOtherStyling: 1
|
||||
- _StylingCastShadowsThickness: 1
|
||||
- _StylingCastShadowsThicknessControl: 0
|
||||
- _StylingCastShadowsThicknessFalloff: 0.62
|
||||
- _StylingDFFalloff: 7.8
|
||||
- _StylingDFStartingDistance: 4.38
|
||||
- _StylingDistanceFadeValue: 0.169
|
||||
- _StylingOvermodelingFactor: 1
|
||||
- _StylingRimAffectedArea: 1
|
||||
- _StylingRimBlending: 0
|
||||
- _StylingRimDensity: 13.1
|
||||
- _StylingRimHalftonesOffset: 0.513
|
||||
- _StylingRimHalftonesRoundness: 1
|
||||
- _StylingRimHalftonesRoundnessFalloff: 0
|
||||
- _StylingRimHardness: 0.822
|
||||
- _StylingRimIsInverted: 0
|
||||
- _StylingRimOpacity: 1
|
||||
- _StylingRimOpacityFalloff: 0.355
|
||||
- _StylingRimPosition: 0
|
||||
- _StylingRimRotation: 61
|
||||
- _StylingRimSize: 0.349
|
||||
- _StylingRimSmoothness: 0.583
|
||||
- _StylingRimSyncWithOtherStyling: 1
|
||||
- _StylingRimThickness: 1
|
||||
- _StylingRimThicknessControl: 0
|
||||
- _StylingRimThicknessFalloff: 0.62
|
||||
- _StylingShadingBlending: 0
|
||||
- _StylingShadingDensity: 13.1
|
||||
- _StylingShadingHalftonesOffset: 0.513
|
||||
- _StylingShadingHalftonesRoundness: 1
|
||||
- _StylingShadingHalftonesRoundnessFalloff: 0
|
||||
- _StylingShadingHardness: 0.822
|
||||
- _StylingShadingInitialDirection: 61
|
||||
- _StylingShadingIsInverted: 0
|
||||
- _StylingShadingOpacity: 1
|
||||
- _StylingShadingOpacityFalloff: 0.355
|
||||
- _StylingShadingPosition: 0
|
||||
- _StylingShadingRotationBetweenCells: -63
|
||||
- _StylingShadingSyncWithOtherStyling: 0
|
||||
- _StylingShadingThickness: 1
|
||||
- _StylingShadingThicknessControl: 0
|
||||
- _StylingShadingThicknessFalloff: 0.62
|
||||
- _StylingSpecularBlending: 0
|
||||
- _StylingSpecularCutOutShading: 0
|
||||
- _StylingSpecularDensity: 13.1
|
||||
- _StylingSpecularHalftonesOffset: 0.513
|
||||
- _StylingSpecularHalftonesRoundness: 1
|
||||
- _StylingSpecularHalftonesRoundnessFalloff: 0
|
||||
- _StylingSpecularHardness: 0.822
|
||||
- _StylingSpecularIsInverted: 0
|
||||
- _StylingSpecularOpacity: 1
|
||||
- _StylingSpecularOpacityFalloff: 0.355
|
||||
- _StylingSpecularPosition: 0
|
||||
- _StylingSpecularRotation: 61
|
||||
- _StylingSpecularSize: 0.818
|
||||
- _StylingSpecularSmoothness: 0.206
|
||||
- _StylingSpecularSyncWithOtherStyling: 1
|
||||
- _StylingSpecularThickness: 1
|
||||
- _StylingSpecularThicknessControl: 0
|
||||
- _StylingSpecularThicknessFalloff: 0.62
|
||||
- _StylingSpecularUseLightColors: 0
|
||||
- _StylingTerminatorPosition: 0
|
||||
- _SumLightsBeforePosterization: 1
|
||||
- _Surface: 0
|
||||
- _SyncWithLightPartitioning: 0
|
||||
- _SyncWithRim: 0
|
||||
- _SyncWithSpecular: 0
|
||||
- _TerminatorPosition: 0
|
||||
- _TerminatorSmoothness: 0.333
|
||||
- _TerminatorWidth: 1
|
||||
- _TheToonShaderIdentifier: 1
|
||||
- _ThicknessRandomMode: 1
|
||||
- _ThicknesshRandomIntensity: 0.145
|
||||
- _UVSec: 0
|
||||
- _UVSet: 0
|
||||
- _UseAlphaOnlyFromBaseMap: 0
|
||||
- _UseCurve: 1
|
||||
- _UsePBRLighting: 0
|
||||
- _WorkflowMode: 1
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _BaseColor: {r: 0.8301887, g: 0.8235862, b: 0.7714489, a: 1}
|
||||
- _CastShadowColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _CastShadowsPolarCenter: {r: 0.54, g: 0.47, b: 0, a: 0}
|
||||
- _Color: {r: 0.83137256, g: 0.8235294, b: 0.77254903, a: 1}
|
||||
- _CoreShadowColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _FormShadowColor: {r: 0.5372549, g: 0.25490198, b: 0.3217853, a: 1}
|
||||
- _OutlineColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _PolarCenter: {r: 0.54, g: 0.47, b: 0, a: 0}
|
||||
- _RimColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _RimPolarCenter: {r: 0.54, g: 0.47, b: 0, a: 0}
|
||||
- _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1}
|
||||
- _SpecularColor: {r: 1, g: 0.8885858, b: 0.6462264, a: 1}
|
||||
- _SpecularPolarCenter: {r: 0.54, g: 0.47, b: 0, a: 0}
|
||||
- _StylingCastShadowsColor: {r: 0, g: 0.05882353, b: 0.49019608, a: 1}
|
||||
- _StylingColor: {r: 1, g: 0.15377249, b: 0, a: 1}
|
||||
- _StylingRimColor: {r: 0, g: 0.22719002, b: 1, a: 1}
|
||||
- _StylingSpecularColor: {r: 1, g: 0.9744728, b: 0.8915094, a: 1}
|
||||
m_BuildTextureStacks: []
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
fileFormatVersion: 2
|
||||
guid: c9ac26a2b5c92be4298f0fb539b22ff9
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 269238
|
||||
packageName: The Toon Shader
|
||||
packageVersion: 1.4.2
|
||||
assetPath: Packages/com.shadercrew.the-toon-shader.3d/Scripts/Resources/TTSReferenceMaterials/NoStyling_01_ColorBasedCell2_TTS_RefMat.mat
|
||||
uploadId: 919972
|
||||
+410
@@ -0,0 +1,410 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!114 &-7617746012844444677
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 4
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: NoStyling_02_PBRCell_TTS_RefMat
|
||||
m_Shader: {fileID: 4800000, guid: 1c6b3902befc80643a83432be8825adc, type: 3}
|
||||
m_ValidKeywords:
|
||||
- _SHADING_PBR
|
||||
m_InvalidKeywords:
|
||||
- _OUTLINECONSTANTSCREENWIDTH_ON
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 0
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses: []
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _BaseMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BumpMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailAlbedoMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailMask:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailNormalMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _EmissionMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _GradientTex:
|
||||
m_Texture: {fileID: 2800000, guid: 6b923a350a3eec547a2e5e79ada1927b, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _HatchingMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MainTex:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MetallicGlossMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NoiseMap1:
|
||||
m_Texture: {fileID: 2800000, guid: 0528154608ff38a4c845b6622c088ea0, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NoiseMap2:
|
||||
m_Texture: {fileID: 2800000, guid: f40d12a41bafa6749a1465879341fff5, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _OcclusionMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ParallaxMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ShadingGradientCurve:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SpecGlossMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _AdjustStylingDistanceFadeValue: 0
|
||||
- _AlphaClip: 0
|
||||
- _AmbientColorContribution: 0
|
||||
- _AnchorSSToObjectsOrigin: 1
|
||||
- _Blend: 0
|
||||
- _BumpScale: 0.3
|
||||
- _CastShadowColorMode: 1
|
||||
- _CastShadowsAnchorSSToObjectsOrigin: 1
|
||||
- _CastShadowsCoordinateSystem: 0
|
||||
- _CastShadowsDrawSpace: 1
|
||||
- _CastShadowsHardnessRandomIntensity: 0.159
|
||||
- _CastShadowsHardnessRandomMode: 1
|
||||
- _CastShadowsLengthRandomIntensity: 0.13
|
||||
- _CastShadowsLengthRandomMode: 2
|
||||
- _CastShadowsNoise1Seed: 1
|
||||
- _CastShadowsNoise1Size: 1.79
|
||||
- _CastShadowsNoise2Seed: 1
|
||||
- _CastShadowsNoiseIntensity: 0
|
||||
- _CastShadowsNumberOfCellsHatching: 3
|
||||
- _CastShadowsOpacityRandomIntensity: 0
|
||||
- _CastShadowsOpacityRandomMode: 0
|
||||
- _CastShadowsPolarCenterMode: 0
|
||||
- _CastShadowsSSCameraDistanceScaled: 1
|
||||
- _CastShadowsSmoothness: 0.9
|
||||
- _CastShadowsSpacingRandomIntensity: 1
|
||||
- _CastShadowsSpacingRandomMode: 2
|
||||
- _CastShadowsStrength: 0
|
||||
- _CastShadowsStyle: 1
|
||||
- _CastShadowsThicknessRandomMode: 1
|
||||
- _CastShadowsThicknesshRandomIntensity: 0.145
|
||||
- _CastShadowsUVSet: 0
|
||||
- _CategoryOutline: 0
|
||||
- _CategoryStyling: 0
|
||||
- _CategorySurfaceOptionsAndInputs: 0
|
||||
- _CategoryToonShading: 0
|
||||
- _CellTransitionSmoothness: 0
|
||||
- _ClearCoatMask: 0
|
||||
- _ClearCoatSmoothness: 0
|
||||
- _CoordinateSystem: 0
|
||||
- _Cull: 2
|
||||
- _CustomizeCastShadowsColor: 0
|
||||
- _Cutoff: 0.5
|
||||
- _DetailAlbedoMapScale: 1
|
||||
- _DetailNormalMapScale: 1
|
||||
- _DrawSpace: 1
|
||||
- _DstBlend: 0
|
||||
- _EnableAntiAliasing: 0
|
||||
- _EnableCastShadows: 1
|
||||
- _EnableCastShadowsRandomizer: 1
|
||||
- _EnableCastShadowsStyling: 1
|
||||
- _EnableOutline: 1
|
||||
- _EnableRim: 0
|
||||
- _EnableRimRandomizer: 1
|
||||
- _EnableRimStyling: 1
|
||||
- _EnableShadingRandomizer: 1
|
||||
- _EnableShadingStyling: 1
|
||||
- _EnableShadows: 1
|
||||
- _EnableSpecular: 1
|
||||
- _EnableSpecularRandomizer: 1
|
||||
- _EnableSpecularStyling: 1
|
||||
- _EnableStyling: 0
|
||||
- _EnableStylingDistanceFade: 0
|
||||
- _EnableToonShading: 1
|
||||
- _EnvironmentReflections: 1
|
||||
- _GlossMapScale: 0
|
||||
- _Glossiness: 0.487
|
||||
- _GlossyReflections: 0
|
||||
- _GradientBlendFactor: 1
|
||||
- _GradientBlending: 0
|
||||
- _GradientMode: 0
|
||||
- _HalftonePattern: 1
|
||||
- _HalftonePatternCameraDistanceFade: 0
|
||||
- _HardnessRandomIntensity: 0.159
|
||||
- _HardnessRandomMode: 1
|
||||
- _HatchingAffectedByNormalMap: 1
|
||||
- _HatchingCameraDistanceFade: 0
|
||||
- _IsOptimized: 0
|
||||
- _LengthRandomIntensity: 0.13
|
||||
- _LengthRandomMode: 2
|
||||
- _LightColorContribution: 0
|
||||
- _LightFunction: 1
|
||||
- _LightFunctionLerpValue: 0.5
|
||||
- _LightSource: 0
|
||||
- _Metallic: 0.651
|
||||
- _Mode: 0
|
||||
- _NoiseIntensity: 0
|
||||
- _NoiseTextureQuality: 0
|
||||
- _NumberOfCells: 3
|
||||
- _NumberOfCellsHatching: 3
|
||||
- _OcclusionStrength: 1
|
||||
- _OpacityRandomIntensity: 0
|
||||
- _OpacityRandomMode: 0
|
||||
- _OutlineCameraDistanceImpact: 0
|
||||
- _OutlineConstantScreenWidth: 1
|
||||
- _OutlineDepthOffset: 0
|
||||
- _OutlineWidth: 4.2
|
||||
- _Parallax: 0.005
|
||||
- _PerlinNoiseSize: 0.245
|
||||
- _PolarCenterMode: 0
|
||||
- _QueueControl: 0
|
||||
- _QueueOffset: 0
|
||||
- _ReceiveShadows: 1
|
||||
- _RimAffectedArea: 1
|
||||
- _RimAffectedByNormalMap: 1
|
||||
- _RimAnchorSSToObjectsOrigin: 1
|
||||
- _RimBlending: 0
|
||||
- _RimCoordinateSystem: 0
|
||||
- _RimDrawSpace: 1
|
||||
- _RimHardnessRandomIntensity: 0.159
|
||||
- _RimHardnessRandomMode: 1
|
||||
- _RimLengthRandomIntensity: 0.13
|
||||
- _RimLengthRandomMode: 2
|
||||
- _RimNoise1Seed: 1
|
||||
- _RimNoise1Size: 1.79
|
||||
- _RimNoise2Seed: 1
|
||||
- _RimNoiseIntensity: 0
|
||||
- _RimOpacity: 1
|
||||
- _RimOpacityRandomIntensity: 0
|
||||
- _RimOpacityRandomMode: 0
|
||||
- _RimPerlinNoiseSeed: 1
|
||||
- _RimPerlinNoiseSize: 1
|
||||
- _RimPolarCenterMode: 0
|
||||
- _RimSSCameraDistanceScaled: 1
|
||||
- _RimSize: 0.474
|
||||
- _RimSmoothness: 0.118
|
||||
- _RimSpacingRandomIntensity: 1
|
||||
- _RimSpacingRandomMode: 2
|
||||
- _RimStyle: 1
|
||||
- _RimThicknessRandomMode: 1
|
||||
- _RimThicknesshRandomIntensity: 0.145
|
||||
- _RimUVSet: 0
|
||||
- _RimWhiteNoiseSeed: 1
|
||||
- _SSCameraDistanceScaled: 1
|
||||
- _ShadingAffectByNormalMap: 1
|
||||
- _ShadingAffectedByNormalMap: 1
|
||||
- _ShadingBlending: 0
|
||||
- _ShadingFunction: 0
|
||||
- _ShadingMode: 1
|
||||
- _ShadingNoise1Seed: 1
|
||||
- _ShadingNoise1Size: 1.79
|
||||
- _ShadingNoise2Seed: 1
|
||||
- _ShadingStyle: 1
|
||||
- _ShadingUseLightColors: 1
|
||||
- _ShadowMode: 0
|
||||
- _ShadowsAffectByNormalMap: 0
|
||||
- _Smoothness: 0.128
|
||||
- _SmoothnessSource: 0
|
||||
- _SmoothnessTextureChannel: 0
|
||||
- _SpacingRandomIntensity: 1
|
||||
- _SpacingRandomMode: 2
|
||||
- _SpecularAffectedByNormalMap: 0
|
||||
- _SpecularAnchorSSToObjectsOrigin: 1
|
||||
- _SpecularBlending: 0
|
||||
- _SpecularCoordinateSystem: 0
|
||||
- _SpecularDrawSpace: 1
|
||||
- _SpecularHardnessRandomIntensity: 0.159
|
||||
- _SpecularHardnessRandomMode: 1
|
||||
- _SpecularHighlights: 0
|
||||
- _SpecularLengthRandomIntensity: 0.13
|
||||
- _SpecularLengthRandomMode: 2
|
||||
- _SpecularNoise1Seed: 1
|
||||
- _SpecularNoise1Size: 1.79
|
||||
- _SpecularNoise2Seed: 1
|
||||
- _SpecularNoiseIntensity: 0
|
||||
- _SpecularOpacity: 1
|
||||
- _SpecularOpacityRandomIntensity: 0
|
||||
- _SpecularOpacityRandomMode: 0
|
||||
- _SpecularPerlinNoiseSeed: 1
|
||||
- _SpecularPerlinNoiseSize: 1
|
||||
- _SpecularPolarCenterMode: 0
|
||||
- _SpecularSSCameraDistanceScaled: 1
|
||||
- _SpecularSize: 0.696
|
||||
- _SpecularSmoothness: 0.462
|
||||
- _SpecularSpacingRandomIntensity: 1
|
||||
- _SpecularSpacingRandomMode: 2
|
||||
- _SpecularStyle: 1
|
||||
- _SpecularThicknessRandomMode: 1
|
||||
- _SpecularThicknesshRandomIntensity: 0.145
|
||||
- _SpecularUVSet: 0
|
||||
- _SpecularUseLightColors: 1
|
||||
- _SpecularWhiteNoiseSeed: 1
|
||||
- _SrcBlend: 1
|
||||
- _StylingAdjustDistanceFadeValue: 1
|
||||
- _StylingCastShadowsBlending: 0
|
||||
- _StylingCastShadowsDensity: 13.1
|
||||
- _StylingCastShadowsHalftonesOffset: 0.513
|
||||
- _StylingCastShadowsHalftonesRoundness: 1
|
||||
- _StylingCastShadowsHalftonesRoundnessFalloff: 0
|
||||
- _StylingCastShadowsHardness: 0.822
|
||||
- _StylingCastShadowsInitialDirection: 61
|
||||
- _StylingCastShadowsIsInverted: 0
|
||||
- _StylingCastShadowsOpacity: 1
|
||||
- _StylingCastShadowsOpacityFalloff: 0.355
|
||||
- _StylingCastShadowsRotationBetweenCells: -63
|
||||
- _StylingCastShadowsSmoothness: 1
|
||||
- _StylingCastShadowsSyncWithOtherStyling: 1
|
||||
- _StylingCastShadowsThickness: 1
|
||||
- _StylingCastShadowsThicknessControl: 0
|
||||
- _StylingCastShadowsThicknessFalloff: 0.62
|
||||
- _StylingDFFalloff: 7.8
|
||||
- _StylingDFStartingDistance: 4.38
|
||||
- _StylingDistanceFadeValue: 0.169
|
||||
- _StylingOvermodelingFactor: 1
|
||||
- _StylingRimAffectedArea: 1
|
||||
- _StylingRimBlending: 0
|
||||
- _StylingRimDensity: 13.1
|
||||
- _StylingRimHalftonesOffset: 0.513
|
||||
- _StylingRimHalftonesRoundness: 1
|
||||
- _StylingRimHalftonesRoundnessFalloff: 0
|
||||
- _StylingRimHardness: 0.822
|
||||
- _StylingRimIsInverted: 0
|
||||
- _StylingRimOpacity: 1
|
||||
- _StylingRimOpacityFalloff: 0.355
|
||||
- _StylingRimPosition: 0
|
||||
- _StylingRimRotation: 61
|
||||
- _StylingRimSize: 0.349
|
||||
- _StylingRimSmoothness: 0.583
|
||||
- _StylingRimSyncWithOtherStyling: 1
|
||||
- _StylingRimThickness: 1
|
||||
- _StylingRimThicknessControl: 0
|
||||
- _StylingRimThicknessFalloff: 0.62
|
||||
- _StylingShadingBlending: 0
|
||||
- _StylingShadingDensity: 13.1
|
||||
- _StylingShadingHalftonesOffset: 0.513
|
||||
- _StylingShadingHalftonesRoundness: 1
|
||||
- _StylingShadingHalftonesRoundnessFalloff: 0
|
||||
- _StylingShadingHardness: 0.822
|
||||
- _StylingShadingInitialDirection: 61
|
||||
- _StylingShadingIsInverted: 0
|
||||
- _StylingShadingOpacity: 1
|
||||
- _StylingShadingOpacityFalloff: 0.355
|
||||
- _StylingShadingPosition: 0
|
||||
- _StylingShadingRotationBetweenCells: -63
|
||||
- _StylingShadingSyncWithOtherStyling: 0
|
||||
- _StylingShadingThickness: 1
|
||||
- _StylingShadingThicknessControl: 0
|
||||
- _StylingShadingThicknessFalloff: 0.62
|
||||
- _StylingSpecularBlending: 0
|
||||
- _StylingSpecularCutOutShading: 0
|
||||
- _StylingSpecularDensity: 13.1
|
||||
- _StylingSpecularHalftonesOffset: 0.513
|
||||
- _StylingSpecularHalftonesRoundness: 1
|
||||
- _StylingSpecularHalftonesRoundnessFalloff: 0
|
||||
- _StylingSpecularHardness: 0.822
|
||||
- _StylingSpecularIsInverted: 0
|
||||
- _StylingSpecularOpacity: 1
|
||||
- _StylingSpecularOpacityFalloff: 0.355
|
||||
- _StylingSpecularPosition: 0
|
||||
- _StylingSpecularRotation: 61
|
||||
- _StylingSpecularSize: 0.818
|
||||
- _StylingSpecularSmoothness: 0.206
|
||||
- _StylingSpecularSyncWithOtherStyling: 1
|
||||
- _StylingSpecularThickness: 1
|
||||
- _StylingSpecularThicknessControl: 0
|
||||
- _StylingSpecularThicknessFalloff: 0.62
|
||||
- _StylingSpecularUseLightColors: 0
|
||||
- _StylingTerminatorPosition: 0
|
||||
- _SumLightsBeforePosterization: 1
|
||||
- _Surface: 0
|
||||
- _SyncWithLightPartitioning: 0
|
||||
- _SyncWithRim: 0
|
||||
- _SyncWithSpecular: 0
|
||||
- _TerminatorPosition: 0
|
||||
- _TerminatorSmoothness: 0.049
|
||||
- _TerminatorWidth: 0.222
|
||||
- _TheToonShaderIdentifier: 1
|
||||
- _ThicknessRandomMode: 1
|
||||
- _ThicknesshRandomIntensity: 0.145
|
||||
- _UVSec: 0
|
||||
- _UVSet: 0
|
||||
- _UseAlphaOnlyFromBaseMap: 0
|
||||
- _UseCurve: 1
|
||||
- _UsePBRLighting: 0
|
||||
- _WorkflowMode: 1
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _BaseColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _CastShadowColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _CastShadowsPolarCenter: {r: 0.54, g: 0.47, b: 0, a: 0}
|
||||
- _Color: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _CoreShadowColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _EmissionColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _FormShadowColor: {r: 0, g: 0.2262168, b: 1, a: 1}
|
||||
- _OutlineColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _PolarCenter: {r: 0.54, g: 0.47, b: 0, a: 0}
|
||||
- _RimColor: {r: 0.26143643, g: 0.3518351, b: 0.4433962, a: 1}
|
||||
- _RimPolarCenter: {r: 0.54, g: 0.47, b: 0, a: 0}
|
||||
- _SpecColor: {r: 1, g: 1, b: 1, a: 0.128}
|
||||
- _SpecularColor: {r: 1, g: 0.8885858, b: 0.6462264, a: 1}
|
||||
- _SpecularPolarCenter: {r: 0.54, g: 0.47, b: 0, a: 0}
|
||||
- _StylingCastShadowsColor: {r: 0, g: 0.05882353, b: 0.49019608, a: 1}
|
||||
- _StylingColor: {r: 1, g: 0.15377249, b: 0, a: 1}
|
||||
- _StylingRimColor: {r: 0, g: 0.22719002, b: 1, a: 1}
|
||||
- _StylingSpecularColor: {r: 1, g: 0.9744728, b: 0.8915094, a: 1}
|
||||
m_BuildTextureStacks: []
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 6a54ea4bf3a887d4ba5fa4eacffc2586
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 269238
|
||||
packageName: The Toon Shader
|
||||
packageVersion: 1.4.2
|
||||
assetPath: Packages/com.shadercrew.the-toon-shader.3d/Scripts/Resources/TTSReferenceMaterials/NoStyling_02_PBRCell_TTS_RefMat.mat
|
||||
uploadId: 919972
|
||||
+410
@@ -0,0 +1,410 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!114 &-7617746012844444677
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 4
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: NoStyling_03_PBRCell_TTS_RefMat
|
||||
m_Shader: {fileID: 4800000, guid: 1c6b3902befc80643a83432be8825adc, type: 3}
|
||||
m_ValidKeywords:
|
||||
- _SHADING_PBR
|
||||
m_InvalidKeywords:
|
||||
- _OUTLINECONSTANTSCREENWIDTH_ON
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 0
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses: []
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _BaseMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BumpMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailAlbedoMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailMask:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailNormalMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _EmissionMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _GradientTex:
|
||||
m_Texture: {fileID: 2800000, guid: 6b923a350a3eec547a2e5e79ada1927b, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _HatchingMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MainTex:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MetallicGlossMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NoiseMap1:
|
||||
m_Texture: {fileID: 2800000, guid: 0528154608ff38a4c845b6622c088ea0, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NoiseMap2:
|
||||
m_Texture: {fileID: 2800000, guid: f40d12a41bafa6749a1465879341fff5, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _OcclusionMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ParallaxMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ShadingGradientCurve:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SpecGlossMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _AdjustStylingDistanceFadeValue: 0
|
||||
- _AlphaClip: 0
|
||||
- _AmbientColorContribution: 0
|
||||
- _AnchorSSToObjectsOrigin: 1
|
||||
- _Blend: 0
|
||||
- _BumpScale: 1
|
||||
- _CastShadowColorMode: 1
|
||||
- _CastShadowsAnchorSSToObjectsOrigin: 1
|
||||
- _CastShadowsCoordinateSystem: 0
|
||||
- _CastShadowsDrawSpace: 1
|
||||
- _CastShadowsHardnessRandomIntensity: 0.159
|
||||
- _CastShadowsHardnessRandomMode: 1
|
||||
- _CastShadowsLengthRandomIntensity: 0.13
|
||||
- _CastShadowsLengthRandomMode: 2
|
||||
- _CastShadowsNoise1Seed: 1
|
||||
- _CastShadowsNoise1Size: 1.79
|
||||
- _CastShadowsNoise2Seed: 1
|
||||
- _CastShadowsNoiseIntensity: 0
|
||||
- _CastShadowsNumberOfCellsHatching: 3
|
||||
- _CastShadowsOpacityRandomIntensity: 0
|
||||
- _CastShadowsOpacityRandomMode: 0
|
||||
- _CastShadowsPolarCenterMode: 0
|
||||
- _CastShadowsSSCameraDistanceScaled: 1
|
||||
- _CastShadowsSmoothness: 0.9
|
||||
- _CastShadowsSpacingRandomIntensity: 1
|
||||
- _CastShadowsSpacingRandomMode: 2
|
||||
- _CastShadowsStrength: 0
|
||||
- _CastShadowsStyle: 1
|
||||
- _CastShadowsThicknessRandomMode: 1
|
||||
- _CastShadowsThicknesshRandomIntensity: 0.145
|
||||
- _CastShadowsUVSet: 0
|
||||
- _CategoryOutline: 0
|
||||
- _CategoryStyling: 0
|
||||
- _CategorySurfaceOptionsAndInputs: 0
|
||||
- _CategoryToonShading: 0
|
||||
- _CellTransitionSmoothness: 0
|
||||
- _ClearCoatMask: 0
|
||||
- _ClearCoatSmoothness: 0
|
||||
- _CoordinateSystem: 0
|
||||
- _Cull: 2
|
||||
- _CustomizeCastShadowsColor: 0
|
||||
- _Cutoff: 0.5
|
||||
- _DetailAlbedoMapScale: 1
|
||||
- _DetailNormalMapScale: 1
|
||||
- _DrawSpace: 1
|
||||
- _DstBlend: 0
|
||||
- _EnableAntiAliasing: 0
|
||||
- _EnableCastShadows: 1
|
||||
- _EnableCastShadowsRandomizer: 1
|
||||
- _EnableCastShadowsStyling: 1
|
||||
- _EnableOutline: 1
|
||||
- _EnableRim: 0
|
||||
- _EnableRimRandomizer: 1
|
||||
- _EnableRimStyling: 1
|
||||
- _EnableShadingRandomizer: 1
|
||||
- _EnableShadingStyling: 1
|
||||
- _EnableShadows: 1
|
||||
- _EnableSpecular: 1
|
||||
- _EnableSpecularRandomizer: 1
|
||||
- _EnableSpecularStyling: 1
|
||||
- _EnableStyling: 0
|
||||
- _EnableStylingDistanceFade: 0
|
||||
- _EnableToonShading: 1
|
||||
- _EnvironmentReflections: 1
|
||||
- _GlossMapScale: 0
|
||||
- _Glossiness: 0
|
||||
- _GlossyReflections: 0
|
||||
- _GradientBlendFactor: 1
|
||||
- _GradientBlending: 0
|
||||
- _GradientMode: 0
|
||||
- _HalftonePattern: 1
|
||||
- _HalftonePatternCameraDistanceFade: 0
|
||||
- _HardnessRandomIntensity: 0.159
|
||||
- _HardnessRandomMode: 1
|
||||
- _HatchingAffectedByNormalMap: 1
|
||||
- _HatchingCameraDistanceFade: 0
|
||||
- _IsOptimized: 0
|
||||
- _LengthRandomIntensity: 0.13
|
||||
- _LengthRandomMode: 2
|
||||
- _LightColorContribution: 0
|
||||
- _LightFunction: 1
|
||||
- _LightFunctionLerpValue: 0.5
|
||||
- _LightSource: 0
|
||||
- _Metallic: 0.419
|
||||
- _Mode: 0
|
||||
- _NoiseIntensity: 0
|
||||
- _NoiseTextureQuality: 0
|
||||
- _NumberOfCells: 2
|
||||
- _NumberOfCellsHatching: 3
|
||||
- _OcclusionStrength: 1
|
||||
- _OpacityRandomIntensity: 0
|
||||
- _OpacityRandomMode: 0
|
||||
- _OutlineCameraDistanceImpact: 0
|
||||
- _OutlineConstantScreenWidth: 1
|
||||
- _OutlineDepthOffset: 0
|
||||
- _OutlineWidth: 4.8
|
||||
- _Parallax: 0.005
|
||||
- _PerlinNoiseSize: 0.245
|
||||
- _PolarCenterMode: 0
|
||||
- _QueueControl: 0
|
||||
- _QueueOffset: 0
|
||||
- _ReceiveShadows: 1
|
||||
- _RimAffectedArea: 1
|
||||
- _RimAffectedByNormalMap: 1
|
||||
- _RimAnchorSSToObjectsOrigin: 1
|
||||
- _RimBlending: 0
|
||||
- _RimCoordinateSystem: 0
|
||||
- _RimDrawSpace: 1
|
||||
- _RimHardnessRandomIntensity: 0.159
|
||||
- _RimHardnessRandomMode: 1
|
||||
- _RimLengthRandomIntensity: 0.13
|
||||
- _RimLengthRandomMode: 2
|
||||
- _RimNoise1Seed: 1
|
||||
- _RimNoise1Size: 1.79
|
||||
- _RimNoise2Seed: 1
|
||||
- _RimNoiseIntensity: 0
|
||||
- _RimOpacity: 1
|
||||
- _RimOpacityRandomIntensity: 0
|
||||
- _RimOpacityRandomMode: 0
|
||||
- _RimPerlinNoiseSeed: 1
|
||||
- _RimPerlinNoiseSize: 1
|
||||
- _RimPolarCenterMode: 0
|
||||
- _RimSSCameraDistanceScaled: 1
|
||||
- _RimSize: 0.474
|
||||
- _RimSmoothness: 0.118
|
||||
- _RimSpacingRandomIntensity: 1
|
||||
- _RimSpacingRandomMode: 2
|
||||
- _RimStyle: 1
|
||||
- _RimThicknessRandomMode: 1
|
||||
- _RimThicknesshRandomIntensity: 0.145
|
||||
- _RimUVSet: 0
|
||||
- _RimWhiteNoiseSeed: 1
|
||||
- _SSCameraDistanceScaled: 1
|
||||
- _ShadingAffectByNormalMap: 1
|
||||
- _ShadingAffectedByNormalMap: 0
|
||||
- _ShadingBlending: 0
|
||||
- _ShadingFunction: 0
|
||||
- _ShadingMode: 1
|
||||
- _ShadingNoise1Seed: 1
|
||||
- _ShadingNoise1Size: 1.79
|
||||
- _ShadingNoise2Seed: 1
|
||||
- _ShadingStyle: 1
|
||||
- _ShadingUseLightColors: 1
|
||||
- _ShadowMode: 0
|
||||
- _ShadowsAffectByNormalMap: 1
|
||||
- _Smoothness: 0.128
|
||||
- _SmoothnessSource: 0
|
||||
- _SmoothnessTextureChannel: 0
|
||||
- _SpacingRandomIntensity: 1
|
||||
- _SpacingRandomMode: 2
|
||||
- _SpecularAffectedByNormalMap: 0
|
||||
- _SpecularAnchorSSToObjectsOrigin: 1
|
||||
- _SpecularBlending: 0
|
||||
- _SpecularCoordinateSystem: 0
|
||||
- _SpecularDrawSpace: 1
|
||||
- _SpecularHardnessRandomIntensity: 0.159
|
||||
- _SpecularHardnessRandomMode: 1
|
||||
- _SpecularHighlights: 0
|
||||
- _SpecularLengthRandomIntensity: 0.13
|
||||
- _SpecularLengthRandomMode: 2
|
||||
- _SpecularNoise1Seed: 1
|
||||
- _SpecularNoise1Size: 1.79
|
||||
- _SpecularNoise2Seed: 1
|
||||
- _SpecularNoiseIntensity: 0
|
||||
- _SpecularOpacity: 1
|
||||
- _SpecularOpacityRandomIntensity: 0
|
||||
- _SpecularOpacityRandomMode: 0
|
||||
- _SpecularPerlinNoiseSeed: 1
|
||||
- _SpecularPerlinNoiseSize: 1
|
||||
- _SpecularPolarCenterMode: 0
|
||||
- _SpecularSSCameraDistanceScaled: 1
|
||||
- _SpecularSize: 0.696
|
||||
- _SpecularSmoothness: 0.462
|
||||
- _SpecularSpacingRandomIntensity: 1
|
||||
- _SpecularSpacingRandomMode: 2
|
||||
- _SpecularStyle: 1
|
||||
- _SpecularThicknessRandomMode: 1
|
||||
- _SpecularThicknesshRandomIntensity: 0.145
|
||||
- _SpecularUVSet: 0
|
||||
- _SpecularUseLightColors: 1
|
||||
- _SpecularWhiteNoiseSeed: 1
|
||||
- _SrcBlend: 1
|
||||
- _StylingAdjustDistanceFadeValue: 1
|
||||
- _StylingCastShadowsBlending: 0
|
||||
- _StylingCastShadowsDensity: 13.1
|
||||
- _StylingCastShadowsHalftonesOffset: 0.513
|
||||
- _StylingCastShadowsHalftonesRoundness: 1
|
||||
- _StylingCastShadowsHalftonesRoundnessFalloff: 0
|
||||
- _StylingCastShadowsHardness: 0.822
|
||||
- _StylingCastShadowsInitialDirection: 61
|
||||
- _StylingCastShadowsIsInverted: 0
|
||||
- _StylingCastShadowsOpacity: 1
|
||||
- _StylingCastShadowsOpacityFalloff: 0.355
|
||||
- _StylingCastShadowsRotationBetweenCells: -63
|
||||
- _StylingCastShadowsSmoothness: 1
|
||||
- _StylingCastShadowsSyncWithOtherStyling: 1
|
||||
- _StylingCastShadowsThickness: 1
|
||||
- _StylingCastShadowsThicknessControl: 0
|
||||
- _StylingCastShadowsThicknessFalloff: 0.62
|
||||
- _StylingDFFalloff: 7.8
|
||||
- _StylingDFStartingDistance: 4.38
|
||||
- _StylingDistanceFadeValue: 0.169
|
||||
- _StylingOvermodelingFactor: 1
|
||||
- _StylingRimAffectedArea: 1
|
||||
- _StylingRimBlending: 0
|
||||
- _StylingRimDensity: 13.1
|
||||
- _StylingRimHalftonesOffset: 0.513
|
||||
- _StylingRimHalftonesRoundness: 1
|
||||
- _StylingRimHalftonesRoundnessFalloff: 0
|
||||
- _StylingRimHardness: 0.822
|
||||
- _StylingRimIsInverted: 0
|
||||
- _StylingRimOpacity: 1
|
||||
- _StylingRimOpacityFalloff: 0.355
|
||||
- _StylingRimPosition: 0
|
||||
- _StylingRimRotation: 61
|
||||
- _StylingRimSize: 0.349
|
||||
- _StylingRimSmoothness: 0.583
|
||||
- _StylingRimSyncWithOtherStyling: 1
|
||||
- _StylingRimThickness: 1
|
||||
- _StylingRimThicknessControl: 0
|
||||
- _StylingRimThicknessFalloff: 0.62
|
||||
- _StylingShadingBlending: 0
|
||||
- _StylingShadingDensity: 13.1
|
||||
- _StylingShadingHalftonesOffset: 0.513
|
||||
- _StylingShadingHalftonesRoundness: 1
|
||||
- _StylingShadingHalftonesRoundnessFalloff: 0
|
||||
- _StylingShadingHardness: 0.822
|
||||
- _StylingShadingInitialDirection: 61
|
||||
- _StylingShadingIsInverted: 0
|
||||
- _StylingShadingOpacity: 1
|
||||
- _StylingShadingOpacityFalloff: 0.355
|
||||
- _StylingShadingPosition: 0
|
||||
- _StylingShadingRotationBetweenCells: -63
|
||||
- _StylingShadingSyncWithOtherStyling: 0
|
||||
- _StylingShadingThickness: 1
|
||||
- _StylingShadingThicknessControl: 0
|
||||
- _StylingShadingThicknessFalloff: 0.62
|
||||
- _StylingSpecularBlending: 0
|
||||
- _StylingSpecularCutOutShading: 0
|
||||
- _StylingSpecularDensity: 13.1
|
||||
- _StylingSpecularHalftonesOffset: 0.513
|
||||
- _StylingSpecularHalftonesRoundness: 1
|
||||
- _StylingSpecularHalftonesRoundnessFalloff: 0
|
||||
- _StylingSpecularHardness: 0.822
|
||||
- _StylingSpecularIsInverted: 0
|
||||
- _StylingSpecularOpacity: 1
|
||||
- _StylingSpecularOpacityFalloff: 0.355
|
||||
- _StylingSpecularPosition: 0
|
||||
- _StylingSpecularRotation: 61
|
||||
- _StylingSpecularSize: 0.818
|
||||
- _StylingSpecularSmoothness: 0.206
|
||||
- _StylingSpecularSyncWithOtherStyling: 1
|
||||
- _StylingSpecularThickness: 1
|
||||
- _StylingSpecularThicknessControl: 0
|
||||
- _StylingSpecularThicknessFalloff: 0.62
|
||||
- _StylingSpecularUseLightColors: 0
|
||||
- _StylingTerminatorPosition: 0
|
||||
- _SumLightsBeforePosterization: 1
|
||||
- _Surface: 0
|
||||
- _SyncWithLightPartitioning: 0
|
||||
- _SyncWithRim: 0
|
||||
- _SyncWithSpecular: 0
|
||||
- _TerminatorPosition: 0
|
||||
- _TerminatorSmoothness: 0.049
|
||||
- _TerminatorWidth: 0.222
|
||||
- _TheToonShaderIdentifier: 1
|
||||
- _ThicknessRandomMode: 1
|
||||
- _ThicknesshRandomIntensity: 0.145
|
||||
- _UVSec: 0
|
||||
- _UVSet: 0
|
||||
- _UseAlphaOnlyFromBaseMap: 0
|
||||
- _UseCurve: 1
|
||||
- _UsePBRLighting: 0
|
||||
- _WorkflowMode: 1
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _BaseColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _CastShadowColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _CastShadowsPolarCenter: {r: 0.54, g: 0.47, b: 0, a: 0}
|
||||
- _Color: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _CoreShadowColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _FormShadowColor: {r: 0, g: 0.2262168, b: 1, a: 1}
|
||||
- _OutlineColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _PolarCenter: {r: 0.54, g: 0.47, b: 0, a: 0}
|
||||
- _RimColor: {r: 0.26143643, g: 0.3518351, b: 0.4433962, a: 1}
|
||||
- _RimPolarCenter: {r: 0.54, g: 0.47, b: 0, a: 0}
|
||||
- _SpecColor: {r: 1, g: 1, b: 1, a: 0.128}
|
||||
- _SpecularColor: {r: 1, g: 0.8885858, b: 0.6462264, a: 1}
|
||||
- _SpecularPolarCenter: {r: 0.54, g: 0.47, b: 0, a: 0}
|
||||
- _StylingCastShadowsColor: {r: 0, g: 0.05882353, b: 0.49019608, a: 1}
|
||||
- _StylingColor: {r: 1, g: 0.15377249, b: 0, a: 1}
|
||||
- _StylingRimColor: {r: 0, g: 0.22719002, b: 1, a: 1}
|
||||
- _StylingSpecularColor: {r: 1, g: 0.9744728, b: 0.8915094, a: 1}
|
||||
m_BuildTextureStacks: []
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 3bf0ef06b670d4743ae174a31c4d1ddc
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 269238
|
||||
packageName: The Toon Shader
|
||||
packageVersion: 1.4.2
|
||||
assetPath: Packages/com.shadercrew.the-toon-shader.3d/Scripts/Resources/TTSReferenceMaterials/NoStyling_03_PBRCell_TTS_RefMat.mat
|
||||
uploadId: 919972
|
||||
+410
@@ -0,0 +1,410 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!114 &-7617746012844444677
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 4
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: NoStyling_04_ColorBasedCell3_TTS_RefMat
|
||||
m_Shader: {fileID: 4800000, guid: 1c6b3902befc80643a83432be8825adc, type: 3}
|
||||
m_ValidKeywords:
|
||||
- _SHADING_COLOR
|
||||
m_InvalidKeywords:
|
||||
- _OUTLINECONSTANTSCREENWIDTH_ON
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 0
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses: []
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _BaseMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BumpMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailAlbedoMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailMask:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailNormalMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _EmissionMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _GradientTex:
|
||||
m_Texture: {fileID: 2800000, guid: 6b923a350a3eec547a2e5e79ada1927b, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _HatchingMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MainTex:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MetallicGlossMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NoiseMap1:
|
||||
m_Texture: {fileID: 2800000, guid: 0528154608ff38a4c845b6622c088ea0, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NoiseMap2:
|
||||
m_Texture: {fileID: 2800000, guid: f40d12a41bafa6749a1465879341fff5, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _OcclusionMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ParallaxMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ShadingGradientCurve:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SpecGlossMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _AdjustStylingDistanceFadeValue: 0
|
||||
- _AlphaClip: 0
|
||||
- _AmbientColorContribution: 0
|
||||
- _AnchorSSToObjectsOrigin: 1
|
||||
- _Blend: 0
|
||||
- _BumpScale: 1
|
||||
- _CastShadowColorMode: 0
|
||||
- _CastShadowsAnchorSSToObjectsOrigin: 1
|
||||
- _CastShadowsCoordinateSystem: 0
|
||||
- _CastShadowsDrawSpace: 1
|
||||
- _CastShadowsHardnessRandomIntensity: 0.159
|
||||
- _CastShadowsHardnessRandomMode: 1
|
||||
- _CastShadowsLengthRandomIntensity: 0.13
|
||||
- _CastShadowsLengthRandomMode: 2
|
||||
- _CastShadowsNoise1Seed: 1
|
||||
- _CastShadowsNoise1Size: 1.79
|
||||
- _CastShadowsNoise2Seed: 1
|
||||
- _CastShadowsNoiseIntensity: 0
|
||||
- _CastShadowsNumberOfCellsHatching: 3
|
||||
- _CastShadowsOpacityRandomIntensity: 0
|
||||
- _CastShadowsOpacityRandomMode: 0
|
||||
- _CastShadowsPolarCenterMode: 0
|
||||
- _CastShadowsSSCameraDistanceScaled: 1
|
||||
- _CastShadowsSmoothness: 0.9
|
||||
- _CastShadowsSpacingRandomIntensity: 1
|
||||
- _CastShadowsSpacingRandomMode: 2
|
||||
- _CastShadowsStrength: 0
|
||||
- _CastShadowsStyle: 1
|
||||
- _CastShadowsThicknessRandomMode: 1
|
||||
- _CastShadowsThicknesshRandomIntensity: 0.145
|
||||
- _CastShadowsUVSet: 0
|
||||
- _CategoryOutline: 0
|
||||
- _CategoryStyling: 0
|
||||
- _CategorySurfaceOptionsAndInputs: 0
|
||||
- _CategoryToonShading: 0
|
||||
- _CellTransitionSmoothness: 0.023
|
||||
- _ClearCoatMask: 0
|
||||
- _ClearCoatSmoothness: 0
|
||||
- _CoordinateSystem: 0
|
||||
- _Cull: 2
|
||||
- _CustomizeCastShadowsColor: 0
|
||||
- _Cutoff: 0.5
|
||||
- _DetailAlbedoMapScale: 1
|
||||
- _DetailNormalMapScale: 1
|
||||
- _DrawSpace: 1
|
||||
- _DstBlend: 0
|
||||
- _EnableAntiAliasing: 0
|
||||
- _EnableCastShadows: 1
|
||||
- _EnableCastShadowsRandomizer: 1
|
||||
- _EnableCastShadowsStyling: 1
|
||||
- _EnableOutline: 1
|
||||
- _EnableRim: 0
|
||||
- _EnableRimRandomizer: 1
|
||||
- _EnableRimStyling: 1
|
||||
- _EnableShadingRandomizer: 1
|
||||
- _EnableShadingStyling: 1
|
||||
- _EnableShadows: 1
|
||||
- _EnableSpecular: 1
|
||||
- _EnableSpecularRandomizer: 1
|
||||
- _EnableSpecularStyling: 1
|
||||
- _EnableStyling: 0
|
||||
- _EnableStylingDistanceFade: 0
|
||||
- _EnableToonShading: 1
|
||||
- _EnvironmentReflections: 1
|
||||
- _GlossMapScale: 0
|
||||
- _Glossiness: 0
|
||||
- _GlossyReflections: 0
|
||||
- _GradientBlendFactor: 1
|
||||
- _GradientBlending: 0
|
||||
- _GradientMode: 0
|
||||
- _HalftonePattern: 1
|
||||
- _HalftonePatternCameraDistanceFade: 0
|
||||
- _HardnessRandomIntensity: 0.159
|
||||
- _HardnessRandomMode: 1
|
||||
- _HatchingAffectedByNormalMap: 1
|
||||
- _HatchingCameraDistanceFade: 0
|
||||
- _IsOptimized: 0
|
||||
- _LengthRandomIntensity: 0.13
|
||||
- _LengthRandomMode: 2
|
||||
- _LightColorContribution: 0
|
||||
- _LightFunction: 1
|
||||
- _LightFunctionLerpValue: 0.5
|
||||
- _LightSource: 0
|
||||
- _Metallic: 0.419
|
||||
- _Mode: 0
|
||||
- _NoiseIntensity: 0
|
||||
- _NoiseTextureQuality: 0
|
||||
- _NumberOfCells: 1
|
||||
- _NumberOfCellsHatching: 3
|
||||
- _OcclusionStrength: 1
|
||||
- _OpacityRandomIntensity: 0
|
||||
- _OpacityRandomMode: 0
|
||||
- _OutlineCameraDistanceImpact: 0
|
||||
- _OutlineConstantScreenWidth: 1
|
||||
- _OutlineDepthOffset: 0
|
||||
- _OutlineWidth: 3.4
|
||||
- _Parallax: 0.005
|
||||
- _PerlinNoiseSize: 0.245
|
||||
- _PolarCenterMode: 0
|
||||
- _QueueControl: 0
|
||||
- _QueueOffset: 0
|
||||
- _ReceiveShadows: 1
|
||||
- _RimAffectedArea: 1
|
||||
- _RimAffectedByNormalMap: 1
|
||||
- _RimAnchorSSToObjectsOrigin: 1
|
||||
- _RimBlending: 0
|
||||
- _RimCoordinateSystem: 0
|
||||
- _RimDrawSpace: 1
|
||||
- _RimHardnessRandomIntensity: 0.159
|
||||
- _RimHardnessRandomMode: 1
|
||||
- _RimLengthRandomIntensity: 0.13
|
||||
- _RimLengthRandomMode: 2
|
||||
- _RimNoise1Seed: 1
|
||||
- _RimNoise1Size: 1.79
|
||||
- _RimNoise2Seed: 1
|
||||
- _RimNoiseIntensity: 0
|
||||
- _RimOpacity: 1
|
||||
- _RimOpacityRandomIntensity: 0
|
||||
- _RimOpacityRandomMode: 0
|
||||
- _RimPerlinNoiseSeed: 1
|
||||
- _RimPerlinNoiseSize: 1
|
||||
- _RimPolarCenterMode: 0
|
||||
- _RimSSCameraDistanceScaled: 1
|
||||
- _RimSize: 0.474
|
||||
- _RimSmoothness: 0.118
|
||||
- _RimSpacingRandomIntensity: 1
|
||||
- _RimSpacingRandomMode: 2
|
||||
- _RimStyle: 1
|
||||
- _RimThicknessRandomMode: 1
|
||||
- _RimThicknesshRandomIntensity: 0.145
|
||||
- _RimUVSet: 0
|
||||
- _RimWhiteNoiseSeed: 1
|
||||
- _SSCameraDistanceScaled: 1
|
||||
- _ShadingAffectByNormalMap: 1
|
||||
- _ShadingAffectedByNormalMap: 1
|
||||
- _ShadingBlending: 0
|
||||
- _ShadingFunction: 0
|
||||
- _ShadingMode: 0
|
||||
- _ShadingNoise1Seed: 1
|
||||
- _ShadingNoise1Size: 1.79
|
||||
- _ShadingNoise2Seed: 1
|
||||
- _ShadingStyle: 1
|
||||
- _ShadingUseLightColors: 1
|
||||
- _ShadowMode: 0
|
||||
- _ShadowsAffectByNormalMap: 0
|
||||
- _Smoothness: 0.128
|
||||
- _SmoothnessSource: 0
|
||||
- _SmoothnessTextureChannel: 0
|
||||
- _SpacingRandomIntensity: 1
|
||||
- _SpacingRandomMode: 2
|
||||
- _SpecularAffectedByNormalMap: 1
|
||||
- _SpecularAnchorSSToObjectsOrigin: 1
|
||||
- _SpecularBlending: 0
|
||||
- _SpecularCoordinateSystem: 0
|
||||
- _SpecularDrawSpace: 1
|
||||
- _SpecularHardnessRandomIntensity: 0.159
|
||||
- _SpecularHardnessRandomMode: 1
|
||||
- _SpecularHighlights: 0
|
||||
- _SpecularLengthRandomIntensity: 0.13
|
||||
- _SpecularLengthRandomMode: 2
|
||||
- _SpecularNoise1Seed: 1
|
||||
- _SpecularNoise1Size: 1.79
|
||||
- _SpecularNoise2Seed: 1
|
||||
- _SpecularNoiseIntensity: 0
|
||||
- _SpecularOpacity: 1
|
||||
- _SpecularOpacityRandomIntensity: 0
|
||||
- _SpecularOpacityRandomMode: 0
|
||||
- _SpecularPerlinNoiseSeed: 1
|
||||
- _SpecularPerlinNoiseSize: 1
|
||||
- _SpecularPolarCenterMode: 0
|
||||
- _SpecularSSCameraDistanceScaled: 1
|
||||
- _SpecularSize: 0.696
|
||||
- _SpecularSmoothness: 0.462
|
||||
- _SpecularSpacingRandomIntensity: 1
|
||||
- _SpecularSpacingRandomMode: 2
|
||||
- _SpecularStyle: 1
|
||||
- _SpecularThicknessRandomMode: 1
|
||||
- _SpecularThicknesshRandomIntensity: 0.145
|
||||
- _SpecularUVSet: 0
|
||||
- _SpecularUseLightColors: 1
|
||||
- _SpecularWhiteNoiseSeed: 1
|
||||
- _SrcBlend: 1
|
||||
- _StylingAdjustDistanceFadeValue: 1
|
||||
- _StylingCastShadowsBlending: 0
|
||||
- _StylingCastShadowsDensity: 13.1
|
||||
- _StylingCastShadowsHalftonesOffset: 0.513
|
||||
- _StylingCastShadowsHalftonesRoundness: 1
|
||||
- _StylingCastShadowsHalftonesRoundnessFalloff: 0
|
||||
- _StylingCastShadowsHardness: 0.822
|
||||
- _StylingCastShadowsInitialDirection: 61
|
||||
- _StylingCastShadowsIsInverted: 0
|
||||
- _StylingCastShadowsOpacity: 1
|
||||
- _StylingCastShadowsOpacityFalloff: 0.355
|
||||
- _StylingCastShadowsRotationBetweenCells: -63
|
||||
- _StylingCastShadowsSmoothness: 1
|
||||
- _StylingCastShadowsSyncWithOtherStyling: 1
|
||||
- _StylingCastShadowsThickness: 1
|
||||
- _StylingCastShadowsThicknessControl: 0
|
||||
- _StylingCastShadowsThicknessFalloff: 0.62
|
||||
- _StylingDFFalloff: 7.8
|
||||
- _StylingDFStartingDistance: 4.38
|
||||
- _StylingDistanceFadeValue: 0.169
|
||||
- _StylingOvermodelingFactor: 1
|
||||
- _StylingRimAffectedArea: 1
|
||||
- _StylingRimBlending: 0
|
||||
- _StylingRimDensity: 13.1
|
||||
- _StylingRimHalftonesOffset: 0.513
|
||||
- _StylingRimHalftonesRoundness: 1
|
||||
- _StylingRimHalftonesRoundnessFalloff: 0
|
||||
- _StylingRimHardness: 0.822
|
||||
- _StylingRimIsInverted: 0
|
||||
- _StylingRimOpacity: 1
|
||||
- _StylingRimOpacityFalloff: 0.355
|
||||
- _StylingRimPosition: 0
|
||||
- _StylingRimRotation: 61
|
||||
- _StylingRimSize: 0.349
|
||||
- _StylingRimSmoothness: 0.583
|
||||
- _StylingRimSyncWithOtherStyling: 1
|
||||
- _StylingRimThickness: 1
|
||||
- _StylingRimThicknessControl: 0
|
||||
- _StylingRimThicknessFalloff: 0.62
|
||||
- _StylingShadingBlending: 0
|
||||
- _StylingShadingDensity: 13.1
|
||||
- _StylingShadingHalftonesOffset: 0.513
|
||||
- _StylingShadingHalftonesRoundness: 1
|
||||
- _StylingShadingHalftonesRoundnessFalloff: 0
|
||||
- _StylingShadingHardness: 0.822
|
||||
- _StylingShadingInitialDirection: 61
|
||||
- _StylingShadingIsInverted: 0
|
||||
- _StylingShadingOpacity: 1
|
||||
- _StylingShadingOpacityFalloff: 0.355
|
||||
- _StylingShadingPosition: 0
|
||||
- _StylingShadingRotationBetweenCells: -63
|
||||
- _StylingShadingSyncWithOtherStyling: 0
|
||||
- _StylingShadingThickness: 1
|
||||
- _StylingShadingThicknessControl: 0
|
||||
- _StylingShadingThicknessFalloff: 0.62
|
||||
- _StylingSpecularBlending: 0
|
||||
- _StylingSpecularCutOutShading: 0
|
||||
- _StylingSpecularDensity: 13.1
|
||||
- _StylingSpecularHalftonesOffset: 0.513
|
||||
- _StylingSpecularHalftonesRoundness: 1
|
||||
- _StylingSpecularHalftonesRoundnessFalloff: 0
|
||||
- _StylingSpecularHardness: 0.822
|
||||
- _StylingSpecularIsInverted: 0
|
||||
- _StylingSpecularOpacity: 1
|
||||
- _StylingSpecularOpacityFalloff: 0.355
|
||||
- _StylingSpecularPosition: 0
|
||||
- _StylingSpecularRotation: 61
|
||||
- _StylingSpecularSize: 0.818
|
||||
- _StylingSpecularSmoothness: 0.206
|
||||
- _StylingSpecularSyncWithOtherStyling: 1
|
||||
- _StylingSpecularThickness: 1
|
||||
- _StylingSpecularThicknessControl: 0
|
||||
- _StylingSpecularThicknessFalloff: 0.62
|
||||
- _StylingSpecularUseLightColors: 0
|
||||
- _StylingTerminatorPosition: 0
|
||||
- _SumLightsBeforePosterization: 1
|
||||
- _Surface: 0
|
||||
- _SyncWithLightPartitioning: 0
|
||||
- _SyncWithRim: 0
|
||||
- _SyncWithSpecular: 0
|
||||
- _TerminatorPosition: 0
|
||||
- _TerminatorSmoothness: 0.141
|
||||
- _TerminatorWidth: 0.173
|
||||
- _TheToonShaderIdentifier: 1
|
||||
- _ThicknessRandomMode: 1
|
||||
- _ThicknesshRandomIntensity: 0.145
|
||||
- _UVSec: 0
|
||||
- _UVSet: 0
|
||||
- _UseAlphaOnlyFromBaseMap: 0
|
||||
- _UseCurve: 1
|
||||
- _UsePBRLighting: 0
|
||||
- _WorkflowMode: 1
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _BaseColor: {r: 1, g: 0.95476407, b: 0.7122642, a: 1}
|
||||
- _CastShadowColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _CastShadowsPolarCenter: {r: 0.54, g: 0.47, b: 0, a: 0}
|
||||
- _Color: {r: 1, g: 0.9529412, b: 0.7137255, a: 1}
|
||||
- _CoreShadowColor: {r: 0.1792453, g: 0.05235627, b: 0, a: 1}
|
||||
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _FormShadowColor: {r: 0.5660378, g: 0.36562595, b: 0.34442863, a: 1}
|
||||
- _OutlineColor: {r: 0.18039216, g: 0.050980397, b: 0, a: 1}
|
||||
- _PolarCenter: {r: 0.54, g: 0.47, b: 0, a: 0}
|
||||
- _RimColor: {r: 0.26143643, g: 0.3518351, b: 0.4433962, a: 1}
|
||||
- _RimPolarCenter: {r: 0.54, g: 0.47, b: 0, a: 0}
|
||||
- _SpecColor: {r: 1, g: 1, b: 1, a: 0.128}
|
||||
- _SpecularColor: {r: 1, g: 0.8885858, b: 0.6462264, a: 1}
|
||||
- _SpecularPolarCenter: {r: 0.54, g: 0.47, b: 0, a: 0}
|
||||
- _StylingCastShadowsColor: {r: 0, g: 0.05882353, b: 0.49019608, a: 1}
|
||||
- _StylingColor: {r: 1, g: 0.15377249, b: 0, a: 1}
|
||||
- _StylingRimColor: {r: 0, g: 0.22719002, b: 1, a: 1}
|
||||
- _StylingSpecularColor: {r: 1, g: 0.9744728, b: 0.8915094, a: 1}
|
||||
m_BuildTextureStacks: []
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
fileFormatVersion: 2
|
||||
guid: d6cac4d9bdfb48e4aa31f251669501e7
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 269238
|
||||
packageName: The Toon Shader
|
||||
packageVersion: 1.4.2
|
||||
assetPath: Packages/com.shadercrew.the-toon-shader.3d/Scripts/Resources/TTSReferenceMaterials/NoStyling_04_ColorBasedCell3_TTS_RefMat.mat
|
||||
uploadId: 919972
|
||||
+436
@@ -0,0 +1,436 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!114 &-7617746012844444677
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 4
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: NoStyling_05_ColorBasedGradient1_TTS_RefMat
|
||||
m_Shader: {fileID: 4800000, guid: 1c6b3902befc80643a83432be8825adc, type: 3}
|
||||
m_ValidKeywords:
|
||||
- _SHADING_COLOR
|
||||
m_InvalidKeywords:
|
||||
- _ANCHORSSTOOBJECTSORIGIN_ON
|
||||
- _CASTSHADOWSANCHORSSTOOBJECTSORIGIN_ON
|
||||
- _CASTSHADOWSSSCAMERADISTANCESCALED_ON
|
||||
- _ENABLECASTSHADOWSRANDOMIZER_ON
|
||||
- _ENABLECASTSHADOWS_ON
|
||||
- _ENABLEOUTLINE_ON
|
||||
- _ENABLERIMRANDOMIZER_ON
|
||||
- _ENABLERIMSTYLING_ON
|
||||
- _ENABLESHADINGRANDOMIZER_ON
|
||||
- _ENABLESHADINGSTYLING_ON
|
||||
- _ENABLESHADOWS_ON
|
||||
- _ENABLESPECULARRANDOMIZER_ON
|
||||
- _ENABLESPECULARSTYLING_ON
|
||||
- _ENABLETOONSHADING_ON
|
||||
- _HATCHINGAFFECTEDBYNORMALMAP_ON
|
||||
- _OUTLINECONSTANTSCREENWIDTH_ON
|
||||
- _RIMAFFECTEDBYNORMALMAP_ON
|
||||
- _RIMANCHORSSTOOBJECTSORIGIN_ON
|
||||
- _RIMSSCAMERADISTANCESCALED_ON
|
||||
- _SHADINGUSELIGHTCOLORS_ON
|
||||
- _SPECULARAFFECTEDBYNORMALMAP_ON
|
||||
- _SPECULARANCHORSSTOOBJECTSORIGIN_ON
|
||||
- _SPECULARSSCAMERADISTANCESCALED_ON
|
||||
- _SPECULARUSELIGHTCOLORS_ON
|
||||
- _SSCAMERADISTANCESCALED_ON
|
||||
- _STYLINGADJUSTDISTANCEFADEVALUE_ON
|
||||
- _SUMLIGHTSBEFOREPOSTERIZATION_ON
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 0
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses: []
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _BaseMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BumpMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailAlbedoMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailMask:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailNormalMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _EmissionMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _GradientTex:
|
||||
m_Texture: {fileID: 2800000, guid: bac2d90f6324edb46aed875d9d7963ee, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _HatchingMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MainTex:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MetallicGlossMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NoiseMap1:
|
||||
m_Texture: {fileID: 2800000, guid: 0528154608ff38a4c845b6622c088ea0, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NoiseMap2:
|
||||
m_Texture: {fileID: 2800000, guid: f40d12a41bafa6749a1465879341fff5, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _OcclusionMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ParallaxMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ShadingGradientCurve:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SpecGlossMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _AdjustStylingDistanceFadeValue: 0
|
||||
- _AlphaClip: 0
|
||||
- _AmbientColorContribution: 0
|
||||
- _AnchorSSToObjectsOrigin: 1
|
||||
- _Blend: 0
|
||||
- _BumpScale: 1
|
||||
- _CastShadowColorMode: 0
|
||||
- _CastShadowsAnchorSSToObjectsOrigin: 1
|
||||
- _CastShadowsCoordinateSystem: 0
|
||||
- _CastShadowsDrawSpace: 1
|
||||
- _CastShadowsHardnessRandomIntensity: 0.159
|
||||
- _CastShadowsHardnessRandomMode: 1
|
||||
- _CastShadowsLengthRandomIntensity: 0.13
|
||||
- _CastShadowsLengthRandomMode: 2
|
||||
- _CastShadowsNoise1Seed: 1
|
||||
- _CastShadowsNoise1Size: 1.79
|
||||
- _CastShadowsNoise2Seed: 1
|
||||
- _CastShadowsNoiseIntensity: 0
|
||||
- _CastShadowsNumberOfCellsHatching: 3
|
||||
- _CastShadowsOpacityRandomIntensity: 0
|
||||
- _CastShadowsOpacityRandomMode: 0
|
||||
- _CastShadowsPolarCenterMode: 0
|
||||
- _CastShadowsSSCameraDistanceScaled: 1
|
||||
- _CastShadowsSmoothness: 0.9
|
||||
- _CastShadowsSpacingRandomIntensity: 1
|
||||
- _CastShadowsSpacingRandomMode: 2
|
||||
- _CastShadowsStrength: 0
|
||||
- _CastShadowsStyle: 1
|
||||
- _CastShadowsThicknessRandomMode: 1
|
||||
- _CastShadowsThicknesshRandomIntensity: 0.145
|
||||
- _CastShadowsUVSet: 0
|
||||
- _CategoryOutline: 0
|
||||
- _CategoryStyling: 0
|
||||
- _CategorySurfaceOptionsAndInputs: 0
|
||||
- _CategoryToonShading: 0
|
||||
- _CellTransitionSmoothness: 0.023
|
||||
- _ClearCoatMask: 0
|
||||
- _ClearCoatSmoothness: 0
|
||||
- _CoordinateSystem: 0
|
||||
- _Cull: 2
|
||||
- _CustomizeCastShadowsColor: 0
|
||||
- _Cutoff: 0.5
|
||||
- _DetailAlbedoMapScale: 1
|
||||
- _DetailNormalMapScale: 1
|
||||
- _DrawSpace: 1
|
||||
- _DstBlend: 0
|
||||
- _EnableAntiAliasing: 0
|
||||
- _EnableCastShadows: 1
|
||||
- _EnableCastShadowsRandomizer: 1
|
||||
- _EnableCastShadowsStyling: 1
|
||||
- _EnableOutline: 1
|
||||
- _EnableRim: 0
|
||||
- _EnableRimRandomizer: 1
|
||||
- _EnableRimStyling: 1
|
||||
- _EnableShadingRandomizer: 1
|
||||
- _EnableShadingStyling: 1
|
||||
- _EnableShadows: 1
|
||||
- _EnableSpecular: 0
|
||||
- _EnableSpecularRandomizer: 1
|
||||
- _EnableSpecularStyling: 1
|
||||
- _EnableStyling: 0
|
||||
- _EnableStylingDistanceFade: 0
|
||||
- _EnableToonShading: 1
|
||||
- _EnvironmentReflections: 1
|
||||
- _GlossMapScale: 0
|
||||
- _Glossiness: 0
|
||||
- _GlossyReflections: 0
|
||||
- _GradientBlendFactor: 1
|
||||
- _GradientBlending: 0
|
||||
- _GradientMode: 0
|
||||
- _HalftonePattern: 1
|
||||
- _HalftonePatternCameraDistanceFade: 0
|
||||
- _HardnessRandomIntensity: 0.159
|
||||
- _HardnessRandomMode: 1
|
||||
- _HatchingAffectedByNormalMap: 1
|
||||
- _HatchingCameraDistanceFade: 0
|
||||
- _IsOptimized: 0
|
||||
- _LengthRandomIntensity: 0.13
|
||||
- _LengthRandomMode: 2
|
||||
- _LightColorContribution: 0
|
||||
- _LightFunction: 1
|
||||
- _LightFunctionLerpValue: 0.5
|
||||
- _LightSource: 0
|
||||
- _Metallic: 0.419
|
||||
- _Mode: 0
|
||||
- _NoiseIntensity: 0
|
||||
- _NoiseTextureQuality: 0
|
||||
- _NumberOfCells: 1
|
||||
- _NumberOfCellsHatching: 3
|
||||
- _OcclusionStrength: 1
|
||||
- _OpacityRandomIntensity: 0
|
||||
- _OpacityRandomMode: 0
|
||||
- _OutlineCameraDistanceImpact: 0
|
||||
- _OutlineConstantScreenWidth: 1
|
||||
- _OutlineDepthOffset: 0
|
||||
- _OutlineWidth: 1.5
|
||||
- _Parallax: 0.005
|
||||
- _PerlinNoiseSize: 0.245
|
||||
- _PolarCenterMode: 0
|
||||
- _QueueControl: 0
|
||||
- _QueueOffset: 0
|
||||
- _ReceiveShadows: 1
|
||||
- _RimAffectedArea: 1
|
||||
- _RimAffectedByNormalMap: 1
|
||||
- _RimAnchorSSToObjectsOrigin: 1
|
||||
- _RimBlending: 0
|
||||
- _RimCoordinateSystem: 0
|
||||
- _RimDrawSpace: 1
|
||||
- _RimHardnessRandomIntensity: 0.159
|
||||
- _RimHardnessRandomMode: 1
|
||||
- _RimLengthRandomIntensity: 0.13
|
||||
- _RimLengthRandomMode: 2
|
||||
- _RimNoise1Seed: 1
|
||||
- _RimNoise1Size: 1.79
|
||||
- _RimNoise2Seed: 1
|
||||
- _RimNoiseIntensity: 0
|
||||
- _RimOpacity: 1
|
||||
- _RimOpacityRandomIntensity: 0
|
||||
- _RimOpacityRandomMode: 0
|
||||
- _RimPerlinNoiseSeed: 1
|
||||
- _RimPerlinNoiseSize: 1
|
||||
- _RimPolarCenterMode: 0
|
||||
- _RimSSCameraDistanceScaled: 1
|
||||
- _RimSize: 0.474
|
||||
- _RimSmoothness: 0.118
|
||||
- _RimSpacingRandomIntensity: 1
|
||||
- _RimSpacingRandomMode: 2
|
||||
- _RimStyle: 1
|
||||
- _RimThicknessRandomMode: 1
|
||||
- _RimThicknesshRandomIntensity: 0.145
|
||||
- _RimUVSet: 0
|
||||
- _RimWhiteNoiseSeed: 1
|
||||
- _SSCameraDistanceScaled: 1
|
||||
- _ShadingAffectByNormalMap: 0
|
||||
- _ShadingAffectedByNormalMap: 0
|
||||
- _ShadingBlending: 0
|
||||
- _ShadingFunction: 1
|
||||
- _ShadingMode: 0
|
||||
- _ShadingNoise1Seed: 1
|
||||
- _ShadingNoise1Size: 1.79
|
||||
- _ShadingNoise2Seed: 1
|
||||
- _ShadingStyle: 1
|
||||
- _ShadingUseLightColors: 1
|
||||
- _ShadowMode: 0
|
||||
- _ShadowsAffectByNormalMap: 0
|
||||
- _Smoothness: 0.128
|
||||
- _SmoothnessSource: 0
|
||||
- _SmoothnessTextureChannel: 0
|
||||
- _SpacingRandomIntensity: 1
|
||||
- _SpacingRandomMode: 2
|
||||
- _SpecularAffectedByNormalMap: 1
|
||||
- _SpecularAnchorSSToObjectsOrigin: 1
|
||||
- _SpecularBlending: 0
|
||||
- _SpecularCoordinateSystem: 0
|
||||
- _SpecularDrawSpace: 1
|
||||
- _SpecularHardnessRandomIntensity: 0.159
|
||||
- _SpecularHardnessRandomMode: 1
|
||||
- _SpecularHighlights: 0
|
||||
- _SpecularLengthRandomIntensity: 0.13
|
||||
- _SpecularLengthRandomMode: 2
|
||||
- _SpecularNoise1Seed: 1
|
||||
- _SpecularNoise1Size: 1.79
|
||||
- _SpecularNoise2Seed: 1
|
||||
- _SpecularNoiseIntensity: 0
|
||||
- _SpecularOpacity: 1
|
||||
- _SpecularOpacityRandomIntensity: 0
|
||||
- _SpecularOpacityRandomMode: 0
|
||||
- _SpecularPerlinNoiseSeed: 1
|
||||
- _SpecularPerlinNoiseSize: 1
|
||||
- _SpecularPolarCenterMode: 0
|
||||
- _SpecularSSCameraDistanceScaled: 1
|
||||
- _SpecularSize: 0.696
|
||||
- _SpecularSmoothness: 0.462
|
||||
- _SpecularSpacingRandomIntensity: 1
|
||||
- _SpecularSpacingRandomMode: 2
|
||||
- _SpecularStyle: 1
|
||||
- _SpecularThicknessRandomMode: 1
|
||||
- _SpecularThicknesshRandomIntensity: 0.145
|
||||
- _SpecularUVSet: 0
|
||||
- _SpecularUseLightColors: 1
|
||||
- _SpecularWhiteNoiseSeed: 1
|
||||
- _SrcBlend: 1
|
||||
- _StylingAdjustDistanceFadeValue: 1
|
||||
- _StylingCastShadowsBlending: 0
|
||||
- _StylingCastShadowsDensity: 13.1
|
||||
- _StylingCastShadowsHalftonesOffset: 0.513
|
||||
- _StylingCastShadowsHalftonesRoundness: 1
|
||||
- _StylingCastShadowsHalftonesRoundnessFalloff: 0
|
||||
- _StylingCastShadowsHardness: 0.822
|
||||
- _StylingCastShadowsInitialDirection: 61
|
||||
- _StylingCastShadowsIsInverted: 0
|
||||
- _StylingCastShadowsOpacity: 1
|
||||
- _StylingCastShadowsOpacityFalloff: 0.355
|
||||
- _StylingCastShadowsRotationBetweenCells: -63
|
||||
- _StylingCastShadowsSmoothness: 1
|
||||
- _StylingCastShadowsSyncWithOtherStyling: 1
|
||||
- _StylingCastShadowsThickness: 1
|
||||
- _StylingCastShadowsThicknessControl: 0
|
||||
- _StylingCastShadowsThicknessFalloff: 0.62
|
||||
- _StylingDFFalloff: 7.8
|
||||
- _StylingDFStartingDistance: 4.38
|
||||
- _StylingDistanceFadeValue: 0.169
|
||||
- _StylingOvermodelingFactor: 1
|
||||
- _StylingRimAffectedArea: 1
|
||||
- _StylingRimBlending: 0
|
||||
- _StylingRimDensity: 13.1
|
||||
- _StylingRimHalftonesOffset: 0.513
|
||||
- _StylingRimHalftonesRoundness: 1
|
||||
- _StylingRimHalftonesRoundnessFalloff: 0
|
||||
- _StylingRimHardness: 0.822
|
||||
- _StylingRimIsInverted: 0
|
||||
- _StylingRimOpacity: 1
|
||||
- _StylingRimOpacityFalloff: 0.355
|
||||
- _StylingRimPosition: 0
|
||||
- _StylingRimRotation: 61
|
||||
- _StylingRimSize: 0.349
|
||||
- _StylingRimSmoothness: 0.583
|
||||
- _StylingRimSyncWithOtherStyling: 1
|
||||
- _StylingRimThickness: 1
|
||||
- _StylingRimThicknessControl: 0
|
||||
- _StylingRimThicknessFalloff: 0.62
|
||||
- _StylingShadingBlending: 0
|
||||
- _StylingShadingDensity: 13.1
|
||||
- _StylingShadingHalftonesOffset: 0.513
|
||||
- _StylingShadingHalftonesRoundness: 1
|
||||
- _StylingShadingHalftonesRoundnessFalloff: 0
|
||||
- _StylingShadingHardness: 0.822
|
||||
- _StylingShadingInitialDirection: 61
|
||||
- _StylingShadingIsInverted: 0
|
||||
- _StylingShadingOpacity: 1
|
||||
- _StylingShadingOpacityFalloff: 0.355
|
||||
- _StylingShadingPosition: 0
|
||||
- _StylingShadingRotationBetweenCells: -63
|
||||
- _StylingShadingSyncWithOtherStyling: 0
|
||||
- _StylingShadingThickness: 1
|
||||
- _StylingShadingThicknessControl: 0
|
||||
- _StylingShadingThicknessFalloff: 0.62
|
||||
- _StylingSpecularBlending: 0
|
||||
- _StylingSpecularCutOutShading: 0
|
||||
- _StylingSpecularDensity: 13.1
|
||||
- _StylingSpecularHalftonesOffset: 0.513
|
||||
- _StylingSpecularHalftonesRoundness: 1
|
||||
- _StylingSpecularHalftonesRoundnessFalloff: 0
|
||||
- _StylingSpecularHardness: 0.822
|
||||
- _StylingSpecularIsInverted: 0
|
||||
- _StylingSpecularOpacity: 1
|
||||
- _StylingSpecularOpacityFalloff: 0.355
|
||||
- _StylingSpecularPosition: 0
|
||||
- _StylingSpecularRotation: 61
|
||||
- _StylingSpecularSize: 0.818
|
||||
- _StylingSpecularSmoothness: 0.206
|
||||
- _StylingSpecularSyncWithOtherStyling: 1
|
||||
- _StylingSpecularThickness: 1
|
||||
- _StylingSpecularThicknessControl: 0
|
||||
- _StylingSpecularThicknessFalloff: 0.62
|
||||
- _StylingSpecularUseLightColors: 0
|
||||
- _StylingTerminatorPosition: 0
|
||||
- _SumLightsBeforePosterization: 1
|
||||
- _Surface: 0
|
||||
- _SyncWithLightPartitioning: 0
|
||||
- _SyncWithRim: 0
|
||||
- _SyncWithSpecular: 0
|
||||
- _TerminatorPosition: 0
|
||||
- _TerminatorSmoothness: 0.141
|
||||
- _TerminatorWidth: 0.173
|
||||
- _TheToonShaderIdentifier: 1
|
||||
- _ThicknessRandomMode: 1
|
||||
- _ThicknesshRandomIntensity: 0.145
|
||||
- _UVSec: 0
|
||||
- _UVSet: 0
|
||||
- _UseAlphaOnlyFromBaseMap: 0
|
||||
- _UseCurve: 1
|
||||
- _UsePBRLighting: 0
|
||||
- _WorkflowMode: 1
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _BaseColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _CastShadowColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _CastShadowsPolarCenter: {r: 0.54, g: 0.47, b: 0, a: 0}
|
||||
- _Color: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _CoreShadowColor: {r: 0.1792453, g: 0.05235627, b: 0, a: 1}
|
||||
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _FormShadowColor: {r: 0.5660378, g: 0.36562595, b: 0.34442863, a: 1}
|
||||
- _OutlineColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _PolarCenter: {r: 0.54, g: 0.47, b: 0, a: 0}
|
||||
- _RimColor: {r: 0.26143643, g: 0.3518351, b: 0.4433962, a: 1}
|
||||
- _RimPolarCenter: {r: 0.54, g: 0.47, b: 0, a: 0}
|
||||
- _SpecColor: {r: 1, g: 1, b: 1, a: 0.128}
|
||||
- _SpecularColor: {r: 1, g: 0.8885858, b: 0.6462264, a: 1}
|
||||
- _SpecularPolarCenter: {r: 0.54, g: 0.47, b: 0, a: 0}
|
||||
- _StylingCastShadowsColor: {r: 0, g: 0.05882353, b: 0.49019608, a: 1}
|
||||
- _StylingColor: {r: 1, g: 0.15377249, b: 0, a: 1}
|
||||
- _StylingRimColor: {r: 0, g: 0.22719002, b: 1, a: 1}
|
||||
- _StylingSpecularColor: {r: 1, g: 0.9744728, b: 0.8915094, a: 1}
|
||||
m_BuildTextureStacks: []
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 9e71e90d45605b5409b85bca1fa90980
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 269238
|
||||
packageName: The Toon Shader
|
||||
packageVersion: 1.4.2
|
||||
assetPath: Packages/com.shadercrew.the-toon-shader.3d/Scripts/Resources/TTSReferenceMaterials/NoStyling_05_ColorBasedGradient1_TTS_RefMat.mat
|
||||
uploadId: 919972
|
||||
+439
@@ -0,0 +1,439 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!114 &-7617746012844444677
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 4
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: NoStyling_06_ColorBasedGradient2_TTS_RefMat
|
||||
m_Shader: {fileID: 4800000, guid: 1c6b3902befc80643a83432be8825adc, type: 3}
|
||||
m_ValidKeywords:
|
||||
- _SHADING_COLOR
|
||||
m_InvalidKeywords:
|
||||
- _ANCHORSSTOOBJECTSORIGIN_ON
|
||||
- _CASTSHADOWSANCHORSSTOOBJECTSORIGIN_ON
|
||||
- _CASTSHADOWSSSCAMERADISTANCESCALED_ON
|
||||
- _ENABLECASTSHADOWSRANDOMIZER_ON
|
||||
- _ENABLECASTSHADOWS_ON
|
||||
- _ENABLEOUTLINE_ON
|
||||
- _ENABLERIMRANDOMIZER_ON
|
||||
- _ENABLERIMSTYLING_ON
|
||||
- _ENABLERIM_ON
|
||||
- _ENABLESHADINGRANDOMIZER_ON
|
||||
- _ENABLESHADINGSTYLING_ON
|
||||
- _ENABLESHADOWS_ON
|
||||
- _ENABLESPECULARRANDOMIZER_ON
|
||||
- _ENABLESPECULARSTYLING_ON
|
||||
- _ENABLESPECULAR_ON
|
||||
- _ENABLETOONSHADING_ON
|
||||
- _HATCHINGAFFECTEDBYNORMALMAP_ON
|
||||
- _OUTLINECONSTANTSCREENWIDTH_ON
|
||||
- _RIMAFFECTEDBYNORMALMAP_ON
|
||||
- _RIMANCHORSSTOOBJECTSORIGIN_ON
|
||||
- _RIMSSCAMERADISTANCESCALED_ON
|
||||
- _SHADINGAFFECTEDBYNORMALMAP_ON
|
||||
- _SHADINGUSELIGHTCOLORS_ON
|
||||
- _SPECULARAFFECTEDBYNORMALMAP_ON
|
||||
- _SPECULARANCHORSSTOOBJECTSORIGIN_ON
|
||||
- _SPECULARSSCAMERADISTANCESCALED_ON
|
||||
- _SPECULARUSELIGHTCOLORS_ON
|
||||
- _SSCAMERADISTANCESCALED_ON
|
||||
- _STYLINGADJUSTDISTANCEFADEVALUE_ON
|
||||
- _SUMLIGHTSBEFOREPOSTERIZATION_ON
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 0
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses: []
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _BaseMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BumpMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailAlbedoMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailMask:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailNormalMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _EmissionMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _GradientTex:
|
||||
m_Texture: {fileID: 2800000, guid: eab01850233e70645a998a3781a4f2b3, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _HatchingMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MainTex:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MetallicGlossMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NoiseMap1:
|
||||
m_Texture: {fileID: 2800000, guid: 0528154608ff38a4c845b6622c088ea0, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NoiseMap2:
|
||||
m_Texture: {fileID: 2800000, guid: f40d12a41bafa6749a1465879341fff5, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _OcclusionMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ParallaxMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ShadingGradientCurve:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SpecGlossMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _AdjustStylingDistanceFadeValue: 0
|
||||
- _AlphaClip: 0
|
||||
- _AmbientColorContribution: 0
|
||||
- _AnchorSSToObjectsOrigin: 1
|
||||
- _Blend: 0
|
||||
- _BumpScale: 1
|
||||
- _CastShadowColorMode: 0
|
||||
- _CastShadowsAnchorSSToObjectsOrigin: 1
|
||||
- _CastShadowsCoordinateSystem: 0
|
||||
- _CastShadowsDrawSpace: 1
|
||||
- _CastShadowsHardnessRandomIntensity: 0.159
|
||||
- _CastShadowsHardnessRandomMode: 1
|
||||
- _CastShadowsLengthRandomIntensity: 0.13
|
||||
- _CastShadowsLengthRandomMode: 2
|
||||
- _CastShadowsNoise1Seed: 1
|
||||
- _CastShadowsNoise1Size: 1.79
|
||||
- _CastShadowsNoise2Seed: 1
|
||||
- _CastShadowsNoiseIntensity: 0
|
||||
- _CastShadowsNumberOfCellsHatching: 3
|
||||
- _CastShadowsOpacityRandomIntensity: 0
|
||||
- _CastShadowsOpacityRandomMode: 0
|
||||
- _CastShadowsPolarCenterMode: 0
|
||||
- _CastShadowsSSCameraDistanceScaled: 1
|
||||
- _CastShadowsSmoothness: 0.9
|
||||
- _CastShadowsSpacingRandomIntensity: 1
|
||||
- _CastShadowsSpacingRandomMode: 2
|
||||
- _CastShadowsStrength: 0
|
||||
- _CastShadowsStyle: 1
|
||||
- _CastShadowsThicknessRandomMode: 1
|
||||
- _CastShadowsThicknesshRandomIntensity: 0.145
|
||||
- _CastShadowsUVSet: 0
|
||||
- _CategoryOutline: 0
|
||||
- _CategoryStyling: 0
|
||||
- _CategorySurfaceOptionsAndInputs: 0
|
||||
- _CategoryToonShading: 0
|
||||
- _CellTransitionSmoothness: 0.023
|
||||
- _ClearCoatMask: 0
|
||||
- _ClearCoatSmoothness: 0
|
||||
- _CoordinateSystem: 0
|
||||
- _Cull: 2
|
||||
- _CustomizeCastShadowsColor: 0
|
||||
- _Cutoff: 0.5
|
||||
- _DetailAlbedoMapScale: 1
|
||||
- _DetailNormalMapScale: 1
|
||||
- _DrawSpace: 1
|
||||
- _DstBlend: 0
|
||||
- _EnableAntiAliasing: 0
|
||||
- _EnableCastShadows: 1
|
||||
- _EnableCastShadowsRandomizer: 1
|
||||
- _EnableCastShadowsStyling: 1
|
||||
- _EnableOutline: 1
|
||||
- _EnableRim: 1
|
||||
- _EnableRimRandomizer: 1
|
||||
- _EnableRimStyling: 1
|
||||
- _EnableShadingRandomizer: 1
|
||||
- _EnableShadingStyling: 1
|
||||
- _EnableShadows: 1
|
||||
- _EnableSpecular: 1
|
||||
- _EnableSpecularRandomizer: 1
|
||||
- _EnableSpecularStyling: 1
|
||||
- _EnableStyling: 0
|
||||
- _EnableStylingDistanceFade: 0
|
||||
- _EnableToonShading: 1
|
||||
- _EnvironmentReflections: 1
|
||||
- _GlossMapScale: 0
|
||||
- _Glossiness: 0
|
||||
- _GlossyReflections: 0
|
||||
- _GradientBlendFactor: 1
|
||||
- _GradientBlending: 0
|
||||
- _GradientMode: 0
|
||||
- _HalftonePattern: 1
|
||||
- _HalftonePatternCameraDistanceFade: 0
|
||||
- _HardnessRandomIntensity: 0.159
|
||||
- _HardnessRandomMode: 1
|
||||
- _HatchingAffectedByNormalMap: 1
|
||||
- _HatchingCameraDistanceFade: 0
|
||||
- _IsOptimized: 0
|
||||
- _LengthRandomIntensity: 0.13
|
||||
- _LengthRandomMode: 2
|
||||
- _LightColorContribution: 0
|
||||
- _LightFunction: 1
|
||||
- _LightFunctionLerpValue: 0.5
|
||||
- _LightSource: 0
|
||||
- _Metallic: 0.419
|
||||
- _Mode: 0
|
||||
- _NoiseIntensity: 0
|
||||
- _NoiseTextureQuality: 0
|
||||
- _NumberOfCells: 1
|
||||
- _NumberOfCellsHatching: 3
|
||||
- _OcclusionStrength: 1
|
||||
- _OpacityRandomIntensity: 0
|
||||
- _OpacityRandomMode: 0
|
||||
- _OutlineCameraDistanceImpact: 0
|
||||
- _OutlineConstantScreenWidth: 1
|
||||
- _OutlineDepthOffset: 0
|
||||
- _OutlineWidth: 1.5
|
||||
- _Parallax: 0.005
|
||||
- _PerlinNoiseSize: 0.245
|
||||
- _PolarCenterMode: 0
|
||||
- _QueueControl: 0
|
||||
- _QueueOffset: 0
|
||||
- _ReceiveShadows: 1
|
||||
- _RimAffectedArea: 2
|
||||
- _RimAffectedByNormalMap: 1
|
||||
- _RimAnchorSSToObjectsOrigin: 1
|
||||
- _RimBlending: 0
|
||||
- _RimCoordinateSystem: 0
|
||||
- _RimDrawSpace: 1
|
||||
- _RimHardnessRandomIntensity: 0.159
|
||||
- _RimHardnessRandomMode: 1
|
||||
- _RimLengthRandomIntensity: 0.13
|
||||
- _RimLengthRandomMode: 2
|
||||
- _RimNoise1Seed: 1
|
||||
- _RimNoise1Size: 1.79
|
||||
- _RimNoise2Seed: 1
|
||||
- _RimNoiseIntensity: 0
|
||||
- _RimOpacity: 1
|
||||
- _RimOpacityRandomIntensity: 0
|
||||
- _RimOpacityRandomMode: 0
|
||||
- _RimPerlinNoiseSeed: 1
|
||||
- _RimPerlinNoiseSize: 1
|
||||
- _RimPolarCenterMode: 0
|
||||
- _RimSSCameraDistanceScaled: 1
|
||||
- _RimSize: 0.372
|
||||
- _RimSmoothness: 0.199
|
||||
- _RimSpacingRandomIntensity: 1
|
||||
- _RimSpacingRandomMode: 2
|
||||
- _RimStyle: 1
|
||||
- _RimThicknessRandomMode: 1
|
||||
- _RimThicknesshRandomIntensity: 0.145
|
||||
- _RimUVSet: 0
|
||||
- _RimWhiteNoiseSeed: 1
|
||||
- _SSCameraDistanceScaled: 1
|
||||
- _ShadingAffectByNormalMap: 1
|
||||
- _ShadingAffectedByNormalMap: 1
|
||||
- _ShadingBlending: 0
|
||||
- _ShadingFunction: 1
|
||||
- _ShadingMode: 0
|
||||
- _ShadingNoise1Seed: 1
|
||||
- _ShadingNoise1Size: 1.79
|
||||
- _ShadingNoise2Seed: 1
|
||||
- _ShadingStyle: 1
|
||||
- _ShadingUseLightColors: 1
|
||||
- _ShadowMode: 0
|
||||
- _ShadowsAffectByNormalMap: 1
|
||||
- _Smoothness: 0.128
|
||||
- _SmoothnessSource: 0
|
||||
- _SmoothnessTextureChannel: 0
|
||||
- _SpacingRandomIntensity: 1
|
||||
- _SpacingRandomMode: 2
|
||||
- _SpecularAffectedByNormalMap: 1
|
||||
- _SpecularAnchorSSToObjectsOrigin: 1
|
||||
- _SpecularBlending: 0
|
||||
- _SpecularCoordinateSystem: 0
|
||||
- _SpecularDrawSpace: 1
|
||||
- _SpecularHardnessRandomIntensity: 0.159
|
||||
- _SpecularHardnessRandomMode: 1
|
||||
- _SpecularHighlights: 0
|
||||
- _SpecularLengthRandomIntensity: 0.13
|
||||
- _SpecularLengthRandomMode: 2
|
||||
- _SpecularNoise1Seed: 1
|
||||
- _SpecularNoise1Size: 1.79
|
||||
- _SpecularNoise2Seed: 1
|
||||
- _SpecularNoiseIntensity: 0
|
||||
- _SpecularOpacity: 1
|
||||
- _SpecularOpacityRandomIntensity: 0
|
||||
- _SpecularOpacityRandomMode: 0
|
||||
- _SpecularPerlinNoiseSeed: 1
|
||||
- _SpecularPerlinNoiseSize: 1
|
||||
- _SpecularPolarCenterMode: 0
|
||||
- _SpecularSSCameraDistanceScaled: 1
|
||||
- _SpecularSize: 0.841
|
||||
- _SpecularSmoothness: 0.031
|
||||
- _SpecularSpacingRandomIntensity: 1
|
||||
- _SpecularSpacingRandomMode: 2
|
||||
- _SpecularStyle: 1
|
||||
- _SpecularThicknessRandomMode: 1
|
||||
- _SpecularThicknesshRandomIntensity: 0.145
|
||||
- _SpecularUVSet: 0
|
||||
- _SpecularUseLightColors: 1
|
||||
- _SpecularWhiteNoiseSeed: 1
|
||||
- _SrcBlend: 1
|
||||
- _StylingAdjustDistanceFadeValue: 1
|
||||
- _StylingCastShadowsBlending: 0
|
||||
- _StylingCastShadowsDensity: 13.1
|
||||
- _StylingCastShadowsHalftonesOffset: 0.513
|
||||
- _StylingCastShadowsHalftonesRoundness: 1
|
||||
- _StylingCastShadowsHalftonesRoundnessFalloff: 0
|
||||
- _StylingCastShadowsHardness: 0.822
|
||||
- _StylingCastShadowsInitialDirection: 61
|
||||
- _StylingCastShadowsIsInverted: 0
|
||||
- _StylingCastShadowsOpacity: 1
|
||||
- _StylingCastShadowsOpacityFalloff: 0.355
|
||||
- _StylingCastShadowsRotationBetweenCells: -63
|
||||
- _StylingCastShadowsSmoothness: 1
|
||||
- _StylingCastShadowsSyncWithOtherStyling: 1
|
||||
- _StylingCastShadowsThickness: 1
|
||||
- _StylingCastShadowsThicknessControl: 0
|
||||
- _StylingCastShadowsThicknessFalloff: 0.62
|
||||
- _StylingDFFalloff: 7.8
|
||||
- _StylingDFStartingDistance: 4.38
|
||||
- _StylingDistanceFadeValue: 0.169
|
||||
- _StylingOvermodelingFactor: 1
|
||||
- _StylingRimAffectedArea: 1
|
||||
- _StylingRimBlending: 0
|
||||
- _StylingRimDensity: 13.1
|
||||
- _StylingRimHalftonesOffset: 0.513
|
||||
- _StylingRimHalftonesRoundness: 1
|
||||
- _StylingRimHalftonesRoundnessFalloff: 0
|
||||
- _StylingRimHardness: 0.822
|
||||
- _StylingRimIsInverted: 0
|
||||
- _StylingRimOpacity: 1
|
||||
- _StylingRimOpacityFalloff: 0.355
|
||||
- _StylingRimPosition: 0
|
||||
- _StylingRimRotation: 61
|
||||
- _StylingRimSize: 0.349
|
||||
- _StylingRimSmoothness: 0.583
|
||||
- _StylingRimSyncWithOtherStyling: 1
|
||||
- _StylingRimThickness: 1
|
||||
- _StylingRimThicknessControl: 0
|
||||
- _StylingRimThicknessFalloff: 0.62
|
||||
- _StylingShadingBlending: 0
|
||||
- _StylingShadingDensity: 13.1
|
||||
- _StylingShadingHalftonesOffset: 0.513
|
||||
- _StylingShadingHalftonesRoundness: 1
|
||||
- _StylingShadingHalftonesRoundnessFalloff: 0
|
||||
- _StylingShadingHardness: 0.822
|
||||
- _StylingShadingInitialDirection: 61
|
||||
- _StylingShadingIsInverted: 0
|
||||
- _StylingShadingOpacity: 1
|
||||
- _StylingShadingOpacityFalloff: 0.355
|
||||
- _StylingShadingPosition: 0
|
||||
- _StylingShadingRotationBetweenCells: -63
|
||||
- _StylingShadingSyncWithOtherStyling: 0
|
||||
- _StylingShadingThickness: 1
|
||||
- _StylingShadingThicknessControl: 0
|
||||
- _StylingShadingThicknessFalloff: 0.62
|
||||
- _StylingSpecularBlending: 0
|
||||
- _StylingSpecularCutOutShading: 0
|
||||
- _StylingSpecularDensity: 13.1
|
||||
- _StylingSpecularHalftonesOffset: 0.513
|
||||
- _StylingSpecularHalftonesRoundness: 1
|
||||
- _StylingSpecularHalftonesRoundnessFalloff: 0
|
||||
- _StylingSpecularHardness: 0.822
|
||||
- _StylingSpecularIsInverted: 0
|
||||
- _StylingSpecularOpacity: 1
|
||||
- _StylingSpecularOpacityFalloff: 0.355
|
||||
- _StylingSpecularPosition: 0
|
||||
- _StylingSpecularRotation: 61
|
||||
- _StylingSpecularSize: 0.818
|
||||
- _StylingSpecularSmoothness: 0.206
|
||||
- _StylingSpecularSyncWithOtherStyling: 1
|
||||
- _StylingSpecularThickness: 1
|
||||
- _StylingSpecularThicknessControl: 0
|
||||
- _StylingSpecularThicknessFalloff: 0.62
|
||||
- _StylingSpecularUseLightColors: 0
|
||||
- _StylingTerminatorPosition: 0
|
||||
- _SumLightsBeforePosterization: 1
|
||||
- _Surface: 0
|
||||
- _SyncWithLightPartitioning: 0
|
||||
- _SyncWithRim: 0
|
||||
- _SyncWithSpecular: 0
|
||||
- _TerminatorPosition: 0
|
||||
- _TerminatorSmoothness: 0.141
|
||||
- _TerminatorWidth: 0.173
|
||||
- _TheToonShaderIdentifier: 1
|
||||
- _ThicknessRandomMode: 1
|
||||
- _ThicknesshRandomIntensity: 0.145
|
||||
- _UVSec: 0
|
||||
- _UVSet: 0
|
||||
- _UseAlphaOnlyFromBaseMap: 0
|
||||
- _UseCurve: 1
|
||||
- _UsePBRLighting: 0
|
||||
- _WorkflowMode: 1
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _BaseColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _CastShadowColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _CastShadowsPolarCenter: {r: 0.54, g: 0.47, b: 0, a: 0}
|
||||
- _Color: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _CoreShadowColor: {r: 0.1792453, g: 0.05235627, b: 0, a: 1}
|
||||
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _FormShadowColor: {r: 0.5660378, g: 0.36562595, b: 0.34442863, a: 1}
|
||||
- _OutlineColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _PolarCenter: {r: 0.54, g: 0.47, b: 0, a: 0}
|
||||
- _RimColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _RimPolarCenter: {r: 0.54, g: 0.47, b: 0, a: 0}
|
||||
- _SpecColor: {r: 1, g: 1, b: 1, a: 0.128}
|
||||
- _SpecularColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _SpecularPolarCenter: {r: 0.54, g: 0.47, b: 0, a: 0}
|
||||
- _StylingCastShadowsColor: {r: 0, g: 0.05882353, b: 0.49019608, a: 1}
|
||||
- _StylingColor: {r: 1, g: 0.15377249, b: 0, a: 1}
|
||||
- _StylingRimColor: {r: 0, g: 0.22719002, b: 1, a: 1}
|
||||
- _StylingSpecularColor: {r: 1, g: 0.9744728, b: 0.8915094, a: 1}
|
||||
m_BuildTextureStacks: []
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 0918f0f726a98a9449612d45fe3aec29
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 269238
|
||||
packageName: The Toon Shader
|
||||
packageVersion: 1.4.2
|
||||
assetPath: Packages/com.shadercrew.the-toon-shader.3d/Scripts/Resources/TTSReferenceMaterials/NoStyling_06_ColorBasedGradient2_TTS_RefMat.mat
|
||||
uploadId: 919972
|
||||
+409
@@ -0,0 +1,409 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!114 &-7617746012844444677
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 4
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: NoStyling_07_ColorBasedGradient3_TTS_RefMat
|
||||
m_Shader: {fileID: 4800000, guid: 1c6b3902befc80643a83432be8825adc, type: 3}
|
||||
m_ValidKeywords:
|
||||
- _SHADING_COLOR
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 0
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses: []
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _BaseMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BumpMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailAlbedoMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailMask:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailNormalMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _EmissionMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _GradientTex:
|
||||
m_Texture: {fileID: 2800000, guid: 502e7a2f1d5083d479302d81b4f9c488, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _HatchingMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MainTex:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MetallicGlossMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NoiseMap1:
|
||||
m_Texture: {fileID: 2800000, guid: 0528154608ff38a4c845b6622c088ea0, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NoiseMap2:
|
||||
m_Texture: {fileID: 2800000, guid: f40d12a41bafa6749a1465879341fff5, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _OcclusionMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ParallaxMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ShadingGradientCurve:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SpecGlossMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _AdjustStylingDistanceFadeValue: 0
|
||||
- _AlphaClip: 0
|
||||
- _AmbientColorContribution: 0
|
||||
- _AnchorSSToObjectsOrigin: 1
|
||||
- _Blend: 0
|
||||
- _BumpScale: 1
|
||||
- _CastShadowColorMode: 0
|
||||
- _CastShadowsAnchorSSToObjectsOrigin: 1
|
||||
- _CastShadowsCoordinateSystem: 0
|
||||
- _CastShadowsDrawSpace: 1
|
||||
- _CastShadowsHardnessRandomIntensity: 0.159
|
||||
- _CastShadowsHardnessRandomMode: 1
|
||||
- _CastShadowsLengthRandomIntensity: 0.13
|
||||
- _CastShadowsLengthRandomMode: 2
|
||||
- _CastShadowsNoise1Seed: 1
|
||||
- _CastShadowsNoise1Size: 1.79
|
||||
- _CastShadowsNoise2Seed: 1
|
||||
- _CastShadowsNoiseIntensity: 0
|
||||
- _CastShadowsNumberOfCellsHatching: 1
|
||||
- _CastShadowsOpacityRandomIntensity: 0
|
||||
- _CastShadowsOpacityRandomMode: 0
|
||||
- _CastShadowsPolarCenterMode: 0
|
||||
- _CastShadowsSSCameraDistanceScaled: 1
|
||||
- _CastShadowsSmoothness: 0.9
|
||||
- _CastShadowsSpacingRandomIntensity: 1
|
||||
- _CastShadowsSpacingRandomMode: 2
|
||||
- _CastShadowsStrength: 0
|
||||
- _CastShadowsStyle: 0
|
||||
- _CastShadowsThicknessRandomMode: 1
|
||||
- _CastShadowsThicknesshRandomIntensity: 0.145
|
||||
- _CastShadowsUVSet: 0
|
||||
- _CategoryOutline: 0
|
||||
- _CategoryStyling: 0
|
||||
- _CategorySurfaceOptionsAndInputs: 0
|
||||
- _CategoryToonShading: 0
|
||||
- _CellTransitionSmoothness: 0.023
|
||||
- _ClearCoatMask: 0
|
||||
- _ClearCoatSmoothness: 0
|
||||
- _CoordinateSystem: 0
|
||||
- _Cull: 2
|
||||
- _CustomizeCastShadowsColor: 0
|
||||
- _Cutoff: 0.5
|
||||
- _DetailAlbedoMapScale: 1
|
||||
- _DetailNormalMapScale: 1
|
||||
- _DrawSpace: 1
|
||||
- _DstBlend: 0
|
||||
- _EnableAntiAliasing: 0
|
||||
- _EnableCastShadows: 1
|
||||
- _EnableCastShadowsRandomizer: 0
|
||||
- _EnableCastShadowsStyling: 1
|
||||
- _EnableOutline: 1
|
||||
- _EnableRim: 1
|
||||
- _EnableRimRandomizer: 0
|
||||
- _EnableRimStyling: 0
|
||||
- _EnableShadingRandomizer: 0
|
||||
- _EnableShadingStyling: 1
|
||||
- _EnableShadows: 1
|
||||
- _EnableSpecular: 0
|
||||
- _EnableSpecularRandomizer: 0
|
||||
- _EnableSpecularStyling: 0
|
||||
- _EnableStyling: 0
|
||||
- _EnableStylingDistanceFade: 0
|
||||
- _EnableToonShading: 1
|
||||
- _EnvironmentReflections: 1
|
||||
- _GlossMapScale: 0
|
||||
- _Glossiness: 0
|
||||
- _GlossyReflections: 0
|
||||
- _GradientBlendFactor: 1
|
||||
- _GradientBlending: 0
|
||||
- _GradientMode: 0
|
||||
- _HalftonePattern: 1
|
||||
- _HalftonePatternCameraDistanceFade: 0
|
||||
- _HardnessRandomIntensity: 0.159
|
||||
- _HardnessRandomMode: 1
|
||||
- _HatchingAffectedByNormalMap: 1
|
||||
- _HatchingCameraDistanceFade: 0
|
||||
- _IsOptimized: 0
|
||||
- _LengthRandomIntensity: 0.13
|
||||
- _LengthRandomMode: 2
|
||||
- _LightColorContribution: 0
|
||||
- _LightFunction: 1
|
||||
- _LightFunctionLerpValue: 0.5
|
||||
- _LightSource: 0
|
||||
- _Metallic: 0.419
|
||||
- _Mode: 0
|
||||
- _NoiseIntensity: 0
|
||||
- _NoiseTextureQuality: 0
|
||||
- _NumberOfCells: 1
|
||||
- _NumberOfCellsHatching: 1
|
||||
- _OcclusionStrength: 1
|
||||
- _OpacityRandomIntensity: 0
|
||||
- _OpacityRandomMode: 0
|
||||
- _OutlineCameraDistanceImpact: 0
|
||||
- _OutlineConstantScreenWidth: 1
|
||||
- _OutlineDepthOffset: 0
|
||||
- _OutlineWidth: 1.5
|
||||
- _Parallax: 0.005
|
||||
- _PerlinNoiseSize: 0.245
|
||||
- _PolarCenterMode: 0
|
||||
- _QueueControl: 0
|
||||
- _QueueOffset: 0
|
||||
- _ReceiveShadows: 1
|
||||
- _RimAffectedArea: 2
|
||||
- _RimAffectedByNormalMap: 1
|
||||
- _RimAnchorSSToObjectsOrigin: 1
|
||||
- _RimBlending: 0
|
||||
- _RimCoordinateSystem: 0
|
||||
- _RimDrawSpace: 1
|
||||
- _RimHardnessRandomIntensity: 0.159
|
||||
- _RimHardnessRandomMode: 1
|
||||
- _RimLengthRandomIntensity: 0.13
|
||||
- _RimLengthRandomMode: 2
|
||||
- _RimNoise1Seed: 1
|
||||
- _RimNoise1Size: 1.79
|
||||
- _RimNoise2Seed: 1
|
||||
- _RimNoiseIntensity: 0
|
||||
- _RimOpacity: 1
|
||||
- _RimOpacityRandomIntensity: 0
|
||||
- _RimOpacityRandomMode: 0
|
||||
- _RimPerlinNoiseSeed: 1
|
||||
- _RimPerlinNoiseSize: 1
|
||||
- _RimPolarCenterMode: 0
|
||||
- _RimSSCameraDistanceScaled: 1
|
||||
- _RimSize: 0.132
|
||||
- _RimSmoothness: 0.095
|
||||
- _RimSpacingRandomIntensity: 1
|
||||
- _RimSpacingRandomMode: 2
|
||||
- _RimStyle: 0
|
||||
- _RimThicknessRandomMode: 1
|
||||
- _RimThicknesshRandomIntensity: 0.145
|
||||
- _RimUVSet: 0
|
||||
- _RimWhiteNoiseSeed: 1
|
||||
- _SSCameraDistanceScaled: 1
|
||||
- _ShadingAffectByNormalMap: 1
|
||||
- _ShadingAffectedByNormalMap: 1
|
||||
- _ShadingBlending: 0
|
||||
- _ShadingFunction: 1
|
||||
- _ShadingMode: 0
|
||||
- _ShadingNoise1Seed: 1
|
||||
- _ShadingNoise1Size: 1.79
|
||||
- _ShadingNoise2Seed: 1
|
||||
- _ShadingStyle: 0
|
||||
- _ShadingUseLightColors: 1
|
||||
- _ShadowMode: 0
|
||||
- _ShadowsAffectByNormalMap: 1
|
||||
- _Smoothness: 0.128
|
||||
- _SmoothnessSource: 0
|
||||
- _SmoothnessTextureChannel: 0
|
||||
- _SpacingRandomIntensity: 1
|
||||
- _SpacingRandomMode: 2
|
||||
- _SpecularAffectedByNormalMap: 1
|
||||
- _SpecularAnchorSSToObjectsOrigin: 1
|
||||
- _SpecularBlending: 0
|
||||
- _SpecularCoordinateSystem: 0
|
||||
- _SpecularDrawSpace: 1
|
||||
- _SpecularHardnessRandomIntensity: 0.159
|
||||
- _SpecularHardnessRandomMode: 1
|
||||
- _SpecularHighlights: 0
|
||||
- _SpecularLengthRandomIntensity: 0.13
|
||||
- _SpecularLengthRandomMode: 2
|
||||
- _SpecularNoise1Seed: 1
|
||||
- _SpecularNoise1Size: 1.79
|
||||
- _SpecularNoise2Seed: 1
|
||||
- _SpecularNoiseIntensity: 0
|
||||
- _SpecularOpacity: 1
|
||||
- _SpecularOpacityRandomIntensity: 0
|
||||
- _SpecularOpacityRandomMode: 0
|
||||
- _SpecularPerlinNoiseSeed: 1
|
||||
- _SpecularPerlinNoiseSize: 1
|
||||
- _SpecularPolarCenterMode: 0
|
||||
- _SpecularSSCameraDistanceScaled: 1
|
||||
- _SpecularSize: 0.841
|
||||
- _SpecularSmoothness: 0.031
|
||||
- _SpecularSpacingRandomIntensity: 1
|
||||
- _SpecularSpacingRandomMode: 2
|
||||
- _SpecularStyle: 0
|
||||
- _SpecularThicknessRandomMode: 1
|
||||
- _SpecularThicknesshRandomIntensity: 0.145
|
||||
- _SpecularUVSet: 0
|
||||
- _SpecularUseLightColors: 1
|
||||
- _SpecularWhiteNoiseSeed: 1
|
||||
- _SrcBlend: 1
|
||||
- _StylingAdjustDistanceFadeValue: 1
|
||||
- _StylingCastShadowsBlending: 0
|
||||
- _StylingCastShadowsDensity: 26.53
|
||||
- _StylingCastShadowsHalftonesOffset: 0.513
|
||||
- _StylingCastShadowsHalftonesRoundness: 1
|
||||
- _StylingCastShadowsHalftonesRoundnessFalloff: 0
|
||||
- _StylingCastShadowsHardness: 0.822
|
||||
- _StylingCastShadowsInitialDirection: 61
|
||||
- _StylingCastShadowsIsInverted: 0
|
||||
- _StylingCastShadowsOpacity: 1
|
||||
- _StylingCastShadowsOpacityFalloff: 0
|
||||
- _StylingCastShadowsRotationBetweenCells: -63
|
||||
- _StylingCastShadowsSmoothness: 1
|
||||
- _StylingCastShadowsSyncWithOtherStyling: 1
|
||||
- _StylingCastShadowsThickness: 0.688
|
||||
- _StylingCastShadowsThicknessControl: 0
|
||||
- _StylingCastShadowsThicknessFalloff: 0
|
||||
- _StylingDFFalloff: 7.8
|
||||
- _StylingDFStartingDistance: 4.38
|
||||
- _StylingDistanceFadeValue: 0.169
|
||||
- _StylingOvermodelingFactor: 0.488
|
||||
- _StylingRimAffectedArea: 1
|
||||
- _StylingRimBlending: 0
|
||||
- _StylingRimDensity: 13.1
|
||||
- _StylingRimHalftonesOffset: 0.513
|
||||
- _StylingRimHalftonesRoundness: 1
|
||||
- _StylingRimHalftonesRoundnessFalloff: 0
|
||||
- _StylingRimHardness: 0.822
|
||||
- _StylingRimIsInverted: 0
|
||||
- _StylingRimOpacity: 1
|
||||
- _StylingRimOpacityFalloff: 0.355
|
||||
- _StylingRimPosition: 0
|
||||
- _StylingRimRotation: 61
|
||||
- _StylingRimSize: 0.349
|
||||
- _StylingRimSmoothness: 0.583
|
||||
- _StylingRimSyncWithOtherStyling: 1
|
||||
- _StylingRimThickness: 0.335
|
||||
- _StylingRimThicknessControl: 0
|
||||
- _StylingRimThicknessFalloff: 0
|
||||
- _StylingShadingBlending: 0
|
||||
- _StylingShadingDensity: 26.53
|
||||
- _StylingShadingHalftonesOffset: 0.513
|
||||
- _StylingShadingHalftonesRoundness: 1
|
||||
- _StylingShadingHalftonesRoundnessFalloff: 0
|
||||
- _StylingShadingHardness: 0.822
|
||||
- _StylingShadingInitialDirection: 61
|
||||
- _StylingShadingIsInverted: 0
|
||||
- _StylingShadingOpacity: 1
|
||||
- _StylingShadingOpacityFalloff: 0
|
||||
- _StylingShadingPosition: 0
|
||||
- _StylingShadingRotationBetweenCells: -63
|
||||
- _StylingShadingSyncWithOtherStyling: 0
|
||||
- _StylingShadingThickness: 0.688
|
||||
- _StylingShadingThicknessControl: 0
|
||||
- _StylingShadingThicknessFalloff: 0
|
||||
- _StylingSpecularBlending: 0
|
||||
- _StylingSpecularCutOutShading: 0
|
||||
- _StylingSpecularDensity: 26.53
|
||||
- _StylingSpecularHalftonesOffset: 0.513
|
||||
- _StylingSpecularHalftonesRoundness: 1
|
||||
- _StylingSpecularHalftonesRoundnessFalloff: 0
|
||||
- _StylingSpecularHardness: 0.822
|
||||
- _StylingSpecularIsInverted: 0
|
||||
- _StylingSpecularOpacity: 1
|
||||
- _StylingSpecularOpacityFalloff: 0
|
||||
- _StylingSpecularPosition: 0
|
||||
- _StylingSpecularRotation: 61
|
||||
- _StylingSpecularSize: 0.867
|
||||
- _StylingSpecularSmoothness: 0.356
|
||||
- _StylingSpecularSyncWithOtherStyling: 1
|
||||
- _StylingSpecularThickness: 0.688
|
||||
- _StylingSpecularThicknessControl: 0
|
||||
- _StylingSpecularThicknessFalloff: 0
|
||||
- _StylingSpecularUseLightColors: 0
|
||||
- _StylingTerminatorPosition: 0
|
||||
- _SumLightsBeforePosterization: 1
|
||||
- _Surface: 0
|
||||
- _SyncWithLightPartitioning: 0
|
||||
- _SyncWithRim: 0
|
||||
- _SyncWithSpecular: 0
|
||||
- _TerminatorPosition: 0
|
||||
- _TerminatorSmoothness: 0.141
|
||||
- _TerminatorWidth: 0.173
|
||||
- _TheToonShaderIdentifier: 1
|
||||
- _ThicknessRandomMode: 1
|
||||
- _ThicknesshRandomIntensity: 0.145
|
||||
- _UVSec: 0
|
||||
- _UVSet: 0
|
||||
- _UseAlphaOnlyFromBaseMap: 0
|
||||
- _UseCurve: 1
|
||||
- _UsePBRLighting: 0
|
||||
- _WorkflowMode: 1
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _BaseColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _CastShadowColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _CastShadowsPolarCenter: {r: 0.54, g: 0.47, b: 0, a: 0}
|
||||
- _Color: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _CoreShadowColor: {r: 0.1792453, g: 0.05235627, b: 0, a: 1}
|
||||
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _FormShadowColor: {r: 0.5660378, g: 0.36562595, b: 0.34442863, a: 1}
|
||||
- _OutlineColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _PolarCenter: {r: 0.54, g: 0.47, b: 0, a: 0}
|
||||
- _RimColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _RimPolarCenter: {r: 0.54, g: 0.47, b: 0, a: 0}
|
||||
- _SpecColor: {r: 1, g: 1, b: 1, a: 0.128}
|
||||
- _SpecularColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _SpecularPolarCenter: {r: 0.54, g: 0.47, b: 0, a: 0}
|
||||
- _StylingCastShadowsColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _StylingColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _StylingRimColor: {r: 0, g: 0.22719002, b: 1, a: 1}
|
||||
- _StylingSpecularColor: {r: 1, g: 0.9744728, b: 0.8915094, a: 1}
|
||||
m_BuildTextureStacks: []
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 4ca4a1a6cbbf97045a0983090f8611b5
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 269238
|
||||
packageName: The Toon Shader
|
||||
packageVersion: 1.4.2
|
||||
assetPath: Packages/com.shadercrew.the-toon-shader.3d/Scripts/Resources/TTSReferenceMaterials/NoStyling_07_ColorBasedGradient3_TTS_RefMat.mat
|
||||
uploadId: 919972
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 8cafebc017a83134bbdf3366a064dcc5
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 8b1b79f92083b5f4a91fe80e24b1549f
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
+1122
File diff suppressed because it is too large
Load Diff
+18
@@ -0,0 +1,18 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 2fdb28ddf015c3d429b3becce74925bc
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 269238
|
||||
packageName: The Toon Shader
|
||||
packageVersion: 1.4.2
|
||||
assetPath: Packages/com.shadercrew.the-toon-shader.3d/Scripts/Runtime/Components/ReplaceOrSynchronizeToonSettings.cs
|
||||
uploadId: 919972
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 3dfa051ec8aa9964da83b8075fefb344
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,22 @@
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
namespace ShaderCrew.TheToonShader
|
||||
{
|
||||
[AddComponentMenu(Strings.COMPONENTMENU_RPHELPER)]
|
||||
public class RPHelper : MonoBehaviour
|
||||
{
|
||||
// Start is called before the first frame update
|
||||
void Start()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
// Update is called once per frame
|
||||
void Update()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 8419a087f9c025c41bb2ff196e3e3263
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 269238
|
||||
packageName: The Toon Shader
|
||||
packageVersion: 1.4.2
|
||||
assetPath: Packages/com.shadercrew.the-toon-shader.3d/Scripts/Runtime/Demo/RPHelper.cs
|
||||
uploadId: 919972
|
||||
@@ -0,0 +1,22 @@
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
namespace ShaderCrew.TheToonShader
|
||||
{
|
||||
[AddComponentMenu(Strings.COMPONENTMENU_RPHELPER)]
|
||||
public class RPHelperToonSTS : MonoBehaviour
|
||||
{
|
||||
// Start is called before the first frame update
|
||||
void Start()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
// Update is called once per frame
|
||||
void Update()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
+18
@@ -0,0 +1,18 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 32a440361d691db41869163e7753c447
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 269238
|
||||
packageName: The Toon Shader
|
||||
packageVersion: 1.4.2
|
||||
assetPath: Packages/com.shadercrew.the-toon-shader.3d/Scripts/Runtime/Demo/RPHelperToonSTS.cs
|
||||
uploadId: 919972
|
||||
+30
@@ -0,0 +1,30 @@
|
||||
{
|
||||
"name": "ShaderCrew.TheToonShader.3D.Runtime",
|
||||
"rootNamespace": "",
|
||||
"references": [
|
||||
"GUID:15fc0a57446b3144c949da3e2b9737a9",
|
||||
"GUID:516a5277b8c3b4f4c8cc86b77b1591ff",
|
||||
"GUID:771e886dc8ff2624f9fb1e98ab52afc2",
|
||||
"GUID:83e2004185752be4684414733d22e0e7"
|
||||
],
|
||||
"includePlatforms": [],
|
||||
"excludePlatforms": [],
|
||||
"allowUnsafeCode": false,
|
||||
"overrideReferences": false,
|
||||
"precompiledReferences": [],
|
||||
"autoReferenced": true,
|
||||
"defineConstraints": [],
|
||||
"versionDefines": [
|
||||
{
|
||||
"name": "com.unity.render-pipelines.universal",
|
||||
"expression": "",
|
||||
"define": "USING_URP"
|
||||
},
|
||||
{
|
||||
"name": "com.unity.render-pipelines.high-definition",
|
||||
"expression": "",
|
||||
"define": "USING_HDRP"
|
||||
}
|
||||
],
|
||||
"noEngineReferences": false
|
||||
}
|
||||
+14
@@ -0,0 +1,14 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 41ed22f5c389313468c5d7b2eff1a2c6
|
||||
AssemblyDefinitionImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 269238
|
||||
packageName: The Toon Shader
|
||||
packageVersion: 1.4.2
|
||||
assetPath: Packages/com.shadercrew.the-toon-shader.3d/Scripts/Runtime/ShaderCrew.TheToonShader.3D.Runtime.asmdef
|
||||
uploadId: 919972
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: f6f38a83d6b4fd0468c6b1127df369b6
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 7bee192214168fe40982b0f3e4f4413f
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 853a8be8551772f44936e361da6f62b9
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
+8591
File diff suppressed because it is too large
Load Diff
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user