最新修改后提交
This commit is contained in:
parent
67c967b285
commit
8add91b158
1188
Assets/Art/Timeline/体位_TimeLine.playable
Normal file
1188
Assets/Art/Timeline/体位_TimeLine.playable
Normal file
File diff suppressed because it is too large
Load Diff
8
Assets/Art/Timeline/体位_TimeLine.playable.meta
Normal file
8
Assets/Art/Timeline/体位_TimeLine.playable.meta
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: e0a35bf1f864f1b4c9725173335b90f1
|
||||||
|
NativeFormatImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
mainObjectFileID: 11400000
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
1159
Assets/Art/Timeline/患犬准备_TimeLine.playable
Normal file
1159
Assets/Art/Timeline/患犬准备_TimeLine.playable
Normal file
File diff suppressed because it is too large
Load Diff
8
Assets/Art/Timeline/患犬准备_TimeLine.playable.meta
Normal file
8
Assets/Art/Timeline/患犬准备_TimeLine.playable.meta
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 96d73c09c66a13b4997d98512198a9a9
|
||||||
|
NativeFormatImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
mainObjectFileID: 11400000
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
@ -32,9 +32,12 @@ public class RongMaoSkinMesh : MonoBehaviour
|
|||||||
[Range(0,1)]public float ShadowStrength = 0.3f;
|
[Range(0,1)]public float ShadowStrength = 0.3f;
|
||||||
[Range(0.01f, 1)] public float R = 0.5f;
|
[Range(0.01f, 1)] public float R = 0.5f;
|
||||||
[Range(0, 3)] public float _LengthMut = 1;
|
[Range(0, 3)] public float _LengthMut = 1;
|
||||||
|
public float Density = 1;
|
||||||
[Header("是否使用GPU实例化")]
|
[Header("是否使用GPU实例化")]
|
||||||
public bool isInStance = false;
|
public bool isInStance = false;
|
||||||
|
|
||||||
|
public bool ZWrite = true;
|
||||||
|
public int RenderSort = 0;
|
||||||
|
|
||||||
private bool skinHasValue = false;
|
private bool skinHasValue = false;
|
||||||
private Renderer target;
|
private Renderer target;
|
||||||
@ -56,9 +59,13 @@ public class RongMaoSkinMesh : MonoBehaviour
|
|||||||
void LateUpdate()
|
void LateUpdate()
|
||||||
{
|
{
|
||||||
//目标为空就不渲染
|
//目标为空就不渲染
|
||||||
if(TargetChange()==false) return;
|
if (TargetChange() == false)
|
||||||
|
{
|
||||||
if(isInStance) UpDateInstance();
|
Debug.Log("返回");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
isInStance = false;
|
||||||
|
if (isInStance) UpDateInstance();
|
||||||
else UpDateMesh();
|
else UpDateMesh();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -107,7 +114,9 @@ public class RongMaoSkinMesh : MonoBehaviour
|
|||||||
layerMat.SetColor("_ShadowColor",ShadowColor);
|
layerMat.SetColor("_ShadowColor",ShadowColor);
|
||||||
layerMat.SetFloat("_R",R);
|
layerMat.SetFloat("_R",R);
|
||||||
layerMat.SetFloat("_LayerCount",LayerCount);
|
layerMat.SetFloat("_LayerCount",LayerCount);
|
||||||
layerMat.renderQueue = 3000;
|
layerMat.SetInt("_ZWrite",ZWrite? 1:0);
|
||||||
|
layerMat.SetFloat("_Density",Density);
|
||||||
|
layerMat.renderQueue = 3000+RenderSort;
|
||||||
|
|
||||||
mpb = new MaterialPropertyBlock();
|
mpb = new MaterialPropertyBlock();
|
||||||
|
|
||||||
@ -121,11 +130,11 @@ public class RongMaoSkinMesh : MonoBehaviour
|
|||||||
// 随机生成实例的位置和旋转
|
// 随机生成实例的位置和旋转
|
||||||
for (int i = 0; i < LayerCount; i++)
|
for (int i = 0; i < LayerCount; i++)
|
||||||
{
|
{
|
||||||
Vector3 position = target.transform.position;
|
//Vector3 position = target.transform.position;
|
||||||
Quaternion rotation = target.transform.rotation;
|
//Quaternion rotation = target.transform.rotation;
|
||||||
Vector3 scale = Vector3.one;
|
//Vector3 scale = Vector3.one;
|
||||||
|
|
||||||
instanceMatrices[i] = Matrix4x4.TRS(position, rotation, scale);
|
instanceMatrices[i] = target.transform.localToWorldMatrix;// //Matrix4x4.TRS(position, rotation, scale);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@ -138,7 +147,10 @@ public class RongMaoSkinMesh : MonoBehaviour
|
|||||||
{
|
{
|
||||||
skinnedMeshRenderer.BakeMesh(mesh);
|
skinnedMeshRenderer.BakeMesh(mesh);
|
||||||
}
|
}
|
||||||
|
for (int i = 0; i < LayerCount; i++)
|
||||||
|
{
|
||||||
|
instanceMatrices[i] = target.transform.localToWorldMatrix;
|
||||||
|
}
|
||||||
layerMat.EnableKeyword("INSTANCE");
|
layerMat.EnableKeyword("INSTANCE");
|
||||||
Graphics.DrawMeshInstanced(mesh,0,layerMat,instanceMatrices,LayerCount);
|
Graphics.DrawMeshInstanced(mesh,0,layerMat,instanceMatrices,LayerCount);
|
||||||
}
|
}
|
||||||
|
|||||||
@ -15,6 +15,7 @@ Shader "Unlit/MaoFaF"
|
|||||||
_ShadowColor("ShadowColor",color)=(1,1,1,1)//由根部到顶部阴影的颜色
|
_ShadowColor("ShadowColor",color)=(1,1,1,1)//由根部到顶部阴影的颜色
|
||||||
|
|
||||||
_R("R",Range(0,1))=0.5
|
_R("R",Range(0,1))=0.5
|
||||||
|
_Density("Density",Float)=1
|
||||||
//_LengthMut("LengthMut",Range(0,5))=1
|
//_LengthMut("LengthMut",Range(0,5))=1
|
||||||
//[Enum(Off,0,On,1)]_ZWriteMode("ZWrite Mode", Int) = 1
|
//[Enum(Off,0,On,1)]_ZWriteMode("ZWrite Mode", Int) = 1
|
||||||
//_FurOffset("FurOffset",vector)=(0,1,0,0)//毛发偏移方向
|
//_FurOffset("FurOffset",vector)=(0,1,0,0)//毛发偏移方向
|
||||||
@ -29,7 +30,7 @@ Shader "Unlit/MaoFaF"
|
|||||||
{
|
{
|
||||||
Blend SrcAlpha OneMinusSrcAlpha
|
Blend SrcAlpha OneMinusSrcAlpha
|
||||||
Cull Back
|
Cull Back
|
||||||
ZWrite On //[_ZWriteMode]
|
ZWrite [_ZWrite]//On //[_ZWriteMode]
|
||||||
|
|
||||||
HLSLPROGRAM
|
HLSLPROGRAM
|
||||||
#pragma multi_compile_instancing
|
#pragma multi_compile_instancing
|
||||||
@ -77,6 +78,8 @@ Shader "Unlit/MaoFaF"
|
|||||||
float _R;
|
float _R;
|
||||||
float _LengthMut;
|
float _LengthMut;
|
||||||
float _LayerCount;
|
float _LayerCount;
|
||||||
|
int _ZWrite;
|
||||||
|
float _Density;
|
||||||
CBUFFER_END
|
CBUFFER_END
|
||||||
//UNITY_INSTANCING_BUFFER_START(Props)
|
//UNITY_INSTANCING_BUFFER_START(Props)
|
||||||
// UNITY_DEFINE_INSTANCED_PROP(float4,_Color)
|
// UNITY_DEFINE_INSTANCED_PROP(float4,_Color)
|
||||||
@ -112,7 +115,7 @@ Shader "Unlit/MaoFaF"
|
|||||||
|
|
||||||
//float d=sign(v.normal.z)
|
//float d=sign(v.normal.z)
|
||||||
float3 dir=normalize(v.normal+float3(0,-0.8,-abs(v.normal.y)*0.4));
|
float3 dir=normalize(v.normal+float3(0,-0.8,-abs(v.normal.y)*0.4));
|
||||||
v.vertex.xyz=v.vertex.xyz+dir*(_LayerOffset*_LayerOffset*0.8)*_FurLength*1;
|
v.vertex.xyz=v.vertex.xyz+dir*(_LayerOffset*_LayerOffset*0.8)*_FurLength*1+0.0001;
|
||||||
//v.vertex.xyz+=mul(unity_WorldToObject,_FurOffset);//不需要位移
|
//v.vertex.xyz+=mul(unity_WorldToObject,_FurOffset);//不需要位移
|
||||||
o.vertex = TransformObjectToHClip(v.vertex);
|
o.vertex = TransformObjectToHClip(v.vertex);
|
||||||
o.wpos=mul(UNITY_MATRIX_M,v.vertex);
|
o.wpos=mul(UNITY_MATRIX_M,v.vertex);
|
||||||
@ -140,8 +143,8 @@ Shader "Unlit/MaoFaF"
|
|||||||
mask=Remap(mask,0,1,0.8,1);
|
mask=Remap(mask,0,1,0.8,1);
|
||||||
|
|
||||||
//修改毛发的密度与重复度
|
//修改毛发的密度与重复度
|
||||||
float3 noise2 = SAMPLE_TEXTURE2D(_Noise2, sampler_Noise2,i.uv*10+i.uv*(1-mask)*5);
|
float3 noise2 = SAMPLE_TEXTURE2D(_Noise2, sampler_Noise2,i.uv*10*_Density+i.uv*(1-mask)*5*_Density);
|
||||||
float3 noise = SAMPLE_TEXTURE2D(_Noise,sampler_Noise, i.uv*10+noise2*50+i.uv*(1-mask)*50);
|
float3 noise = SAMPLE_TEXTURE2D(_Noise,sampler_Noise, i.uv*10*_Density+noise2*50*_Density+i.uv*(1-mask)*50*_Density);
|
||||||
|
|
||||||
noise=lerp(noise2,noise,0.6);
|
noise=lerp(noise2,noise,0.6);
|
||||||
|
|
||||||
@ -159,7 +162,7 @@ Shader "Unlit/MaoFaF"
|
|||||||
float RdV=(dot(r,V));
|
float RdV=(dot(r,V));
|
||||||
|
|
||||||
//绒毛材质
|
//绒毛材质
|
||||||
float _R=0.6;
|
//float _R=0.6;
|
||||||
float3 f0=0.15;
|
float3 f0=0.15;
|
||||||
float3 f=F_Schlick(f0,VdH);
|
float3 f=F_Schlick(f0,VdH);
|
||||||
float3 c1=D_Charlie(RdV,_R)*V_Charlie(NdL,NdV,_R)*PI*f*_MainLightColor*NdL;
|
float3 c1=D_Charlie(RdV,_R)*V_Charlie(NdL,NdV,_R)*PI*f*_MainLightColor*NdL;
|
||||||
|
|||||||
Binary file not shown.
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -0,0 +1 @@
|
|||||||
|
{"gameObjectDatas":[]}
|
||||||
@ -0,0 +1,7 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: b30b44d2d06d6cb41bc268e2a53b57d7
|
||||||
|
DefaultImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
@ -0,0 +1 @@
|
|||||||
|
{"gameObjectDatas":[]}
|
||||||
@ -0,0 +1,7 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: f2df5591afaf4b340bdf22dcbace797a
|
||||||
|
DefaultImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
@ -0,0 +1 @@
|
|||||||
|
{"gameObjectDatas":[]}
|
||||||
@ -0,0 +1,7 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 70fa6f420b5178b47a12894453247ead
|
||||||
|
DefaultImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
File diff suppressed because it is too large
Load Diff
@ -1,4 +1,5 @@
|
|||||||
using FSM;
|
using FSM;
|
||||||
|
using ZXKFramework;
|
||||||
namespace DongWuYiXue.DaoNiaoShu
|
namespace DongWuYiXue.DaoNiaoShu
|
||||||
{
|
{
|
||||||
public class DaiWuJunShouTaoState : FsmState<FSMManager>
|
public class DaiWuJunShouTaoState : FsmState<FSMManager>
|
||||||
@ -6,6 +7,14 @@ namespace DongWuYiXue.DaoNiaoShu
|
|||||||
public override void OnStateEnter()
|
public override void OnStateEnter()
|
||||||
{
|
{
|
||||||
base.OnStateEnter();
|
base.OnStateEnter();
|
||||||
|
this.Log("进入戴无菌手套状态");
|
||||||
|
if (fsm.main_gameModel.modeType == ModeType.ShiXun)
|
||||||
|
{
|
||||||
|
fsm.ShowDragQuestion(0, 3, 0, () =>
|
||||||
|
{
|
||||||
|
fsm.nextState = true;
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
public override void OnStateStay()
|
public override void OnStateStay()
|
||||||
{
|
{
|
||||||
@ -14,6 +23,7 @@ namespace DongWuYiXue.DaoNiaoShu
|
|||||||
public override void OnStateExit()
|
public override void OnStateExit()
|
||||||
{
|
{
|
||||||
base.OnStateExit();
|
base.OnStateExit();
|
||||||
|
fsm.nextState = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -7,7 +7,13 @@ namespace DongWuYiXue.DaoNiaoShu
|
|||||||
{
|
{
|
||||||
base.OnStateEnter();
|
base.OnStateEnter();
|
||||||
this.Log("进入患犬准备状态");
|
this.Log("进入患犬准备状态");
|
||||||
|
fsm.ShowCamera("患犬准备_Camera");
|
||||||
|
fsm.ShowTip(0);
|
||||||
|
fsm.PlayBgm(0);
|
||||||
|
fsm.PlayClip("患犬准备_TimeLine", () =>
|
||||||
|
{
|
||||||
|
fsm.nextState = true;
|
||||||
|
});
|
||||||
}
|
}
|
||||||
public override void OnStateStay()
|
public override void OnStateStay()
|
||||||
{
|
{
|
||||||
|
|||||||
@ -1,4 +1,7 @@
|
|||||||
using FSM;
|
using FSM;
|
||||||
|
using System.Buffers;
|
||||||
|
using UnityEngine;
|
||||||
|
using ZXKFramework;
|
||||||
namespace DongWuYiXue.DaoNiaoShu
|
namespace DongWuYiXue.DaoNiaoShu
|
||||||
{
|
{
|
||||||
public class TiWeiState : FsmState<FSMManager>
|
public class TiWeiState : FsmState<FSMManager>
|
||||||
@ -6,7 +9,45 @@ namespace DongWuYiXue.DaoNiaoShu
|
|||||||
public override void OnStateEnter()
|
public override void OnStateEnter()
|
||||||
{
|
{
|
||||||
base.OnStateEnter();
|
base.OnStateEnter();
|
||||||
|
this.Log("进入体位状态");
|
||||||
|
fsm.Show("女助手文字位置");
|
||||||
|
fsm.ShowCamera("体位_Camera");
|
||||||
|
fsm.ShowTip(0);
|
||||||
|
fsm.PlayBgm(0);
|
||||||
|
fsm.ShowSpeakPanel(new Vector3(-25f, 85f),
|
||||||
|
"请助手将宠物犬体位摆放为右侧卧位",
|
||||||
|
"右侧卧位", 2, 1, SpeakAction);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void SpeakAction(int arg1, string arg2)
|
||||||
|
{
|
||||||
|
switch (arg1)
|
||||||
|
{
|
||||||
|
case 0:
|
||||||
|
fsm.AddScore(0, 0);
|
||||||
|
break;
|
||||||
|
case 1:
|
||||||
|
if (fsm.main_gameModel.modeType == ModeType.ShiXun)
|
||||||
|
{
|
||||||
|
fsm.AddScore(5, 0);
|
||||||
|
}
|
||||||
|
if (fsm.main_gameModel.modeType == ModeType.KaoHe)
|
||||||
|
{
|
||||||
|
fsm.AddScore(1, 0);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case 2:
|
||||||
|
Game.Instance.eventManager.Raise(new PlayTrueOrFalseEvent() { isTrue = true });
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
fsm.PlayClip("体位_TimeLine", () =>
|
||||||
|
{
|
||||||
|
fsm.nextState = true;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
public override void OnStateStay()
|
public override void OnStateStay()
|
||||||
{
|
{
|
||||||
base.OnStateStay();
|
base.OnStateStay();
|
||||||
@ -14,6 +55,8 @@ namespace DongWuYiXue.DaoNiaoShu
|
|||||||
public override void OnStateExit()
|
public override void OnStateExit()
|
||||||
{
|
{
|
||||||
base.OnStateExit();
|
base.OnStateExit();
|
||||||
|
fsm.Hide("女助手文字位置");
|
||||||
|
fsm.nextState = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -11,10 +11,10 @@ namespace DongWuYiXue.DaoNiaoShu
|
|||||||
fsm.ShowCamera("WuPinZhunBei_Camera");
|
fsm.ShowCamera("WuPinZhunBei_Camera");
|
||||||
if (fsm.main_gameModel.modeType == ModeType.ShiXun)
|
if (fsm.main_gameModel.modeType == ModeType.ShiXun)
|
||||||
{
|
{
|
||||||
//fsm.ShowImgQuestion(0, 3, 0, () =>
|
fsm.ShowImgQuestion(0, 3, 0, () =>
|
||||||
//{
|
{
|
||||||
fsm.nextState = true;
|
fsm.nextState = true;
|
||||||
//});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
public override void OnStateStay()
|
public override void OnStateStay()
|
||||||
|
|||||||
Binary file not shown.
@ -1,7 +1,7 @@
|
|||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: 1ea7e35e894fafa4f881574e5107f031
|
guid: 1ea7e35e894fafa4f881574e5107f031
|
||||||
ModelImporter:
|
ModelImporter:
|
||||||
serializedVersion: 22200
|
serializedVersion: 21300
|
||||||
internalIDToNameTable: []
|
internalIDToNameTable: []
|
||||||
externalObjects:
|
externalObjects:
|
||||||
- first:
|
- first:
|
||||||
@ -357,7 +357,7 @@ ModelImporter:
|
|||||||
extraExposedTransformPaths: []
|
extraExposedTransformPaths: []
|
||||||
extraUserProperties: []
|
extraUserProperties: []
|
||||||
clipAnimations: []
|
clipAnimations: []
|
||||||
isReadable: 0
|
isReadable: 1
|
||||||
meshes:
|
meshes:
|
||||||
lODScreenPercentages: []
|
lODScreenPercentages: []
|
||||||
globalScale: 1
|
globalScale: 1
|
||||||
@ -365,7 +365,6 @@ ModelImporter:
|
|||||||
addColliders: 0
|
addColliders: 0
|
||||||
useSRGBMaterialColor: 1
|
useSRGBMaterialColor: 1
|
||||||
sortHierarchyByName: 1
|
sortHierarchyByName: 1
|
||||||
importPhysicalCameras: 1
|
|
||||||
importVisibility: 1
|
importVisibility: 1
|
||||||
importBlendShapes: 1
|
importBlendShapes: 1
|
||||||
importCameras: 1
|
importCameras: 1
|
||||||
@ -393,7 +392,6 @@ ModelImporter:
|
|||||||
secondaryUVMinObjectScale: 1
|
secondaryUVMinObjectScale: 1
|
||||||
secondaryUVPackMargin: 4
|
secondaryUVPackMargin: 4
|
||||||
useFileScale: 1
|
useFileScale: 1
|
||||||
strictVertexDataChecks: 0
|
|
||||||
tangentSpace:
|
tangentSpace:
|
||||||
normalSmoothAngle: 60
|
normalSmoothAngle: 60
|
||||||
normalImportMode: 0
|
normalImportMode: 0
|
||||||
@ -426,7 +424,6 @@ ModelImporter:
|
|||||||
humanoidOversampling: 1
|
humanoidOversampling: 1
|
||||||
avatarSetup: 0
|
avatarSetup: 0
|
||||||
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
|
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
|
||||||
importBlendShapeDeformPercent: 1
|
|
||||||
remapMaterialsIfMaterialImportModeIsNone: 0
|
remapMaterialsIfMaterialImportModeIsNone: 0
|
||||||
additionalBone: 0
|
additionalBone: 0
|
||||||
userData:
|
userData:
|
||||||
|
|||||||
Binary file not shown.
@ -37,6 +37,11 @@ ModelImporter:
|
|||||||
assembly: UnityEngine.CoreModule
|
assembly: UnityEngine.CoreModule
|
||||||
name: pasted__lambert2
|
name: pasted__lambert2
|
||||||
second: {fileID: 2100000, guid: 44a351d87ba2e2a41937ab301a8bdc84, type: 2}
|
second: {fileID: 2100000, guid: 44a351d87ba2e2a41937ab301a8bdc84, type: 2}
|
||||||
|
- first:
|
||||||
|
type: UnityEngine:Material
|
||||||
|
assembly: UnityEngine.CoreModule
|
||||||
|
name: phong2
|
||||||
|
second: {fileID: 2100000, guid: e5dc95e54594d0f49ba446b064008205, type: 2}
|
||||||
- first:
|
- first:
|
||||||
type: UnityEngine:Texture2D
|
type: UnityEngine:Texture2D
|
||||||
assembly: UnityEngine.CoreModule
|
assembly: UnityEngine.CoreModule
|
||||||
|
|||||||
65
Assets/犬导尿术/狗/Fair (2).prefab
Normal file
65
Assets/犬导尿术/狗/Fair (2).prefab
Normal file
@ -0,0 +1,65 @@
|
|||||||
|
%YAML 1.1
|
||||||
|
%TAG !u! tag:unity3d.com,2011:
|
||||||
|
--- !u!1 &5928552038817782177
|
||||||
|
GameObject:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
serializedVersion: 6
|
||||||
|
m_Component:
|
||||||
|
- component: {fileID: 5219949695765023310}
|
||||||
|
- component: {fileID: 6974215315780945289}
|
||||||
|
m_Layer: 0
|
||||||
|
m_Name: Fair (2)
|
||||||
|
m_TagString: Untagged
|
||||||
|
m_Icon: {fileID: 0}
|
||||||
|
m_NavMeshLayer: 0
|
||||||
|
m_StaticEditorFlags: 0
|
||||||
|
m_IsActive: 1
|
||||||
|
--- !u!4 &5219949695765023310
|
||||||
|
Transform:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 5928552038817782177}
|
||||||
|
serializedVersion: 2
|
||||||
|
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
||||||
|
m_LocalPosition: {x: 0.13585047, y: 1.3452824, z: 0.109954506}
|
||||||
|
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||||
|
m_ConstrainProportionsScale: 0
|
||||||
|
m_Children: []
|
||||||
|
m_Father: {fileID: 0}
|
||||||
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
|
--- !u!114 &6974215315780945289
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 5928552038817782177}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 11500000, guid: abc136f2e0ee1c643af0fc4fbea6b5d7, type: 3}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
Count: 1
|
||||||
|
Target: {fileID: 0}
|
||||||
|
BaseShader: {fileID: 4800000, guid: e3210a0e252ee5d44ab91b3f3025cef4, type: 3}
|
||||||
|
LayerCount: 12
|
||||||
|
FurLength: 0.01
|
||||||
|
FurFore: {x: 0, y: -10, z: 0}
|
||||||
|
Noise: {fileID: 2800000, guid: e0721da18f86b2445909fe95f129562c, type: 3}
|
||||||
|
Noise2: {fileID: 2800000, guid: 79182d87119103f4fb226b9971457e55, type: 3}
|
||||||
|
MainTex: {fileID: 2800000, guid: 6be435e8befbac644a71f2db309a390f, type: 3}
|
||||||
|
Mask: {fileID: 2800000, guid: 636593a9da453b24699c835cf33f2c21, type: 3}
|
||||||
|
FurColor: {r: 0.9811321, g: 0.9811321, b: 0.9811321, a: 1}
|
||||||
|
ShadowColor: {r: 0, g: 0, b: 0, a: 1}
|
||||||
|
ShadowStrength: 0.6
|
||||||
|
R: 1
|
||||||
|
_LengthMut: 1
|
||||||
|
Density: 2
|
||||||
|
isInStance: 1
|
||||||
|
ZWrite: 0
|
||||||
|
RenderSort: -1
|
||||||
7
Assets/犬导尿术/狗/Fair (2).prefab.meta
Normal file
7
Assets/犬导尿术/狗/Fair (2).prefab.meta
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 144f353f4f97b02478738e5895daad4b
|
||||||
|
PrefabImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
65
Assets/犬导尿术/狗/Fair (3).prefab
Normal file
65
Assets/犬导尿术/狗/Fair (3).prefab
Normal file
@ -0,0 +1,65 @@
|
|||||||
|
%YAML 1.1
|
||||||
|
%TAG !u! tag:unity3d.com,2011:
|
||||||
|
--- !u!1 &3100774436025757840
|
||||||
|
GameObject:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
serializedVersion: 6
|
||||||
|
m_Component:
|
||||||
|
- component: {fileID: 2666023204903164764}
|
||||||
|
- component: {fileID: 2422572251164387827}
|
||||||
|
m_Layer: 0
|
||||||
|
m_Name: Fair (3)
|
||||||
|
m_TagString: Untagged
|
||||||
|
m_Icon: {fileID: 0}
|
||||||
|
m_NavMeshLayer: 0
|
||||||
|
m_StaticEditorFlags: 0
|
||||||
|
m_IsActive: 1
|
||||||
|
--- !u!4 &2666023204903164764
|
||||||
|
Transform:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 3100774436025757840}
|
||||||
|
serializedVersion: 2
|
||||||
|
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
||||||
|
m_LocalPosition: {x: 0.13585047, y: 1.3452824, z: 0.109954506}
|
||||||
|
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||||
|
m_ConstrainProportionsScale: 0
|
||||||
|
m_Children: []
|
||||||
|
m_Father: {fileID: 0}
|
||||||
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
|
--- !u!114 &2422572251164387827
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 3100774436025757840}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 11500000, guid: abc136f2e0ee1c643af0fc4fbea6b5d7, type: 3}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
Count: 1
|
||||||
|
Target: {fileID: 0}
|
||||||
|
BaseShader: {fileID: 4800000, guid: e3210a0e252ee5d44ab91b3f3025cef4, type: 3}
|
||||||
|
LayerCount: 12
|
||||||
|
FurLength: 0.01
|
||||||
|
FurFore: {x: 0, y: -10, z: 0}
|
||||||
|
Noise: {fileID: 2800000, guid: e0721da18f86b2445909fe95f129562c, type: 3}
|
||||||
|
Noise2: {fileID: 2800000, guid: 79182d87119103f4fb226b9971457e55, type: 3}
|
||||||
|
MainTex: {fileID: 2800000, guid: 6be435e8befbac644a71f2db309a390f, type: 3}
|
||||||
|
Mask: {fileID: 2800000, guid: 636593a9da453b24699c835cf33f2c21, type: 3}
|
||||||
|
FurColor: {r: 0.9811321, g: 0.9811321, b: 0.9811321, a: 1}
|
||||||
|
ShadowColor: {r: 0, g: 0, b: 0, a: 1}
|
||||||
|
ShadowStrength: 0.6
|
||||||
|
R: 1
|
||||||
|
_LengthMut: 1
|
||||||
|
Density: 2
|
||||||
|
isInStance: 1
|
||||||
|
ZWrite: 0
|
||||||
|
RenderSort: -1
|
||||||
7
Assets/犬导尿术/狗/Fair (3).prefab.meta
Normal file
7
Assets/犬导尿术/狗/Fair (3).prefab.meta
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 0f1bda3379eb6fc4e8eb8330b82f79ce
|
||||||
|
PrefabImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
65
Assets/犬导尿术/狗/Fair (4).prefab
Normal file
65
Assets/犬导尿术/狗/Fair (4).prefab
Normal file
@ -0,0 +1,65 @@
|
|||||||
|
%YAML 1.1
|
||||||
|
%TAG !u! tag:unity3d.com,2011:
|
||||||
|
--- !u!1 &1870574738667547332
|
||||||
|
GameObject:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
serializedVersion: 6
|
||||||
|
m_Component:
|
||||||
|
- component: {fileID: 4446314005950323837}
|
||||||
|
- component: {fileID: 5885437393179449819}
|
||||||
|
m_Layer: 0
|
||||||
|
m_Name: Fair (4)
|
||||||
|
m_TagString: Untagged
|
||||||
|
m_Icon: {fileID: 0}
|
||||||
|
m_NavMeshLayer: 0
|
||||||
|
m_StaticEditorFlags: 0
|
||||||
|
m_IsActive: 1
|
||||||
|
--- !u!4 &4446314005950323837
|
||||||
|
Transform:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 1870574738667547332}
|
||||||
|
serializedVersion: 2
|
||||||
|
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
||||||
|
m_LocalPosition: {x: 0.13585047, y: 1.3452824, z: 0.109954506}
|
||||||
|
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||||
|
m_ConstrainProportionsScale: 0
|
||||||
|
m_Children: []
|
||||||
|
m_Father: {fileID: 0}
|
||||||
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
|
--- !u!114 &5885437393179449819
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 1870574738667547332}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 11500000, guid: abc136f2e0ee1c643af0fc4fbea6b5d7, type: 3}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
Count: 1
|
||||||
|
Target: {fileID: 0}
|
||||||
|
BaseShader: {fileID: 4800000, guid: e3210a0e252ee5d44ab91b3f3025cef4, type: 3}
|
||||||
|
LayerCount: 12
|
||||||
|
FurLength: 0.01
|
||||||
|
FurFore: {x: 0, y: -10, z: 0}
|
||||||
|
Noise: {fileID: 2800000, guid: e0721da18f86b2445909fe95f129562c, type: 3}
|
||||||
|
Noise2: {fileID: 2800000, guid: 79182d87119103f4fb226b9971457e55, type: 3}
|
||||||
|
MainTex: {fileID: 2800000, guid: 6be435e8befbac644a71f2db309a390f, type: 3}
|
||||||
|
Mask: {fileID: 2800000, guid: 636593a9da453b24699c835cf33f2c21, type: 3}
|
||||||
|
FurColor: {r: 0.9811321, g: 0.9811321, b: 0.9811321, a: 1}
|
||||||
|
ShadowColor: {r: 0, g: 0, b: 0, a: 1}
|
||||||
|
ShadowStrength: 0.6
|
||||||
|
R: 1
|
||||||
|
_LengthMut: 1
|
||||||
|
Density: 2
|
||||||
|
isInStance: 1
|
||||||
|
ZWrite: 0
|
||||||
|
RenderSort: -1
|
||||||
7
Assets/犬导尿术/狗/Fair (4).prefab.meta
Normal file
7
Assets/犬导尿术/狗/Fair (4).prefab.meta
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 6808b04ee0988b148ae0209c625b46c1
|
||||||
|
PrefabImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
65
Assets/犬导尿术/狗/Fair.prefab
Normal file
65
Assets/犬导尿术/狗/Fair.prefab
Normal file
@ -0,0 +1,65 @@
|
|||||||
|
%YAML 1.1
|
||||||
|
%TAG !u! tag:unity3d.com,2011:
|
||||||
|
--- !u!1 &5576835424954411117
|
||||||
|
GameObject:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
serializedVersion: 6
|
||||||
|
m_Component:
|
||||||
|
- component: {fileID: 6655372184347814980}
|
||||||
|
- component: {fileID: 1922398009188569717}
|
||||||
|
m_Layer: 0
|
||||||
|
m_Name: Fair
|
||||||
|
m_TagString: Untagged
|
||||||
|
m_Icon: {fileID: 0}
|
||||||
|
m_NavMeshLayer: 0
|
||||||
|
m_StaticEditorFlags: 0
|
||||||
|
m_IsActive: 1
|
||||||
|
--- !u!4 &6655372184347814980
|
||||||
|
Transform:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 5576835424954411117}
|
||||||
|
serializedVersion: 2
|
||||||
|
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
||||||
|
m_LocalPosition: {x: 0.13585047, y: 1.3452824, z: 0.109954506}
|
||||||
|
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||||
|
m_ConstrainProportionsScale: 0
|
||||||
|
m_Children: []
|
||||||
|
m_Father: {fileID: 0}
|
||||||
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
|
--- !u!114 &1922398009188569717
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 5576835424954411117}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 11500000, guid: abc136f2e0ee1c643af0fc4fbea6b5d7, type: 3}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
Count: 1
|
||||||
|
Target: {fileID: 0}
|
||||||
|
BaseShader: {fileID: 4800000, guid: e3210a0e252ee5d44ab91b3f3025cef4, type: 3}
|
||||||
|
LayerCount: 20
|
||||||
|
FurLength: 0.02
|
||||||
|
FurFore: {x: 0, y: -10, z: 0}
|
||||||
|
Noise: {fileID: 2800000, guid: e0721da18f86b2445909fe95f129562c, type: 3}
|
||||||
|
Noise2: {fileID: 2800000, guid: 79182d87119103f4fb226b9971457e55, type: 3}
|
||||||
|
MainTex: {fileID: 2800000, guid: 6be435e8befbac644a71f2db309a390f, type: 3}
|
||||||
|
Mask: {fileID: 2800000, guid: 636593a9da453b24699c835cf33f2c21, type: 3}
|
||||||
|
FurColor: {r: 1, g: 1, b: 1, a: 1}
|
||||||
|
ShadowColor: {r: 0, g: 0, b: 0, a: 1}
|
||||||
|
ShadowStrength: 0.6
|
||||||
|
R: 0.5
|
||||||
|
_LengthMut: 1
|
||||||
|
Density: 1
|
||||||
|
isInStance: 1
|
||||||
|
ZWrite: 1
|
||||||
|
RenderSort: 0
|
||||||
7
Assets/犬导尿术/狗/Fair.prefab.meta
Normal file
7
Assets/犬导尿术/狗/Fair.prefab.meta
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 9c8d42d6178a8da478bb292a6ee1418a
|
||||||
|
PrefabImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
136
Assets/犬导尿术/狗/Materials/SM_szq1.mat
Normal file
136
Assets/犬导尿术/狗/Materials/SM_szq1.mat
Normal file
@ -0,0 +1,136 @@
|
|||||||
|
%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: SM_szq1
|
||||||
|
m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3}
|
||||||
|
m_Parent: {fileID: 0}
|
||||||
|
m_ModifiedSerializedProperties: 0
|
||||||
|
m_ValidKeywords:
|
||||||
|
- _SPECULARHIGHLIGHTS_OFF
|
||||||
|
m_InvalidKeywords: []
|
||||||
|
m_LightmapFlags: 4
|
||||||
|
m_EnableInstancingVariants: 0
|
||||||
|
m_DoubleSidedGI: 0
|
||||||
|
m_CustomRenderQueue: -1
|
||||||
|
stringTagMap:
|
||||||
|
RenderType: Opaque
|
||||||
|
disabledShaderPasses: []
|
||||||
|
m_LockedProperties:
|
||||||
|
m_SavedProperties:
|
||||||
|
serializedVersion: 3
|
||||||
|
m_TexEnvs:
|
||||||
|
- _BaseMap:
|
||||||
|
m_Texture: {fileID: 0}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _BumpMap:
|
||||||
|
m_Texture: {fileID: 0}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _DetailAlbedoMap:
|
||||||
|
m_Texture: {fileID: 0}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _DetailMask:
|
||||||
|
m_Texture: {fileID: 0}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _DetailNormalMap:
|
||||||
|
m_Texture: {fileID: 0}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _EmissionMap:
|
||||||
|
m_Texture: {fileID: 0}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _MainTex:
|
||||||
|
m_Texture: {fileID: 0}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _MetallicGlossMap:
|
||||||
|
m_Texture: {fileID: 0}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _OcclusionMap:
|
||||||
|
m_Texture: {fileID: 0}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _ParallaxMap:
|
||||||
|
m_Texture: {fileID: 0}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _SpecGlossMap:
|
||||||
|
m_Texture: {fileID: 0}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- unity_Lightmaps:
|
||||||
|
m_Texture: {fileID: 0}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- unity_LightmapsInd:
|
||||||
|
m_Texture: {fileID: 0}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- unity_ShadowMasks:
|
||||||
|
m_Texture: {fileID: 0}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
m_Ints: []
|
||||||
|
m_Floats:
|
||||||
|
- _AlphaClip: 0
|
||||||
|
- _AlphaToMask: 0
|
||||||
|
- _Blend: 0
|
||||||
|
- _BlendModePreserveSpecular: 1
|
||||||
|
- _BumpScale: 1
|
||||||
|
- _ClearCoatMask: 0
|
||||||
|
- _ClearCoatSmoothness: 0
|
||||||
|
- _Cull: 2
|
||||||
|
- _Cutoff: 0.5
|
||||||
|
- _DetailAlbedoMapScale: 1
|
||||||
|
- _DetailNormalMapScale: 1
|
||||||
|
- _DstBlend: 0
|
||||||
|
- _DstBlendAlpha: 0
|
||||||
|
- _EnvironmentReflections: 1
|
||||||
|
- _GlossMapScale: 1
|
||||||
|
- _Glossiness: 0
|
||||||
|
- _GlossyReflections: 1
|
||||||
|
- _Metallic: 0.3
|
||||||
|
- _Mode: 0
|
||||||
|
- _OcclusionStrength: 1
|
||||||
|
- _Parallax: 0.02
|
||||||
|
- _QueueOffset: 0
|
||||||
|
- _ReceiveShadows: 1
|
||||||
|
- _Smoothness: 0.2
|
||||||
|
- _SmoothnessTextureChannel: 0
|
||||||
|
- _SpecularHighlights: 0
|
||||||
|
- _SrcBlend: 1
|
||||||
|
- _SrcBlendAlpha: 1
|
||||||
|
- _Surface: 0
|
||||||
|
- _UVSec: 0
|
||||||
|
- _WorkflowMode: 1
|
||||||
|
- _ZWrite: 1
|
||||||
|
m_Colors:
|
||||||
|
- _BaseColor: {r: 0.98039216, g: 0.81114197, b: 0.74509805, a: 1}
|
||||||
|
- _Color: {r: 0.98039216, g: 0.81114197, b: 0.74509805, a: 1}
|
||||||
|
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
|
||||||
|
- _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1}
|
||||||
|
m_BuildTextureStacks: []
|
||||||
|
--- !u!114 &1117154867753345731
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 11
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 0}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
version: 7
|
||||||
8
Assets/犬导尿术/狗/Materials/SM_szq1.mat.meta
Normal file
8
Assets/犬导尿术/狗/Materials/SM_szq1.mat.meta
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: e5dc95e54594d0f49ba446b064008205
|
||||||
|
NativeFormatImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
mainObjectFileID: 2100000
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
@ -118,7 +118,7 @@ Material:
|
|||||||
- _Parallax: 0.02
|
- _Parallax: 0.02
|
||||||
- _QueueOffset: 0
|
- _QueueOffset: 0
|
||||||
- _ReceiveShadows: 1
|
- _ReceiveShadows: 1
|
||||||
- _Smoothness: 0.85
|
- _Smoothness: 0
|
||||||
- _SmoothnessTextureChannel: 0
|
- _SmoothnessTextureChannel: 0
|
||||||
- _SpecularHighlights: 1
|
- _SpecularHighlights: 1
|
||||||
- _SrcBlend: 1
|
- _SrcBlend: 1
|
||||||
@ -128,8 +128,8 @@ Material:
|
|||||||
- _WorkflowMode: 1
|
- _WorkflowMode: 1
|
||||||
- _ZWrite: 1
|
- _ZWrite: 1
|
||||||
m_Colors:
|
m_Colors:
|
||||||
- _BaseColor: {r: 1, g: 1, b: 1, a: 1}
|
- _BaseColor: {r: 0.8301887, g: 0.8301887, b: 0.8301887, a: 1}
|
||||||
- _Color: {r: 1, g: 1, b: 1, a: 1}
|
- _Color: {r: 0.8301887, g: 0.8301887, b: 0.8301887, a: 1}
|
||||||
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
|
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
|
||||||
- _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1}
|
- _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1}
|
||||||
m_BuildTextureStacks: []
|
m_BuildTextureStacks: []
|
||||||
|
|||||||
@ -3,7 +3,22 @@ guid: 30dc6dd5a04da2b4b8e990e0a2bc246c
|
|||||||
ModelImporter:
|
ModelImporter:
|
||||||
serializedVersion: 22200
|
serializedVersion: 22200
|
||||||
internalIDToNameTable: []
|
internalIDToNameTable: []
|
||||||
externalObjects: {}
|
externalObjects:
|
||||||
|
- first:
|
||||||
|
type: UnityEngine:Material
|
||||||
|
assembly: UnityEngine.CoreModule
|
||||||
|
name: SM_szq
|
||||||
|
second: {fileID: 2100000, guid: 83ae534c2fb6a6944aa4e5df6d75dfd0, type: 2}
|
||||||
|
- first:
|
||||||
|
type: UnityEngine:Material
|
||||||
|
assembly: UnityEngine.CoreModule
|
||||||
|
name: lambert7
|
||||||
|
second: {fileID: 2100000, guid: ff4acd75bd2668d4084a633735c24f92, type: 2}
|
||||||
|
- first:
|
||||||
|
type: UnityEngine:Material
|
||||||
|
assembly: UnityEngine.CoreModule
|
||||||
|
name: pasted__lambert2
|
||||||
|
second: {fileID: 2100000, guid: 44a351d87ba2e2a41937ab301a8bdc84, type: 2}
|
||||||
materials:
|
materials:
|
||||||
materialImportMode: 2
|
materialImportMode: 2
|
||||||
materialName: 0
|
materialName: 0
|
||||||
|
|||||||
BIN
Assets/犬导尿术/狗/SM_timao.fbx
Normal file
BIN
Assets/犬导尿术/狗/SM_timao.fbx
Normal file
Binary file not shown.
114
Assets/犬导尿术/狗/SM_timao.fbx.meta
Normal file
114
Assets/犬导尿术/狗/SM_timao.fbx.meta
Normal file
@ -0,0 +1,114 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 5275dd2cb4c499d4dbee9973e88efc0a
|
||||||
|
ModelImporter:
|
||||||
|
serializedVersion: 22200
|
||||||
|
internalIDToNameTable: []
|
||||||
|
externalObjects:
|
||||||
|
- first:
|
||||||
|
type: UnityEngine:Material
|
||||||
|
assembly: UnityEngine.CoreModule
|
||||||
|
name: SM_szq
|
||||||
|
second: {fileID: 2100000, guid: e5dc95e54594d0f49ba446b064008205, type: 2}
|
||||||
|
materials:
|
||||||
|
materialImportMode: 2
|
||||||
|
materialName: 0
|
||||||
|
materialSearch: 1
|
||||||
|
materialLocation: 1
|
||||||
|
animations:
|
||||||
|
legacyGenerateAnimations: 4
|
||||||
|
bakeSimulation: 0
|
||||||
|
resampleCurves: 1
|
||||||
|
optimizeGameObjects: 0
|
||||||
|
removeConstantScaleCurves: 0
|
||||||
|
motionNodeName:
|
||||||
|
rigImportErrors:
|
||||||
|
rigImportWarnings:
|
||||||
|
animationImportErrors:
|
||||||
|
animationImportWarnings:
|
||||||
|
animationRetargetingWarnings:
|
||||||
|
animationDoRetargetingWarnings: 0
|
||||||
|
importAnimatedCustomProperties: 0
|
||||||
|
importConstraints: 0
|
||||||
|
animationCompression: 1
|
||||||
|
animationRotationError: 0.5
|
||||||
|
animationPositionError: 0.5
|
||||||
|
animationScaleError: 0.5
|
||||||
|
animationWrapMode: 0
|
||||||
|
extraExposedTransformPaths: []
|
||||||
|
extraUserProperties: []
|
||||||
|
clipAnimations: []
|
||||||
|
isReadable: 0
|
||||||
|
meshes:
|
||||||
|
lODScreenPercentages: []
|
||||||
|
globalScale: 1
|
||||||
|
meshCompression: 0
|
||||||
|
addColliders: 0
|
||||||
|
useSRGBMaterialColor: 1
|
||||||
|
sortHierarchyByName: 1
|
||||||
|
importPhysicalCameras: 1
|
||||||
|
importVisibility: 1
|
||||||
|
importBlendShapes: 1
|
||||||
|
importCameras: 1
|
||||||
|
importLights: 1
|
||||||
|
nodeNameCollisionStrategy: 1
|
||||||
|
fileIdsGeneration: 2
|
||||||
|
swapUVChannels: 0
|
||||||
|
generateSecondaryUV: 0
|
||||||
|
useFileUnits: 1
|
||||||
|
keepQuads: 0
|
||||||
|
weldVertices: 1
|
||||||
|
bakeAxisConversion: 0
|
||||||
|
preserveHierarchy: 0
|
||||||
|
skinWeightsMode: 0
|
||||||
|
maxBonesPerVertex: 4
|
||||||
|
minBoneWeight: 0.001
|
||||||
|
optimizeBones: 1
|
||||||
|
meshOptimizationFlags: -1
|
||||||
|
indexFormat: 0
|
||||||
|
secondaryUVAngleDistortion: 8
|
||||||
|
secondaryUVAreaDistortion: 15.000001
|
||||||
|
secondaryUVHardAngle: 88
|
||||||
|
secondaryUVMarginMethod: 1
|
||||||
|
secondaryUVMinLightmapResolution: 40
|
||||||
|
secondaryUVMinObjectScale: 1
|
||||||
|
secondaryUVPackMargin: 4
|
||||||
|
useFileScale: 1
|
||||||
|
strictVertexDataChecks: 0
|
||||||
|
tangentSpace:
|
||||||
|
normalSmoothAngle: 60
|
||||||
|
normalImportMode: 0
|
||||||
|
tangentImportMode: 3
|
||||||
|
normalCalculationMode: 4
|
||||||
|
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
|
||||||
|
blendShapeNormalImportMode: 1
|
||||||
|
normalSmoothingSource: 0
|
||||||
|
referencedClips: []
|
||||||
|
importAnimation: 1
|
||||||
|
humanDescription:
|
||||||
|
serializedVersion: 3
|
||||||
|
human: []
|
||||||
|
skeleton: []
|
||||||
|
armTwist: 0.5
|
||||||
|
foreArmTwist: 0.5
|
||||||
|
upperLegTwist: 0.5
|
||||||
|
legTwist: 0.5
|
||||||
|
armStretch: 0.05
|
||||||
|
legStretch: 0.05
|
||||||
|
feetSpacing: 0
|
||||||
|
globalScale: 1
|
||||||
|
rootMotionBoneName:
|
||||||
|
hasTranslationDoF: 0
|
||||||
|
hasExtraRoot: 0
|
||||||
|
skeletonHasParents: 1
|
||||||
|
lastHumanDescriptionAvatarSource: {instanceID: 0}
|
||||||
|
autoGenerateAvatarMappingIfUnspecified: 1
|
||||||
|
animationType: 2
|
||||||
|
humanoidOversampling: 1
|
||||||
|
avatarSetup: 0
|
||||||
|
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
|
||||||
|
importBlendShapeDeformPercent: 1
|
||||||
|
remapMaterialsIfMaterialImportModeIsNone: 0
|
||||||
|
additionalBone: 0
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
Loading…
x
Reference in New Issue
Block a user