version 2.4.2

This commit is contained in:
Sean Lu
2024-10-30 16:02:07 +08:00
parent 5ac252bf2e
commit dfdcd0fd7f
156 changed files with 200491 additions and 4960 deletions

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 6bf905bc26255a9438a252cd62d84c4b
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: 2344ab9d663d25f4c95e72e96a84ad49
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,73 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
using VIVE.OpenXR.EyeTracker;
namespace VIVE.OpenXR.Samples.OpenXRInput
{
public class EyeTrackerTest : MonoBehaviour
{
const string LOG_TAG = "VIVE.OpenXR.Samples.OpenXRInput.EyeTrackerText";
void DEBUG(string msg) { Debug.Log(LOG_TAG + " " + msg); }
public Transform leftGazeTransform = null;
public Transform rightGazeTransform = null;
private Text m_Text = null;
private void Awake()
{
m_Text = GetComponent<Text>();
}
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
m_Text.text = "[Eye Tracker]\n";
m_Text.text += "Left Gaze:\n";
XR_HTC_eye_tracker.Interop.GetEyeGazeData(out XrSingleEyeGazeDataHTC[] out_gazes);
XrSingleEyeGazeDataHTC leftGaze = out_gazes[(int)XrEyePositionHTC.XR_EYE_POSITION_LEFT_HTC];
m_Text.text += "isValid: " + leftGaze.isValid + "\n";
m_Text.text += "position ( " + leftGaze.gazePose.position.ToUnityVector().x.ToString("F4") + ", "+leftGaze.gazePose.position.ToUnityVector().y.ToString("F4") + ", " + leftGaze.gazePose.position.ToUnityVector().z.ToString("F4") + ")\n";
m_Text.text += "rotation ( " + leftGaze.gazePose.orientation.ToOpenXRQuaternion().x.ToString("F4") + ", "+leftGaze.gazePose.orientation.ToOpenXRQuaternion().y.ToString("F4") + ", " + leftGaze.gazePose.orientation.ToOpenXRQuaternion().z.ToString("F4") + ", " + leftGaze.gazePose.orientation.ToOpenXRQuaternion().w.ToString("F4") + ")\n";
leftGazeTransform.position = leftGaze.gazePose.position.ToUnityVector();
leftGazeTransform.rotation = leftGaze.gazePose.orientation.ToUnityQuaternion();
m_Text.text += "Right Gaze:\n";
XrSingleEyeGazeDataHTC rightGaze = out_gazes[(int)XrEyePositionHTC.XR_EYE_POSITION_RIGHT_HTC];
m_Text.text += "isValid: " + rightGaze.isValid + "\n";
m_Text.text += "position ( " + rightGaze.gazePose.position.ToUnityVector().x.ToString("F4") + ", " + rightGaze.gazePose.position.ToUnityVector().y.ToString("F4") + ", " + rightGaze.gazePose.position.ToUnityVector().z.ToString("F4") + ")\n";
m_Text.text += "rotation ( " + rightGaze.gazePose.orientation.ToOpenXRQuaternion().x.ToString("F4") + ", " +rightGaze.gazePose.orientation.ToOpenXRQuaternion().y.ToString("F4") + ", " + rightGaze.gazePose.orientation.ToOpenXRQuaternion().z.ToString("F4") + ", " + rightGaze.gazePose.orientation.ToOpenXRQuaternion().w.ToString("F4") + ")\n\n";
rightGazeTransform.position = rightGaze.gazePose.position.ToUnityVector();
rightGazeTransform.rotation = rightGaze.gazePose.orientation.ToUnityQuaternion();
m_Text.text += "Left Pupil:\n";
XR_HTC_eye_tracker.Interop.GetEyePupilData(out XrSingleEyePupilDataHTC[] out_pupils);
XrSingleEyePupilDataHTC leftPupil = out_pupils[(int)XrEyePositionHTC.XR_EYE_POSITION_LEFT_HTC];
m_Text.text += "isDiameterValid: " + leftPupil.isDiameterValid + "\tisPositionValid: " + leftPupil.isPositionValid+ "\n";
m_Text.text += "pupilDiameter: " + leftPupil.pupilDiameter + "\n";
m_Text.text += "position ( " + leftPupil.pupilPosition.x.ToString("F4") + ", " + leftPupil.pupilPosition.y.ToString("F4") + ")\n";
//m_Text.text += "tracked: " + tracked + "\n";
m_Text.text += "Right Pupil:\n";
XrSingleEyePupilDataHTC rightPupil = out_pupils[(int)XrEyePositionHTC.XR_EYE_POSITION_RIGHT_HTC];
m_Text.text += "isDiameterValid: " + rightPupil.isDiameterValid + "\tisPositionValid: " + rightPupil.isPositionValid + "\n";
m_Text.text += "pupilDiameter: " + rightPupil.pupilDiameter + "\n";
m_Text.text += "position ( " + rightPupil.pupilPosition.x.ToString("F4") + ", " + rightPupil.pupilPosition.y.ToString("F4") + ")\n\n";
m_Text.text += "Left eye geometric:\n";
XR_HTC_eye_tracker.Interop.GetEyeGeometricData(out XrSingleEyeGeometricDataHTC[] out_geometrics);
XrSingleEyeGeometricDataHTC leftGeometric = out_geometrics[(int)XrEyePositionHTC.XR_EYE_POSITION_LEFT_HTC];
m_Text.text += "isValid: " + leftGeometric.isValid + "\n";
m_Text.text += "Openness: " + leftGeometric.eyeOpenness.ToString("F3") + "\tSqueeze: " + leftGeometric.eyeSqueeze.ToString("F3") + "\tWide: " + leftGeometric.eyeWide.ToString("F3") + "\n";
m_Text.text += "Right eye geometric:\n";
XrSingleEyeGeometricDataHTC rightGeometric = out_geometrics[(int)XrEyePositionHTC.XR_EYE_POSITION_RIGHT_HTC];
m_Text.text += "isValid: " + rightGeometric.isValid + "\n";
m_Text.text += "Openness: " + rightGeometric.eyeOpenness.ToString("F3") + "\tSqueeze: " + rightGeometric.eyeSqueeze.ToString("F3") + "\tWide: " + rightGeometric.eyeWide.ToString("F3") + "\n";
}
}
}

View File

