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.Collections.Generic; | |
using System.Linq; | |
using UnityEngine; | |
namespace PronamaChan | |
{ | |
public class FaceUpdate : MonoBehaviour | |
{ | |
public SkinnedMeshRenderer SkinnedMeshRenderer; |
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.Collections.Generic; | |
using System.Linq; | |
using System.Text.RegularExpressions; | |
using UnityEngine; | |
namespace PronamaChan | |
{ | |
public class HairExtender : MonoBehaviour | |
{ | |
//後髪上部伸縮値 |
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; | |
namespace HaikuProgram | |
{ | |
internal class Program | |
{ | |
private static void Main(string[] args) | |
{ | |
while (true) |
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 PronamaChan | |
{ | |
public class EyeSettings : MonoBehaviour | |
{ | |
public Transform EyeL; | |
public Transform EyeR; | |
public SkinnedMeshRenderer SkinnedMesh; | |
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
using System.Collections.Generic; | |
using System.Linq; | |
using UnityEngine; | |
namespace UnityChan | |
{ | |
public class FaceUpdate2 : MonoBehaviour | |
{ | |
public SkinnedMeshRenderer BlwDef; | |
public SkinnedMeshRenderer EyeDef; |
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.Collections.Generic; | |
using System.Linq; | |
using UnityEngine; | |
namespace NakaSis | |
{ | |
public class FaceUpdate : MonoBehaviour | |
{ | |
public SkinnedMeshRenderer EyeBall; | |
public SkinnedMeshRenderer Face; |
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" { | |
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 | |
_StencilRefMain("Stcl Ref Main", Range(0, 255)) = 128 | |
} | |
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.Linq; | |
using UnityEditor; | |
using UnityEngine; | |
public class SubMeshExporter : ScriptableObject | |
{ | |
// Use this for initialization | |
private void Start() | |
{ | |
} |
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; | |
public class EyeRotator : MonoBehaviour | |
{ | |
public Vector3 RotationL; | |
public Vector3 RotationR; | |
private Animator _animator; | |
// Use this for initialization |
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/ChromaKey" { | |
Properties{ | |
_KeyColor("Key Color", Color) = (0,1,0) | |
_Near("Near", Range(0, 2)) = 0.2 | |
_MainTex("Base (RGB) Trans (A)", 2D) = "white" {} | |
} | |
SubShader{ | |
Tags{ "Queue" = "Transparent" "IgnoreProjector" = "True" "RenderType" = "Transparent" } | |
LOD 200 |
OlderNewer