This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Shader "Onoty3D/Toon/Basic Cutout" { | |
Properties{ | |
_Color("Main Color", Color) = (.5,.5,.5,1) | |
_MainTex("Base (RGB)", 2D) = "white" {} | |
_ToonShade("ToonShader Cubemap(RGB)", CUBE) = "" { } | |
_Cutoff("Alpha Cutoff", Range(0,1)) = 0.5 | |
} | |
SubShader{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using UnityEngine; | |
namespace PronamaChan | |
{ | |
public class EquipmentsChanger : MonoBehaviour | |
{ | |
public Material TransparentMaterial; | |
public SkinnedMeshRenderer SkinnedMesh; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using UnityEngine; | |
namespace Onoty3D | |
{ | |
[ExecuteInEditMode] | |
public class OnePointColorEffect : MonoBehaviour | |
{ | |
public Material Material; | |
public Color TargetColor = Color.white; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using UnityEngine; | |
namespace Onoty3D | |
{ | |
[ExecuteInEditMode] | |
public class DepthImageEffect : MonoBehaviour | |
{ | |
public enum YDirectionType | |
{ | |
Forward, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using UnityEngine; | |
namespace PronamaChan | |
{ | |
public class EquipmentsChanger2 : MonoBehaviour | |
{ | |
public Material TransparentMaterial; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Shader "Onoty3D/Toon/Phong Tessellation/Lit" { | |
Properties { | |
_Color ("Main Color", Color) = (0.5,0.5,0.5,1) | |
_MainTex ("Base (RGB)", 2D) = "white" {} | |
_Ramp ("Toon Ramp (RGB)", 2D) = "gray" {} | |
[Enum(OFF,0,FRONT,1,BACK,2)] _CullMode("Cull Mode", int) = 2 //OFF/FRONT/BACK | |
_EdgeLength("Edge length", Range(2,50)) = 5 | |
_Phong("Phong Strengh", Range(0,1)) = 0.5 | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Linq; | |
using UnityEngine; | |
namespace PronamaChan | |
{ | |
public class TongueMorph : MonoBehaviour | |
{ | |
private class DefaultVertex | |
{ | |
public int Index { get; set; } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Shader "Onoty3D/Toon/Lit ZowaZowa" { | |
Properties{ | |
_Color("Main Color", Color) = (0.5,0.5,0.5,1) | |
_MainTex("Base (RGB)", 2D) = "white" {} | |
_Ramp("Toon Ramp (RGB)", 2D) = "gray" {} | |
[Enum(OFF,0,FRONT,1,BACK,2)] _CullMode("Cull Mode", int) = 2 //OFF/FRONT/BACK | |
_YBorder("YBorder", float) = 0 | |
_YRange("YRange", float) = 0.005 | |
_Volume("Volume", float) = 0.001 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using UnityEngine; | |
namespace Onoty3D | |
{ | |
public class BlendShapeValueChangerYuno : MonoBehaviour | |
{ | |
/// <summary> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Shader "PronamaChan/Toon/Lit Decal" { | |
Properties { | |
_Color("Main Color", Color) = (0.5,0.5,0.5,1) | |
_DecalColor ("Decal Color", Color) = (0.5,0.5,0.5,1) | |
_MainTex ("Base (RGB)", 2D) = "white" {} | |
_DecalTex("Decal (RGBA)", 2D) = "black" {} | |
_Ramp ("Toon Ramp (RGB)", 2D) = "gray" {} | |
[Enum(OFF,0,FRONT,1,BACK,2)] _CullMode("Cull Mode", int) = 2 //OFF/FRONT/BACK | |
} |