@@ -0,0 +1,11 @@
fileFormatVersion: 2
guid: b27f3d0a0c3073b4c9a86bcd624fa797
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 5a26d428ba154534381ad1cb49980f27
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 2c006ff37d2c37840b4aafecf69afb2a
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 9000000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 44250ae5896983747bdd3ea514ce6e0f
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,401 @@
%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: 976e99d37c093ce4c9b249c81c2cbdd5, type: 3}
m_Name: AvatarDescription
m_EditorClassIdentifier:
armStretch: 0.05
legStretch: 0.05
upperArmTwist: 0.5
lowerArmTwist: 0.5
upperLegTwist: 0.5
lowerLegTwist: 0.5
feetSpacing: 0
hasTranslationDoF: 0
human:
- humanBone: 0
boneName: J_Bip_C_Hips
useDefaultValues: 1
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
center: {x: 0, y: 0, z: 0}
axisLength: 0
- humanBone: 1
boneName: J_Bip_L_UpperLeg
useDefaultValues: 1
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
center: {x: 0, y: 0, z: 0}
axisLength: 0
- humanBone: 2
boneName: J_Bip_R_UpperLeg
useDefaultValues: 1
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
center: {x: 0, y: 0, z: 0}
axisLength: 0
- humanBone: 3
boneName: J_Bip_L_LowerLeg
useDefaultValues: 1
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
center: {x: 0, y: 0, z: 0}
axisLength: 0
- humanBone: 4
boneName: J_Bip_R_LowerLeg
useDefaultValues: 1
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
center: {x: 0, y: 0, z: 0}
axisLength: 0
- humanBone: 5
boneName: J_Bip_L_Foot
useDefaultValues: 1
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
center: {x: 0, y: 0, z: 0}
axisLength: 0
- humanBone: 6
boneName: J_Bip_R_Foot
useDefaultValues: 1
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
center: {x: 0, y: 0, z: 0}
axisLength: 0
- humanBone: 7
boneName: J_Bip_C_Spine
useDefaultValues: 1
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
center: {x: 0, y: 0, z: 0}
axisLength: 0
- humanBone: 8
boneName: J_Bip_C_Chest
useDefaultValues: 1
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
center: {x: 0, y: 0, z: 0}
axisLength: 0
- humanBone: 9
boneName: J_Bip_C_Neck
useDefaultValues: 1
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
center: {x: 0, y: 0, z: 0}
axisLength: 0
- humanBone: 10
boneName: J_Bip_C_Head
useDefaultValues: 1
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
center: {x: 0, y: 0, z: 0}
axisLength: 0
- humanBone: 11
boneName: J_Bip_L_Shoulder
useDefaultValues: 1
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
center: {x: 0, y: 0, z: 0}
axisLength: 0
- humanBone: 12
boneName: J_Bip_R_Shoulder
useDefaultValues: 1
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
center: {x: 0, y: 0, z: 0}
axisLength: 0
- humanBone: 13
boneName: J_Bip_L_UpperArm
useDefaultValues: 1
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
center: {x: 0, y: 0, z: 0}
axisLength: 0
- humanBone: 14
boneName: J_Bip_R_UpperArm
useDefaultValues: 1
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
center: {x: 0, y: 0, z: 0}
axisLength: 0
- humanBone: 15
boneName: J_Bip_L_LowerArm
useDefaultValues: 1
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
center: {x: 0, y: 0, z: 0}
axisLength: 0
- humanBone: 16
boneName: J_Bip_R_LowerArm
useDefaultValues: 1
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
center: {x: 0, y: 0, z: 0}
axisLength: 0
- humanBone: 17
boneName: J_Bip_L_Hand
useDefaultValues: 1
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
center: {x: 0, y: 0, z: 0}
axisLength: 0
- humanBone: 18
boneName: J_Bip_R_Hand
useDefaultValues: 1
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
center: {x: 0, y: 0, z: 0}
axisLength: 0
- humanBone: 19
boneName: J_Bip_L_ToeBase
useDefaultValues: 1
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
center: {x: 0, y: 0, z: 0}
axisLength: 0
- humanBone: 20
boneName: J_Bip_R_ToeBase
useDefaultValues: 1
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
center: {x: 0, y: 0, z: 0}
axisLength: 0
- humanBone: 21
boneName: J_Adj_L_FaceEye
useDefaultValues: 1
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
center: {x: 0, y: 0, z: 0}
axisLength: 0
- humanBone: 22
boneName: J_Adj_R_FaceEye
useDefaultValues: 1
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
center: {x: 0, y: 0, z: 0}
axisLength: 0
- humanBone: 24
boneName: J_Bip_L_Thumb1
useDefaultValues: 1
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
center: {x: 0, y: 0, z: 0}
axisLength: 0
- humanBone: 25
boneName: J_Bip_L_Thumb2
useDefaultValues: 1
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
center: {x: 0, y: 0, z: 0}
axisLength: 0
- humanBone: 26
boneName: J_Bip_L_Thumb3
useDefaultValues: 1
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
center: {x: 0, y: 0, z: 0}
axisLength: 0
- humanBone: 27
boneName: J_Bip_L_Index1
useDefaultValues: 1
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
center: {x: 0, y: 0, z: 0}
axisLength: 0
- humanBone: 28
boneName: J_Bip_L_Index2
useDefaultValues: 1
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
center: {x: 0, y: 0, z: 0}
axisLength: 0
- humanBone: 29
boneName: J_Bip_L_Index3
useDefaultValues: 1
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
center: {x: 0, y: 0, z: 0}
axisLength: 0
- humanBone: 30
boneName: J_Bip_L_Middle1
useDefaultValues: 1
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
center: {x: 0, y: 0, z: 0}
axisLength: 0
- humanBone: 31
boneName: J_Bip_L_Middle2
useDefaultValues: 1
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
center: {x: 0, y: 0, z: 0}
axisLength: 0
- humanBone: 32
boneName: J_Bip_L_Middle3
useDefaultValues: 1
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
center: {x: 0, y: 0, z: 0}
axisLength: 0
- humanBone: 33
boneName: J_Bip_L_Ring1
useDefaultValues: 1
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
center: {x: 0, y: 0, z: 0}
axisLength: 0
- humanBone: 34
boneName: J_Bip_L_Ring2
useDefaultValues: 1
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
center: {x: 0, y: 0, z: 0}
axisLength: 0
- humanBone: 35
boneName: J_Bip_L_Ring3
useDefaultValues: 1
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
center: {x: 0, y: 0, z: 0}
axisLength: 0
- humanBone: 36
boneName: J_Bip_L_Little1
useDefaultValues: 1
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
center: {x: 0, y: 0, z: 0}
axisLength: 0
- humanBone: 37
boneName: J_Bip_L_Little2
useDefaultValues: 1
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
center: {x: 0, y: 0, z: 0}
axisLength: 0
- humanBone: 38
boneName: J_Bip_L_Little3
useDefaultValues: 1
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
center: {x: 0, y: 0, z: 0}
axisLength: 0
- humanBone: 39
boneName: J_Bip_R_Thumb1
useDefaultValues: 1
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
center: {x: 0, y: 0, z: 0}
axisLength: 0
- humanBone: 40
boneName: J_Bip_R_Thumb2
useDefaultValues: 1
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
center: {x: 0, y: 0, z: 0}
axisLength: 0
- humanBone: 41
boneName: J_Bip_R_Thumb3
useDefaultValues: 1
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
center: {x: 0, y: 0, z: 0}
axisLength: 0
- humanBone: 42
boneName: J_Bip_R_Index1
useDefaultValues: 1
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
center: {x: 0, y: 0, z: 0}
axisLength: 0
- humanBone: 43
boneName: J_Bip_R_Index2
useDefaultValues: 1
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
center: {x: 0, y: 0, z: 0}
axisLength: 0
- humanBone: 44
boneName: J_Bip_R_Index3
useDefaultValues: 1
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
center: {x: 0, y: 0, z: 0}
axisLength: 0
- humanBone: 45
boneName: J_Bip_R_Middle1
useDefaultValues: 1
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
center: {x: 0, y: 0, z: 0}
axisLength: 0
- humanBone: 46
boneName: J_Bip_R_Middle2
useDefaultValues: 1
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
center: {x: 0, y: 0, z: 0}
axisLength: 0
- humanBone: 47
boneName: J_Bip_R_Middle3
useDefaultValues: 1
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
center: {x: 0, y: 0, z: 0}
axisLength: 0
- humanBone: 48
boneName: J_Bip_R_Ring1
useDefaultValues: 1
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
center: {x: 0, y: 0, z: 0}
axisLength: 0
- humanBone: 49
boneName: J_Bip_R_Ring2
useDefaultValues: 1
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
center: {x: 0, y: 0, z: 0}
axisLength: 0
- humanBone: 50
boneName: J_Bip_R_Ring3
useDefaultValues: 1
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
center: {x: 0, y: 0, z: 0}
axisLength: 0
- humanBone: 51
boneName: J_Bip_R_Little1
useDefaultValues: 1
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
center: {x: 0, y: 0, z: 0}
axisLength: 0
- humanBone: 52
boneName: J_Bip_R_Little2
useDefaultValues: 1
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
center: {x: 0, y: 0, z: 0}
axisLength: 0
- humanBone: 53
boneName: J_Bip_R_Little3
useDefaultValues: 1
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
center: {x: 0, y: 0, z: 0}
axisLength: 0
- humanBone: 54
boneName: J_Bip_C_UpperChest
useDefaultValues: 1
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
center: {x: 0, y: 0, z: 0}
axisLength: 0

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: a5bf90c2c77df5945833811969ae9b7f
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 0c485a52287f0ec42a6deba26ecada77
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,23 @@
%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: 37562b39ff933b245ac2f35d87edbcd6, type: 3}
m_Name: BlendShape.A
m_EditorClassIdentifier:
m_prefab: {fileID: 0}
BlendShapeName: A
Preset: 2
Values:
- RelativePath: Face
Index: 39
Weight: 100
MaterialValues: []
IsBinary: 0

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: ab5f9d46c1bc285478033c10ad6eecc7
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,23 @@
%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: 37562b39ff933b245ac2f35d87edbcd6, type: 3}
m_Name: BlendShape.Angry
m_EditorClassIdentifier:
m_prefab: {fileID: 0}
BlendShapeName: Angry
Preset: 9
Values:
- RelativePath: Face
Index: 1
Weight: 100
MaterialValues: []
IsBinary: 0

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 1c4788811eb904041af9407ab3c8e942
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,23 @@
%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: 37562b39ff933b245ac2f35d87edbcd6, type: 3}
m_Name: BlendShape.Blink
m_EditorClassIdentifier:
m_prefab: {fileID: 0}
BlendShapeName: Blink
Preset: 7
Values:
- RelativePath: Face
Index: 13
Weight: 100
MaterialValues: []
IsBinary: 0

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: bb794829910d46440bbc6648409f5c67
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,23 @@
%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: 37562b39ff933b245ac2f35d87edbcd6, type: 3}
m_Name: BlendShape.Blink_L
m_EditorClassIdentifier:
m_prefab: {fileID: 0}
BlendShapeName: Blink_L
Preset: 16
Values:
- RelativePath: Face
Index: 15
Weight: 100
MaterialValues: []
IsBinary: 0

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 3bc730086f9f3be439b86f7f7a65608c
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,23 @@
%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: 37562b39ff933b245ac2f35d87edbcd6, type: 3}
m_Name: BlendShape.Blink_R
m_EditorClassIdentifier:
m_prefab: {fileID: 0}
BlendShapeName: Blink_R
Preset: 17
Values:
- RelativePath: Face
Index: 14
Weight: 100
MaterialValues: []
IsBinary: 0

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 1b1461287e216d14f82a8dc3084ea1da
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,23 @@
%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: 37562b39ff933b245ac2f35d87edbcd6, type: 3}
m_Name: BlendShape.E
m_EditorClassIdentifier:
m_prefab: {fileID: 0}
BlendShapeName: E
Preset: 5
Values:
- RelativePath: Face
Index: 42
Weight: 100
MaterialValues: []
IsBinary: 0

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: ef0a624466fca9f44afc54a99046b4e9
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,23 @@
%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: 37562b39ff933b245ac2f35d87edbcd6, type: 3}
m_Name: BlendShape.Fun
m_EditorClassIdentifier:
m_prefab: {fileID: 0}
BlendShapeName: Fun
Preset: 11
Values:
- RelativePath: Face
Index: 2
Weight: 100
MaterialValues: []
IsBinary: 0

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 0d9fe17b64a0b194bb62c1ccc4e09cd9
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,23 @@
%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: 37562b39ff933b245ac2f35d87edbcd6, type: 3}
m_Name: BlendShape.I
m_EditorClassIdentifier:
m_prefab: {fileID: 0}
BlendShapeName: I
Preset: 3
Values:
- RelativePath: Face
Index: 40
Weight: 100
MaterialValues: []
IsBinary: 0

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 31b04c29fd904544298eed36491c1bc1
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,23 @@
%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: 37562b39ff933b245ac2f35d87edbcd6, type: 3}
m_Name: BlendShape.Joy
m_EditorClassIdentifier:
m_prefab: {fileID: 0}
BlendShapeName: Joy
Preset: 8
Values:
- RelativePath: Face
Index: 3
Weight: 100
MaterialValues: []
IsBinary: 0

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: e22e6492180a60f44801c3a785e70db6
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,23 @@
%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: 37562b39ff933b245ac2f35d87edbcd6, type: 3}
m_Name: BlendShape.Neutral
m_EditorClassIdentifier:
m_prefab: {fileID: 0}
BlendShapeName: Neutral
Preset: 1
Values:
- RelativePath: Face
Index: 0
Weight: 100
MaterialValues: []
IsBinary: 0

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 7667fe9100954d44fbef6a8902a2330e
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,23 @@
%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: 37562b39ff933b245ac2f35d87edbcd6, type: 3}
m_Name: BlendShape.O
m_EditorClassIdentifier:
m_prefab: {fileID: 0}
BlendShapeName: O
Preset: 6
Values:
- RelativePath: Face
Index: 43
Weight: 100
MaterialValues: []
IsBinary: 0

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: d59f216bd0a305d47b90f9483a21f47b
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,23 @@
%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: 37562b39ff933b245ac2f35d87edbcd6, type: 3}
m_Name: BlendShape.Sorrow
m_EditorClassIdentifier:
m_prefab: {fileID: 0}
BlendShapeName: Sorrow
Preset: 10
Values:
- RelativePath: Face
Index: 4
Weight: 100
MaterialValues: []
IsBinary: 0

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: d6e600e244aee1f41a19d8df4fe8105e
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,23 @@
%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: 37562b39ff933b245ac2f35d87edbcd6, type: 3}
m_Name: BlendShape.Surprised
m_EditorClassIdentifier:
m_prefab: {fileID: 0}
BlendShapeName: Surprised
Preset: 0
Values:
- RelativePath: Face
Index: 5
Weight: 100
MaterialValues: []
IsBinary: 0

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 700271c57903adc40a9c8fe348a9f57c
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,23 @@
%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: 37562b39ff933b245ac2f35d87edbcd6, type: 3}
m_Name: BlendShape.U
m_EditorClassIdentifier:
m_prefab: {fileID: 0}
BlendShapeName: U
Preset: 4
Values:
- RelativePath: Face
Index: 41
Weight: 100
MaterialValues: []
IsBinary: 0

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: a15f8161a9fac284a9280498d7ced15c
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,33 @@
%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: 329dca3bf78fcdd42b2df941673db76f, type: 3}
m_Name: BlendShape
m_EditorClassIdentifier:
Clips:
- {fileID: 11400000, guid: 7667fe9100954d44fbef6a8902a2330e, type: 2}
- {fileID: 11400000, guid: ab5f9d46c1bc285478033c10ad6eecc7, type: 2}
- {fileID: 11400000, guid: 31b04c29fd904544298eed36491c1bc1, type: 2}
- {fileID: 11400000, guid: a15f8161a9fac284a9280498d7ced15c, type: 2}
- {fileID: 11400000, guid: ef0a624466fca9f44afc54a99046b4e9, type: 2}
- {fileID: 11400000, guid: d59f216bd0a305d47b90f9483a21f47b, type: 2}
- {fileID: 11400000, guid: bb794829910d46440bbc6648409f5c67, type: 2}
- {fileID: 11400000, guid: 3bc730086f9f3be439b86f7f7a65608c, type: 2}
- {fileID: 11400000, guid: 1b1461287e216d14f82a8dc3084ea1da, type: 2}
- {fileID: 11400000, guid: 1c4788811eb904041af9407ab3c8e942, type: 2}
- {fileID: 11400000, guid: 0d9fe17b64a0b194bb62c1ccc4e09cd9, type: 2}
- {fileID: 11400000, guid: e22e6492180a60f44801c3a785e70db6, type: 2}
- {fileID: 11400000, guid: d6e600e244aee1f41a19d8df4fe8105e, type: 2}
- {fileID: 11400000, guid: 700271c57903adc40a9c8fe348a9f57c, type: 2}
- {fileID: 11400000, guid: 725440a3d971e284c995a012e8120630, type: 2}
- {fileID: 11400000, guid: 87a85157593e4634fa9dff0675efa701, type: 2}
- {fileID: 11400000, guid: d98ff0e344fe9d64799e4149cefe16f2, type: 2}
- {fileID: 11400000, guid: 374efa830e4f47448abced6925685e8f, type: 2}

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: a331d4eb110c35241958eba78ee21821
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,20 @@
%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: 37562b39ff933b245ac2f35d87edbcd6, type: 3}
m_Name: LookDown
m_EditorClassIdentifier:
m_prefab: {fileID: 0}
BlendShapeName: LookDown
Preset: 13
Values: []
MaterialValues: []
IsBinary: 0

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 87a85157593e4634fa9dff0675efa701
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,20 @@
%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: 37562b39ff933b245ac2f35d87edbcd6, type: 3}
m_Name: LookLeft
m_EditorClassIdentifier:
m_prefab: {fileID: 0}
BlendShapeName: LookLeft
Preset: 14
Values: []
MaterialValues: []
IsBinary: 0

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: d98ff0e344fe9d64799e4149cefe16f2
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,20 @@
%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: 37562b39ff933b245ac2f35d87edbcd6, type: 3}
m_Name: LookRight
m_EditorClassIdentifier:
m_prefab: {fileID: 0}
BlendShapeName: LookRight
Preset: 15
Values: []
MaterialValues: []
IsBinary: 0

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 374efa830e4f47448abced6925685e8f
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,20 @@
%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: 37562b39ff933b245ac2f35d87edbcd6, type: 3}
m_Name: LookUp
m_EditorClassIdentifier:
m_prefab: {fileID: 0}
BlendShapeName: LookUp
Preset: 12
Values: []
MaterialValues: []
IsBinary: 0

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 725440a3d971e284c995a012e8120630
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 3b036164831c9924e8cb4ee9b1ad6fb6
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,104 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!21 &2100000
Material:
serializedVersion: 8
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: N00_000_00_Body_00_SKIN (Instance)
m_Shader: {fileID: 4800000, guid: 1a97144e4ad27a04aafd70f7b915cedb, type: 3}
m_ValidKeywords:
- MTOON_OUTLINE_COLOR_FIXED
- MTOON_OUTLINE_WIDTH_WORLD
- _ALPHATEST_ON
- _NORMALMAP
m_InvalidKeywords: []
m_LightmapFlags: 4
m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0
m_CustomRenderQueue: 2450
stringTagMap:
RenderType: TransparentCutout
disabledShaderPasses: []
m_SavedProperties:
serializedVersion: 3
m_TexEnvs:
- _BumpMap:
m_Texture: {fileID: 2800000, guid: d381a1d1cc371294e9499fb41010ba2c, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _EmissionMap:
m_Texture: {fileID: 2800000, guid: 37d485fb3c77dec4e97d02654d5d0634, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _MainTex:
m_Texture: {fileID: 2800000, guid: 158236e8016b54b4fb7002417060e027, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _OutlineWidthTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _ReceiveShadowTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _RimTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _ShadeTexture:
m_Texture: {fileID: 2800000, guid: 158236e8016b54b4fb7002417060e027, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _ShadingGradeTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _SphereAdd:
m_Texture: {fileID: 2800000, guid: 5547de9e7ef01c34b9975cf613f5afcc, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _UvAnimMaskTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
m_Ints: []
m_Floats:
- _AlphaToMask: 1
- _BlendMode: 1
- _BumpScale: 1
- _CullMode: 2
- _Cutoff: 0.5
- _DebugMode: 0
- _DstBlend: 0
- _IndirectLightIntensity: 0.1
- _LightColorAttenuation: 0
- _MToonVersion: 39
- _OutlineColorMode: 0
- _OutlineCullMode: 1
- _OutlineLightingMix: 1
- _OutlineScaledMaxDistance: 4.63
- _OutlineWidth: 0.08
- _OutlineWidthMode: 1
- _ReceiveShadowRate: 1
- _RimFresnelPower: 100
- _RimLift: 0.1
- _RimLightingMix: 0
- _ShadeShift: 0
- _ShadeToony: 0.9
- _ShadingGradeRate: 1
- _SrcBlend: 1
- _UvAnimRotation: 0
- _UvAnimScrollX: 0
- _UvAnimScrollY: 0
- _ZWrite: 1
m_Colors:
- _Color: {r: 1, g: 1, b: 1, a: 1}
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
- _OutlineColor: {r: 0.2745098, g: 0.090196066, b: 0.12549016, a: 1}
- _RimColor: {r: 0.25, g: 0.25, b: 0.25, a: 1}
- _ShadeColor: {r: 0.9686274, g: 0.8117647, b: 0.85882354, a: 1}
m_BuildTextureStacks: []

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: fc0a13dc4b24657438545fbfeaf0ca74
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 2100000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,102 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!21 &2100000
Material:
serializedVersion: 8
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: N00_000_00_EyeHighlight_00_EYE (Instance)
m_Shader: {fileID: 4800000, guid: 1a97144e4ad27a04aafd70f7b915cedb, type: 3}
m_ValidKeywords:
- _ALPHABLEND_ON
- _NORMALMAP
m_InvalidKeywords: []
m_LightmapFlags: 4
m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0
m_CustomRenderQueue: 3500
stringTagMap:
RenderType: Transparent
disabledShaderPasses: []
m_SavedProperties:
serializedVersion: 3
m_TexEnvs:
- _BumpMap:
m_Texture: {fileID: 2800000, guid: a19d9a065953acc47b8a08eb2d1ac4b3, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _EmissionMap:
m_Texture: {fileID: 2800000, guid: 37d485fb3c77dec4e97d02654d5d0634, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _MainTex:
m_Texture: {fileID: 2800000, guid: 51f707660cfe45d4e862621bcc724f93, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _OutlineWidthTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _ReceiveShadowTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _RimTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _ShadeTexture:
m_Texture: {fileID: 2800000, guid: 51f707660cfe45d4e862621bcc724f93, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _ShadingGradeTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _SphereAdd:
m_Texture: {fileID: 2800000, guid: 37d485fb3c77dec4e97d02654d5d0634, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _UvAnimMaskTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
m_Ints: []
m_Floats:
- _AlphaToMask: 0
- _BlendMode: 2
- _BumpScale: 1
- _CullMode: 0
- _Cutoff: 0.5
- _DebugMode: 0
- _DstBlend: 10
- _IndirectLightIntensity: 0.1
- _LightColorAttenuation: 0
- _MToonVersion: 39
- _OutlineColorMode: 1
- _OutlineCullMode: 1
- _OutlineLightingMix: 1
- _OutlineScaledMaxDistance: 1
- _OutlineWidth: 0.08020833
- _OutlineWidthMode: 0
- _ReceiveShadowRate: 1
- _RimFresnelPower: 100
- _RimLift: 0.1
- _RimLightingMix: 0
- _ShadeShift: -0.26666665
- _ShadeToony: 1
- _ShadingGradeRate: 1
- _SrcBlend: 5
- _UvAnimRotation: 0
- _UvAnimScrollX: 0
- _UvAnimScrollY: 0
- _ZWrite: 0
m_Colors:
- _Color: {r: 1, g: 1, b: 1, a: 1}
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
- _OutlineColor: {r: 0.2745098, g: 0.090196066, b: 0.12549016, a: 1}
- _RimColor: {r: 0, g: 0, b: 0, a: 1}
- _ShadeColor: {r: 1, g: 1, b: 1, a: 1}
m_BuildTextureStacks: []

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: e05f8c047e81d784ab5aa3637f87409b
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 2100000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,102 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!21 &2100000
Material:
serializedVersion: 8
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: N00_000_00_EyeIris_00_EYE (Instance)
m_Shader: {fileID: 4800000, guid: 1a97144e4ad27a04aafd70f7b915cedb, type: 3}
m_ValidKeywords:
- _ALPHABLEND_ON
- _NORMALMAP
m_InvalidKeywords: []
m_LightmapFlags: 4
m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0
m_CustomRenderQueue: 3000
stringTagMap:
RenderType: Transparent
disabledShaderPasses: []
m_SavedProperties:
serializedVersion: 3
m_TexEnvs:
- _BumpMap:
m_Texture: {fileID: 2800000, guid: a19d9a065953acc47b8a08eb2d1ac4b3, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _EmissionMap:
m_Texture: {fileID: 2800000, guid: 37d485fb3c77dec4e97d02654d5d0634, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _MainTex:
m_Texture: {fileID: 2800000, guid: d0de6f6e42c310645867487abe78c6ac, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _OutlineWidthTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _ReceiveShadowTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _RimTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _ShadeTexture:
m_Texture: {fileID: 2800000, guid: d0de6f6e42c310645867487abe78c6ac, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _ShadingGradeTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _SphereAdd:
m_Texture: {fileID: 2800000, guid: 37d485fb3c77dec4e97d02654d5d0634, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _UvAnimMaskTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
m_Ints: []
m_Floats:
- _AlphaToMask: 0
- _BlendMode: 2
- _BumpScale: 1
- _CullMode: 2
- _Cutoff: 0.5
- _DebugMode: 0
- _DstBlend: 10
- _IndirectLightIntensity: 0.1
- _LightColorAttenuation: 0
- _MToonVersion: 39
- _OutlineColorMode: 1
- _OutlineCullMode: 1
- _OutlineLightingMix: 1
- _OutlineScaledMaxDistance: 1
- _OutlineWidth: 0.08020833
- _OutlineWidthMode: 0
- _ReceiveShadowRate: 1
- _RimFresnelPower: 100
- _RimLift: 0.1
- _RimLightingMix: 0
- _ShadeShift: -0.26666665
- _ShadeToony: 1
- _ShadingGradeRate: 1
- _SrcBlend: 5
- _UvAnimRotation: 0
- _UvAnimScrollX: 0
- _UvAnimScrollY: 0
- _ZWrite: 0
m_Colors:
- _Color: {r: 1, g: 1, b: 1, a: 1}
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
- _OutlineColor: {r: 0.2745098, g: 0.090196066, b: 0.12549016, a: 1}
- _RimColor: {r: 0, g: 0, b: 0, a: 1}
- _ShadeColor: {r: 1, g: 1, b: 1, a: 1}
m_BuildTextureStacks: []

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 444d43ea65307ea448b2339d182e1aba
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 2100000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,102 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!21 &2100000
Material:
serializedVersion: 8
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: N00_000_00_EyeWhite_00_EYE (Instance)
m_Shader: {fileID: 4800000, guid: 1a97144e4ad27a04aafd70f7b915cedb, type: 3}
m_ValidKeywords:
- _ALPHATEST_ON
- _NORMALMAP
m_InvalidKeywords: []
m_LightmapFlags: 4
m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0
m_CustomRenderQueue: 2450
stringTagMap:
RenderType: TransparentCutout
disabledShaderPasses: []
m_SavedProperties:
serializedVersion: 3
m_TexEnvs:
- _BumpMap:
m_Texture: {fileID: 2800000, guid: a19d9a065953acc47b8a08eb2d1ac4b3, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _EmissionMap:
m_Texture: {fileID: 2800000, guid: 37d485fb3c77dec4e97d02654d5d0634, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _MainTex:
m_Texture: {fileID: 2800000, guid: 9d762cc3cfaf803419992822ddfa5a19, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _OutlineWidthTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _ReceiveShadowTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _RimTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _ShadeTexture:
m_Texture: {fileID: 2800000, guid: 9d762cc3cfaf803419992822ddfa5a19, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _ShadingGradeTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _SphereAdd:
m_Texture: {fileID: 2800000, guid: 37d485fb3c77dec4e97d02654d5d0634, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _UvAnimMaskTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
m_Ints: []
m_Floats:
- _AlphaToMask: 1
- _BlendMode: 1
- _BumpScale: 1
- _CullMode: 2
- _Cutoff: 0.5
- _DebugMode: 0
- _DstBlend: 0
- _IndirectLightIntensity: 0.1
- _LightColorAttenuation: 0
- _MToonVersion: 39
- _OutlineColorMode: 1
- _OutlineCullMode: 1
- _OutlineLightingMix: 1
- _OutlineScaledMaxDistance: 1
- _OutlineWidth: 0.08020833
- _OutlineWidthMode: 0
- _ReceiveShadowRate: 1
- _RimFresnelPower: 100
- _RimLift: 0.1
- _RimLightingMix: 0
- _ShadeShift: -0.26666665
- _ShadeToony: 1
- _ShadingGradeRate: 1
- _SrcBlend: 1
- _UvAnimRotation: 0
- _UvAnimScrollX: 0
- _UvAnimScrollY: 0
- _ZWrite: 1
m_Colors:
- _Color: {r: 1, g: 1, b: 1, a: 1}
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
- _OutlineColor: {r: 0.2745098, g: 0.090196066, b: 0.12549016, a: 1}
- _RimColor: {r: 0, g: 0, b: 0, a: 1}
- _ShadeColor: {r: 1, g: 1, b: 1, a: 1}
m_BuildTextureStacks: []

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 3c1d5c9dd9f01834392f4ba5656e478c
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 2100000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,102 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!21 &2100000
Material:
serializedVersion: 8
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: N00_000_00_FaceBrow_00_FACE (Instance)
m_Shader: {fileID: 4800000, guid: 1a97144e4ad27a04aafd70f7b915cedb, type: 3}
m_ValidKeywords:
- _ALPHABLEND_ON
- _NORMALMAP
m_InvalidKeywords: []
m_LightmapFlags: 4
m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0
m_CustomRenderQueue: 4000
stringTagMap:
RenderType: Transparent
disabledShaderPasses: []
m_SavedProperties:
serializedVersion: 3
m_TexEnvs:
- _BumpMap:
m_Texture: {fileID: 2800000, guid: a19d9a065953acc47b8a08eb2d1ac4b3, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _EmissionMap:
m_Texture: {fileID: 2800000, guid: 37d485fb3c77dec4e97d02654d5d0634, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _MainTex:
m_Texture: {fileID: 2800000, guid: 1a9fb9c9c2c34df4f8fe5e3dee342e47, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _OutlineWidthTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _ReceiveShadowTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _RimTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _ShadeTexture:
m_Texture: {fileID: 2800000, guid: 1a9fb9c9c2c34df4f8fe5e3dee342e47, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _ShadingGradeTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _SphereAdd:
m_Texture: {fileID: 2800000, guid: 5547de9e7ef01c34b9975cf613f5afcc, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _UvAnimMaskTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
m_Ints: []
m_Floats:
- _AlphaToMask: 0
- _BlendMode: 2
- _BumpScale: 1
- _CullMode: 0
- _Cutoff: 0.5
- _DebugMode: 0
- _DstBlend: 10
- _IndirectLightIntensity: 0.1
- _LightColorAttenuation: 0
- _MToonVersion: 39
- _OutlineColorMode: 1
- _OutlineCullMode: 1
- _OutlineLightingMix: 1
- _OutlineScaledMaxDistance: 4.63
- _OutlineWidth: 0.08020833
- _OutlineWidthMode: 0
- _ReceiveShadowRate: 1
- _RimFresnelPower: 100
- _RimLift: 0.1
- _RimLightingMix: 0
- _ShadeShift: -0.26666665
- _ShadeToony: 1
- _ShadingGradeRate: 1
- _SrcBlend: 5
- _UvAnimRotation: 0
- _UvAnimScrollX: 0
- _UvAnimScrollY: 0
- _ZWrite: 0
m_Colors:
- _Color: {r: 1, g: 1, b: 1, a: 1}
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
- _OutlineColor: {r: 0.2745098, g: 0.090196066, b: 0.12549016, a: 1}
- _RimColor: {r: 0, g: 0, b: 0, a: 1}
- _ShadeColor: {r: 1, g: 1, b: 1, a: 1}
m_BuildTextureStacks: []

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 5e45d2c629c9e2445b9a08a281180ec9
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 2100000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,102 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!21 &2100000
Material:
serializedVersion: 8
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: N00_000_00_FaceEyeline_00_FACE (Instance)
m_Shader: {fileID: 4800000, guid: 1a97144e4ad27a04aafd70f7b915cedb, type: 3}
m_ValidKeywords:
- _ALPHABLEND_ON
- _NORMALMAP
m_InvalidKeywords: []
m_LightmapFlags: 4
m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0
m_CustomRenderQueue: 3000
stringTagMap:
RenderType: Transparent
disabledShaderPasses: []
m_SavedProperties:
serializedVersion: 3
m_TexEnvs:
- _BumpMap:
m_Texture: {fileID: 2800000, guid: a19d9a065953acc47b8a08eb2d1ac4b3, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _EmissionMap:
m_Texture: {fileID: 2800000, guid: 37d485fb3c77dec4e97d02654d5d0634, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _MainTex:
m_Texture: {fileID: 2800000, guid: 55299f92850a70141b5290c767e7cd82, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _OutlineWidthTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _ReceiveShadowTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _RimTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _ShadeTexture:
m_Texture: {fileID: 2800000, guid: 55299f92850a70141b5290c767e7cd82, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _ShadingGradeTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _SphereAdd:
m_Texture: {fileID: 2800000, guid: 5547de9e7ef01c34b9975cf613f5afcc, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _UvAnimMaskTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
m_Ints: []
m_Floats:
- _AlphaToMask: 0
- _BlendMode: 2
- _BumpScale: 1
- _CullMode: 0
- _Cutoff: 0.5
- _DebugMode: 0
- _DstBlend: 10
- _IndirectLightIntensity: 0.1
- _LightColorAttenuation: 0
- _MToonVersion: 39
- _OutlineColorMode: 1
- _OutlineCullMode: 1
- _OutlineLightingMix: 1
- _OutlineScaledMaxDistance: 1
- _OutlineWidth: 0.08020833
- _OutlineWidthMode: 0
- _ReceiveShadowRate: 1
- _RimFresnelPower: 100
- _RimLift: 0.1
- _RimLightingMix: 0
- _ShadeShift: -0.26666665
- _ShadeToony: 1
- _ShadingGradeRate: 1
- _SrcBlend: 5
- _UvAnimRotation: 0
- _UvAnimScrollX: 0
- _UvAnimScrollY: 0
- _ZWrite: 0
m_Colors:
- _Color: {r: 1, g: 1, b: 1, a: 1}
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
- _OutlineColor: {r: 0.2745098, g: 0.090196066, b: 0.12549016, a: 1}
- _RimColor: {r: 0, g: 0, b: 0, a: 1}
- _ShadeColor: {r: 1, g: 1, b: 1, a: 1}
m_BuildTextureStacks: []

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: ca719d987c08a4048b5401c81762d68d
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 2100000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,102 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!21 &2100000
Material:
serializedVersion: 8
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: N00_000_00_FaceMouth_00_FACE (Instance)
m_Shader: {fileID: 4800000, guid: 1a97144e4ad27a04aafd70f7b915cedb, type: 3}
m_ValidKeywords:
- _ALPHATEST_ON
- _NORMALMAP
m_InvalidKeywords: []
m_LightmapFlags: 4
m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0
m_CustomRenderQueue: 2450
stringTagMap:
RenderType: TransparentCutout
disabledShaderPasses: []
m_SavedProperties:
serializedVersion: 3
m_TexEnvs:
- _BumpMap:
m_Texture: {fileID: 2800000, guid: a19d9a065953acc47b8a08eb2d1ac4b3, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _EmissionMap:
m_Texture: {fileID: 2800000, guid: 37d485fb3c77dec4e97d02654d5d0634, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _MainTex:
m_Texture: {fileID: 2800000, guid: 8ad1a7934c0532944a5527877b76561c, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _OutlineWidthTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _ReceiveShadowTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _RimTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _ShadeTexture:
m_Texture: {fileID: 2800000, guid: 8ad1a7934c0532944a5527877b76561c, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _ShadingGradeTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _SphereAdd:
m_Texture: {fileID: 2800000, guid: 37d485fb3c77dec4e97d02654d5d0634, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _UvAnimMaskTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
m_Ints: []
m_Floats:
- _AlphaToMask: 1
- _BlendMode: 1
- _BumpScale: 1
- _CullMode: 2
- _Cutoff: 0.5
- _DebugMode: 0
- _DstBlend: 0
- _IndirectLightIntensity: 0.1
- _LightColorAttenuation: 0
- _MToonVersion: 39
- _OutlineColorMode: 1
- _OutlineCullMode: 1
- _OutlineLightingMix: 1
- _OutlineScaledMaxDistance: 1
- _OutlineWidth: 0.08020833
- _OutlineWidthMode: 0
- _ReceiveShadowRate: 1
- _RimFresnelPower: 100
- _RimLift: 0.1
- _RimLightingMix: 0
- _ShadeShift: -0.26666665
- _ShadeToony: 1
- _ShadingGradeRate: 1
- _SrcBlend: 1
- _UvAnimRotation: 0
- _UvAnimScrollX: 0
- _UvAnimScrollY: 0
- _ZWrite: 1
m_Colors:
- _Color: {r: 1, g: 1, b: 1, a: 1}
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
- _OutlineColor: {r: 0.2745098, g: 0.090196066, b: 0.12549016, a: 1}
- _RimColor: {r: 0, g: 0, b: 0, a: 1}
- _ShadeColor: {r: 0.9686274, g: 0.8117647, b: 0.85882354, a: 1}
m_BuildTextureStacks: []

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 78ad933fe6baf5045971c59220625598
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 2100000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,104 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!21 &2100000
Material:
serializedVersion: 8
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: N00_000_00_Face_00_SKIN (Instance)
m_Shader: {fileID: 4800000, guid: 1a97144e4ad27a04aafd70f7b915cedb, type: 3}
m_ValidKeywords:
- MTOON_OUTLINE_COLOR_FIXED
- MTOON_OUTLINE_WIDTH_WORLD
- _ALPHATEST_ON
- _NORMALMAP
m_InvalidKeywords: []
m_LightmapFlags: 4
m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0
m_CustomRenderQueue: 2450
stringTagMap:
RenderType: TransparentCutout
disabledShaderPasses: []
m_SavedProperties:
serializedVersion: 3
m_TexEnvs:
- _BumpMap:
m_Texture: {fileID: 2800000, guid: 573a1b0ffc313934480caf7fed3c0c30, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _EmissionMap:
m_Texture: {fileID: 2800000, guid: 37d485fb3c77dec4e97d02654d5d0634, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _MainTex:
m_Texture: {fileID: 2800000, guid: 7bc214a5aeaca394b82560131b9e2d10, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _OutlineWidthTexture:
m_Texture: {fileID: 2800000, guid: 82b79a5098728914486ac605c91d7170, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _ReceiveShadowTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _RimTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _ShadeTexture:
m_Texture: {fileID: 2800000, guid: 7bc214a5aeaca394b82560131b9e2d10, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _ShadingGradeTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _SphereAdd:
m_Texture: {fileID: 2800000, guid: 5547de9e7ef01c34b9975cf613f5afcc, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _UvAnimMaskTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
m_Ints: []
m_Floats:
- _AlphaToMask: 1
- _BlendMode: 1
- _BumpScale: 1
- _CullMode: 0
- _Cutoff: 0.5
- _DebugMode: 0
- _DstBlend: 0
- _IndirectLightIntensity: 0.1
- _LightColorAttenuation: 0
- _MToonVersion: 39
- _OutlineColorMode: 0
- _OutlineCullMode: 1
- _OutlineLightingMix: 1
- _OutlineScaledMaxDistance: 4.63
- _OutlineWidth: 0.08020833
- _OutlineWidthMode: 1
- _ReceiveShadowRate: 1
- _RimFresnelPower: 100
- _RimLift: 0.1
- _RimLightingMix: 0
- _ShadeShift: -0.26666665
- _ShadeToony: 1
- _ShadingGradeRate: 1
- _SrcBlend: 1
- _UvAnimRotation: 0
- _UvAnimScrollX: 0
- _UvAnimScrollY: 0
- _ZWrite: 1
m_Colors:
- _Color: {r: 1, g: 1, b: 1, a: 1}
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
- _OutlineColor: {r: 0.2745098, g: 0.090196066, b: 0.12549016, a: 1}
- _RimColor: {r: 0.25, g: 0.25, b: 0.25, a: 1}
- _ShadeColor: {r: 0.9686274, g: 0.8117647, b: 0.85882354, a: 1}
m_BuildTextureStacks: []

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: ec2206e2367f3a040a405d39a21f3a02
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 2100000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,102 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!21 &2100000
Material:
serializedVersion: 8
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: N00_000_00_HairBack_00_HAIR (Instance)
m_Shader: {fileID: 4800000, guid: 1a97144e4ad27a04aafd70f7b915cedb, type: 3}
m_ValidKeywords:
- _ALPHATEST_ON
- _NORMALMAP
m_InvalidKeywords: []
m_LightmapFlags: 4
m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0
m_CustomRenderQueue: 2450
stringTagMap:
RenderType: TransparentCutout
disabledShaderPasses: []
m_SavedProperties:
serializedVersion: 3
m_TexEnvs:
- _BumpMap:
m_Texture: {fileID: 2800000, guid: 303cac890e85b864a916d7c454bb727b, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _EmissionMap:
m_Texture: {fileID: 2800000, guid: 37d485fb3c77dec4e97d02654d5d0634, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _MainTex:
m_Texture: {fileID: 2800000, guid: 22b189b1701cbb04ba7915602e5de4e9, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _OutlineWidthTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _ReceiveShadowTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _RimTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _ShadeTexture:
m_Texture: {fileID: 2800000, guid: 22b189b1701cbb04ba7915602e5de4e9, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _ShadingGradeTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _SphereAdd:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _UvAnimMaskTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
m_Ints: []
m_Floats:
- _AlphaToMask: 1
- _BlendMode: 1
- _BumpScale: 1
- _CullMode: 2
- _Cutoff: 0.5
- _DebugMode: 0
- _DstBlend: 0
- _IndirectLightIntensity: 0.1
- _LightColorAttenuation: 0
- _MToonVersion: 39
- _OutlineColorMode: 1
- _OutlineCullMode: 1
- _OutlineLightingMix: 1
- _OutlineScaledMaxDistance: 1
- _OutlineWidth: 0
- _OutlineWidthMode: 0
- _ReceiveShadowRate: 1
- _RimFresnelPower: 100
- _RimLift: 0.1
- _RimLightingMix: 0
- _ShadeShift: 0.26666665
- _ShadeToony: 0.6
- _ShadingGradeRate: 1
- _SrcBlend: 1
- _UvAnimRotation: 0
- _UvAnimScrollX: 0
- _UvAnimScrollY: 0
- _ZWrite: 1
m_Colors:
- _Color: {r: 1, g: 1, b: 1, a: 1}
- _EmissionColor: {r: 0.85882354, g: 0.69411767, b: 0.69411767, a: 1}
- _OutlineColor: {r: 0.47450978, g: 0.74509805, b: 0.737255, a: 1}
- _RimColor: {r: 0.25, g: 0.25, b: 0.25, a: 1}
- _ShadeColor: {r: 1, g: 1, b: 1, a: 1}
m_BuildTextureStacks: []

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 98ac2806c4c64ab428de3e4b2232e4ef
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 2100000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,102 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!21 &2100000
Material:
serializedVersion: 8
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: N00_000_Hair_00_HAIR (Instance)
m_Shader: {fileID: 4800000, guid: 1a97144e4ad27a04aafd70f7b915cedb, type: 3}
m_ValidKeywords:
- _ALPHATEST_ON
- _NORMALMAP
m_InvalidKeywords: []
m_LightmapFlags: 4
m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0
m_CustomRenderQueue: 2450
stringTagMap:
RenderType: TransparentCutout
disabledShaderPasses: []
m_SavedProperties:
serializedVersion: 3
m_TexEnvs:
- _BumpMap:
m_Texture: {fileID: 2800000, guid: ad18afd8ca3712f49b1b5e0c830231ef, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _EmissionMap:
m_Texture: {fileID: 2800000, guid: 7875535f05a335b4e950f96ebf651317, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _MainTex:
m_Texture: {fileID: 2800000, guid: 453090f43d60bca419e569fde6d2f5c3, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _OutlineWidthTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _ReceiveShadowTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _RimTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _ShadeTexture:
m_Texture: {fileID: 2800000, guid: 453090f43d60bca419e569fde6d2f5c3, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _ShadingGradeTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _SphereAdd:
m_Texture: {fileID: 2800000, guid: 98e0ea55ec74c3c439393acc1325e172, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _UvAnimMaskTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
m_Ints: []
m_Floats:
- _AlphaToMask: 1
- _BlendMode: 1
- _BumpScale: 1
- _CullMode: 0
- _Cutoff: 0.5
- _DebugMode: 0
- _DstBlend: 0
- _IndirectLightIntensity: 0.1
- _LightColorAttenuation: 0
- _MToonVersion: 39
- _OutlineColorMode: 1
- _OutlineCullMode: 1
- _OutlineLightingMix: 1
- _OutlineScaledMaxDistance: 4.34
- _OutlineWidth: 0
- _OutlineWidthMode: 0
- _ReceiveShadowRate: 1
- _RimFresnelPower: 100
- _RimLift: 0.1
- _RimLightingMix: 0
- _ShadeShift: 0.26666665
- _ShadeToony: 0.6
- _ShadingGradeRate: 1
- _SrcBlend: 1
- _UvAnimRotation: 0
- _UvAnimScrollX: 0
- _UvAnimScrollY: 0
- _ZWrite: 1
m_Colors:
- _Color: {r: 1, g: 1, b: 1, a: 1}
- _EmissionColor: {r: 0.85882354, g: 0.5411765, b: 0.23137255, a: 1}
- _OutlineColor: {r: 0.27450973, g: 0.09019599, b: 0.1254901, a: 1}
- _RimColor: {r: 0.25, g: 0.25, b: 0.25, a: 1}
- _ShadeColor: {r: 1, g: 1, b: 1, a: 1}
m_BuildTextureStacks: []

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 380506786ad864a4ab3e0c77b405614a
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 2100000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,104 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!21 &2100000
Material:
serializedVersion: 8
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: N00_001_03_Bottoms_01_CLOTH (Instance)
m_Shader: {fileID: 4800000, guid: 1a97144e4ad27a04aafd70f7b915cedb, type: 3}
m_ValidKeywords:
- MTOON_OUTLINE_COLOR_FIXED
- MTOON_OUTLINE_WIDTH_WORLD
- _ALPHATEST_ON
- _NORMALMAP
m_InvalidKeywords: []
m_LightmapFlags: 4
m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0
m_CustomRenderQueue: 2450
stringTagMap:
RenderType: TransparentCutout
disabledShaderPasses: []
m_SavedProperties:
serializedVersion: 3
m_TexEnvs:
- _BumpMap:
m_Texture: {fileID: 2800000, guid: a19d9a065953acc47b8a08eb2d1ac4b3, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _EmissionMap:
m_Texture: {fileID: 2800000, guid: 37d485fb3c77dec4e97d02654d5d0634, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _MainTex:
m_Texture: {fileID: 2800000, guid: 5d32a8e4858af084190c4668c1767bc7, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _OutlineWidthTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _ReceiveShadowTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _RimTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _ShadeTexture:
m_Texture: {fileID: 2800000, guid: 5d32a8e4858af084190c4668c1767bc7, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _ShadingGradeTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _SphereAdd:
m_Texture: {fileID: 2800000, guid: 5547de9e7ef01c34b9975cf613f5afcc, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _UvAnimMaskTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
m_Ints: []
m_Floats:
- _AlphaToMask: 1
- _BlendMode: 1
- _BumpScale: 1
- _CullMode: 0
- _Cutoff: 0.5
- _DebugMode: 0
- _DstBlend: 0
- _IndirectLightIntensity: 0.1
- _LightColorAttenuation: 0
- _MToonVersion: 39
- _OutlineColorMode: 0
- _OutlineCullMode: 1
- _OutlineLightingMix: 1
- _OutlineScaledMaxDistance: 1
- _OutlineWidth: 0.08
- _OutlineWidthMode: 1
- _ReceiveShadowRate: 1
- _RimFresnelPower: 100
- _RimLift: 0.1
- _RimLightingMix: 0
- _ShadeShift: 0
- _ShadeToony: 0.9
- _ShadingGradeRate: 1
- _SrcBlend: 1
- _UvAnimRotation: 0
- _UvAnimScrollX: 0
- _UvAnimScrollY: 0
- _ZWrite: 1
m_Colors:
- _Color: {r: 1, g: 1, b: 1, a: 1}
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
- _OutlineColor: {r: 0.2745098, g: 0.090196066, b: 0.12549016, a: 1}
- _RimColor: {r: 0.25, g: 0.25, b: 0.25, a: 1}
- _ShadeColor: {r: 0.96999997, g: 0.81, b: 0.86, a: 1}
m_BuildTextureStacks: []

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 60ccfa3b15a46e2408bf2de3c833e69b
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 2100000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,104 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!21 &2100000
Material:
serializedVersion: 8
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: N00_002_01_Tops_01_CLOTH (Instance)
m_Shader: {fileID: 4800000, guid: 1a97144e4ad27a04aafd70f7b915cedb, type: 3}
m_ValidKeywords:
- MTOON_OUTLINE_COLOR_FIXED
- MTOON_OUTLINE_WIDTH_WORLD
- _ALPHATEST_ON
- _NORMALMAP
m_InvalidKeywords: []
m_LightmapFlags: 4
m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0
m_CustomRenderQueue: 2450
stringTagMap:
RenderType: TransparentCutout
disabledShaderPasses: []
m_SavedProperties:
serializedVersion: 3
m_TexEnvs:
- _BumpMap:
m_Texture: {fileID: 2800000, guid: a19d9a065953acc47b8a08eb2d1ac4b3, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _EmissionMap:
m_Texture: {fileID: 2800000, guid: 37d485fb3c77dec4e97d02654d5d0634, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _MainTex:
m_Texture: {fileID: 2800000, guid: 4bffa7d0813008f4994c6a4f33fc1a95, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _OutlineWidthTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _ReceiveShadowTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _RimTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _ShadeTexture:
m_Texture: {fileID: 2800000, guid: 4bffa7d0813008f4994c6a4f33fc1a95, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _ShadingGradeTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _SphereAdd:
m_Texture: {fileID: 2800000, guid: 5547de9e7ef01c34b9975cf613f5afcc, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _UvAnimMaskTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
m_Ints: []
m_Floats:
- _AlphaToMask: 1
- _BlendMode: 1
- _BumpScale: 1
- _CullMode: 0
- _Cutoff: 0.5
- _DebugMode: 0
- _DstBlend: 0
- _IndirectLightIntensity: 0.1
- _LightColorAttenuation: 0
- _MToonVersion: 39
- _OutlineColorMode: 0
- _OutlineCullMode: 1
- _OutlineLightingMix: 1
- _OutlineScaledMaxDistance: 1
- _OutlineWidth: 0.08
- _OutlineWidthMode: 1
- _ReceiveShadowRate: 1
- _RimFresnelPower: 100
- _RimLift: 0.1
- _RimLightingMix: 0
- _ShadeShift: 0
- _ShadeToony: 0.9
- _ShadingGradeRate: 1
- _SrcBlend: 1
- _UvAnimRotation: 0
- _UvAnimScrollX: 0
- _UvAnimScrollY: 0
- _ZWrite: 1
m_Colors:
- _Color: {r: 1, g: 1, b: 1, a: 1}
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
- _OutlineColor: {r: 0.2745098, g: 0.090196066, b: 0.12549016, a: 1}
- _RimColor: {r: 0.25, g: 0.25, b: 0.25, a: 1}
- _ShadeColor: {r: 0.8117647, g: 0.8392157, b: 0.9686274, a: 1}
m_BuildTextureStacks: []

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: fc3816470dc0c0e4bbc70bb2df30f82e
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 2100000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,104 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!21 &2100000
Material:
serializedVersion: 8
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: N00_006_01_Shoes_01_CLOTH (Instance)
m_Shader: {fileID: 4800000, guid: 1a97144e4ad27a04aafd70f7b915cedb, type: 3}
m_ValidKeywords:
- MTOON_OUTLINE_COLOR_FIXED
- MTOON_OUTLINE_WIDTH_WORLD
- _ALPHATEST_ON
- _NORMALMAP
m_InvalidKeywords: []
m_LightmapFlags: 4
m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0
m_CustomRenderQueue: 2450
stringTagMap:
RenderType: TransparentCutout
disabledShaderPasses: []
m_SavedProperties:
serializedVersion: 3
m_TexEnvs:
- _BumpMap:
m_Texture: {fileID: 2800000, guid: a19d9a065953acc47b8a08eb2d1ac4b3, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _EmissionMap:
m_Texture: {fileID: 2800000, guid: 37d485fb3c77dec4e97d02654d5d0634, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _MainTex:
m_Texture: {fileID: 2800000, guid: 311ab6e8297edcd4b8ce8013b296c458, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _OutlineWidthTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _ReceiveShadowTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _RimTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _ShadeTexture:
m_Texture: {fileID: 2800000, guid: 311ab6e8297edcd4b8ce8013b296c458, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _ShadingGradeTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _SphereAdd:
m_Texture: {fileID: 2800000, guid: 5547de9e7ef01c34b9975cf613f5afcc, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _UvAnimMaskTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
m_Ints: []
m_Floats:
- _AlphaToMask: 1
- _BlendMode: 1
- _BumpScale: 1
- _CullMode: 0
- _Cutoff: 0.5
- _DebugMode: 0
- _DstBlend: 0
- _IndirectLightIntensity: 0.1
- _LightColorAttenuation: 0
- _MToonVersion: 39
- _OutlineColorMode: 0
- _OutlineCullMode: 1
- _OutlineLightingMix: 1
- _OutlineScaledMaxDistance: 1
- _OutlineWidth: 0.08
- _OutlineWidthMode: 1
- _ReceiveShadowRate: 1
- _RimFresnelPower: 100
- _RimLift: 0.1
- _RimLightingMix: 0
- _ShadeShift: 0
- _ShadeToony: 0.9
- _ShadingGradeRate: 1
- _SrcBlend: 1
- _UvAnimRotation: 0
- _UvAnimScrollX: 0
- _UvAnimScrollY: 0
- _ZWrite: 1
m_Colors:
- _Color: {r: 1, g: 1, b: 1, a: 1}
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
- _OutlineColor: {r: 0.2745098, g: 0.090196066, b: 0.12549016, a: 1}
- _RimColor: {r: 0.25, g: 0.25, b: 0.25, a: 1}
- _ShadeColor: {r: 0.8117647, g: 0.8392157, b: 0.9686274, a: 1}
m_BuildTextureStacks: []

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 04287126b5192cc4b8263f85c7e45ac8
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 2100000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,104 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!21 &2100000
Material:
serializedVersion: 8
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: N00_010_01_Onepiece_00_CLOTH_01 (Instance)
m_Shader: {fileID: 4800000, guid: 1a97144e4ad27a04aafd70f7b915cedb, type: 3}
m_ValidKeywords:
- MTOON_OUTLINE_COLOR_FIXED
- MTOON_OUTLINE_WIDTH_WORLD
- _ALPHATEST_ON
- _NORMALMAP
m_InvalidKeywords: []
m_LightmapFlags: 4
m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0
m_CustomRenderQueue: 2450
stringTagMap:
RenderType: TransparentCutout
disabledShaderPasses: []
m_SavedProperties:
serializedVersion: 3
m_TexEnvs:
- _BumpMap:
m_Texture: {fileID: 2800000, guid: a19d9a065953acc47b8a08eb2d1ac4b3, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _EmissionMap:
m_Texture: {fileID: 2800000, guid: 37d485fb3c77dec4e97d02654d5d0634, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _MainTex:
m_Texture: {fileID: 2800000, guid: 6f4d12c56900bf2428f6d5abd2aa8f6e, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _OutlineWidthTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _ReceiveShadowTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _RimTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _ShadeTexture:
m_Texture: {fileID: 2800000, guid: 6f4d12c56900bf2428f6d5abd2aa8f6e, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _ShadingGradeTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _SphereAdd:
m_Texture: {fileID: 2800000, guid: 5547de9e7ef01c34b9975cf613f5afcc, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _UvAnimMaskTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
m_Ints: []
m_Floats:
- _AlphaToMask: 1
- _BlendMode: 1
- _BumpScale: 1
- _CullMode: 0
- _Cutoff: 0.5
- _DebugMode: 0
- _DstBlend: 0
- _IndirectLightIntensity: 0.1
- _LightColorAttenuation: 0
- _MToonVersion: 39
- _OutlineColorMode: 0
- _OutlineCullMode: 1
- _OutlineLightingMix: 1
- _OutlineScaledMaxDistance: 1
- _OutlineWidth: 0.08
- _OutlineWidthMode: 1
- _ReceiveShadowRate: 1
- _RimFresnelPower: 100
- _RimLift: 0.1
- _RimLightingMix: 0
- _ShadeShift: 0
- _ShadeToony: 0.9
- _ShadingGradeRate: 1
- _SrcBlend: 1
- _UvAnimRotation: 0
- _UvAnimScrollX: 0
- _UvAnimScrollY: 0
- _ZWrite: 1
m_Colors:
- _Color: {r: 1, g: 1, b: 1, a: 1}
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
- _OutlineColor: {r: 0.2745098, g: 0.090196066, b: 0.12549016, a: 1}
- _RimColor: {r: 0.25, g: 0.25, b: 0.25, a: 1}
- _ShadeColor: {r: 0.966989, g: 0.9646432, b: 0.97435874, a: 1}
m_BuildTextureStacks: []

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 1cb8d04e3dbb6fa4a9c72ed69dd39f91
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 2100000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,104 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!21 &2100000
Material:
serializedVersion: 8
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: N00_010_01_Onepiece_00_CLOTH_02 (Instance)
m_Shader: {fileID: 4800000, guid: 1a97144e4ad27a04aafd70f7b915cedb, type: 3}
m_ValidKeywords:
- MTOON_OUTLINE_COLOR_FIXED
- MTOON_OUTLINE_WIDTH_WORLD
- _ALPHATEST_ON
- _NORMALMAP
m_InvalidKeywords: []
m_LightmapFlags: 4
m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0
m_CustomRenderQueue: 2450
stringTagMap:
RenderType: TransparentCutout
disabledShaderPasses: []
m_SavedProperties:
serializedVersion: 3
m_TexEnvs:
- _BumpMap:
m_Texture: {fileID: 2800000, guid: a19d9a065953acc47b8a08eb2d1ac4b3, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _EmissionMap:
m_Texture: {fileID: 2800000, guid: 37d485fb3c77dec4e97d02654d5d0634, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _MainTex:
m_Texture: {fileID: 2800000, guid: 6260676f62ad32845bd83a0adbf6fd05, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _OutlineWidthTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _ReceiveShadowTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _RimTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _ShadeTexture:
m_Texture: {fileID: 2800000, guid: 6260676f62ad32845bd83a0adbf6fd05, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _ShadingGradeTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _SphereAdd:
m_Texture: {fileID: 2800000, guid: 5547de9e7ef01c34b9975cf613f5afcc, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _UvAnimMaskTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
m_Ints: []
m_Floats:
- _AlphaToMask: 1
- _BlendMode: 1
- _BumpScale: 1
- _CullMode: 0
- _Cutoff: 0.5
- _DebugMode: 0
- _DstBlend: 0
- _IndirectLightIntensity: 0.1
- _LightColorAttenuation: 0
- _MToonVersion: 39
- _OutlineColorMode: 0
- _OutlineCullMode: 1
- _OutlineLightingMix: 1
- _OutlineScaledMaxDistance: 1
- _OutlineWidth: 0.08
- _OutlineWidthMode: 1
- _ReceiveShadowRate: 1
- _RimFresnelPower: 100
- _RimLift: 0.1
- _RimLightingMix: 0
- _ShadeShift: 0
- _ShadeToony: 0.9
- _ShadingGradeRate: 1
- _SrcBlend: 1
- _UvAnimRotation: 0
- _UvAnimScrollX: 0
- _UvAnimScrollY: 0
- _ZWrite: 1
m_Colors:
- _Color: {r: 1, g: 1, b: 1, a: 1}
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
- _OutlineColor: {r: 0.2745098, g: 0.090196066, b: 0.12549016, a: 1}
- _RimColor: {r: 0.25, g: 0.25, b: 0.25, a: 1}
- _ShadeColor: {r: 0.966989, g: 0.9646432, b: 0.97435874, a: 1}
m_BuildTextureStacks: []

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 4dbe20acdfbf7194d9aaed97acc8f1a1
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 2100000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 6312660392a74324d88e05208fbebaaf
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 58453b79b84322541936d6c39baf62dd
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 4300000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 1c429c25fee4133478fec2036d57053f
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 4300000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 3d2c126351508c94e8581b28cbef9447
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 4300000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: fc7ce9985328c894ab654da9147bc49f
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,28 @@
%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: 63b589176a34b344b9ccbee2b7e7114a, type: 3}
m_Name: Meta
m_EditorClassIdentifier:
ExporterVersion: VRoid Studio-1.16.0
Title: Female1
Version:
Author: PJ.PJ_Huang
ContactInformation:
Reference:
Thumbnail: {fileID: 2800000, guid: b6bd01dd07c39324db099768d3508e44, type: 3}
AllowedUser: 0
ViolentUssage: 0
SexualUssage: 0
CommercialUssage: 0
OtherPermissionUrl:
LicenseType: 0
OtherLicenseUrl:

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 31934b0004de5fe40becfa93a2a2d09d
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 4c1577f1ccf16c848b534c0561b08cef
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,135 @@
fileFormatVersion: 2
guid: 5547de9e7ef01c34b9975cf613f5afcc
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 12
mipmaps:
mipMapMode: 0
enableMipMap: 0
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
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMasterTextureLimit: 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
cookieLightType: 0
platformSettings:
- serializedVersion: 3
buildTarget: DefaultTexturePlatform
maxTextureSize: 512
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 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
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Server
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 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
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID:
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
nameFileIdTable: {}
spritePackingTag:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,135 @@
fileFormatVersion: 2
guid: 98e0ea55ec74c3c439393acc1325e172
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 12
mipmaps:
mipMapMode: 0
enableMipMap: 0
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
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMasterTextureLimit: 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
cookieLightType: 0
platformSettings:
- serializedVersion: 3
buildTarget: DefaultTexturePlatform
maxTextureSize: 512
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 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
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Server
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 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
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID:
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
nameFileIdTable: {}
spritePackingTag:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,135 @@
fileFormatVersion: 2
guid: 82b79a5098728914486ac605c91d7170
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 12
mipmaps:
mipMapMode: 0
enableMipMap: 0
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
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMasterTextureLimit: 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
cookieLightType: 0
platformSettings:
- serializedVersion: 3
buildTarget: DefaultTexturePlatform
maxTextureSize: 512
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 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
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Server
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 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
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID:
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
nameFileIdTable: {}
spritePackingTag:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,135 @@
fileFormatVersion: 2
guid: 303cac890e85b864a916d7c454bb727b
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 12
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 0
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
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMasterTextureLimit: 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: 1
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
cookieLightType: 0
platformSettings:
- serializedVersion: 3
buildTarget: DefaultTexturePlatform
maxTextureSize: 512
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 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
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Server
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 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
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID:
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
nameFileIdTable: {}
spritePackingTag:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
assetBundleName:
assetBundleVariant:

Some files were not shown because too many files have changed in this diff Show More