Compare commits
8 Commits
Author | SHA1 | Date |
---|---|---|
曹衍涛 | ba1a82401e | 5 years ago |
曹衍涛 | a350eb6c5d | 5 years ago |
曹衍涛 | d7a6a89a5f | 5 years ago |
曹衍涛 | eb24001d44 | 5 years ago |
曹衍涛 | 03beb3a638 | 5 years ago |
曹衍涛 | ab41a1d2f0 | 5 years ago |
曹衍涛 | cfe8576b3a | 5 years ago |
曹衍涛 | 9e09accc74 | 5 years ago |
394 changed files with 155685 additions and 74587 deletions
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2 |
||||
guid: b1a82006b3e142744afa3b8b23f2810e |
||||
folderAsset: yes |
||||
DefaultImporter: |
||||
externalObjects: {} |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2 |
||||
guid: b10297f1fda00454d8b6eea32935b4de |
||||
folderAsset: yes |
||||
DefaultImporter: |
||||
externalObjects: {} |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
@ -0,0 +1,96 @@
|
||||
//using Boo.Lang; |
||||
using System.Collections; |
||||
using System.Collections.Generic; |
||||
using UnityEngine; |
||||
using UnityEngine.UI; |
||||
|
||||
public class Commandcountnum : MonoBehaviour |
||||
{ |
||||
public Text sendtext; |
||||
public Text receivetext; |
||||
|
||||
// Start is called before the first frame update |
||||
void Start() |
||||
{ |
||||
|
||||
} |
||||
|
||||
// Update is called once per frame |
||||
void Update() |
||||
{ |
||||
if (Input.GetKeyDown(KeyCode.Space)) |
||||
{ |
||||
|
||||
sendtext.text = "send:" + GetSendMsg().Count; |
||||
receivetext.text = "receive:" + GetReceiveMsg().Count; |
||||
|
||||
} |
||||
} |
||||
private List<ChatMessage> GetSendMsg() |
||||
{ |
||||
List<ChatMessage> sendchatlist = new List<ChatMessage>(); |
||||
for (int i = 0; i < ReportDataMgr.AllChatMessage.Count; i++) |
||||
{ |
||||
if (ReportDataMgr.AllChatMessage[i].SenderId==CurrentUserInfo.mySelf.Id) |
||||
{//当前客户端发送的 |
||||
// if (ChatManager.Instance.FindDirectionSubUserDataID().Contains(ReportDataMgr.AllChatMessage[i].ReceiverId)) |
||||
{//直接下级为接收方 |
||||
sendchatlist.Add(ReportDataMgr.AllChatMessage[i]); |
||||
} |
||||
} |
||||
} |
||||
return sendchatlist; |
||||
} |
||||
private List<ChatMessage> GetReceiveMsg() |
||||
{ |
||||
List<ChatMessage> receivechatlist = new List<ChatMessage>(); |
||||
for (int i = 0; i < ReportDataMgr.AllChatMessage.Count; i++) |
||||
{ |
||||
if (!(CurrentUserInfo.role == Role.导调组 || CurrentUserInfo.role == Role.参谋)) |
||||
{ |
||||
if (ReportDataMgr.AllChatMessage[i].ReceiverId == CurrentUserInfo.mySelf.Id) |
||||
{ |
||||
receivechatlist.Add(ReportDataMgr.AllChatMessage[i]); |
||||
//if (ChatManager.Instance.FindDirectionSubUserDataID().Contains(ReportDataMgr.AllChatMessage[i].SenderId)) |
||||
//{ |
||||
// receivechatlist.Add(ReportDataMgr.AllChatMessage[i]); |
||||
//} |
||||
//if (ChatManager.Instance.FindDirectionSupUserDataID()== ReportDataMgr.AllChatMessage[i].SenderId) |
||||
//{ |
||||
// receivechatlist.Add(ReportDataMgr.AllChatMessage[i]); |
||||
//} |
||||
} |
||||
} |
||||
else |
||||
{ |
||||
receivechatlist.Add(ReportDataMgr.AllChatMessage[i]); |
||||
} |
||||
|
||||
} |
||||
return receivechatlist; |
||||
} |
||||
private List<long> GetChildOriIdList() |
||||
{ |
||||
List<long> idlist = new List<long>(); |
||||
for (int i = 0; i < CurrentUserInfo.room.UserList.Count; i++) |
||||
{ |
||||
if (CurrentUserInfo.room.UserList[i].Org.ParentId==CurrentUserInfo.mySelf.Id) |
||||
{ |
||||
idlist.Add(CurrentUserInfo.room.UserList[i].UserInfo.Id); |
||||
} |
||||
} |
||||
return idlist; |
||||
} |
||||
private long GetDirectionOriId() |
||||
{ |
||||
long parentoriid = 0; |
||||
for (int i = 0; i < CurrentUserInfo.room.UserList.Count; i++) |
||||
{ |
||||
if (CurrentUserInfo.room.UserList[i].UserInfo.Id == CurrentUserInfo.mySelf.Id) |
||||
{ |
||||
parentoriid = CurrentUserInfo.room.UserList[i].Org.ParentId; |
||||
} |
||||
} |
||||
return parentoriid; |
||||
} |
||||
} |
@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2 |
||||
guid: 795332b1f8560754787b02805e644ed2 |
||||
MonoImporter: |
||||
externalObjects: {} |
||||
serializedVersion: 2 |
||||
defaultReferences: [] |
||||
executionOrder: 0 |
||||
icon: {instanceID: 0} |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
@ -0,0 +1,212 @@
|
||||
using System.Collections; |
||||
using System.Collections.Generic; |
||||
using UnityEngine; |
||||
using UnityEditor; |
||||
using UnityEngine.AI; |
||||
using System.IO; |
||||
using System.Text; |
||||
using System; |
||||
|
||||
public class SceneToolFloor |
||||
{ |
||||
[MenuItem("SceneTool/SetFloorMessage")]//添加FloorMessage脚本绑定楼层信息 |
||||
public static void SetFloorMessage() |
||||
{ |
||||
Transform neiParent = GameObject.Find("shinei").transform.GetChild(0); |
||||
for (int i = 0; i < neiParent.childCount; i++) |
||||
{ |
||||
//Debug.Log(neiParent.GetChild(i).name); |
||||
if (!neiParent.GetChild(i).GetComponent<FloorMessage>()) |
||||
{ |
||||
neiParent.GetChild(i).gameObject.AddComponent<FloorMessage>(); |
||||
} |
||||
FloorMessage msg = neiParent.GetChild(i).GetComponent<FloorMessage>(); |
||||
msg.targetTrans = GetTarget(neiParent.GetChild(i)); |
||||
msg.buildNum = neiParent.name; |
||||
if (!neiParent.GetChild(i).name.ToLower().Contains("m")) |
||||
{ |
||||
string floornum = neiParent.GetChild(i).name.Substring |
||||
(neiParent.GetChild(i).name.ToLower().IndexOf("nei") + 3/*, neiParent.GetChild(i).name.Length - 4*/); |
||||
|
||||
msg.floorNum = int.Parse(floornum); |
||||
msg.interlayerNum = 0; |
||||
} |
||||
else |
||||
{ |
||||
msg.floorNum = int.Parse(neiParent.GetChild(i).name.Substring |
||||
(neiParent.GetChild(i).name.ToLower().IndexOf("nei") + 3, neiParent.GetChild(i).name.ToLower().IndexOf("m") |
||||
- neiParent.GetChild(i).name.ToLower().IndexOf("nei") - 4)); |
||||
msg.interlayerNum = int.Parse(neiParent.GetChild(i).name.Substring |
||||
(neiParent.GetChild(i).name.ToLower().IndexOf("m") + 1, neiParent.GetChild(i).name.Length - |
||||
neiParent.GetChild(i).name.ToLower().IndexOf("m") - 1)); |
||||
} |
||||
} |
||||
Transform waiParent = GameObject.Find("shiwai").transform.GetChild(0); |
||||
for (int i = 0; i < waiParent.childCount; i++) |
||||
{ |
||||
//Debug.Log(waiParent.GetChild(i).name); |
||||
if (!waiParent.GetChild(i).GetComponent<FloorMessage>()) |
||||
{ |
||||
waiParent.GetChild(i).gameObject.AddComponent<FloorMessage>(); |
||||
} |
||||
FloorMessage msg = waiParent.GetChild(i).GetComponent<FloorMessage>(); |
||||
msg.buildNum = waiParent.name; |
||||
if (!waiParent.GetChild(i).name.ToLower().Contains("m")) |
||||
{ |
||||
string floornum = waiParent.GetChild(i).name.Substring |
||||
(waiParent.GetChild(i).name.ToLower().IndexOf("wai") + 3/*, waiParent.GetChild(i).name.Length - 4*/); |
||||
msg.floorNum = int.Parse(floornum); |
||||
msg.interlayerNum = 0; |
||||
} |
||||
else |
||||
{ |
||||
msg.floorNum = int.Parse(waiParent.GetChild(i).name.Substring |
||||
(waiParent.GetChild(i).name.ToLower().IndexOf("wai") + 4, waiParent.GetChild(i).name.ToLower().IndexOf("m") |
||||
- waiParent.GetChild(i).name.ToLower().IndexOf("wai") - 4)); |
||||
msg.interlayerNum = int.Parse(waiParent.GetChild(i).name.Substring |
||||
(waiParent.GetChild(i).name.ToLower().IndexOf("m") + 1, waiParent.GetChild(i).name.Length - |
||||
waiParent.GetChild(i).name.ToLower().IndexOf("m") - 1)); |
||||
} |
||||
} |
||||
} |
||||
static Transform GetTarget(Transform parent) |
||||
{ |
||||
for (int i = 0; i < parent.childCount; i++) |
||||
{ |
||||
if (parent.GetChild(i).name.ToLower().Contains("_floor") |
||||
|| parent.GetChild(i).name.ToLower().Contains("-floor") |
||||
) |
||||
{ |
||||
return parent.GetChild(i); |
||||
} |
||||
} |
||||
|
||||
return parent; |
||||
} |
||||
[MenuItem("SceneTool/SetNavLayershinei")]//添加寻路层(选中shinei对象设置,注:扶梯情况特殊没有包含) |
||||
public static void SetNavLayer() |
||||
{ |
||||
Transform[] obj = Selection.GetTransforms(SelectionMode.Deep); |
||||
for (int i = 0; i < obj.Length; i++) |
||||
{ |
||||
if (obj[i].name.ToLower().Contains("_floor") ||//地面 |
||||
obj[i].name.ToLower().Contains("_floor")) |
||||
{ |
||||
Debug.Log(obj[i].name); |
||||
// obj[i].gameObject.layer = LayerMask.NameToLayer("SoldierRoad"); |
||||
// if (!obj[i].gameObject.GetComponent<MeshCollider>()) |
||||
// { |
||||
// obj[i].gameObject.AddComponent<MeshCollider>(); |
||||
// } |
||||
// if (!obj[i].gameObject.GetComponent<PathFindable>()) |
||||
// { |
||||
// obj[i].gameObject.AddComponent<PathFindable>(); |
||||
// } |
||||
// if (!obj[i].gameObject.GetComponent<CloneGameObjInfo>()) |
||||
// { |
||||
// obj[i].gameObject.AddComponent<CloneGameObjInfo>(); |
||||
// } |
||||
// if (!obj[i].gameObject.GetComponent<CloneableEnums>()) |
||||
// { |
||||
// obj[i].gameObject.AddComponent<CloneableEnums>(); |
||||
// } |
||||
// CloneableEnums enumParent = obj[i].gameObject.GetComponent<CloneableEnums>(); |
||||
// GameObject CarRoad = GameObject.Find("FloorNei"); |
||||
// var CloneableEnums = CarRoad.GetComponent<CloneableEnums>(); |
||||
// enumParent.CloneableTypes = CloneableEnums.CloneableTypes; |
||||
// if (obj[i].parent.GetComponent<FloorMessage>()) |
||||
// { |
||||
// FloorMessage fmg = obj[i].parent.GetComponent<FloorMessage>(); |
||||
// obj[i].gameObject.GetComponent<CloneGameObjInfo>().gameObjType = CloneObjType.StaticGameObject; |
||||
// obj[i].gameObject.GetComponent<CloneGameObjInfo>().buildNum = fmg.buildNum; |
||||
// obj[i].gameObject.GetComponent<CloneGameObjInfo>().floorNum = fmg.floorNum; |
||||
// obj[i].gameObject.GetComponent<CloneGameObjInfo>().interlayerNum = fmg.interlayerNum; |
||||
// } |
||||
// if (obj[i].parent.parent.GetComponent<FloorMessage>()) |
||||
// { |
||||
// FloorMessage fmg = obj[i].parent.parent.GetComponent<FloorMessage>(); |
||||
// obj[i].gameObject.GetComponent<CloneGameObjInfo>().gameObjType = CloneObjType.StaticGameObject; |
||||
// obj[i].gameObject.GetComponent<CloneGameObjInfo>().buildNum = fmg.buildNum; |
||||
// obj[i].gameObject.GetComponent<CloneGameObjInfo>().floorNum = fmg.floorNum; |
||||
// obj[i].gameObject.GetComponent<CloneGameObjInfo>().interlayerNum = fmg.interlayerNum; |
||||
// } |
||||
//} |
||||
//if (obj[i].name.ToLower().Contains("_wall") ||//墙面 |
||||
// obj[i].name.ToLower().Contains("_wall")) |
||||
//{ |
||||
// obj[i].gameObject.layer = LayerMask.NameToLayer("SoldierRoad"); |
||||
// if (!obj[i].gameObject.GetComponent<NavMeshModifier>()) |
||||
// { |
||||
// obj[i].gameObject.AddComponent<NavMeshModifier>(); |
||||
// } |
||||
// NavMeshModifier mod = obj[i].gameObject.GetComponent<NavMeshModifier>(); |
||||
// mod.overrideArea = true; |
||||
// mod.area = 1; |
||||
// if (!obj[i].gameObject.GetComponent<MeshCollider>()) |
||||
// { |
||||
// obj[i].gameObject.AddComponent<MeshCollider>(); |
||||
// } |
||||
//} |
||||
//if (obj[i].name.ToLower().Contains("lt"))//楼梯 |
||||
//{ |
||||
// obj[i].gameObject.layer = LayerMask.NameToLayer("SoldierRoad"); |
||||
// if (!obj[i].gameObject.GetComponent<MeshCollider>()) |
||||
// { |
||||
// obj[i].gameObject.AddComponent<MeshCollider>(); |
||||
// } |
||||
// if (!obj[i].gameObject.GetComponent<PathFindable>()) |
||||
// { |
||||
// obj[i].gameObject.AddComponent<PathFindable>(); |
||||
// } |
||||
} |
||||
} |
||||
} |
||||
[MenuItem("SceneTool/GetNavLayerCarRoad")] |
||||
public static void GetNavLayerCarRoad() |
||||
{ |
||||
Transform[] obj = Selection.GetTransforms(SelectionMode.Deep); |
||||
{ |
||||
for (int i = 0; i < obj.Length; i++) |
||||
{ |
||||
if (obj[i].gameObject.layer == LayerMask.NameToLayer("CarRoad")) |
||||
{ |
||||
// if (!obj[i].gameObject.GetComponent<NavMeshModifier>()) |
||||
{ |
||||
Debug.Log(obj[i].name); |
||||
} |
||||
} |
||||
} |
||||
} |
||||
} |
||||
[MenuItem("SceneTool/ReadCloneTypes")] |
||||
static void ReadCloneTypes() |
||||
{ |
||||
string path = Application.dataPath + "/Floors.txt"; |
||||
string str = File.ReadAllText(path, Encoding.UTF8); |
||||
string[] EnumStrList = str.Split(','); |
||||
//List<CloneObjType> EnmuList = new List<CloneObjType>(); |
||||
//foreach (var item in EnumStrList) |
||||
//{ |
||||
// if (!string.IsNullOrEmpty(item)) |
||||
// { |
||||
// CloneObjType type = (CloneObjType)Enum.Parse(typeof(CloneObjType), item); |
||||
// EnmuList.Add(type); |
||||
// } |
||||
//} |
||||
//GameObject CarRoad = GameObject.Find("FloorNei"); |
||||
//if (!CarRoad.GetComponent<CloneableEnums>()) |
||||
//{ |
||||
// CarRoad.AddComponent<CloneableEnums>(); |
||||
//} |
||||
//var CloneableEnums = CarRoad.GetComponent<CloneableEnums>(); |
||||
//CloneableEnums.CloneableTypes = EnmuList; |
||||
} |
||||
[MenuItem("SceneTool/AddColider")] |
||||
static void AddColider() |
||||
{ |
||||
Transform[] obj = Selection.GetTransforms(SelectionMode.Unfiltered); |
||||
{ |
||||
Debug.Log(obj[0].name); |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2 |
||||
guid: 64783b6d3a93095469a2c37618e659f0 |
||||
MonoImporter: |
||||
externalObjects: {} |
||||
serializedVersion: 2 |
||||
defaultReferences: [] |
||||
executionOrder: 0 |
||||
icon: {instanceID: 0} |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
@ -1,6 +1,6 @@
|
||||
fileFormatVersion: 2 |
||||
guid: bcdf44e7aef61ae4eaccbd888f0d18b7 |
||||
timeCreated: 1529800507 |
||||
guid: ad5e14b063539034d8ea6a67109d6630 |
||||
timeCreated: 1596101682 |
||||
licenseType: Pro |
||||
NativeFormatImporter: |
||||
mainObjectFileID: 100100000 |
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2 |
||||
guid: 22750da164e40504c9bc7f52bf5e6ae5 |
||||
folderAsset: yes |
||||
DefaultImporter: |
||||
externalObjects: {} |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2 |
||||
guid: 4ecdca94df1118f43be3b2b2a3fd87ec |
||||
folderAsset: yes |
||||
DefaultImporter: |
||||
externalObjects: {} |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
Binary file not shown.
@ -0,0 +1,130 @@
|
||||
fileFormatVersion: 2 |
||||
guid: af3d1acdb1b00c142811d1177fb20524 |
||||
timeCreated: 1502882878 |
||||
licenseType: Pro |
||||
ModelImporter: |
||||
serializedVersion: 19 |
||||
fileIDToRecycleName: |
||||
100000: Beng |
||||
100002: beng1 |
||||
100004: beng2 |
||||
100006: beng3 |
||||
100008: beng4 |
||||
100010: //RootNode |
||||
100012: BF_Floor |
||||
100014: BF_Wall |
||||
100016: BF_wenzi |
||||
100018: BF_wenzi 1 |
||||
100020: guanxian |
||||
100022: SBF |
||||
400000: Beng |
||||
400002: beng1 |
||||
400004: beng2 |
||||
400006: beng3 |
||||
400008: beng4 |
||||
400010: //RootNode |
||||
400012: BF_Floor |
||||
400014: BF_Wall |
||||
400016: BF_wenzi |
||||
400018: BF_wenzi 1 |
||||
400020: guanxian |
||||
400022: SBF |
||||
2300000: beng1 |
||||
2300002: beng2 |
||||
2300004: beng3 |
||||
2300006: beng4 |
||||
2300008: BF_Floor |
||||
2300010: BF_Wall |
||||
2300012: BF_wenzi |
||||
2300014: BF_wenzi 1 |
||||
2300016: guanxian |
||||
3300000: beng1 |
||||
3300002: beng2 |
||||
3300004: beng3 |
||||
3300006: beng4 |
||||
3300008: BF_Floor |
||||
3300010: BF_Wall |
||||
3300012: BF_wenzi |
||||
3300014: BF_wenzi 1 |
||||
3300016: guanxian |
||||
4300000: BF_Floor |
||||
4300002: BF_Wall |
||||
4300004: BF_wenzi |
||||
4300006: guanxian |
||||
4300008: BF_wenzi |
||||
4300010: beng1 |
||||
4300012: beng2 |
||||
4300014: beng3 |
||||
4300016: beng4 |
||||
7400000: Take 001 |
||||
9500000: //RootNode |
||||
materials: |
||||
importMaterials: 1 |
||||
materialName: 0 |
||||
materialSearch: 1 |
||||
animations: |
||||
legacyGenerateAnimations: 4 |
||||
bakeSimulation: 0 |
||||
resampleCurves: 1 |
||||
optimizeGameObjects: 0 |
||||
motionNodeName: |
||||
rigImportErrors: |
||||
rigImportWarnings: |
||||
animationImportErrors: |
||||
animationImportWarnings: |
||||
animationRetargetingWarnings: |
||||
animationDoRetargetingWarnings: 0 |
||||
animationCompression: 1 |
||||
animationRotationError: 0.5 |
||||
animationPositionError: 0.5 |
||||
animationScaleError: 0.5 |
||||
animationWrapMode: 0 |
||||
extraExposedTransformPaths: [] |
||||
clipAnimations: [] |
||||
isReadable: 1 |
||||
meshes: |
||||
lODScreenPercentages: [] |
||||
globalScale: 1 |
||||
meshCompression: 0 |
||||
addColliders: 0 |
||||
importBlendShapes: 1 |
||||
swapUVChannels: 0 |
||||
generateSecondaryUV: 0 |
||||
useFileUnits: 1 |
||||
optimizeMeshForGPU: 1 |
||||
keepQuads: 0 |
||||
weldVertices: 1 |
||||
secondaryUVAngleDistortion: 8 |
||||
secondaryUVAreaDistortion: 15.000001 |
||||
secondaryUVHardAngle: 88 |
||||
secondaryUVPackMargin: 4 |
||||
useFileScale: 1 |
||||
tangentSpace: |
||||
normalSmoothAngle: 60 |
||||
normalImportMode: 0 |
||||
tangentImportMode: 3 |
||||
importAnimation: 1 |
||||
copyAvatar: 0 |
||||
humanDescription: |
||||
serializedVersion: 2 |
||||
human: [] |
||||
skeleton: [] |
||||
armTwist: 0.5 |
||||
foreArmTwist: 0.5 |
||||
upperLegTwist: 0.5 |
||||
legTwist: 0.5 |
||||
armStretch: 0.05 |
||||
legStretch: 0.05 |
||||
feetSpacing: 0 |
||||
rootMotionBoneName: |
||||
rootMotionBoneRotation: {x: 0, y: 0, z: 0, w: 1} |
||||
hasTranslationDoF: 0 |
||||
hasExtraRoot: 0 |
||||
skeletonHasParents: 1 |
||||
lastHumanDescriptionAvatarSource: {instanceID: 0} |
||||
animationType: 2 |
||||
humanoidOversampling: 1 |
||||
additionalBone: 0 |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
Binary file not shown.
@ -0,0 +1,83 @@
|
||||
fileFormatVersion: 2 |
||||
guid: e360ffa97649f204090a707b5467c480 |
||||
timeCreated: 1503365417 |
||||
licenseType: Pro |
||||
ModelImporter: |
||||
serializedVersion: 19 |
||||
fileIDToRecycleName: |
||||
100000: //RootNode |
||||
400000: //RootNode |
||||
2300000: //RootNode |
||||
3300000: //RootNode |
||||
4300000: Object001 |
||||
9500000: //RootNode |
||||
materials: |
||||
importMaterials: 1 |
||||
materialName: 0 |
||||
materialSearch: 1 |
||||
animations: |
||||
legacyGenerateAnimations: 4 |
||||
bakeSimulation: 0 |
||||
resampleCurves: 1 |
||||
optimizeGameObjects: 0 |
||||
motionNodeName: |
||||
rigImportErrors: |
||||
rigImportWarnings: |
||||
animationImportErrors: |
||||
animationImportWarnings: |
||||
animationRetargetingWarnings: |
||||
animationDoRetargetingWarnings: 0 |
||||
animationCompression: 1 |
||||
animationRotationError: 0.5 |
||||
animationPositionError: 0.5 |
||||
animationScaleError: 0.5 |
||||
animationWrapMode: 0 |
||||
extraExposedTransformPaths: [] |
||||
clipAnimations: [] |
||||
isReadable: 1 |
||||
meshes: |
||||
lODScreenPercentages: [] |
||||
globalScale: 1 |
||||
meshCompression: 0 |
||||
addColliders: 0 |
||||
importBlendShapes: 1 |
||||
swapUVChannels: 0 |
||||
generateSecondaryUV: 0 |
||||
useFileUnits: 1 |
||||
optimizeMeshForGPU: 1 |
||||
keepQuads: 0 |
||||
weldVertices: 1 |
||||
secondaryUVAngleDistortion: 8 |
||||
secondaryUVAreaDistortion: 15.000001 |
||||
secondaryUVHardAngle: 88 |
||||
secondaryUVPackMargin: 4 |
||||
useFileScale: 1 |
||||
tangentSpace: |
||||
normalSmoothAngle: 60 |
||||
normalImportMode: 0 |
||||
tangentImportMode: 3 |
||||
importAnimation: 1 |
||||
copyAvatar: 0 |
||||
humanDescription: |
||||
serializedVersion: 2 |
||||
human: [] |
||||
skeleton: [] |
||||
armTwist: 0.5 |
||||
foreArmTwist: 0.5 |
||||
upperLegTwist: 0.5 |
||||
legTwist: 0.5 |
||||
armStretch: 0.05 |
||||
legStretch: 0.05 |
||||
feetSpacing: 0 |
||||
rootMotionBoneName: |
||||
rootMotionBoneRotation: {x: 0, y: 0, z: 0, w: 1} |
||||
hasTranslationDoF: 0 |
||||
hasExtraRoot: 0 |
||||
skeletonHasParents: 1 |
||||
lastHumanDescriptionAvatarSource: {instanceID: 0} |
||||
animationType: 2 |
||||
humanoidOversampling: 1 |
||||
additionalBone: 0 |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2 |
||||
guid: 33cbcf2add129174c9fb6356c00e4dc1 |
||||
folderAsset: yes |
||||
DefaultImporter: |
||||
externalObjects: {} |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
@ -0,0 +1,77 @@
|
||||
%YAML 1.1 |
||||
%TAG !u! tag:unity3d.com,2011: |
||||
--- !u!21 &2100000 |
||||
Material: |
||||
serializedVersion: 6 |
||||
m_ObjectHideFlags: 0 |
||||
m_CorrespondingSourceObject: {fileID: 0} |
||||
m_PrefabInstance: {fileID: 0} |
||||
m_PrefabAsset: {fileID: 0} |
||||
m_Name: 15 - Default |
||||
m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} |
||||
m_ShaderKeywords: |
||||
m_LightmapFlags: 4 |
||||
m_EnableInstancingVariants: 0 |
||||
m_DoubleSidedGI: 0 |
||||
m_CustomRenderQueue: -1 |
||||
stringTagMap: {} |
||||
disabledShaderPasses: [] |
||||
m_SavedProperties: |
||||
serializedVersion: 3 |
||||
m_TexEnvs: |
||||
- _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} |
||||
m_Floats: |
||||
- _BumpScale: 1 |
||||
- _Cutoff: 0.5 |
||||
- _DetailNormalMapScale: 1 |
||||
- _DstBlend: 0 |
||||
- _GlossMapScale: 1 |
||||
- _Glossiness: 0.5 |
||||
- _GlossyReflections: 1 |
||||
- _Metallic: 0 |
||||
- _Mode: 0 |
||||
- _OcclusionStrength: 1 |
||||
- _Parallax: 0.02 |
||||
- _SmoothnessTextureChannel: 0 |
||||
- _SpecularHighlights: 1 |
||||
- _SrcBlend: 1 |
||||
- _UVSec: 0 |
||||
- _ZWrite: 1 |
||||
m_Colors: |
||||
- _Color: {r: 0.011764707, g: 0.10588236, b: 0.28235295, a: 1} |
||||
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1} |
@ -0,0 +1,9 @@
|
||||
fileFormatVersion: 2 |
||||
guid: cac3b836ce4fd0c428d969aa792e9ba5 |
||||
timeCreated: 1502843855 |
||||
licenseType: Pro |
||||
NativeFormatImporter: |
||||
mainObjectFileID: 2100000 |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
@ -0,0 +1,77 @@
|
||||
%YAML 1.1 |
||||
%TAG !u! tag:unity3d.com,2011: |
||||
--- !u!21 &2100000 |
||||
Material: |
||||
serializedVersion: 6 |
||||
m_ObjectHideFlags: 0 |
||||
m_CorrespondingSourceObject: {fileID: 0} |
||||
m_PrefabInstance: {fileID: 0} |
||||
m_PrefabAsset: {fileID: 0} |
||||
m_Name: BF_SX_Color |
||||
m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} |
||||
m_ShaderKeywords: |
||||
m_LightmapFlags: 4 |
||||
m_EnableInstancingVariants: 0 |
||||
m_DoubleSidedGI: 0 |
||||
m_CustomRenderQueue: -1 |
||||
stringTagMap: {} |
||||
disabledShaderPasses: [] |
||||
m_SavedProperties: |
||||
serializedVersion: 3 |
||||
m_TexEnvs: |
||||
- _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: 2800000, guid: 8540fc0b8b361a64b9a848c36d131a40, type: 3} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- _MetallicGlossMap: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- _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} |
||||
m_Floats: |
||||
- _BumpScale: 1 |
||||
- _Cutoff: 0.5 |
||||
- _DetailNormalMapScale: 1 |
||||
- _DstBlend: 0 |
||||
- _GlossMapScale: 1 |
||||
- _Glossiness: 0 |
||||
- _GlossyReflections: 1 |
||||
- _Metallic: 0 |
||||
- _Mode: 0 |
||||
- _OcclusionStrength: 1 |
||||
- _Parallax: 0.02 |
||||
- _SmoothnessTextureChannel: 0 |
||||
- _SpecularHighlights: 1 |
||||
- _SrcBlend: 1 |
||||
- _UVSec: 0 |
||||
- _ZWrite: 1 |
||||
m_Colors: |
||||
- _Color: {r: 1, g: 1, b: 1, a: 1} |
||||
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1} |
@ -0,0 +1,9 @@
|
||||
fileFormatVersion: 2 |
||||
guid: acbf5d01a02878f40b9c4ed644cec0ce |
||||
timeCreated: 1502880349 |
||||
licenseType: Pro |
||||
NativeFormatImporter: |
||||
mainObjectFileID: 2100000 |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
@ -0,0 +1,77 @@
|
||||
%YAML 1.1 |
||||
%TAG !u! tag:unity3d.com,2011: |
||||
--- !u!21 &2100000 |
||||
Material: |
||||
serializedVersion: 6 |
||||
m_ObjectHideFlags: 0 |
||||
m_CorrespondingSourceObject: {fileID: 0} |
||||
m_PrefabInstance: {fileID: 0} |
||||
m_PrefabAsset: {fileID: 0} |
||||
m_Name: Floor_color |
||||
m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} |
||||
m_ShaderKeywords: |
||||
m_LightmapFlags: 4 |
||||
m_EnableInstancingVariants: 0 |
||||
m_DoubleSidedGI: 0 |
||||
m_CustomRenderQueue: -1 |
||||
stringTagMap: {} |
||||
disabledShaderPasses: [] |
||||
m_SavedProperties: |
||||
serializedVersion: 3 |
||||
m_TexEnvs: |
||||
- _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: 2800000, guid: 0f30974e91e6117438f5b0ac10e2f68e, type: 3} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- _MetallicGlossMap: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- _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} |
||||
m_Floats: |
||||
- _BumpScale: 1 |
||||
- _Cutoff: 0.5 |
||||
- _DetailNormalMapScale: 1 |
||||
- _DstBlend: 0 |
||||
- _GlossMapScale: 1 |
||||
- _Glossiness: 0 |
||||
- _GlossyReflections: 1 |
||||
- _Metallic: 0 |
||||
- _Mode: 0 |
||||
- _OcclusionStrength: 1 |
||||
- _Parallax: 0.02 |
||||
- _SmoothnessTextureChannel: 0 |
||||
- _SpecularHighlights: 1 |
||||
- _SrcBlend: 1 |
||||
- _UVSec: 0 |
||||
- _ZWrite: 1 |
||||
m_Colors: |
||||
- _Color: {r: 0.6691177, g: 0.6691177, b: 0.6691177, a: 1} |
||||
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1} |
@ -0,0 +1,9 @@
|
||||
fileFormatVersion: 2 |
||||
guid: 58d115e32960e47428932df86e7692ba |
||||
timeCreated: 1502843850 |
||||
licenseType: Pro |
||||
NativeFormatImporter: |
||||
mainObjectFileID: 2100000 |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
@ -0,0 +1,78 @@
|
||||
%YAML 1.1 |
||||
%TAG !u! tag:unity3d.com,2011: |
||||
--- !u!21 &2100000 |
||||
Material: |
||||
serializedVersion: 6 |
||||
m_ObjectHideFlags: 0 |
||||
m_CorrespondingSourceObject: {fileID: 0} |
||||
m_PrefabInstance: {fileID: 0} |
||||
m_PrefabAsset: {fileID: 0} |
||||
m_Name: SN_GNFQ |
||||
m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} |
||||
m_ShaderKeywords: _ALPHABLEND_ON |
||||
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: 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: 2800000, guid: 455b7ae19084e474b9709183b6ad6db1, type: 3} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- _MetallicGlossMap: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- _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} |
||||
m_Floats: |
||||
- _BumpScale: 1 |
||||
- _Cutoff: 0.5 |
||||
- _DetailNormalMapScale: 1 |
||||
- _DstBlend: 10 |
||||
- _GlossMapScale: 1 |
||||
- _Glossiness: 0 |
||||
- _GlossyReflections: 1 |
||||
- _Metallic: 0 |
||||
- _Mode: 2 |
||||
- _OcclusionStrength: 1 |
||||
- _Parallax: 0.02 |
||||
- _SmoothnessTextureChannel: 0 |
||||
- _SpecularHighlights: 1 |
||||
- _SrcBlend: 5 |
||||
- _UVSec: 0 |
||||
- _ZWrite: 0 |
||||
m_Colors: |
||||
- _Color: {r: 1, g: 1, b: 1, a: 1} |
||||
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1} |
@ -0,0 +1,9 @@
|
||||
fileFormatVersion: 2 |
||||
guid: 8ddf206934e182145a5094a2adc9a360 |
||||
timeCreated: 1502843851 |
||||
licenseType: Pro |
||||
NativeFormatImporter: |
||||
mainObjectFileID: 2100000 |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
@ -0,0 +1,78 @@
|
||||
%YAML 1.1 |
||||
%TAG !u! tag:unity3d.com,2011: |
||||
--- !u!21 &2100000 |
||||
Material: |
||||
serializedVersion: 6 |
||||
m_ObjectHideFlags: 0 |
||||
m_CorrespondingSourceObject: {fileID: 0} |
||||
m_PrefabInstance: {fileID: 0} |
||||
m_PrefabAsset: {fileID: 0} |
||||
m_Name: SN_TWCS |
||||
m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} |
||||
m_ShaderKeywords: _ALPHABLEND_ON |
||||
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: 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: 2800000, guid: 091fe1838fbd56f468458f9162422e61, type: 3} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- _MetallicGlossMap: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- _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} |
||||
m_Floats: |
||||
- _BumpScale: 1 |
||||
- _Cutoff: 0.5 |
||||
- _DetailNormalMapScale: 1 |
||||
- _DstBlend: 10 |
||||
- _GlossMapScale: 1 |
||||
- _Glossiness: 0.5 |
||||
- _GlossyReflections: 1 |
||||
- _Metallic: 0 |
||||
- _Mode: 2 |
||||
- _OcclusionStrength: 1 |
||||
- _Parallax: 0.02 |
||||
- _SmoothnessTextureChannel: 0 |
||||
- _SpecularHighlights: 1 |
||||
- _SrcBlend: 5 |
||||
- _UVSec: 0 |
||||
- _ZWrite: 0 |
||||
m_Colors: |
||||
- _Color: {r: 1, g: 1, b: 1, a: 1} |
||||
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1} |
@ -0,0 +1,9 @@
|
||||
fileFormatVersion: 2 |
||||
guid: 766b43799c7ff9443bf362d33fdc8362 |
||||
timeCreated: 1502843851 |
||||
licenseType: Pro |
||||
NativeFormatImporter: |
||||
mainObjectFileID: 2100000 |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
@ -0,0 +1,78 @@
|
||||
%YAML 1.1 |
||||
%TAG !u! tag:unity3d.com,2011: |
||||
--- !u!21 &2100000 |
||||
Material: |
||||
serializedVersion: 6 |
||||
m_ObjectHideFlags: 0 |
||||
m_CorrespondingSourceObject: {fileID: 0} |
||||
m_PrefabInstance: {fileID: 0} |
||||
m_PrefabAsset: {fileID: 0} |
||||
m_Name: ShiNeiSheShi_Wenzi |
||||
m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} |
||||
m_ShaderKeywords: _ALPHABLEND_ON |
||||
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: 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: 2800000, guid: b7373939ec9ff07438159e73f3e59847, type: 3} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- _MetallicGlossMap: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- _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} |
||||
m_Floats: |
||||
- _BumpScale: 1 |
||||
- _Cutoff: 0.5 |
||||
- _DetailNormalMapScale: 1 |
||||
- _DstBlend: 10 |
||||
- _GlossMapScale: 1 |
||||
- _Glossiness: 0 |
||||
- _GlossyReflections: 1 |
||||
- _Metallic: 0 |
||||
- _Mode: 2 |
||||
- _OcclusionStrength: 1 |
||||
- _Parallax: 0.02 |
||||
- _SmoothnessTextureChannel: 0 |
||||
- _SpecularHighlights: 1 |
||||
- _SrcBlend: 5 |
||||
- _UVSec: 0 |
||||
- _ZWrite: 0 |
||||
m_Colors: |
||||
- _Color: {r: 1, g: 1, b: 1, a: 1} |
||||
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1} |
@ -0,0 +1,9 @@
|
||||
fileFormatVersion: 2 |
||||
guid: 35ac3363c03ab2b44b6eebdc9e42e8da |
||||
timeCreated: 1502843851 |
||||
licenseType: Pro |
||||
NativeFormatImporter: |
||||
mainObjectFileID: 2100000 |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
@ -0,0 +1,78 @@
|
||||
%YAML 1.1 |
||||
%TAG !u! tag:unity3d.com,2011: |
||||
--- !u!21 &2100000 |
||||
Material: |
||||
serializedVersion: 6 |
||||
m_ObjectHideFlags: 0 |
||||
m_CorrespondingSourceObject: {fileID: 0} |
||||
m_PrefabInstance: {fileID: 0} |
||||
m_PrefabAsset: {fileID: 0} |
||||
m_Name: TM |
||||
m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} |
||||
m_ShaderKeywords: _ALPHAPREMULTIPLY_ON |
||||
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: 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} |
||||
m_Floats: |
||||
- _BumpScale: 1 |
||||
- _Cutoff: 0.5 |
||||
- _DetailNormalMapScale: 1 |
||||
- _DstBlend: 10 |
||||
- _GlossMapScale: 1 |
||||
- _Glossiness: 0 |
||||
- _GlossyReflections: 1 |
||||
- _Metallic: 0 |
||||
- _Mode: 3 |
||||
- _OcclusionStrength: 1 |
||||
- _Parallax: 0.02 |
||||
- _SmoothnessTextureChannel: 0 |
||||
- _SpecularHighlights: 1 |
||||
- _SrcBlend: 1 |
||||
- _UVSec: 0 |
||||
- _ZWrite: 0 |
||||
m_Colors: |
||||
- _Color: {r: 0, g: 0.4896, b: 0.4896, a: 0.53383684} |
||||
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1} |
@ -0,0 +1,9 @@
|
||||
fileFormatVersion: 2 |
||||
guid: b230d34227763ce48b8a41baa651a293 |
||||
timeCreated: 1502880349 |
||||
licenseType: Pro |
||||
NativeFormatImporter: |
||||
mainObjectFileID: 2100000 |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
@ -0,0 +1,77 @@
|
||||
%YAML 1.1 |
||||
%TAG !u! tag:unity3d.com,2011: |
||||
--- !u!21 &2100000 |
||||
Material: |
||||
serializedVersion: 6 |
||||
m_ObjectHideFlags: 0 |
||||
m_CorrespondingSourceObject: {fileID: 0} |
||||
m_PrefabInstance: {fileID: 0} |
||||
m_PrefabAsset: {fileID: 0} |
||||
m_Name: Wall_Color |
||||
m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} |
||||
m_ShaderKeywords: |
||||
m_LightmapFlags: 4 |
||||
m_EnableInstancingVariants: 0 |
||||
m_DoubleSidedGI: 0 |
||||
m_CustomRenderQueue: -1 |
||||
stringTagMap: {} |
||||
disabledShaderPasses: [] |
||||
m_SavedProperties: |
||||
serializedVersion: 3 |
||||
m_TexEnvs: |
||||
- _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: 2800000, guid: 3ec5e4679da1eb541b5a0e351641a500, type: 3} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- _MetallicGlossMap: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- _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} |
||||
m_Floats: |
||||
- _BumpScale: 1 |
||||
- _Cutoff: 0.5 |
||||
- _DetailNormalMapScale: 1 |
||||
- _DstBlend: 0 |
||||
- _GlossMapScale: 1 |
||||
- _Glossiness: 0 |
||||
- _GlossyReflections: 1 |
||||
- _Metallic: 0 |
||||
- _Mode: 0 |
||||
- _OcclusionStrength: 1 |
||||
- _Parallax: 0.02 |
||||
- _SmoothnessTextureChannel: 0 |
||||
- _SpecularHighlights: 1 |
||||
- _SrcBlend: 1 |
||||
- _UVSec: 0 |
||||
- _ZWrite: 1 |
||||
m_Colors: |
||||
- _Color: {r: 0.78676474, g: 0.78676474, b: 0.78676474, a: 1} |
||||
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1} |
@ -0,0 +1,9 @@
|
||||
fileFormatVersion: 2 |
||||
guid: 6722290e3411f28468dd00c4c00bff9c |
||||
timeCreated: 1502843850 |
||||
licenseType: Pro |
||||
NativeFormatImporter: |
||||
mainObjectFileID: 2100000 |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
@ -0,0 +1,77 @@
|
||||
%YAML 1.1 |
||||
%TAG !u! tag:unity3d.com,2011: |
||||
--- !u!21 &2100000 |
||||
Material: |
||||
serializedVersion: 6 |
||||
m_ObjectHideFlags: 0 |
||||
m_CorrespondingSourceObject: {fileID: 0} |
||||
m_PrefabInstance: {fileID: 0} |
||||
m_PrefabAsset: {fileID: 0} |
||||
m_Name: XHS_Color |
||||
m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} |
||||
m_ShaderKeywords: |
||||
m_LightmapFlags: 4 |
||||
m_EnableInstancingVariants: 0 |
||||
m_DoubleSidedGI: 0 |
||||
m_CustomRenderQueue: -1 |
||||
stringTagMap: {} |
||||
disabledShaderPasses: [] |
||||
m_SavedProperties: |
||||
serializedVersion: 3 |
||||
m_TexEnvs: |
||||
- _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: 2800000, guid: baec4ce3ade396d468965c2608a315a9, type: 3} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- _MetallicGlossMap: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- _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} |
||||
m_Floats: |
||||
- _BumpScale: 1 |
||||
- _Cutoff: 0.5 |
||||
- _DetailNormalMapScale: 1 |
||||
- _DstBlend: 0 |
||||
- _GlossMapScale: 1 |
||||
- _Glossiness: 0 |
||||
- _GlossyReflections: 1 |
||||
- _Metallic: 0 |
||||
- _Mode: 0 |
||||
- _OcclusionStrength: 1 |
||||
- _Parallax: 0.02 |
||||
- _SmoothnessTextureChannel: 0 |
||||
- _SpecularHighlights: 1 |
||||
- _SrcBlend: 1 |
||||
- _UVSec: 0 |
||||
- _ZWrite: 1 |
||||
m_Colors: |
||||
- _Color: {r: 0.75, g: 0.75, b: 0.75, a: 1} |
||||
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1} |
@ -0,0 +1,9 @@
|
||||
fileFormatVersion: 2 |
||||
guid: c347986f337cb404599d45e96384e54b |
||||
timeCreated: 1502843851 |
||||
licenseType: Pro |
||||
NativeFormatImporter: |
||||
mainObjectFileID: 2100000 |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
@ -0,0 +1,78 @@
|
||||
%YAML 1.1 |
||||
%TAG !u! tag:unity3d.com,2011: |
||||
--- !u!21 &2100000 |
||||
Material: |
||||
serializedVersion: 6 |
||||
m_ObjectHideFlags: 0 |
||||
m_CorrespondingSourceObject: {fileID: 0} |
||||
m_PrefabInstance: {fileID: 0} |
||||
m_PrefabAsset: {fileID: 0} |
||||
m_Name: XHSwenzi1_30 |
||||
m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} |
||||
m_ShaderKeywords: _ALPHABLEND_ON |
||||
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: 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: 2800000, guid: 7acb5a125c5163144816e4618adcac43, type: 3} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- _MetallicGlossMap: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- _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} |
||||
m_Floats: |
||||
- _BumpScale: 1 |
||||
- _Cutoff: 0.5 |
||||
- _DetailNormalMapScale: 1 |
||||
- _DstBlend: 10 |
||||
- _GlossMapScale: 1 |
||||
- _Glossiness: 0.5 |
||||
- _GlossyReflections: 1 |
||||
- _Metallic: 0 |
||||
- _Mode: 2 |
||||
- _OcclusionStrength: 1 |
||||
- _Parallax: 0.02 |
||||
- _SmoothnessTextureChannel: 0 |
||||
- _SpecularHighlights: 1 |
||||
- _SrcBlend: 5 |
||||
- _UVSec: 0 |
||||
- _ZWrite: 0 |
||||
m_Colors: |
||||
- _Color: {r: 1, g: 1, b: 1, a: 1} |
||||
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1} |
@ -0,0 +1,9 @@
|
||||
fileFormatVersion: 2 |
||||
guid: a37ad4be9d896324185c0f8be957ba4c |
||||
timeCreated: 1502843851 |
||||
licenseType: Pro |
||||
NativeFormatImporter: |
||||
mainObjectFileID: 2100000 |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
@ -0,0 +1,77 @@
|
||||
%YAML 1.1 |
||||
%TAG !u! tag:unity3d.com,2011: |
||||
--- !u!21 &2100000 |
||||
Material: |
||||
serializedVersion: 6 |
||||
m_ObjectHideFlags: 0 |
||||
m_CorrespondingSourceObject: {fileID: 0} |
||||
m_PrefabInstance: {fileID: 0} |
||||
m_PrefabAsset: {fileID: 0} |
||||
m_Name: XKS_tietu |
||||
m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} |
||||
m_ShaderKeywords: |
||||
m_LightmapFlags: 4 |
||||
m_EnableInstancingVariants: 0 |
||||
m_DoubleSidedGI: 0 |
||||
m_CustomRenderQueue: -1 |
||||
stringTagMap: {} |
||||
disabledShaderPasses: [] |
||||
m_SavedProperties: |
||||
serializedVersion: 3 |
||||
m_TexEnvs: |
||||
- _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: 2800000, guid: 2be83dd663fdd7f498a8358677b78fa0, type: 3} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- _MetallicGlossMap: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- _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} |
||||
m_Floats: |
||||
- _BumpScale: 1 |
||||
- _Cutoff: 0.5 |
||||
- _DetailNormalMapScale: 1 |
||||
- _DstBlend: 0 |
||||
- _GlossMapScale: 1 |
||||
- _Glossiness: 0.5 |
||||
- _GlossyReflections: 1 |
||||
- _Metallic: 0 |
||||
- _Mode: 0 |
||||
- _OcclusionStrength: 1 |
||||
- _Parallax: 0.02 |
||||
- _SmoothnessTextureChannel: 0 |
||||
- _SpecularHighlights: 1 |
||||
- _SrcBlend: 1 |
||||
- _UVSec: 0 |
||||
- _ZWrite: 1 |
||||
m_Colors: |
||||
- _Color: {r: 0.588, g: 0.588, b: 0.588, a: 1} |
||||
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1} |
@ -0,0 +1,9 @@
|
||||
fileFormatVersion: 2 |
||||
guid: d89aeac6b1d713f4d9f2c79d46c3fbe8 |
||||
timeCreated: 1502880349 |
||||
licenseType: Pro |
||||
NativeFormatImporter: |
||||
mainObjectFileID: 2100000 |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
@ -0,0 +1,78 @@
|
||||
%YAML 1.1 |
||||
%TAG !u! tag:unity3d.com,2011: |
||||
--- !u!21 &2100000 |
||||
Material: |
||||
serializedVersion: 6 |
||||
m_ObjectHideFlags: 0 |
||||
m_CorrespondingSourceObject: {fileID: 0} |
||||
m_PrefabInstance: {fileID: 0} |
||||
m_PrefabAsset: {fileID: 0} |
||||
m_Name: chewei |
||||
m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} |
||||
m_ShaderKeywords: _ALPHABLEND_ON |
||||
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: 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: 2800000, guid: 93a4bbc7efcd909449c55f4023f309e2, type: 3} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- _MetallicGlossMap: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- _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} |
||||
m_Floats: |
||||
- _BumpScale: 1 |
||||
- _Cutoff: 0.5 |
||||
- _DetailNormalMapScale: 1 |
||||
- _DstBlend: 10 |
||||
- _GlossMapScale: 1 |
||||
- _Glossiness: 0.5 |
||||
- _GlossyReflections: 1 |
||||
- _Metallic: 0 |
||||
- _Mode: 2 |
||||
- _OcclusionStrength: 1 |
||||
- _Parallax: 0.02 |
||||
- _SmoothnessTextureChannel: 0 |
||||
- _SpecularHighlights: 1 |
||||
- _SrcBlend: 5 |
||||
- _UVSec: 0 |
||||
- _ZWrite: 0 |
||||
m_Colors: |
||||
- _Color: {r: 0.588, g: 0.588, b: 0.588, a: 1} |
||||
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1} |
@ -0,0 +1,9 @@
|
||||
fileFormatVersion: 2 |
||||
guid: 5a16976e3e111d441bb508c9f00ad380 |
||||
timeCreated: 1502843851 |
||||
licenseType: Pro |
||||
NativeFormatImporter: |
||||
mainObjectFileID: 2100000 |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
Binary file not shown.
@ -0,0 +1,103 @@
|
||||
fileFormatVersion: 2 |
||||
guid: ba691defa6afc2b4ba0c0be643b9cc19 |
||||
timeCreated: 1502880349 |
||||
licenseType: Pro |
||||
ModelImporter: |
||||
serializedVersion: 19 |
||||
fileIDToRecycleName: |
||||
100000: Beng |
||||
100002: guanxian |
||||
100004: //RootNode |
||||
100006: SX_wenzi |
||||
100008: SXbeng1 |
||||
100010: SXbeng2 |
||||
400000: Beng |
||||
400002: guanxian |
||||
400004: //RootNode |
||||
400006: SX_wenzi |
||||
400008: SXbeng1 |
||||
400010: SXbeng2 |
||||
2300000: guanxian |
||||
2300002: SX_wenzi |
||||
2300004: SXbeng1 |
||||
2300006: SXbeng2 |
||||
3300000: guanxian |
||||
3300002: SX_wenzi |
||||
3300004: SXbeng1 |
||||
3300006: SXbeng2 |
||||
4300000: SXbeng2 |
||||
4300002: SXbeng1 |
||||
4300004: guanxian |
||||
4300006: SX_wenzi |
||||
7400000: Take 001 |
||||
9500000: //RootNode |
||||
materials: |
||||
importMaterials: 1 |
||||
materialName: 0 |
||||
materialSearch: 1 |
||||
animations: |
||||
legacyGenerateAnimations: 4 |
||||
bakeSimulation: 0 |
||||
resampleCurves: 1 |
||||
optimizeGameObjects: 0 |
||||
motionNodeName: |
||||
rigImportErrors: |
||||
rigImportWarnings: |
||||
animationImportErrors: |
||||
animationImportWarnings: |
||||
animationRetargetingWarnings: |
||||
animationDoRetargetingWarnings: 0 |
||||
animationCompression: 1 |
||||
animationRotationError: 0.5 |
||||
animationPositionError: 0.5 |
||||
animationScaleError: 0.5 |
||||
animationWrapMode: 0 |
||||
extraExposedTransformPaths: [] |
||||
clipAnimations: [] |
||||
isReadable: 1 |
||||
meshes: |
||||
lODScreenPercentages: [] |
||||
globalScale: 1 |
||||
meshCompression: 0 |
||||
addColliders: 0 |
||||
importBlendShapes: 1 |
||||
swapUVChannels: 0 |
||||
generateSecondaryUV: 0 |
||||
useFileUnits: 1 |
||||
optimizeMeshForGPU: 1 |
||||
keepQuads: 0 |
||||
weldVertices: 1 |
||||
secondaryUVAngleDistortion: 8 |
||||
secondaryUVAreaDistortion: 15.000001 |
||||
secondaryUVHardAngle: 88 |
||||
secondaryUVPackMargin: 4 |
||||
useFileScale: 1 |
||||
tangentSpace: |
||||
normalSmoothAngle: 60 |
||||
normalImportMode: 0 |
||||
tangentImportMode: 3 |
||||
importAnimation: 1 |
||||
copyAvatar: 0 |
||||
humanDescription: |
||||
serializedVersion: 2 |
||||
human: [] |
||||
skeleton: [] |
||||
armTwist: 0.5 |
||||
foreArmTwist: 0.5 |
||||
upperLegTwist: 0.5 |
||||
legTwist: 0.5 |
||||
armStretch: 0.05 |
||||
legStretch: 0.05 |
||||
feetSpacing: 0 |
||||
rootMotionBoneName: |
||||
rootMotionBoneRotation: {x: 0, y: 0, z: 0, w: 1} |
||||
hasTranslationDoF: 0 |
||||
hasExtraRoot: 0 |
||||
skeletonHasParents: 1 |
||||
lastHumanDescriptionAvatarSource: {instanceID: 0} |
||||
animationType: 2 |
||||
humanoidOversampling: 1 |
||||
additionalBone: 0 |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
Binary file not shown.
@ -0,0 +1,90 @@
|
||||
fileFormatVersion: 2 |
||||
guid: ce8be7f3dba444f47ae74c89027c152b |
||||
timeCreated: 1502880349 |
||||
licenseType: Pro |
||||
ModelImporter: |
||||
serializedVersion: 19 |
||||
fileIDToRecycleName: |
||||
100000: TM |
||||
100002: //RootNode |
||||
100004: XKS_tietu |
||||
400000: TM |
||||
400002: //RootNode |
||||
400004: XKS_tietu |
||||
2300000: TM |
||||
2300002: XKS_tietu |
||||
3300000: TM |
||||
3300002: XKS_tietu |
||||
4300000: XKS_tietu |
||||
4300002: TM |
||||
9500000: //RootNode |
||||
materials: |
||||
importMaterials: 1 |
||||
materialName: 0 |
||||
materialSearch: 1 |
||||
animations: |
||||
legacyGenerateAnimations: 4 |
||||
bakeSimulation: 0 |
||||
resampleCurves: 1 |
||||
optimizeGameObjects: 0 |
||||
motionNodeName: |
||||
rigImportErrors: |
||||
rigImportWarnings: |
||||
animationImportErrors: |
||||
animationImportWarnings: |
||||
animationRetargetingWarnings: |
||||
animationDoRetargetingWarnings: 0 |
||||
animationCompression: 1 |
||||
animationRotationError: 0.5 |
||||
animationPositionError: 0.5 |
||||
animationScaleError: 0.5 |
||||
animationWrapMode: 0 |
||||
extraExposedTransformPaths: [] |
||||
clipAnimations: [] |
||||
isReadable: 1 |
||||
meshes: |
||||
lODScreenPercentages: [] |
||||
globalScale: 1 |
||||
meshCompression: 0 |
||||
addColliders: 0 |
||||
importBlendShapes: 1 |
||||
swapUVChannels: 0 |
||||
generateSecondaryUV: 0 |
||||
useFileUnits: 1 |
||||
optimizeMeshForGPU: 1 |
||||
keepQuads: 0 |
||||
weldVertices: 1 |
||||
secondaryUVAngleDistortion: 8 |
||||
secondaryUVAreaDistortion: 15.000001 |
||||
secondaryUVHardAngle: 88 |
||||
secondaryUVPackMargin: 4 |
||||
useFileScale: 1 |
||||
tangentSpace: |
||||
normalSmoothAngle: 60 |
||||
normalImportMode: 0 |
||||
tangentImportMode: 3 |
||||
importAnimation: 1 |
||||
copyAvatar: 0 |
||||
humanDescription: |
||||
serializedVersion: 2 |
||||
human: [] |
||||
skeleton: [] |
||||
armTwist: 0.5 |
||||
foreArmTwist: 0.5 |
||||
upperLegTwist: 0.5 |
||||
legTwist: 0.5 |
||||
armStretch: 0.05 |
||||
legStretch: 0.05 |
||||
feetSpacing: 0 |
||||
rootMotionBoneName: |
||||
rootMotionBoneRotation: {x: 0, y: 0, z: 0, w: 1} |
||||
hasTranslationDoF: 0 |
||||
hasExtraRoot: 0 |
||||
skeletonHasParents: 1 |
||||
lastHumanDescriptionAvatarSource: {instanceID: 0} |
||||
animationType: 2 |
||||
humanoidOversampling: 1 |
||||
additionalBone: 0 |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
Binary file not shown.
@ -0,0 +1,101 @@
|
||||
fileFormatVersion: 2 |
||||
guid: 802dfe9258a5c9c4b8151304c3f6a877 |
||||
timeCreated: 1502954568 |
||||
licenseType: Pro |
||||
ModelImporter: |
||||
serializedVersion: 19 |
||||
fileIDToRecycleName: |
||||
100000: //RootNode |
||||
100002: ER_BJF_22 |
||||
100004: SQ_BJF_17 |
||||
100006: SS_BJF_13 |
||||
100008: YBJF_f1 |
||||
400000: //RootNode |
||||
400002: ER_BJF_22 |
||||
400004: SQ_BJF_17 |
||||
400006: SS_BJF_13 |
||||
400008: YBJF_f1 |
||||
2300000: ER_BJF_22 |
||||
2300002: SQ_BJF_17 |
||||
2300004: SS_BJF_13 |
||||
2300006: YBJF_f1 |
||||
3300000: ER_BJF_22 |
||||
3300002: SQ_BJF_17 |
||||
3300004: SS_BJF_13 |
||||
3300006: YBJF_f1 |
||||
4300000: YBJF_f1 |
||||
4300002: SS_BJF_13 |
||||
4300004: ER_BJF_22 |
||||
4300006: SQ_BJF_17 |
||||
7400000: Take 001 |
||||
9500000: //RootNode |
||||
materials: |
||||
importMaterials: 1 |
||||
materialName: 0 |
||||
materialSearch: 1 |
||||
animations: |
||||
legacyGenerateAnimations: 4 |
||||
bakeSimulation: 0 |
||||
resampleCurves: 1 |
||||
optimizeGameObjects: 0 |
||||
motionNodeName: |
||||
rigImportErrors: |
||||
rigImportWarnings: |
||||
animationImportErrors: |
||||
animationImportWarnings: |
||||
animationRetargetingWarnings: |
||||
animationDoRetargetingWarnings: 0 |
||||
animationCompression: 1 |
||||
animationRotationError: 0.5 |
||||
animationPositionError: 0.5 |
||||
animationScaleError: 0.5 |
||||
animationWrapMode: 0 |
||||
extraExposedTransformPaths: [] |
||||
clipAnimations: [] |
||||
isReadable: 1 |
||||
meshes: |
||||
lODScreenPercentages: [] |
||||
globalScale: 1 |
||||
meshCompression: 0 |
||||
addColliders: 0 |
||||
importBlendShapes: 1 |
||||
swapUVChannels: 0 |
||||
generateSecondaryUV: 0 |
||||
useFileUnits: 1 |
||||
optimizeMeshForGPU: 1 |
||||
keepQuads: 0 |
||||
weldVertices: 1 |
||||
secondaryUVAngleDistortion: 8 |
||||
secondaryUVAreaDistortion: 15.000001 |
||||
secondaryUVHardAngle: 88 |
||||
secondaryUVPackMargin: 4 |
||||
useFileScale: 1 |
||||
tangentSpace: |
||||
normalSmoothAngle: 60 |
||||
normalImportMode: 0 |
||||
tangentImportMode: 3 |
||||
importAnimation: 1 |
||||
copyAvatar: 0 |
||||
humanDescription: |
||||
serializedVersion: 2 |
||||
human: [] |
||||
skeleton: [] |
||||
armTwist: 0.5 |
||||
foreArmTwist: 0.5 |
||||
upperLegTwist: 0.5 |
||||
legTwist: 0.5 |
||||
armStretch: 0.05 |
||||
legStretch: 0.05 |
||||
feetSpacing: 0 |
||||
rootMotionBoneName: |
||||
rootMotionBoneRotation: {x: 0, y: 0, z: 0, w: 1} |
||||
hasTranslationDoF: 0 |
||||
hasExtraRoot: 0 |
||||
skeletonHasParents: 1 |
||||
lastHumanDescriptionAvatarSource: {instanceID: 0} |
||||
animationType: 2 |
||||
humanoidOversampling: 1 |
||||
additionalBone: 0 |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
Binary file not shown.
@ -0,0 +1,185 @@
|
||||
fileFormatVersion: 2 |
||||
guid: 20642383be4dabd48883af17759665f2 |
||||
timeCreated: 1502843852 |
||||
licenseType: Pro |
||||
ModelImporter: |
||||
serializedVersion: 19 |
||||
fileIDToRecycleName: |
||||
100000: B1_chewei |
||||
100002: B1_Floor |
||||
100004: B1_FM |
||||
100006: B1_GNFQ |
||||
100008: B1_LT |
||||
100010: B1_TSLX |
||||
100012: B1_TWCS |
||||
100014: B1_Wall |
||||
100016: B1_XFDT |
||||
100018: B1_XHS |
||||
100020: B1_XHSWZ |
||||
100022: LT1 |
||||
100024: LT2 |
||||
100026: //RootNode |
||||
100028: XHS001 |
||||
100030: XHS002 |
||||
100032: XHS003 |
||||
100034: XHS004 |
||||
100036: XHS005 |
||||
100038: XHS006 |
||||
100040: XHS007 |
||||
100042: XHS008 |
||||
100044: XHS009 |
||||
400000: B1_chewei |
||||
400002: B1_Floor |
||||
400004: B1_FM |
||||
400006: B1_GNFQ |
||||
400008: B1_LT |
||||
400010: B1_TSLX |
||||
400012: B1_TWCS |
||||
400014: B1_Wall |
||||
400016: B1_XFDT |
||||
400018: B1_XHS |
||||
400020: B1_XHSWZ |
||||
400022: LT1 |
||||
400024: LT2 |
||||
400026: //RootNode |
||||
400028: XHS001 |
||||
400030: XHS002 |
||||
400032: XHS003 |
||||
400034: XHS004 |
||||
400036: XHS005 |
||||
400038: XHS006 |
||||
400040: XHS007 |
||||
400042: XHS008 |
||||
400044: XHS009 |
||||
2300000: B1_chewei |
||||
2300002: B1_Floor |
||||
2300004: B1_FM |
||||
2300006: B1_GNFQ |
||||
2300008: B1_TSLX |
||||
2300010: B1_TWCS |
||||
2300012: B1_Wall |
||||
2300014: B1_XFDT |
||||
2300016: B1_XHSWZ |
||||
2300018: LT1 |
||||
2300020: LT2 |
||||
2300022: XHS001 |
||||
2300024: XHS002 |
||||
2300026: XHS003 |
||||
2300028: XHS004 |
||||
2300030: XHS005 |
||||
2300032: XHS006 |
||||
2300034: XHS007 |
||||
2300036: XHS008 |
||||
2300038: XHS009 |
||||
3300000: B1_chewei |
||||
3300002: B1_Floor |
||||
3300004: B1_FM |
||||
3300006: B1_GNFQ |
||||
3300008: B1_TSLX |
||||
3300010: B1_TWCS |
||||
3300012: B1_Wall |
||||
3300014: B1_XFDT |
||||
3300016: B1_XHSWZ |
||||
3300018: LT1 |
||||
3300020: LT2 |
||||
3300022: XHS001 |
||||
3300024: XHS002 |
||||
3300026: XHS003 |
||||
3300028: XHS004 |
||||
3300030: XHS005 |
||||
3300032: XHS006 |
||||
3300034: XHS007 |
||||
3300036: XHS008 |
||||
3300038: XHS009 |
||||
4300000: B1_XHSWZ |
||||
4300002: XHS001 |
||||
4300004: XHS002 |
||||
4300006: XHS003 |
||||
4300008: XHS004 |
||||
4300010: XHS005 |
||||
4300012: XHS006 |
||||
4300014: XHS007 |
||||
4300016: XHS008 |
||||
4300018: XHS009 |
||||
4300020: B1_XFDT |
||||
4300022: B1_TWCS |
||||
4300024: B1_TSLX |
||||
4300026: LT2 |
||||
4300028: LT1 |
||||
4300030: B1_GNFQ |
||||
4300032: B1_FM |
||||
4300034: B1_Floor |
||||
4300036: B1_Wall |
||||
4300038: B1_chewei |
||||
7400000: Take 001 |
||||
9500000: //RootNode |
||||
materials: |
||||
importMaterials: 1 |
||||
materialName: 0 |
||||
materialSearch: 1 |
||||
animations: |
||||
legacyGenerateAnimations: 4 |
||||
bakeSimulation: 0 |
||||
resampleCurves: 1 |
||||
optimizeGameObjects: 0 |
||||
motionNodeName: |
||||
rigImportErrors: |
||||
rigImportWarnings: |
||||
animationImportErrors: |
||||
animationImportWarnings: |
||||
animationRetargetingWarnings: |
||||
animationDoRetargetingWarnings: 0 |
||||
animationCompression: 1 |
||||
animationRotationError: 0.5 |
||||
animationPositionError: 0.5 |
||||
animationScaleError: 0.5 |
||||
animationWrapMode: 0 |
||||
extraExposedTransformPaths: [] |
||||
clipAnimations: [] |
||||
isReadable: 1 |
||||
meshes: |
||||
lODScreenPercentages: [] |
||||
globalScale: 1 |
||||
meshCompression: 0 |
||||
addColliders: 0 |
||||
importBlendShapes: 1 |
||||
swapUVChannels: 0 |
||||
generateSecondaryUV: 0 |
||||
useFileUnits: 1 |
||||
optimizeMeshForGPU: 1 |
||||
keepQuads: 0 |
||||
weldVertices: 1 |
||||
secondaryUVAngleDistortion: 8 |
||||
secondaryUVAreaDistortion: 15.000001 |
||||
secondaryUVHardAngle: 88 |
||||
secondaryUVPackMargin: 4 |
||||
useFileScale: 1 |
||||
tangentSpace: |
||||
normalSmoothAngle: 60 |
||||
normalImportMode: 0 |
||||
tangentImportMode: 3 |
||||
importAnimation: 1 |
||||
copyAvatar: 0 |
||||
humanDescription: |
||||
serializedVersion: 2 |
||||
human: [] |
||||
skeleton: [] |
||||
armTwist: 0.5 |
||||
foreArmTwist: 0.5 |
||||
upperLegTwist: 0.5 |
||||
legTwist: 0.5 |
||||
armStretch: 0.05 |
||||
legStretch: 0.05 |
||||
feetSpacing: 0 |
||||
rootMotionBoneName: |
||||
rootMotionBoneRotation: {x: 0, y: 0, z: 0, w: 1} |
||||
hasTranslationDoF: 0 |
||||
hasExtraRoot: 0 |
||||
skeletonHasParents: 1 |
||||
lastHumanDescriptionAvatarSource: {instanceID: 0} |
||||
animationType: 2 |
||||
humanoidOversampling: 1 |
||||
additionalBone: 0 |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
Binary file not shown.
@ -0,0 +1,235 @@
|
||||
fileFormatVersion: 2 |
||||
guid: deb66f7e2767f5a47a1fd972b344054b |
||||
timeCreated: 1502843855 |
||||
licenseType: Pro |
||||
ModelImporter: |
||||
serializedVersion: 19 |
||||
fileIDToRecycleName: |
||||
100000: F1_Floor |
||||
100002: F1_FM |
||||
100004: F1_GNFQ |
||||
100006: F1_LT |
||||
100008: F1_TSLX |
||||
100010: F1_TWCS |
||||
100012: F1_Wall |
||||
100014: F1_XFDT |
||||
100016: F1_XHS |
||||
100018: F1_XHSWZ |
||||
100020: LT1 |
||||
100022: LT2 |
||||
100024: LT3 |
||||
100026: LT4 |
||||
100028: LT5 |
||||
100030: LT6 |
||||
100032: LT7 |
||||
100034: //RootNode |
||||
100036: XHS010 |
||||
100038: XHS011 |
||||
100040: XHS012 |
||||
100042: XHS013 |
||||
100044: XHS014 |
||||
100046: XHS015 |
||||
100048: XHS016 |
||||
100050: XHS017 |
||||
100052: XHS018 |
||||
100054: XHS019 |
||||
100056: XHS020 |
||||
100058: XHS021 |
||||
100060: XHS022 |
||||
100062: XHS023 |
||||
100064: XHS024 |
||||
400000: F1_Floor |
||||
400002: F1_FM |
||||
400004: F1_GNFQ |
||||
400006: F1_LT |
||||
400008: F1_TSLX |
||||
400010: F1_TWCS |
||||
400012: F1_Wall |
||||
400014: F1_XFDT |
||||
400016: F1_XHS |
||||
400018: F1_XHSWZ |
||||
400020: LT1 |
||||
400022: LT2 |
||||
400024: LT3 |
||||
400026: LT4 |
||||
400028: LT5 |
||||
400030: LT6 |
||||
400032: LT7 |
||||
400034: //RootNode |
||||
400036: XHS010 |
||||
400038: XHS011 |
||||
400040: XHS012 |
||||
400042: XHS013 |
||||
400044: XHS014 |
||||
400046: XHS015 |
||||
400048: XHS016 |
||||
400050: XHS017 |
||||
400052: XHS018 |
||||
400054: XHS019 |
||||
400056: XHS020 |
||||
400058: XHS021 |
||||
400060: XHS022 |
||||
400062: XHS023 |
||||
400064: XHS024 |
||||
2300000: F1_Floor |
||||
2300002: F1_FM |
||||
2300004: F1_GNFQ |
||||
2300006: F1_TSLX |
||||
2300008: F1_TWCS |
||||
2300010: F1_Wall |
||||
2300012: F1_XFDT |
||||
2300014: F1_XHSWZ |
||||
2300016: LT1 |
||||
2300018: LT2 |
||||
2300020: LT3 |
||||
2300022: LT4 |
||||
2300024: LT5 |
||||
2300026: LT6 |
||||
2300028: LT7 |
||||
2300030: XHS010 |
||||
2300032: XHS011 |
||||
2300034: XHS012 |
||||
2300036: XHS013 |
||||
2300038: XHS014 |
||||
2300040: XHS015 |
||||
2300042: XHS016 |
||||
2300044: XHS017 |
||||
2300046: XHS018 |
||||
2300048: XHS019 |
||||
2300050: XHS020 |
||||
2300052: XHS021 |
||||
2300054: XHS022 |
||||
2300056: XHS023 |
||||
2300058: XHS024 |
||||
3300000: F1_Floor |
||||
3300002: F1_FM |
||||
3300004: F1_GNFQ |
||||
3300006: F1_TSLX |
||||
3300008: F1_TWCS |
||||
3300010: F1_Wall |
||||
3300012: F1_XFDT |
||||
3300014: F1_XHSWZ |
||||
3300016: LT1 |
||||
3300018: LT2 |
||||
3300020: LT3 |
||||
3300022: LT4 |
||||
3300024: LT5 |
||||
3300026: LT6 |
||||
3300028: LT7 |
||||
3300030: XHS010 |
||||
3300032: XHS011 |
||||
3300034: XHS012 |
||||
3300036: XHS013 |
||||
3300038: XHS014 |
||||
3300040: XHS015 |
||||
3300042: XHS016 |
||||
3300044: XHS017 |
||||
3300046: XHS018 |
||||
3300048: XHS019 |
||||
3300050: XHS020 |
||||
3300052: XHS021 |
||||
3300054: XHS022 |
||||
3300056: XHS023 |
||||
3300058: XHS024 |
||||
4300000: F1_Wall |
||||
4300002: F1_Floor |
||||
4300004: F1_FM |
||||
4300006: F1_GNFQ |
||||
4300008: LT1 |
||||
4300010: LT2 |
||||
4300012: LT3 |
||||
4300014: LT4 |
||||
4300016: LT5 |
||||
4300018: LT6 |
||||
4300020: LT7 |
||||
4300022: F1_TSLX |
||||
4300024: F1_TWCS |
||||
4300026: F1_XFDT |
||||
4300028: XHS010 |
||||
4300030: XHS011 |
||||
4300032: XHS012 |
||||
4300034: XHS013 |
||||
4300036: XHS014 |
||||
4300038: XHS015 |
||||
4300040: XHS016 |
||||
4300042: XHS017 |
||||
4300044: XHS018 |
||||
4300046: XHS019 |
||||
4300048: XHS020 |
||||
4300050: XHS021 |
||||
4300052: XHS022 |
||||
4300054: XHS023 |
||||
4300056: XHS024 |
||||
4300058: F1_XHSWZ |
||||
7400000: Take 001 |
||||
9500000: //RootNode |
||||
materials: |
||||
importMaterials: 1 |
||||
materialName: 0 |
||||
materialSearch: 1 |
||||
animations: |
||||
legacyGenerateAnimations: 4 |
||||
bakeSimulation: 0 |
||||
resampleCurves: 1 |
||||
optimizeGameObjects: 0 |
||||
motionNodeName: |
||||
rigImportErrors: |
||||
rigImportWarnings: |
||||
animationImportErrors: |
||||
animationImportWarnings: |
||||
animationRetargetingWarnings: |
||||
animationDoRetargetingWarnings: 0 |
||||
animationCompression: 1 |
||||
animationRotationError: 0.5 |
||||
animationPositionError: 0.5 |
||||
animationScaleError: 0.5 |
||||
animationWrapMode: 0 |
||||
extraExposedTransformPaths: [] |
||||
clipAnimations: [] |
||||
isReadable: 1 |
||||
meshes: |
||||
lODScreenPercentages: [] |
||||
globalScale: 1 |
||||
meshCompression: 0 |
||||
addColliders: 0 |
||||
importBlendShapes: 1 |
||||
swapUVChannels: 0 |
||||
generateSecondaryUV: 0 |
||||
useFileUnits: 1 |
||||
optimizeMeshForGPU: 1 |
||||
keepQuads: 0 |
||||
weldVertices: 1 |
||||
secondaryUVAngleDistortion: 8 |
||||
secondaryUVAreaDistortion: 15.000001 |
||||
secondaryUVHardAngle: 88 |
||||
secondaryUVPackMargin: 4 |
||||
useFileScale: 1 |
||||
tangentSpace: |
||||
normalSmoothAngle: 60 |
||||
normalImportMode: 0 |
||||
tangentImportMode: 3 |
||||
importAnimation: 1 |
||||
copyAvatar: 0 |
||||
humanDescription: |
||||
serializedVersion: 2 |
||||
human: [] |
||||
skeleton: [] |
||||
armTwist: 0.5 |
||||
foreArmTwist: 0.5 |
||||
upperLegTwist: 0.5 |
||||
legTwist: 0.5 |
||||
armStretch: 0.05 |
||||
legStretch: 0.05 |
||||
feetSpacing: 0 |
||||
rootMotionBoneName: |
||||
rootMotionBoneRotation: {x: 0, y: 0, z: 0, w: 1} |
||||
hasTranslationDoF: 0 |
||||
hasExtraRoot: 0 |
||||
skeletonHasParents: 1 |
||||
lastHumanDescriptionAvatarSource: {instanceID: 0} |
||||
animationType: 2 |
||||
humanoidOversampling: 1 |
||||
additionalBone: 0 |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
Binary file not shown.
@ -0,0 +1,160 @@
|
||||
fileFormatVersion: 2 |
||||
guid: 184d2a1a0f13bc242810e52dc045b16c |
||||
timeCreated: 1502843851 |
||||
licenseType: Pro |
||||
ModelImporter: |
||||
serializedVersion: 19 |
||||
fileIDToRecycleName: |
||||
100000: F9_Floor001 |
||||
100002: F9_FM001 |
||||
100004: F9_GNFQ001 |
||||
100006: F9_LT001 |
||||
100008: F9_TSLX001 |
||||
100010: F9_TWCS001 |
||||
100012: F9_Wall001 |
||||
100014: F9_XFDT001 |
||||
100016: F9_XHS001 |
||||
100018: F9_XHSWZ001 |
||||
100020: LT1 |
||||
100022: LT2 |
||||
100024: //RootNode |
||||
100026: XHS152 |
||||
100028: XHS153 |
||||
100030: XHS154 |
||||
100032: XHS155 |
||||
100034: XHS156 |
||||
400000: F9_Floor001 |
||||
400002: F9_FM001 |
||||
400004: F9_GNFQ001 |
||||
400006: F9_LT001 |
||||
400008: F9_TSLX001 |
||||
400010: F9_TWCS001 |
||||
400012: F9_Wall001 |
||||
400014: F9_XFDT001 |
||||
400016: F9_XHS001 |
||||
400018: F9_XHSWZ001 |
||||
400020: LT1 |
||||
400022: LT2 |
||||
400024: //RootNode |
||||
400026: XHS152 |
||||
400028: XHS153 |
||||
400030: XHS154 |
||||
400032: XHS155 |
||||
400034: XHS156 |
||||
2300000: F9_Floor001 |
||||
2300002: F9_FM001 |
||||
2300004: F9_GNFQ001 |
||||
2300006: F9_TSLX001 |
||||
2300008: F9_TWCS001 |
||||
2300010: F9_Wall001 |
||||
2300012: F9_XFDT001 |
||||
2300014: F9_XHSWZ001 |
||||
2300016: LT1 |
||||
2300018: LT2 |
||||
2300020: XHS152 |
||||
2300022: XHS153 |
||||
2300024: XHS154 |
||||
2300026: XHS155 |
||||
2300028: XHS156 |
||||
3300000: F9_Floor001 |
||||
3300002: F9_FM001 |
||||
3300004: F9_GNFQ001 |
||||
3300006: F9_TSLX001 |
||||
3300008: F9_TWCS001 |
||||
3300010: F9_Wall001 |
||||
3300012: F9_XFDT001 |
||||
3300014: F9_XHSWZ001 |
||||
3300016: LT1 |
||||
3300018: LT2 |
||||
3300020: XHS152 |
||||
3300022: XHS153 |
||||
3300024: XHS154 |
||||
3300026: XHS155 |
||||
3300028: XHS156 |
||||
4300000: F9_Wall001 |
||||
4300002: F9_Floor001 |
||||
4300004: F9_FM001 |
||||
4300006: F9_GNFQ001 |
||||
4300008: LT1 |
||||
4300010: LT2 |
||||
4300012: F9_TSLX001 |
||||
4300014: F9_TWCS001 |
||||
4300016: F9_XFDT001 |
||||
4300018: XHS152 |
||||
4300020: XHS153 |
||||
4300022: XHS154 |
||||
4300024: XHS155 |
||||
4300026: XHS156 |
||||
4300028: F9_XHSWZ001 |
||||
7400000: Take 001 |
||||
9500000: //RootNode |
||||
materials: |
||||
importMaterials: 1 |
||||
materialName: 0 |
||||
materialSearch: 1 |
||||
animations: |
||||
legacyGenerateAnimations: 4 |
||||
bakeSimulation: 0 |
||||
resampleCurves: 1 |
||||
optimizeGameObjects: 0 |
||||
motionNodeName: |
||||
rigImportErrors: |
||||
rigImportWarnings: |
||||
animationImportErrors: |
||||
animationImportWarnings: |
||||
animationRetargetingWarnings: |
||||
animationDoRetargetingWarnings: 0 |
||||
animationCompression: 1 |
||||
animationRotationError: 0.5 |
||||
animationPositionError: 0.5 |
||||
animationScaleError: 0.5 |
||||
animationWrapMode: 0 |
||||
extraExposedTransformPaths: [] |
||||
clipAnimations: [] |
||||
isReadable: 1 |
||||
meshes: |
||||
lODScreenPercentages: [] |
||||
globalScale: 1 |
||||
meshCompression: 0 |
||||
addColliders: 0 |
||||
importBlendShapes: 1 |
||||
swapUVChannels: 0 |
||||
generateSecondaryUV: 0 |
||||
useFileUnits: 1 |
||||
optimizeMeshForGPU: 1 |
||||
keepQuads: 0 |
||||
weldVertices: 1 |
||||
secondaryUVAngleDistortion: 8 |
||||
secondaryUVAreaDistortion: 15.000001 |
||||
secondaryUVHardAngle: 88 |
||||
secondaryUVPackMargin: 4 |
||||
useFileScale: 1 |
||||
tangentSpace: |
||||
normalSmoothAngle: 60 |
||||
normalImportMode: 0 |
||||
tangentImportMode: 3 |
||||
importAnimation: 1 |
||||
copyAvatar: 0 |
||||
humanDescription: |
||||
serializedVersion: 2 |
||||
human: [] |
||||
skeleton: [] |
||||
armTwist: 0.5 |
||||
foreArmTwist: 0.5 |
||||
upperLegTwist: 0.5 |
||||
legTwist: 0.5 |
||||
armStretch: 0.05 |
||||
legStretch: 0.05 |
||||
feetSpacing: 0 |
||||
rootMotionBoneName: |
||||
rootMotionBoneRotation: {x: 0, y: 0, z: 0, w: 1} |
||||
hasTranslationDoF: 0 |
||||
hasExtraRoot: 0 |
||||
skeletonHasParents: 1 |
||||
lastHumanDescriptionAvatarSource: {instanceID: 0} |
||||
animationType: 2 |
||||
humanoidOversampling: 1 |
||||
additionalBone: 0 |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
Binary file not shown.
@ -0,0 +1,160 @@
|
||||
fileFormatVersion: 2 |
||||
guid: 7fbce7e5bf59e114a9fef6a9cdc27909 |
||||
timeCreated: 1502843853 |
||||
licenseType: Pro |
||||
ModelImporter: |
||||
serializedVersion: 19 |
||||
fileIDToRecycleName: |
||||
100000: F9_Floor002 |
||||
100002: F9_FM002 |
||||
100004: F9_GNFQ002 |
||||
100006: F9_LT002 |
||||
100008: F9_TSLX002 |
||||
100010: F9_TWCS002 |
||||
100012: F9_Wall002 |
||||
100014: F9_XFDT002 |
||||
100016: F9_XHS002 |
||||
100018: F9_XHSWZ002 |
||||
100020: LT1 |
||||
100022: LT2 |
||||
100024: //RootNode |
||||
100026: XHS157 |
||||
100028: XHS158 |
||||
100030: XHS159 |
||||
100032: XHS160 |
||||
100034: XHS161 |
||||
400000: F9_Floor002 |
||||
400002: F9_FM002 |
||||
400004: F9_GNFQ002 |
||||
400006: F9_LT002 |
||||
400008: F9_TSLX002 |
||||
400010: F9_TWCS002 |
||||
400012: F9_Wall002 |
||||
400014: F9_XFDT002 |
||||
400016: F9_XHS002 |
||||
400018: F9_XHSWZ002 |
||||
400020: LT1 |
||||
400022: LT2 |
||||
400024: //RootNode |
||||
400026: XHS157 |
||||
400028: XHS158 |
||||
400030: XHS159 |
||||
400032: XHS160 |
||||
400034: XHS161 |
||||
2300000: F9_Floor002 |
||||
2300002: F9_FM002 |
||||
2300004: F9_GNFQ002 |
||||
2300006: F9_TSLX002 |
||||
2300008: F9_TWCS002 |
||||
2300010: F9_Wall002 |
||||
2300012: F9_XFDT002 |
||||
2300014: F9_XHSWZ002 |
||||
2300016: LT1 |
||||
2300018: LT2 |
||||
2300020: XHS157 |
||||
2300022: XHS158 |
||||
2300024: XHS159 |
||||
2300026: XHS160 |
||||
2300028: XHS161 |
||||
3300000: F9_Floor002 |
||||
3300002: F9_FM002 |
||||
3300004: F9_GNFQ002 |
||||
3300006: F9_TSLX002 |
||||
3300008: F9_TWCS002 |
||||
3300010: F9_Wall002 |
||||
3300012: F9_XFDT002 |
||||
3300014: F9_XHSWZ002 |
||||
3300016: LT1 |
||||
3300018: LT2 |
||||
3300020: XHS157 |
||||
3300022: XHS158 |
||||
3300024: XHS159 |
||||
3300026: XHS160 |
||||
3300028: XHS161 |
||||
4300000: F9_Wall002 |
||||
4300002: F9_Floor002 |
||||
4300004: F9_FM002 |
||||
4300006: F9_GNFQ002 |
||||
4300008: LT1 |
||||
4300010: LT2 |
||||
4300012: F9_TSLX002 |
||||
4300014: F9_TWCS002 |
||||
4300016: F9_XFDT002 |
||||
4300018: XHS157 |
||||
4300020: XHS158 |
||||
4300022: XHS159 |
||||
4300024: XHS160 |
||||
4300026: XHS161 |
||||
4300028: F9_XHSWZ002 |
||||
7400000: Take 001 |
||||
9500000: //RootNode |
||||
materials: |
||||
importMaterials: 1 |
||||
materialName: 0 |
||||
materialSearch: 1 |
||||
animations: |
||||
legacyGenerateAnimations: 4 |
||||
bakeSimulation: 0 |
||||
resampleCurves: 1 |
||||
optimizeGameObjects: 0 |
||||
motionNodeName: |
||||
rigImportErrors: |
||||
rigImportWarnings: |
||||
animationImportErrors: |
||||
animationImportWarnings: |
||||
animationRetargetingWarnings: |
||||
animationDoRetargetingWarnings: 0 |
||||
animationCompression: 1 |
||||
animationRotationError: 0.5 |
||||
animationPositionError: 0.5 |
||||
animationScaleError: 0.5 |
||||
animationWrapMode: 0 |
||||
extraExposedTransformPaths: [] |
||||
clipAnimations: [] |
||||
isReadable: 1 |
||||
meshes: |
||||
lODScreenPercentages: [] |
||||
globalScale: 1 |
||||
meshCompression: 0 |
||||
addColliders: 0 |
||||
importBlendShapes: 1 |
||||
swapUVChannels: 0 |
||||
generateSecondaryUV: 0 |
||||
useFileUnits: 1 |
||||
optimizeMeshForGPU: 1 |
||||
keepQuads: 0 |
||||
weldVertices: 1 |
||||
secondaryUVAngleDistortion: 8 |
||||
secondaryUVAreaDistortion: 15.000001 |
||||
secondaryUVHardAngle: 88 |
||||
secondaryUVPackMargin: 4 |
||||
useFileScale: 1 |
||||
tangentSpace: |
||||
normalSmoothAngle: 60 |
||||
normalImportMode: 0 |
||||
tangentImportMode: 3 |
||||
importAnimation: 1 |
||||
copyAvatar: 0 |
||||
humanDescription: |
||||
serializedVersion: 2 |
||||
human: [] |
||||
skeleton: [] |
||||
armTwist: 0.5 |
||||
foreArmTwist: 0.5 |
||||
upperLegTwist: 0.5 |
||||
legTwist: 0.5 |
||||
armStretch: 0.05 |
||||
legStretch: 0.05 |
||||
feetSpacing: 0 |
||||
rootMotionBoneName: |
||||
rootMotionBoneRotation: {x: 0, y: 0, z: 0, w: 1} |
||||
hasTranslationDoF: 0 |
||||
hasExtraRoot: 0 |
||||
skeletonHasParents: 1 |
||||
lastHumanDescriptionAvatarSource: {instanceID: 0} |
||||
animationType: 2 |
||||
humanoidOversampling: 1 |
||||
additionalBone: 0 |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
Binary file not shown.
@ -0,0 +1,160 @@
|
||||
fileFormatVersion: 2 |
||||
guid: df4fedb6fdab3be4b96cf92b5e9e8d96 |
||||
timeCreated: 1502843855 |
||||
licenseType: Pro |
||||
ModelImporter: |
||||
serializedVersion: 19 |
||||
fileIDToRecycleName: |
||||
100000: F9_Floor003 |
||||
100002: F9_FM003 |
||||
100004: F9_GNFQ003 |
||||
100006: F9_LT003 |
||||
100008: F9_TSLX003 |
||||
100010: F9_TWCS003 |
||||
100012: F9_Wall003 |
||||
100014: F9_XFDT003 |
||||
100016: F9_XHS003 |
||||
100018: F9_XHSWZ003 |
||||
100020: LT1 |
||||
100022: LT2 |
||||
100024: //RootNode |
||||
100026: XHS162 |
||||
100028: XHS163 |
||||
100030: XHS164 |
||||
100032: XHS165 |
||||
100034: XHS166 |
||||
400000: F9_Floor003 |
||||
400002: F9_FM003 |
||||
400004: F9_GNFQ003 |
||||
400006: F9_LT003 |
||||
400008: F9_TSLX003 |
||||
400010: F9_TWCS003 |
||||
400012: F9_Wall003 |
||||
400014: F9_XFDT003 |
||||
400016: F9_XHS003 |
||||
400018: F9_XHSWZ003 |
||||
400020: LT1 |
||||
400022: LT2 |
||||
400024: //RootNode |
||||
400026: XHS162 |
||||
400028: XHS163 |
||||
400030: XHS164 |
||||
400032: XHS165 |
||||
400034: XHS166 |
||||
2300000: F9_Floor003 |
||||
2300002: F9_FM003 |
||||
2300004: F9_GNFQ003 |
||||
2300006: F9_TSLX003 |
||||
2300008: F9_TWCS003 |
||||
2300010: F9_Wall003 |
||||
2300012: F9_XFDT003 |
||||
2300014: F9_XHSWZ003 |
||||
2300016: LT1 |
||||
2300018: LT2 |
||||
2300020: XHS162 |
||||
2300022: XHS163 |
||||
2300024: XHS164 |
||||
2300026: XHS165 |
||||
2300028: XHS166 |
||||
3300000: F9_Floor003 |
||||
3300002: F9_FM003 |
||||
3300004: F9_GNFQ003 |
||||
3300006: F9_TSLX003 |
||||
3300008: F9_TWCS003 |
||||
3300010: F9_Wall003 |
||||
3300012: F9_XFDT003 |
||||
3300014: F9_XHSWZ003 |
||||
3300016: LT1 |
||||
3300018: LT2 |
||||
3300020: XHS162 |
||||
3300022: XHS163 |
||||
3300024: XHS164 |
||||
3300026: XHS165 |
||||
3300028: XHS166 |
||||
4300000: F9_Wall003 |
||||
4300002: F9_Floor003 |
||||
4300004: F9_FM003 |
||||
4300006: F9_GNFQ003 |
||||
4300008: LT1 |
||||
4300010: LT2 |
||||
4300012: F9_TSLX003 |
||||
4300014: F9_TWCS003 |
||||
4300016: F9_XFDT003 |
||||
4300018: XHS162 |
||||
4300020: XHS163 |
||||
4300022: XHS164 |
||||
4300024: XHS165 |
||||
4300026: XHS166 |
||||
4300028: F9_XHSWZ003 |
||||
7400000: Take 001 |
||||
9500000: //RootNode |
||||
materials: |
||||
importMaterials: 1 |
||||
materialName: 0 |
||||
materialSearch: 1 |
||||
animations: |
||||
legacyGenerateAnimations: 4 |
||||
bakeSimulation: 0 |
||||
resampleCurves: 1 |
||||
optimizeGameObjects: 0 |
||||
motionNodeName: |
||||
rigImportErrors: |
||||
rigImportWarnings: |
||||
animationImportErrors: |
||||
animationImportWarnings: |
||||
animationRetargetingWarnings: |
||||
animationDoRetargetingWarnings: 0 |
||||
animationCompression: 1 |
||||
animationRotationError: 0.5 |
||||
animationPositionError: 0.5 |
||||
animationScaleError: 0.5 |
||||
animationWrapMode: 0 |
||||
extraExposedTransformPaths: [] |
||||
clipAnimations: [] |
||||
isReadable: 1 |
||||
meshes: |
||||
lODScreenPercentages: [] |
||||
globalScale: 1 |
||||
meshCompression: 0 |
||||
addColliders: 0 |
||||
importBlendShapes: 1 |
||||
swapUVChannels: 0 |
||||
generateSecondaryUV: 0 |
||||
useFileUnits: 1 |
||||
optimizeMeshForGPU: 1 |
||||
keepQuads: 0 |
||||
weldVertices: 1 |
||||
secondaryUVAngleDistortion: 8 |
||||
secondaryUVAreaDistortion: 15.000001 |
||||
secondaryUVHardAngle: 88 |
||||
secondaryUVPackMargin: 4 |
||||
useFileScale: 1 |
||||
tangentSpace: |
||||
normalSmoothAngle: 60 |
||||
normalImportMode: 0 |
||||
tangentImportMode: 3 |
||||
importAnimation: 1 |
||||
copyAvatar: 0 |
||||
humanDescription: |
||||
serializedVersion: 2 |
||||
human: [] |
||||
skeleton: [] |
||||
armTwist: 0.5 |
||||
foreArmTwist: 0.5 |
||||
upperLegTwist: 0.5 |
||||
legTwist: 0.5 |
||||
armStretch: 0.05 |
||||
legStretch: 0.05 |
||||
feetSpacing: 0 |
||||
rootMotionBoneName: |
||||
rootMotionBoneRotation: {x: 0, y: 0, z: 0, w: 1} |
||||
hasTranslationDoF: 0 |
||||
hasExtraRoot: 0 |
||||
skeletonHasParents: 1 |
||||
lastHumanDescriptionAvatarSource: {instanceID: 0} |
||||
animationType: 2 |
||||
humanoidOversampling: 1 |
||||
additionalBone: 0 |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
Binary file not shown.
@ -0,0 +1,160 @@
|
||||
fileFormatVersion: 2 |
||||
guid: 1296eccb485318847b4ae1605fd27d57 |
||||
timeCreated: 1502843851 |
||||
licenseType: Pro |
||||
ModelImporter: |
||||
serializedVersion: 19 |
||||
fileIDToRecycleName: |
||||
100000: F9_Floor004 |
||||
100002: F9_FM004 |
||||
100004: F9_GNFQ004 |
||||
100006: F9_LT004 |
||||
100008: F9_TSLX004 |
||||
100010: F9_TWCS004 |
||||
100012: F9_Wall004 |
||||
100014: F9_XFDT004 |
||||
100016: F9_XHS004 |
||||
100018: F9_XHSWZ004 |
||||
100020: LT1 |
||||
100022: LT2 |
||||
100024: //RootNode |
||||
100026: XHS167 |
||||
100028: XHS168 |
||||
100030: XHS169 |
||||
100032: XHS170 |
||||
100034: XHS171 |
||||
400000: F9_Floor004 |
||||
400002: F9_FM004 |
||||
400004: F9_GNFQ004 |
||||
400006: F9_LT004 |
||||
400008: F9_TSLX004 |
||||
400010: F9_TWCS004 |
||||
400012: F9_Wall004 |
||||
400014: F9_XFDT004 |
||||
400016: F9_XHS004 |
||||
400018: F9_XHSWZ004 |
||||
400020: LT1 |
||||
400022: LT2 |
||||
400024: //RootNode |
||||
400026: XHS167 |
||||
400028: XHS168 |
||||
400030: XHS169 |
||||
400032: XHS170 |
||||
400034: XHS171 |
||||
2300000: F9_Floor004 |
||||
2300002: F9_FM004 |
||||
2300004: F9_GNFQ004 |
||||
2300006: F9_TSLX004 |
||||
2300008: F9_TWCS004 |
||||
2300010: F9_Wall004 |
||||
2300012: F9_XFDT004 |
||||
2300014: F9_XHSWZ004 |
||||
2300016: LT1 |
||||
2300018: LT2 |
||||
2300020: XHS167 |
||||
2300022: XHS168 |
||||
2300024: XHS169 |
||||
2300026: XHS170 |
||||
2300028: XHS171 |
||||
3300000: F9_Floor004 |
||||
3300002: F9_FM004 |
||||
3300004: F9_GNFQ004 |
||||
3300006: F9_TSLX004 |
||||
3300008: F9_TWCS004 |
||||
3300010: F9_Wall004 |
||||
3300012: F9_XFDT004 |
||||
3300014: F9_XHSWZ004 |
||||
3300016: LT1 |
||||
3300018: LT2 |
||||
3300020: XHS167 |
||||
3300022: XHS168 |
||||
3300024: XHS169 |
||||
3300026: XHS170 |
||||
3300028: XHS171 |
||||
4300000: F9_Wall004 |
||||
4300002: F9_Floor004 |
||||
4300004: F9_FM004 |
||||
4300006: F9_GNFQ004 |
||||
4300008: LT1 |
||||
4300010: LT2 |
||||
4300012: F9_TSLX004 |
||||
4300014: F9_TWCS004 |
||||
4300016: F9_XFDT004 |
||||
4300018: XHS167 |
||||
4300020: XHS168 |
||||
4300022: XHS169 |
||||
4300024: XHS170 |
||||
4300026: XHS171 |
||||
4300028: F9_XHSWZ004 |
||||
7400000: Take 001 |
||||
9500000: //RootNode |
||||
materials: |
||||
importMaterials: 1 |
||||
materialName: 0 |
||||
materialSearch: 1 |
||||
animations: |
||||
legacyGenerateAnimations: 4 |
||||
bakeSimulation: 0 |
||||
resampleCurves: 1 |
||||
optimizeGameObjects: 0 |
||||
motionNodeName: |
||||
rigImportErrors: |
||||
rigImportWarnings: |
||||
animationImportErrors: |
||||
animationImportWarnings: |
||||
animationRetargetingWarnings: |
||||
animationDoRetargetingWarnings: 0 |
||||
animationCompression: 1 |
||||
animationRotationError: 0.5 |
||||
animationPositionError: 0.5 |
||||
animationScaleError: 0.5 |
||||
animationWrapMode: 0 |
||||
extraExposedTransformPaths: [] |
||||
clipAnimations: [] |
||||
isReadable: 1 |
||||
meshes: |
||||
lODScreenPercentages: [] |
||||
globalScale: 1 |
||||
meshCompression: 0 |
||||
addColliders: 0 |
||||
importBlendShapes: 1 |
||||
swapUVChannels: 0 |
||||
generateSecondaryUV: 0 |
||||
useFileUnits: 1 |
||||
optimizeMeshForGPU: 1 |
||||
keepQuads: 0 |
||||
weldVertices: 1 |
||||
secondaryUVAngleDistortion: 8 |
||||
secondaryUVAreaDistortion: 15.000001 |
||||
secondaryUVHardAngle: 88 |
||||
secondaryUVPackMargin: 4 |
||||
useFileScale: 1 |
||||
tangentSpace: |
||||
normalSmoothAngle: 60 |
||||
normalImportMode: 0 |
||||
tangentImportMode: 3 |
||||
importAnimation: 1 |
||||
copyAvatar: 0 |
||||
humanDescription: |
||||
serializedVersion: 2 |
||||
human: [] |
||||
skeleton: [] |
||||
armTwist: 0.5 |
||||
foreArmTwist: 0.5 |
||||
upperLegTwist: 0.5 |
||||
legTwist: 0.5 |
||||
armStretch: 0.05 |
||||
legStretch: 0.05 |
||||
feetSpacing: 0 |
||||
rootMotionBoneName: |
||||
rootMotionBoneRotation: {x: 0, y: 0, z: 0, w: 1} |
||||
hasTranslationDoF: 0 |
||||
hasExtraRoot: 0 |
||||
skeletonHasParents: 1 |
||||
lastHumanDescriptionAvatarSource: {instanceID: 0} |
||||
animationType: 2 |
||||
humanoidOversampling: 1 |
||||
additionalBone: 0 |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
Binary file not shown.
@ -0,0 +1,160 @@
|
||||
fileFormatVersion: 2 |
||||
guid: b83142ec192f21b4692becbd52d41554 |
||||
timeCreated: 1502843854 |
||||
licenseType: Pro |
||||
ModelImporter: |
||||
serializedVersion: 19 |
||||
fileIDToRecycleName: |
||||
100000: F9_Floor005 |
||||
100002: F9_FM005 |
||||
100004: F9_GNFQ005 |
||||
100006: F9_LT005 |
||||
100008: F9_TSLX005 |
||||
100010: F9_TWCS005 |
||||
100012: F9_Wall005 |
||||
100014: F9_XFDT005 |
||||
100016: F9_XHS005 |
||||
100018: F9_XHSWZ005 |
||||
100020: LT1 |
||||
100022: LT2 |
||||
100024: //RootNode |
||||
100026: XHS172 |
||||
100028: XHS173 |
||||
100030: XHS174 |
||||
100032: XHS175 |
||||
100034: XHS176 |
||||
400000: F9_Floor005 |
||||
400002: F9_FM005 |
||||
400004: F9_GNFQ005 |
||||
400006: F9_LT005 |
||||
400008: F9_TSLX005 |
||||
400010: F9_TWCS005 |
||||
400012: F9_Wall005 |
||||
400014: F9_XFDT005 |
||||
400016: F9_XHS005 |
||||
400018: F9_XHSWZ005 |
||||
400020: LT1 |
||||
400022: LT2 |
||||
400024: //RootNode |
||||
400026: XHS172 |
||||
400028: XHS173 |
||||
400030: XHS174 |
||||
400032: XHS175 |
||||
400034: XHS176 |
||||
2300000: F9_Floor005 |
||||
2300002: F9_FM005 |
||||
2300004: F9_GNFQ005 |
||||
2300006: F9_TSLX005 |
||||
2300008: F9_TWCS005 |
||||
2300010: F9_Wall005 |
||||
2300012: F9_XFDT005 |
||||
2300014: F9_XHSWZ005 |
||||
2300016: LT1 |
||||
2300018: LT2 |
||||
2300020: XHS172 |
||||
2300022: XHS173 |
||||
2300024: XHS174 |
||||
2300026: XHS175 |
||||
2300028: XHS176 |
||||
3300000: F9_Floor005 |
||||
3300002: F9_FM005 |
||||
3300004: F9_GNFQ005 |
||||
3300006: F9_TSLX005 |
||||
3300008: F9_TWCS005 |
||||
3300010: F9_Wall005 |
||||
3300012: F9_XFDT005 |
||||
3300014: F9_XHSWZ005 |
||||
3300016: LT1 |
||||
3300018: LT2 |
||||
3300020: XHS172 |
||||
3300022: XHS173 |
||||
3300024: XHS174 |
||||
3300026: XHS175 |
||||
3300028: XHS176 |
||||
4300000: F9_Wall005 |
||||
4300002: F9_Floor005 |
||||
4300004: F9_FM005 |
||||
4300006: F9_GNFQ005 |
||||
4300008: LT1 |
||||
4300010: LT2 |
||||
4300012: F9_TSLX005 |
||||
4300014: F9_TWCS005 |
||||
4300016: F9_XFDT005 |
||||
4300018: XHS172 |
||||
4300020: XHS173 |
||||
4300022: XHS174 |
||||
4300024: XHS175 |
||||
4300026: XHS176 |
||||
4300028: F9_XHSWZ005 |
||||
7400000: Take 001 |
||||
9500000: //RootNode |
||||
materials: |
||||
importMaterials: 1 |
||||
materialName: 0 |
||||
materialSearch: 1 |
||||
animations: |
||||
legacyGenerateAnimations: 4 |
||||
bakeSimulation: 0 |
||||
resampleCurves: 1 |
||||
optimizeGameObjects: 0 |
||||
motionNodeName: |
||||
rigImportErrors: |
||||
rigImportWarnings: |
||||
animationImportErrors: |
||||
animationImportWarnings: |
||||
animationRetargetingWarnings: |
||||
animationDoRetargetingWarnings: 0 |
||||
animationCompression: 1 |
||||
animationRotationError: 0.5 |
||||
animationPositionError: 0.5 |
||||
animationScaleError: 0.5 |
||||
animationWrapMode: 0 |
||||
extraExposedTransformPaths: [] |
||||
clipAnimations: [] |
||||
isReadable: 1 |
||||
meshes: |
||||
lODScreenPercentages: [] |
||||
globalScale: 1 |
||||
meshCompression: 0 |
||||
addColliders: 0 |
||||
importBlendShapes: 1 |
||||
swapUVChannels: 0 |
||||
generateSecondaryUV: 0 |
||||
useFileUnits: 1 |
||||
optimizeMeshForGPU: 1 |
||||
keepQuads: 0 |
||||
weldVertices: 1 |
||||
secondaryUVAngleDistortion: 8 |
||||
secondaryUVAreaDistortion: 15.000001 |
||||
secondaryUVHardAngle: 88 |
||||
secondaryUVPackMargin: 4 |
||||
useFileScale: 1 |
||||
tangentSpace: |
||||
normalSmoothAngle: 60 |
||||
normalImportMode: 0 |
||||
tangentImportMode: 3 |
||||
importAnimation: 1 |
||||
copyAvatar: 0 |
||||
humanDescription: |
||||
serializedVersion: 2 |
||||
human: [] |
||||
skeleton: [] |
||||
armTwist: 0.5 |
||||
foreArmTwist: 0.5 |
||||
upperLegTwist: 0.5 |
||||
legTwist: 0.5 |
||||
armStretch: 0.05 |
||||
legStretch: 0.05 |
||||
feetSpacing: 0 |
||||
rootMotionBoneName: |
||||
rootMotionBoneRotation: {x: 0, y: 0, z: 0, w: 1} |
||||
hasTranslationDoF: 0 |
||||
hasExtraRoot: 0 |
||||
skeletonHasParents: 1 |
||||
lastHumanDescriptionAvatarSource: {instanceID: 0} |
||||
animationType: 2 |
||||
humanoidOversampling: 1 |
||||
additionalBone: 0 |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
Binary file not shown.
@ -0,0 +1,160 @@
|
||||
fileFormatVersion: 2 |
||||
guid: 7f3d50ad727263c47922ef2b1f1d0a88 |
||||
timeCreated: 1502843853 |
||||
licenseType: Pro |
||||
ModelImporter: |
||||
serializedVersion: 19 |
||||
fileIDToRecycleName: |
||||
100000: F9_Floor006 |
||||
100002: F9_FM006 |
||||
100004: F9_GNFQ006 |
||||
100006: F9_LT006 |
||||
100008: F9_TSLX006 |
||||
100010: F9_TWCS006 |
||||
100012: F9_Wall006 |
||||
100014: F9_XFDT006 |
||||
100016: F9_XHS006 |
||||
100018: F9_XHSWZ006 |
||||
100020: LT1 |
||||
100022: LT2 |
||||
100024: //RootNode |
||||
100026: XHS177 |
||||
100028: XHS178 |
||||
100030: XHS179 |
||||
100032: XHS180 |
||||
100034: XHS181 |
||||
400000: F9_Floor006 |
||||
400002: F9_FM006 |
||||
400004: F9_GNFQ006 |
||||
400006: F9_LT006 |
||||
400008: F9_TSLX006 |
||||
400010: F9_TWCS006 |
||||
400012: F9_Wall006 |
||||
400014: F9_XFDT006 |
||||
400016: F9_XHS006 |
||||
400018: F9_XHSWZ006 |
||||
400020: LT1 |
||||
400022: LT2 |
||||
400024: //RootNode |
||||
400026: XHS177 |
||||
400028: XHS178 |
||||
400030: XHS179 |
||||
400032: XHS180 |
||||
400034: XHS181 |
||||
2300000: F9_Floor006 |
||||
2300002: F9_FM006 |
||||
2300004: F9_GNFQ006 |
||||
2300006: F9_TSLX006 |
||||
2300008: F9_TWCS006 |
||||
2300010: F9_Wall006 |
||||
2300012: F9_XFDT006 |
||||
2300014: F9_XHSWZ006 |
||||
2300016: LT1 |
||||
2300018: LT2 |
||||
2300020: XHS177 |
||||
2300022: XHS178 |
||||
2300024: XHS179 |
||||
2300026: XHS180 |
||||
2300028: XHS181 |
||||
3300000: F9_Floor006 |
||||
3300002: F9_FM006 |
||||
3300004: F9_GNFQ006 |
||||
3300006: F9_TSLX006 |
||||
3300008: F9_TWCS006 |
||||
3300010: F9_Wall006 |
||||
3300012: F9_XFDT006 |
||||
3300014: F9_XHSWZ006 |
||||
3300016: LT1 |
||||
3300018: LT2 |
||||
3300020: XHS177 |
||||
3300022: XHS178 |
||||
3300024: XHS179 |
||||
3300026: XHS180 |
||||
3300028: XHS181 |
||||
4300000: F9_Wall006 |
||||
4300002: F9_Floor006 |
||||
4300004: F9_FM006 |
||||
4300006: F9_GNFQ006 |
||||
4300008: LT1 |
||||
4300010: LT2 |
||||
4300012: F9_TSLX006 |
||||
4300014: F9_TWCS006 |
||||
4300016: F9_XFDT006 |
||||
4300018: XHS177 |
||||
4300020: XHS178 |
||||
4300022: XHS179 |
||||
4300024: XHS180 |
||||
4300026: XHS181 |
||||
4300028: F9_XHSWZ006 |
||||
7400000: Take 001 |
||||
9500000: //RootNode |
||||
materials: |
||||
importMaterials: 1 |
||||
materialName: 0 |
||||
materialSearch: 1 |
||||
animations: |
||||
legacyGenerateAnimations: 4 |
||||
bakeSimulation: 0 |
||||
resampleCurves: 1 |
||||
optimizeGameObjects: 0 |
||||
motionNodeName: |
||||
rigImportErrors: |
||||
rigImportWarnings: |
||||
animationImportErrors: |
||||
animationImportWarnings: |
||||
animationRetargetingWarnings: |
||||
animationDoRetargetingWarnings: 0 |
||||
animationCompression: 1 |
||||
animationRotationError: 0.5 |
||||
animationPositionError: 0.5 |
||||
animationScaleError: 0.5 |
||||
animationWrapMode: 0 |
||||
extraExposedTransformPaths: [] |
||||
clipAnimations: [] |
||||
isReadable: 1 |
||||
meshes: |
||||
lODScreenPercentages: [] |
||||
globalScale: 1 |
||||
meshCompression: 0 |
||||
addColliders: 0 |
||||
importBlendShapes: 1 |
||||
swapUVChannels: 0 |
||||
generateSecondaryUV: 0 |
||||
useFileUnits: 1 |
||||
optimizeMeshForGPU: 1 |
||||
keepQuads: 0 |
||||
weldVertices: 1 |
||||
secondaryUVAngleDistortion: 8 |
||||
secondaryUVAreaDistortion: 15.000001 |
||||
secondaryUVHardAngle: 88 |
||||
secondaryUVPackMargin: 4 |
||||
useFileScale: 1 |
||||
tangentSpace: |
||||
normalSmoothAngle: 60 |
||||
normalImportMode: 0 |
||||
tangentImportMode: 3 |
||||
importAnimation: 1 |
||||
copyAvatar: 0 |
||||
humanDescription: |
||||
serializedVersion: 2 |
||||
human: [] |
||||
skeleton: [] |
||||
armTwist: 0.5 |
||||
foreArmTwist: 0.5 |
||||
upperLegTwist: 0.5 |
||||
legTwist: 0.5 |
||||
armStretch: 0.05 |
||||
legStretch: 0.05 |
||||
feetSpacing: 0 |
||||
rootMotionBoneName: |
||||
rootMotionBoneRotation: {x: 0, y: 0, z: 0, w: 1} |
||||
hasTranslationDoF: 0 |
||||
hasExtraRoot: 0 |
||||
skeletonHasParents: 1 |
||||
lastHumanDescriptionAvatarSource: {instanceID: 0} |
||||
animationType: 2 |
||||
humanoidOversampling: 1 |
||||
additionalBone: 0 |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
Binary file not shown.
@ -0,0 +1,160 @@
|
||||
fileFormatVersion: 2 |
||||
guid: ff79f2366e97bd747b45345367b10f40 |
||||
timeCreated: 1502843855 |
||||
licenseType: Pro |
||||
ModelImporter: |
||||
serializedVersion: 19 |
||||
fileIDToRecycleName: |
||||
100000: F9_Floor007 |
||||
100002: F9_FM007 |
||||
100004: F9_GNFQ007 |
||||
100006: F9_LT007 |
||||
100008: F9_TSLX007 |
||||
100010: F9_TWCS007 |
||||
100012: F9_Wall007 |
||||
100014: F9_XFDT007 |
||||
100016: F9_XHS007 |
||||
100018: F9_XHSWZ007 |
||||
100020: LT1 |
||||
100022: LT2 |
||||
100024: //RootNode |
||||
100026: XHS182 |
||||
100028: XHS183 |
||||
100030: XHS184 |
||||
100032: XHS185 |
||||
100034: XHS186 |
||||
400000: F9_Floor007 |
||||
400002: F9_FM007 |
||||
400004: F9_GNFQ007 |
||||
400006: F9_LT007 |
||||
400008: F9_TSLX007 |
||||
400010: F9_TWCS007 |
||||
400012: F9_Wall007 |
||||
400014: F9_XFDT007 |
||||
400016: F9_XHS007 |
||||
400018: F9_XHSWZ007 |
||||
400020: LT1 |
||||
400022: LT2 |
||||
400024: //RootNode |
||||
400026: XHS182 |
||||
400028: XHS183 |
||||
400030: XHS184 |
||||
400032: XHS185 |
||||
400034: XHS186 |
||||
2300000: F9_Floor007 |
||||
2300002: F9_FM007 |
||||
2300004: F9_GNFQ007 |
||||
2300006: F9_TSLX007 |
||||
2300008: F9_TWCS007 |
||||
2300010: F9_Wall007 |
||||
2300012: F9_XFDT007 |
||||
2300014: F9_XHSWZ007 |
||||
2300016: LT1 |
||||
2300018: LT2 |
||||
2300020: XHS182 |
||||
2300022: XHS183 |
||||
2300024: XHS184 |
||||
2300026: XHS185 |
||||
2300028: XHS186 |
||||
3300000: F9_Floor007 |
||||
3300002: F9_FM007 |
||||
3300004: F9_GNFQ007 |
||||
3300006: F9_TSLX007 |
||||
3300008: F9_TWCS007 |
||||
3300010: F9_Wall007 |
||||
3300012: F9_XFDT007 |
||||
3300014: F9_XHSWZ007 |
||||
3300016: LT1 |
||||
3300018: LT2 |
||||
3300020: XHS182 |
||||
3300022: XHS183 |
||||
3300024: XHS184 |
||||
3300026: XHS185 |
||||
3300028: XHS186 |
||||
4300000: F9_Wall007 |
||||
4300002: F9_Floor007 |
||||
4300004: F9_FM007 |
||||
4300006: F9_GNFQ007 |
||||
4300008: LT1 |
||||
4300010: LT2 |
||||
4300012: F9_TSLX007 |
||||
4300014: F9_TWCS007 |
||||
4300016: F9_XFDT007 |
||||
4300018: XHS182 |
||||
4300020: XHS183 |
||||
4300022: XHS184 |
||||
4300024: XHS185 |
||||
4300026: XHS186 |
||||
4300028: F9_XHSWZ007 |
||||
7400000: Take 001 |
||||
9500000: //RootNode |
||||
materials: |
||||
importMaterials: 1 |
||||
materialName: 0 |
||||
materialSearch: 1 |
||||
animations: |
||||
legacyGenerateAnimations: 4 |
||||
bakeSimulation: 0 |
||||
resampleCurves: 1 |
||||
optimizeGameObjects: 0 |
||||
motionNodeName: |
||||
rigImportErrors: |
||||
rigImportWarnings: |
||||
animationImportErrors: |
||||
animationImportWarnings: |
||||
animationRetargetingWarnings: |
||||
animationDoRetargetingWarnings: 0 |
||||
animationCompression: 1 |
||||
animationRotationError: 0.5 |
||||
animationPositionError: 0.5 |
||||
animationScaleError: 0.5 |
||||
animationWrapMode: 0 |
||||
extraExposedTransformPaths: [] |
||||
clipAnimations: [] |
||||
isReadable: 1 |
||||
meshes: |
||||
lODScreenPercentages: [] |
||||
globalScale: 1 |
||||
meshCompression: 0 |
||||
addColliders: 0 |
||||
importBlendShapes: 1 |
||||
swapUVChannels: 0 |
||||
generateSecondaryUV: 0 |
||||
useFileUnits: 1 |
||||
optimizeMeshForGPU: 1 |
||||
keepQuads: 0 |
||||
weldVertices: 1 |
||||
secondaryUVAngleDistortion: 8 |
||||
secondaryUVAreaDistortion: 15.000001 |
||||
secondaryUVHardAngle: 88 |
||||
secondaryUVPackMargin: 4 |
||||
useFileScale: 1 |
||||
tangentSpace: |
||||
normalSmoothAngle: 60 |
||||
normalImportMode: 0 |
||||
tangentImportMode: 3 |
||||
importAnimation: 1 |
||||
copyAvatar: 0 |
||||
humanDescription: |
||||
serializedVersion: 2 |
||||
human: [] |
||||
skeleton: [] |
||||
armTwist: 0.5 |
||||
foreArmTwist: 0.5 |
||||
upperLegTwist: 0.5 |
||||
legTwist: 0.5 |
||||
armStretch: 0.05 |
||||
legStretch: 0.05 |
||||
feetSpacing: 0 |
||||
rootMotionBoneName: |
||||
rootMotionBoneRotation: {x: 0, y: 0, z: 0, w: 1} |
||||
hasTranslationDoF: 0 |
||||
hasExtraRoot: 0 |
||||
skeletonHasParents: 1 |
||||
lastHumanDescriptionAvatarSource: {instanceID: 0} |
||||
animationType: 2 |
||||
humanoidOversampling: 1 |
||||
additionalBone: 0 |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
Binary file not shown.
@ -0,0 +1,160 @@
|
||||
fileFormatVersion: 2 |
||||
guid: 9c7db998e6a3ddc4f9d578bdcb0f5e59 |
||||
timeCreated: 1502843853 |
||||
licenseType: Pro |
||||
ModelImporter: |
||||
serializedVersion: 19 |
||||
fileIDToRecycleName: |
||||
100000: F9_Floor008 |
||||
100002: F9_FM008 |
||||
100004: F9_GNFQ008 |
||||
100006: F9_LT008 |
||||
100008: F9_TSLX008 |
||||
100010: F9_TWCS008 |
||||
100012: F9_Wall008 |
||||
100014: F9_XFDT008 |
||||
100016: F9_XHS008 |
||||
100018: F9_XHSWZ008 |
||||
100020: LT1 |
||||
100022: LT2 |
||||
100024: //RootNode |
||||
100026: XHS187 |
||||
100028: XHS188 |
||||
100030: XHS189 |
||||
100032: XHS190 |
||||
100034: XHS191 |
||||
400000: F9_Floor008 |
||||
400002: F9_FM008 |
||||
400004: F9_GNFQ008 |
||||
400006: F9_LT008 |
||||
400008: F9_TSLX008 |
||||
400010: F9_TWCS008 |
||||
400012: F9_Wall008 |
||||
400014: F9_XFDT008 |
||||
400016: F9_XHS008 |
||||
400018: F9_XHSWZ008 |
||||
400020: LT1 |
||||
400022: LT2 |
||||
400024: //RootNode |
||||
400026: XHS187 |
||||
400028: XHS188 |
||||
400030: XHS189 |
||||
400032: XHS190 |
||||
400034: XHS191 |
||||
2300000: F9_Floor008 |
||||
2300002: F9_FM008 |
||||
2300004: F9_GNFQ008 |
||||
2300006: F9_TSLX008 |
||||
2300008: F9_TWCS008 |
||||
2300010: F9_Wall008 |
||||
2300012: F9_XFDT008 |
||||
2300014: F9_XHSWZ008 |
||||
2300016: LT1 |
||||
2300018: LT2 |
||||
2300020: XHS187 |
||||
2300022: XHS188 |
||||
2300024: XHS189 |
||||
2300026: XHS190 |
||||
2300028: XHS191 |
||||
3300000: F9_Floor008 |
||||
3300002: F9_FM008 |
||||
3300004: F9_GNFQ008 |
||||
3300006: F9_TSLX008 |
||||
3300008: F9_TWCS008 |
||||
3300010: F9_Wall008 |
||||
3300012: F9_XFDT008 |
||||
3300014: F9_XHSWZ008 |
||||
3300016: LT1 |
||||
3300018: LT2 |
||||
3300020: XHS187 |
||||
3300022: XHS188 |
||||
3300024: XHS189 |
||||
3300026: XHS190 |
||||
3300028: XHS191 |
||||
4300000: F9_Wall008 |
||||
4300002: F9_Floor008 |
||||
4300004: F9_FM008 |
||||
4300006: F9_GNFQ008 |
||||
4300008: LT1 |
||||
4300010: LT2 |
||||
4300012: F9_TSLX008 |
||||
4300014: F9_TWCS008 |
||||
4300016: F9_XFDT008 |
||||
4300018: XHS187 |
||||
4300020: XHS188 |
||||
4300022: XHS189 |
||||
4300024: XHS190 |
||||
4300026: XHS191 |
||||
4300028: F9_XHSWZ008 |
||||
7400000: Take 001 |
||||
9500000: //RootNode |
||||
materials: |
||||
importMaterials: 1 |
||||
materialName: 0 |
||||
materialSearch: 1 |
||||
animations: |
||||
legacyGenerateAnimations: 4 |
||||
bakeSimulation: 0 |
||||
resampleCurves: 1 |
||||
optimizeGameObjects: 0 |
||||
motionNodeName: |
||||
rigImportErrors: |
||||
rigImportWarnings: |
||||
animationImportErrors: |
||||
animationImportWarnings: |
||||
animationRetargetingWarnings: |
||||
animationDoRetargetingWarnings: 0 |
||||
animationCompression: 1 |
||||
animationRotationError: 0.5 |
||||
animationPositionError: 0.5 |
||||
animationScaleError: 0.5 |
||||
animationWrapMode: 0 |
||||
extraExposedTransformPaths: [] |
||||
clipAnimations: [] |
||||
isReadable: 1 |
||||
meshes: |
||||
lODScreenPercentages: [] |
||||
globalScale: 1 |
||||
meshCompression: 0 |
||||
addColliders: 0 |
||||
importBlendShapes: 1 |
||||
swapUVChannels: 0 |
||||
generateSecondaryUV: 0 |
||||
useFileUnits: 1 |
||||
optimizeMeshForGPU: 1 |
||||
keepQuads: 0 |
||||
weldVertices: 1 |
||||
secondaryUVAngleDistortion: 8 |
||||
secondaryUVAreaDistortion: 15.000001 |
||||
secondaryUVHardAngle: 88 |
||||
secondaryUVPackMargin: 4 |
||||
useFileScale: 1 |
||||
tangentSpace: |
||||
normalSmoothAngle: 60 |
||||
normalImportMode: 0 |
||||
tangentImportMode: 3 |
||||
importAnimation: 1 |
||||
copyAvatar: 0 |
||||
humanDescription: |
||||
serializedVersion: 2 |
||||
human: [] |
||||
skeleton: [] |
||||
armTwist: 0.5 |
||||
foreArmTwist: 0.5 |
||||
upperLegTwist: 0.5 |
||||
legTwist: 0.5 |
||||
armStretch: 0.05 |
||||
legStretch: 0.05 |
||||
feetSpacing: 0 |
||||
rootMotionBoneName: |
||||
rootMotionBoneRotation: {x: 0, y: 0, z: 0, w: 1} |
||||
hasTranslationDoF: 0 |
||||
hasExtraRoot: 0 |
||||
skeletonHasParents: 1 |
||||
lastHumanDescriptionAvatarSource: {instanceID: 0} |
||||
animationType: 2 |
||||
humanoidOversampling: 1 |
||||
additionalBone: 0 |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
Binary file not shown.
@ -0,0 +1,160 @@
|
||||
fileFormatVersion: 2 |
||||
guid: 3f2ae0f99ac49944dbde474b449b4260 |
||||
timeCreated: 1502843852 |
||||
licenseType: Pro |
||||
ModelImporter: |
||||
serializedVersion: 19 |
||||
fileIDToRecycleName: |
||||
100000: F9_Floor009 |
||||
100002: F9_FM009 |
||||
100004: F9_GNFQ009 |
||||
100006: F9_LT009 |
||||
100008: F9_TSLX009 |
||||
100010: F9_TWCS009 |
||||
100012: F9_Wall009 |
||||
100014: F9_XFDT009 |
||||
100016: F9_XHS009 |
||||
100018: F9_XHSWZ009 |
||||
100020: LT1 |
||||
100022: LT2 |
||||
100024: //RootNode |
||||
100026: XHS192 |
||||
100028: XHS193 |
||||
100030: XHS194 |
||||
100032: XHS195 |
||||
100034: XHS196 |
||||
400000: F9_Floor009 |
||||
400002: F9_FM009 |
||||
400004: F9_GNFQ009 |
||||
400006: F9_LT009 |
||||
400008: F9_TSLX009 |
||||
400010: F9_TWCS009 |
||||
400012: F9_Wall009 |
||||
400014: F9_XFDT009 |
||||
400016: F9_XHS009 |
||||
400018: F9_XHSWZ009 |
||||
400020: LT1 |
||||
400022: LT2 |
||||
400024: //RootNode |
||||
400026: XHS192 |
||||
400028: XHS193 |
||||
400030: XHS194 |
||||
400032: XHS195 |
||||
400034: XHS196 |
||||
2300000: F9_Floor009 |
||||
2300002: F9_FM009 |
||||
2300004: F9_GNFQ009 |
||||
2300006: F9_TSLX009 |
||||
2300008: F9_TWCS009 |
||||
2300010: F9_Wall009 |
||||
2300012: F9_XFDT009 |
||||
2300014: F9_XHSWZ009 |
||||
2300016: LT1 |
||||
2300018: LT2 |
||||
2300020: XHS192 |
||||
2300022: XHS193 |
||||
2300024: XHS194 |
||||
2300026: XHS195 |
||||
2300028: XHS196 |
||||
3300000: F9_Floor009 |
||||
3300002: F9_FM009 |
||||
3300004: F9_GNFQ009 |
||||
3300006: F9_TSLX009 |
||||
3300008: F9_TWCS009 |
||||
3300010: F9_Wall009 |
||||
3300012: F9_XFDT009 |
||||
3300014: F9_XHSWZ009 |
||||
3300016: LT1 |
||||
3300018: LT2 |
||||
3300020: XHS192 |
||||
3300022: XHS193 |
||||
3300024: XHS194 |
||||
3300026: XHS195 |
||||
3300028: XHS196 |
||||
4300000: F9_Wall009 |
||||
4300002: F9_Floor009 |
||||
4300004: F9_FM009 |
||||
4300006: F9_GNFQ009 |
||||
4300008: LT1 |
||||
4300010: LT2 |
||||
4300012: F9_TSLX009 |
||||
4300014: F9_TWCS009 |
||||
4300016: F9_XFDT009 |
||||
4300018: XHS192 |
||||
4300020: XHS193 |
||||
4300022: XHS194 |
||||
4300024: XHS195 |
||||
4300026: XHS196 |
||||
4300028: F9_XHSWZ009 |
||||
7400000: Take 001 |
||||
9500000: //RootNode |
||||
materials: |
||||
importMaterials: 1 |
||||
materialName: 0 |
||||
materialSearch: 1 |
||||
animations: |
||||
legacyGenerateAnimations: 4 |
||||
bakeSimulation: 0 |
||||
resampleCurves: 1 |
||||
optimizeGameObjects: 0 |
||||
motionNodeName: |
||||
rigImportErrors: |
||||
rigImportWarnings: |
||||
animationImportErrors: |
||||
animationImportWarnings: |
||||
animationRetargetingWarnings: |
||||
animationDoRetargetingWarnings: 0 |
||||
animationCompression: 1 |
||||
animationRotationError: 0.5 |
||||
animationPositionError: 0.5 |
||||
animationScaleError: 0.5 |
||||
animationWrapMode: 0 |
||||
extraExposedTransformPaths: [] |
||||
clipAnimations: [] |
||||
isReadable: 1 |
||||
meshes: |
||||
lODScreenPercentages: [] |
||||
globalScale: 1 |
||||
meshCompression: 0 |
||||
addColliders: 0 |
||||
importBlendShapes: 1 |
||||
swapUVChannels: 0 |
||||
generateSecondaryUV: 0 |
||||
useFileUnits: 1 |
||||
optimizeMeshForGPU: 1 |
||||
keepQuads: 0 |
||||
weldVertices: 1 |
||||
secondaryUVAngleDistortion: 8 |
||||
secondaryUVAreaDistortion: 15.000001 |
||||
secondaryUVHardAngle: 88 |
||||
secondaryUVPackMargin: 4 |
||||
useFileScale: 1 |
||||
tangentSpace: |
||||
normalSmoothAngle: 60 |
||||
normalImportMode: 0 |
||||
tangentImportMode: 3 |
||||
importAnimation: 1 |
||||
copyAvatar: 0 |
||||
humanDescription: |
||||
serializedVersion: 2 |
||||
human: [] |
||||
skeleton: [] |
||||
armTwist: 0.5 |
||||
foreArmTwist: 0.5 |
||||
upperLegTwist: 0.5 |
||||
legTwist: 0.5 |
||||
armStretch: 0.05 |
||||
legStretch: 0.05 |
||||
feetSpacing: 0 |
||||
rootMotionBoneName: |
||||
rootMotionBoneRotation: {x: 0, y: 0, z: 0, w: 1} |
||||
hasTranslationDoF: 0 |
||||
hasExtraRoot: 0 |
||||
skeletonHasParents: 1 |
||||
lastHumanDescriptionAvatarSource: {instanceID: 0} |
||||
animationType: 2 |
||||
humanoidOversampling: 1 |
||||
additionalBone: 0 |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
Binary file not shown.
@ -0,0 +1,160 @@
|
||||
fileFormatVersion: 2 |
||||
guid: d2ace4af1f301024d8152c9fed5f3cf4 |
||||
timeCreated: 1502843855 |
||||
licenseType: Pro |
||||
ModelImporter: |
||||
serializedVersion: 19 |
||||
fileIDToRecycleName: |
||||
100000: F9_Floor010 |
||||
100002: F9_FM010 |
||||
100004: F9_GNFQ010 |
||||
100006: F9_LT010 |
||||
100008: F9_TSLX010 |
||||
100010: F9_TWCS010 |
||||
100012: F9_Wall010 |
||||
100014: F9_XFDT010 |
||||
100016: F9_XHS010 |
||||
100018: F9_XHSWZ010 |
||||
100020: LT1 |
||||
100022: LT2 |
||||
100024: //RootNode |
||||
100026: XHS197 |
||||
100028: XHS198 |
||||
100030: XHS199 |
||||
100032: XHS200 |
||||
100034: XHS201 |
||||
400000: F9_Floor010 |
||||
400002: F9_FM010 |
||||
400004: F9_GNFQ010 |
||||
400006: F9_LT010 |
||||
400008: F9_TSLX010 |
||||
400010: F9_TWCS010 |
||||
400012: F9_Wall010 |
||||
400014: F9_XFDT010 |
||||
400016: F9_XHS010 |
||||
400018: F9_XHSWZ010 |
||||
400020: LT1 |
||||
400022: LT2 |
||||
400024: //RootNode |
||||
400026: XHS197 |
||||
400028: XHS198 |
||||
400030: XHS199 |
||||
400032: XHS200 |
||||
400034: XHS201 |
||||
2300000: F9_Floor010 |
||||
2300002: F9_FM010 |
||||
2300004: F9_GNFQ010 |
||||
2300006: F9_TSLX010 |
||||
2300008: F9_TWCS010 |
||||
2300010: F9_Wall010 |
||||
2300012: F9_XFDT010 |
||||
2300014: F9_XHSWZ010 |
||||
2300016: LT1 |
||||
2300018: LT2 |
||||
2300020: XHS197 |
||||
2300022: XHS198 |
||||
2300024: XHS199 |
||||
2300026: XHS200 |
||||
2300028: XHS201 |
||||
3300000: F9_Floor010 |
||||
3300002: F9_FM010 |
||||
3300004: F9_GNFQ010 |
||||
3300006: F9_TSLX010 |
||||
3300008: F9_TWCS010 |
||||
3300010: F9_Wall010 |
||||
3300012: F9_XFDT010 |
||||
3300014: F9_XHSWZ010 |
||||
3300016: LT1 |
||||
3300018: LT2 |
||||
3300020: XHS197 |
||||
3300022: XHS198 |
||||
3300024: XHS199 |
||||
3300026: XHS200 |
||||
3300028: XHS201 |
||||
4300000: F9_Wall010 |
||||
4300002: F9_Floor010 |
||||
4300004: F9_FM010 |
||||
4300006: F9_GNFQ010 |
||||
4300008: LT1 |
||||
4300010: LT2 |
||||
4300012: F9_TSLX010 |
||||
4300014: F9_TWCS010 |
||||
4300016: F9_XFDT010 |
||||
4300018: XHS197 |
||||
4300020: XHS198 |
||||
4300022: XHS199 |
||||
4300024: XHS200 |
||||
4300026: XHS201 |
||||
4300028: F9_XHSWZ010 |
||||
7400000: Take 001 |
||||
9500000: //RootNode |
||||
materials: |
||||
importMaterials: 1 |
||||
materialName: 0 |
||||
materialSearch: 1 |
||||
animations: |
||||
legacyGenerateAnimations: 4 |
||||
bakeSimulation: 0 |
||||
resampleCurves: 1 |
||||
optimizeGameObjects: 0 |
||||
motionNodeName: |
||||
rigImportErrors: |
||||
rigImportWarnings: |
||||
animationImportErrors: |
||||
animationImportWarnings: |
||||
animationRetargetingWarnings: |
||||
animationDoRetargetingWarnings: 0 |
||||
animationCompression: 1 |
||||
animationRotationError: 0.5 |
||||
animationPositionError: 0.5 |
||||
animationScaleError: 0.5 |
||||
animationWrapMode: 0 |
||||
extraExposedTransformPaths: [] |
||||
clipAnimations: [] |
||||
isReadable: 1 |
||||
meshes: |
||||
lODScreenPercentages: [] |
||||
globalScale: 1 |
||||
meshCompression: 0 |
||||
addColliders: 0 |
||||
importBlendShapes: 1 |
||||
swapUVChannels: 0 |
||||
generateSecondaryUV: 0 |
||||
useFileUnits: 1 |
||||
optimizeMeshForGPU: 1 |
||||
keepQuads: 0 |
||||
weldVertices: 1 |
||||
secondaryUVAngleDistortion: 8 |
||||
secondaryUVAreaDistortion: 15.000001 |
||||
secondaryUVHardAngle: 88 |
||||
secondaryUVPackMargin: 4 |
||||
useFileScale: 1 |
||||
tangentSpace: |
||||
normalSmoothAngle: 60 |
||||
normalImportMode: 0 |
||||
tangentImportMode: 3 |
||||
importAnimation: 1 |
||||
copyAvatar: 0 |
||||
humanDescription: |
||||
serializedVersion: 2 |
||||
human: [] |
||||
skeleton: [] |
||||
armTwist: 0.5 |
||||
foreArmTwist: 0.5 |
||||
upperLegTwist: 0.5 |
||||
legTwist: 0.5 |
||||
armStretch: 0.05 |
||||
legStretch: 0.05 |
||||
feetSpacing: 0 |
||||
rootMotionBoneName: |
||||
rootMotionBoneRotation: {x: 0, y: 0, z: 0, w: 1} |
||||
hasTranslationDoF: 0 |
||||
hasExtraRoot: 0 |
||||
skeletonHasParents: 1 |
||||
lastHumanDescriptionAvatarSource: {instanceID: 0} |
||||
animationType: 2 |
||||
humanoidOversampling: 1 |
||||
additionalBone: 0 |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
Binary file not shown.
@ -0,0 +1,225 @@
|
||||
fileFormatVersion: 2 |
||||
guid: d54f37b3f08e06942b2a031426bdd1ca |
||||
timeCreated: 1502843855 |
||||
licenseType: Pro |
||||
ModelImporter: |
||||
serializedVersion: 19 |
||||
fileIDToRecycleName: |
||||
100000: F2_boli |
||||
100002: F2_Floor |
||||
100004: F2_FM |
||||
100006: F2_GNFQ |
||||
100008: F2_LT |
||||
100010: F2_TSLX |
||||
100012: F2_TWCS |
||||
100014: F2_Wall |
||||
100016: F2_XFDT |
||||
100018: F2_XHS |
||||
100020: F2_XHSWZ |
||||
100022: LT1 |
||||
100024: LT2 |
||||
100026: //RootNode |
||||
100028: XHS025 |
||||
100030: XHS026 |
||||
100032: XHS027 |
||||
100034: XHS028 |
||||
100036: XHS029 |
||||
100038: XHS030 |
||||
100040: XHS031 |
||||
100042: XHS032 |
||||
100044: XHS033 |
||||
100046: XHS034 |
||||
100048: XHS035 |
||||
100050: XHS036 |
||||
100052: XHS037 |
||||
100054: XHS038 |
||||
100056: XHS039 |
||||
100058: XHS040 |
||||
100060: XHS041 |
||||
400000: F2_boli |
||||
400002: F2_Floor |
||||
400004: F2_FM |
||||
400006: F2_GNFQ |
||||
400008: F2_LT |
||||
400010: F2_TSLX |
||||
400012: F2_TWCS |
||||
400014: F2_Wall |
||||
400016: F2_XFDT |
||||
400018: F2_XHS |
||||
400020: F2_XHSWZ |
||||
400022: LT1 |
||||
400024: LT2 |
||||
400026: //RootNode |
||||
400028: XHS025 |
||||
400030: XHS026 |
||||
400032: XHS027 |
||||
400034: XHS028 |
||||
400036: XHS029 |
||||
400038: XHS030 |
||||
400040: XHS031 |
||||
400042: XHS032 |
||||
400044: XHS033 |
||||
400046: XHS034 |
||||
400048: XHS035 |
||||
400050: XHS036 |
||||
400052: XHS037 |
||||
400054: XHS038 |
||||
400056: XHS039 |
||||
400058: XHS040 |
||||
400060: XHS041 |
||||
2300000: F2_boli |
||||
2300002: F2_Floor |
||||
2300004: F2_FM |
||||
2300006: F2_GNFQ |
||||
2300008: F2_TSLX |
||||
2300010: F2_TWCS |
||||
2300012: F2_Wall |
||||
2300014: F2_XFDT |
||||
2300016: F2_XHSWZ |
||||
2300018: LT1 |
||||
2300020: LT2 |
||||
2300022: XHS025 |
||||
2300024: XHS026 |
||||
2300026: XHS027 |
||||
2300028: XHS028 |
||||
2300030: XHS029 |
||||
2300032: XHS030 |
||||
2300034: XHS031 |
||||
2300036: XHS032 |
||||
2300038: XHS033 |
||||
2300040: XHS034 |
||||
2300042: XHS035 |
||||
2300044: XHS036 |
||||
2300046: XHS037 |
||||
2300048: XHS038 |
||||
2300050: XHS039 |
||||
2300052: XHS040 |
||||
2300054: XHS041 |
||||
3300000: F2_boli |
||||
3300002: F2_Floor |
||||
3300004: F2_FM |
||||
3300006: F2_GNFQ |
||||
3300008: F2_TSLX |
||||
3300010: F2_TWCS |
||||
3300012: F2_Wall |
||||
3300014: F2_XFDT |
||||
3300016: F2_XHSWZ |
||||
3300018: LT1 |
||||
3300020: LT2 |
||||
3300022: XHS025 |
||||
3300024: XHS026 |
||||
3300026: XHS027 |
||||
3300028: XHS028 |
||||
3300030: XHS029 |
||||
3300032: XHS030 |
||||
3300034: XHS031 |
||||
3300036: XHS032 |
||||
3300038: XHS033 |
||||
3300040: XHS034 |
||||
3300042: XHS035 |
||||
3300044: XHS036 |
||||
3300046: XHS037 |
||||
3300048: XHS038 |
||||
3300050: XHS039 |
||||
3300052: XHS040 |
||||
3300054: XHS041 |
||||
4300000: F2_XHSWZ |
||||
4300002: XHS025 |
||||
4300004: XHS026 |
||||
4300006: XHS027 |
||||
4300008: XHS028 |
||||
4300010: XHS029 |
||||
4300012: XHS030 |
||||
4300014: XHS031 |
||||
4300016: XHS032 |
||||
4300018: XHS033 |
||||
4300020: XHS034 |
||||
4300022: XHS035 |
||||
4300024: XHS036 |
||||
4300026: XHS037 |
||||
4300028: XHS038 |
||||
4300030: XHS039 |
||||
4300032: XHS040 |
||||
4300034: XHS041 |
||||
4300036: F2_XFDT |
||||
4300038: F2_TSLX |
||||
4300040: F2_GNFQ |
||||
4300042: F2_FM |
||||
4300044: F2_Floor |
||||
4300046: F2_Wall |
||||
4300048: F2_boli |
||||
4300050: LT2 |
||||
4300052: LT1 |
||||
4300054: F2_TWCS |
||||
7400000: Take 001 |
||||
9500000: //RootNode |
||||
materials: |
||||
importMaterials: 1 |
||||
materialName: 0 |
||||
materialSearch: 1 |
||||
animations: |
||||
legacyGenerateAnimations: 4 |
||||
bakeSimulation: 0 |
||||
resampleCurves: 1 |
||||
optimizeGameObjects: 0 |
||||
motionNodeName: |
||||
rigImportErrors: |
||||
rigImportWarnings: |
||||
animationImportErrors: |
||||
animationImportWarnings: |
||||
animationRetargetingWarnings: |
||||
animationDoRetargetingWarnings: 0 |
||||
animationCompression: 1 |
||||
animationRotationError: 0.5 |
||||
animationPositionError: 0.5 |
||||
animationScaleError: 0.5 |
||||
animationWrapMode: 0 |
||||
extraExposedTransformPaths: [] |
||||
clipAnimations: [] |
||||
isReadable: 1 |
||||
meshes: |
||||
lODScreenPercentages: [] |
||||
globalScale: 1 |
||||
meshCompression: 0 |
||||
addColliders: 0 |
||||
importBlendShapes: 1 |
||||
swapUVChannels: 0 |
||||
generateSecondaryUV: 0 |
||||
useFileUnits: 1 |
||||
optimizeMeshForGPU: 1 |
||||
keepQuads: 0 |
||||
weldVertices: 1 |
||||
secondaryUVAngleDistortion: 8 |
||||
secondaryUVAreaDistortion: 15.000001 |
||||
secondaryUVHardAngle: 88 |
||||
secondaryUVPackMargin: 4 |
||||
useFileScale: 1 |
||||
tangentSpace: |
||||
normalSmoothAngle: 60 |
||||
normalImportMode: 0 |
||||
tangentImportMode: 3 |
||||
importAnimation: 1 |
||||
copyAvatar: 0 |
||||
humanDescription: |
||||
serializedVersion: 2 |
||||
human: [] |
||||
skeleton: [] |
||||
armTwist: 0.5 |
||||
foreArmTwist: 0.5 |
||||
upperLegTwist: 0.5 |
||||
legTwist: 0.5 |
||||
armStretch: 0.05 |
||||
legStretch: 0.05 |
||||
feetSpacing: 0 |
||||
rootMotionBoneName: |
||||
rootMotionBoneRotation: {x: 0, y: 0, z: 0, w: 1} |
||||
hasTranslationDoF: 0 |
||||
hasExtraRoot: 0 |
||||
skeletonHasParents: 1 |
||||
lastHumanDescriptionAvatarSource: {instanceID: 0} |
||||
animationType: 2 |
||||
humanoidOversampling: 1 |
||||
additionalBone: 0 |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
Binary file not shown.
@ -0,0 +1,160 @@
|
||||
fileFormatVersion: 2 |
||||
guid: 5ba8a780abeb4cf4c88fd4c8a9188625 |
||||
timeCreated: 1502843852 |
||||
licenseType: Pro |
||||
ModelImporter: |
||||
serializedVersion: 19 |
||||
fileIDToRecycleName: |
||||
100000: F9_Floor011 |
||||
100002: F9_FM011 |
||||
100004: F9_GNFQ011 |
||||
100006: F9_LT011 |
||||
100008: F9_TSLX011 |
||||
100010: F9_TWCS011 |
||||
100012: F9_Wall011 |
||||
100014: F9_XFDT011 |
||||
100016: F9_XHS011 |
||||
100018: F9_XHSWZ011 |
||||
100020: LT1 |
||||
100022: LT2 |
||||
100024: //RootNode |
||||
100026: XHS202 |
||||
100028: XHS203 |
||||
100030: XHS204 |
||||
100032: XHS205 |
||||
100034: XHS206 |
||||
400000: F9_Floor011 |
||||
400002: F9_FM011 |
||||
400004: F9_GNFQ011 |
||||
400006: F9_LT011 |
||||
400008: F9_TSLX011 |
||||
400010: F9_TWCS011 |
||||
400012: F9_Wall011 |
||||
400014: F9_XFDT011 |
||||
400016: F9_XHS011 |
||||
400018: F9_XHSWZ011 |
||||
400020: LT1 |
||||
400022: LT2 |
||||
400024: //RootNode |
||||
400026: XHS202 |
||||
400028: XHS203 |
||||
400030: XHS204 |
||||
400032: XHS205 |
||||
400034: XHS206 |
||||
2300000: F9_Floor011 |
||||
2300002: F9_FM011 |
||||
2300004: F9_GNFQ011 |
||||
2300006: F9_TSLX011 |
||||
2300008: F9_TWCS011 |
||||
2300010: F9_Wall011 |
||||
2300012: F9_XFDT011 |
||||
2300014: F9_XHSWZ011 |
||||
2300016: LT1 |
||||
2300018: LT2 |
||||
2300020: XHS202 |
||||
2300022: XHS203 |
||||
2300024: XHS204 |
||||
2300026: XHS205 |
||||
2300028: XHS206 |
||||
3300000: F9_Floor011 |
||||
3300002: F9_FM011 |
||||
3300004: F9_GNFQ011 |
||||
3300006: F9_TSLX011 |
||||
3300008: F9_TWCS011 |
||||
3300010: F9_Wall011 |
||||
3300012: F9_XFDT011 |
||||
3300014: F9_XHSWZ011 |
||||
3300016: LT1 |
||||
3300018: LT2 |
||||
3300020: XHS202 |
||||
3300022: XHS203 |
||||
3300024: XHS204 |
||||
3300026: XHS205 |
||||
3300028: XHS206 |
||||
4300000: F9_Wall011 |
||||
4300002: F9_Floor011 |
||||
4300004: F9_FM011 |
||||
4300006: F9_GNFQ011 |
||||
4300008: LT1 |
||||
4300010: LT2 |
||||
4300012: F9_TSLX011 |
||||
4300014: F9_TWCS011 |
||||
4300016: F9_XFDT011 |
||||
4300018: XHS202 |
||||
4300020: XHS203 |
||||
4300022: XHS204 |
||||
4300024: XHS205 |
||||
4300026: XHS206 |
||||
4300028: F9_XHSWZ011 |
||||
7400000: Take 001 |
||||
9500000: //RootNode |
||||
materials: |
||||
importMaterials: 1 |
||||
materialName: 0 |
||||
materialSearch: 1 |
||||
animations: |
||||
legacyGenerateAnimations: 4 |
||||
bakeSimulation: 0 |
||||
resampleCurves: 1 |
||||
optimizeGameObjects: 0 |
||||
motionNodeName: |
||||
rigImportErrors: |
||||
rigImportWarnings: |
||||
animationImportErrors: |
||||
animationImportWarnings: |
||||
animationRetargetingWarnings: |
||||
animationDoRetargetingWarnings: 0 |
||||
animationCompression: 1 |
||||
animationRotationError: 0.5 |
||||
animationPositionError: 0.5 |
||||
animationScaleError: 0.5 |
||||
animationWrapMode: 0 |
||||
extraExposedTransformPaths: [] |
||||
clipAnimations: [] |
||||
isReadable: 1 |
||||
meshes: |
||||
lODScreenPercentages: [] |
||||
globalScale: 1 |
||||
meshCompression: 0 |
||||
addColliders: 0 |
||||
importBlendShapes: 1 |
||||
swapUVChannels: 0 |
||||
generateSecondaryUV: 0 |
||||
useFileUnits: 1 |
||||
optimizeMeshForGPU: 1 |
||||
keepQuads: 0 |
||||
weldVertices: 1 |
||||
secondaryUVAngleDistortion: 8 |
||||
secondaryUVAreaDistortion: 15.000001 |
||||
secondaryUVHardAngle: 88 |
||||
secondaryUVPackMargin: 4 |
||||
useFileScale: 1 |
||||
tangentSpace: |
||||
normalSmoothAngle: 60 |
||||
normalImportMode: 0 |
||||
tangentImportMode: 3 |
||||
importAnimation: 1 |
||||
copyAvatar: 0 |
||||
humanDescription: |
||||
serializedVersion: 2 |
||||
human: [] |
||||
skeleton: [] |
||||
armTwist: 0.5 |
||||
foreArmTwist: 0.5 |
||||
upperLegTwist: 0.5 |
||||
legTwist: 0.5 |
||||
armStretch: 0.05 |
||||
legStretch: 0.05 |
||||
feetSpacing: 0 |
||||
rootMotionBoneName: |
||||
rootMotionBoneRotation: {x: 0, y: 0, z: 0, w: 1} |
||||
hasTranslationDoF: 0 |
||||
hasExtraRoot: 0 |
||||
skeletonHasParents: 1 |
||||
lastHumanDescriptionAvatarSource: {instanceID: 0} |
||||
animationType: 2 |
||||
humanoidOversampling: 1 |
||||
additionalBone: 0 |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
Binary file not shown.
@ -0,0 +1,160 @@
|
||||
fileFormatVersion: 2 |
||||
guid: 5811189ad70ac7244b576c60b2ab3c6f |
||||
timeCreated: 1502843852 |
||||
licenseType: Pro |
||||
ModelImporter: |
||||
serializedVersion: 19 |
||||
fileIDToRecycleName: |
||||
100000: F9_Floor012 |
||||
100002: F9_FM012 |
||||
100004: F9_GNFQ012 |
||||
100006: F9_LT012 |
||||
100008: F9_TSLX012 |
||||
100010: F9_TWCS012 |
||||
100012: F9_Wall012 |
||||
100014: F9_XFDT012 |
||||
100016: F9_XHS012 |
||||
100018: F9_XHSWZ012 |
||||
100020: LT1 |
||||
100022: LT2 |
||||
100024: //RootNode |
||||
100026: XHS207 |
||||
100028: XHS208 |
||||
100030: XHS209 |
||||
100032: XHS210 |
||||
100034: XHS211 |
||||
400000: F9_Floor012 |
||||
400002: F9_FM012 |
||||
400004: F9_GNFQ012 |
||||
400006: F9_LT012 |
||||
400008: F9_TSLX012 |
||||
400010: F9_TWCS012 |
||||
400012: F9_Wall012 |
||||
400014: F9_XFDT012 |
||||
400016: F9_XHS012 |
||||
400018: F9_XHSWZ012 |
||||
400020: LT1 |
||||
400022: LT2 |
||||
400024: //RootNode |
||||
400026: XHS207 |
||||
400028: XHS208 |
||||
400030: XHS209 |
||||
400032: XHS210 |
||||
400034: XHS211 |
||||
2300000: F9_Floor012 |
||||
2300002: F9_FM012 |
||||
2300004: F9_GNFQ012 |
||||
2300006: F9_TSLX012 |
||||
2300008: F9_TWCS012 |
||||
2300010: F9_Wall012 |
||||
2300012: F9_XFDT012 |
||||
2300014: F9_XHSWZ012 |
||||
2300016: LT1 |
||||
2300018: LT2 |
||||
2300020: XHS207 |
||||
2300022: XHS208 |
||||
2300024: XHS209 |
||||
2300026: XHS210 |
||||
2300028: XHS211 |
||||
3300000: F9_Floor012 |
||||
3300002: F9_FM012 |
||||
3300004: F9_GNFQ012 |
||||
3300006: F9_TSLX012 |
||||
3300008: F9_TWCS012 |
||||
3300010: F9_Wall012 |
||||
3300012: F9_XFDT012 |
||||
3300014: F9_XHSWZ012 |
||||
3300016: LT1 |
||||
3300018: LT2 |
||||
3300020: XHS207 |
||||
3300022: XHS208 |
||||
3300024: XHS209 |
||||
3300026: XHS210 |
||||
3300028: XHS211 |
||||
4300000: F9_Wall012 |
||||
4300002: F9_Floor012 |
||||
4300004: F9_FM012 |
||||
4300006: F9_GNFQ012 |
||||
4300008: LT1 |
||||
4300010: LT2 |
||||
4300012: F9_TSLX012 |
||||
4300014: F9_TWCS012 |
||||
4300016: F9_XFDT012 |
||||
4300018: XHS207 |
||||
4300020: XHS208 |
||||
4300022: XHS209 |
||||
4300024: XHS210 |
||||
4300026: XHS211 |
||||
4300028: F9_XHSWZ012 |
||||
7400000: Take 001 |
||||
9500000: //RootNode |
||||
materials: |
||||
importMaterials: 1 |
||||
materialName: 0 |
||||
materialSearch: 1 |
||||
animations: |
||||
legacyGenerateAnimations: 4 |
||||
bakeSimulation: 0 |
||||
resampleCurves: 1 |
||||
optimizeGameObjects: 0 |
||||
motionNodeName: |
||||
rigImportErrors: |
||||
rigImportWarnings: |
||||
animationImportErrors: |
||||
animationImportWarnings: |
||||
animationRetargetingWarnings: |
||||
animationDoRetargetingWarnings: 0 |
||||
animationCompression: 1 |
||||
animationRotationError: 0.5 |
||||
animationPositionError: 0.5 |
||||
animationScaleError: 0.5 |
||||
animationWrapMode: 0 |
||||
extraExposedTransformPaths: [] |
||||
clipAnimations: [] |
||||
isReadable: 1 |
||||
meshes: |
||||
lODScreenPercentages: [] |
||||
globalScale: 1 |
||||
meshCompression: 0 |
||||
addColliders: 0 |
||||
importBlendShapes: 1 |
||||
swapUVChannels: 0 |
||||
generateSecondaryUV: 0 |
||||
useFileUnits: 1 |
||||
optimizeMeshForGPU: 1 |
||||
keepQuads: 0 |
||||
weldVertices: 1 |
||||
secondaryUVAngleDistortion: 8 |
||||
secondaryUVAreaDistortion: 15.000001 |
||||
secondaryUVHardAngle: 88 |
||||
secondaryUVPackMargin: 4 |
||||
useFileScale: 1 |
||||
tangentSpace: |
||||
normalSmoothAngle: 60 |
||||
normalImportMode: 0 |
||||
tangentImportMode: 3 |
||||
importAnimation: 1 |
||||
copyAvatar: 0 |
||||
humanDescription: |
||||
serializedVersion: 2 |
||||
human: [] |
||||
skeleton: [] |
||||
armTwist: 0.5 |
||||
foreArmTwist: 0.5 |
||||
upperLegTwist: 0.5 |
||||
legTwist: 0.5 |
||||
armStretch: 0.05 |
||||
legStretch: 0.05 |
||||
feetSpacing: 0 |
||||
rootMotionBoneName: |
||||
rootMotionBoneRotation: {x: 0, y: 0, z: 0, w: 1} |
||||
hasTranslationDoF: 0 |
||||
hasExtraRoot: 0 |
||||
skeletonHasParents: 1 |
||||
lastHumanDescriptionAvatarSource: {instanceID: 0} |
||||
animationType: 2 |
||||
humanoidOversampling: 1 |
||||
additionalBone: 0 |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
Binary file not shown.
@ -0,0 +1,160 @@
|
||||
fileFormatVersion: 2 |
||||
guid: 3f7ffa54f784c374289b78a76bea0076 |
||||
timeCreated: 1502843852 |
||||
licenseType: Pro |
||||
ModelImporter: |
||||
serializedVersion: 19 |
||||
fileIDToRecycleName: |
||||
100000: F9_Floor013 |
||||
100002: F9_FM013 |
||||
100004: F9_GNFQ013 |
||||
100006: F9_LT013 |
||||
100008: F9_TSLX013 |
||||
100010: F9_TWCS013 |
||||
100012: F9_Wall013 |
||||
100014: F9_XFDT013 |
||||
100016: F9_XHS013 |
||||
100018: F9_XHSWZ013 |
||||
100020: LT1 |
||||
100022: LT2 |
||||
100024: //RootNode |
||||
100026: XHS212 |
||||
100028: XHS213 |
||||
100030: XHS214 |
||||
100032: XHS215 |
||||
100034: XHS216 |
||||
400000: F9_Floor013 |
||||
400002: F9_FM013 |
||||
400004: F9_GNFQ013 |
||||
400006: F9_LT013 |
||||
400008: F9_TSLX013 |
||||
400010: F9_TWCS013 |
||||
400012: F9_Wall013 |
||||
400014: F9_XFDT013 |
||||
400016: F9_XHS013 |
||||
400018: F9_XHSWZ013 |
||||
400020: LT1 |
||||
400022: LT2 |
||||
400024: //RootNode |
||||
400026: XHS212 |
||||
400028: XHS213 |
||||
400030: XHS214 |
||||
400032: XHS215 |
||||
400034: XHS216 |
||||
2300000: F9_Floor013 |
||||
2300002: F9_FM013 |
||||
2300004: F9_GNFQ013 |
||||
2300006: F9_TSLX013 |
||||
2300008: F9_TWCS013 |
||||
2300010: F9_Wall013 |
||||
2300012: F9_XFDT013 |
||||
2300014: F9_XHSWZ013 |
||||
2300016: LT1 |
||||
2300018: LT2 |
||||
2300020: XHS212 |
||||
2300022: XHS213 |
||||
2300024: XHS214 |
||||
2300026: XHS215 |
||||
2300028: XHS216 |
||||
3300000: F9_Floor013 |
||||
3300002: F9_FM013 |
||||
3300004: F9_GNFQ013 |
||||
3300006: F9_TSLX013 |
||||
3300008: F9_TWCS013 |
||||
3300010: F9_Wall013 |
||||
3300012: F9_XFDT013 |
||||
3300014: F9_XHSWZ013 |
||||
3300016: LT1 |
||||
3300018: LT2 |
||||
3300020: XHS212 |
||||
3300022: XHS213 |
||||
3300024: XHS214 |
||||
3300026: XHS215 |
||||
3300028: XHS216 |
||||
4300000: F9_Wall013 |
||||
4300002: F9_Floor013 |
||||
4300004: F9_FM013 |
||||
4300006: F9_GNFQ013 |
||||
4300008: LT1 |
||||
4300010: LT2 |
||||
4300012: F9_TSLX013 |
||||
4300014: F9_TWCS013 |
||||
4300016: F9_XFDT013 |
||||
4300018: XHS212 |
||||
4300020: XHS213 |
||||
4300022: XHS214 |
||||
4300024: XHS215 |
||||
4300026: XHS216 |
||||
4300028: F9_XHSWZ013 |
||||
7400000: Take 001 |
||||
9500000: //RootNode |
||||
materials: |
||||
importMaterials: 1 |
||||
materialName: 0 |
||||
materialSearch: 1 |
||||
animations: |
||||
legacyGenerateAnimations: 4 |
||||
bakeSimulation: 0 |
||||
resampleCurves: 1 |
||||
optimizeGameObjects: 0 |
||||
motionNodeName: |
||||
rigImportErrors: |
||||
rigImportWarnings: |
||||
animationImportErrors: |
||||
animationImportWarnings: |
||||
animationRetargetingWarnings: |
||||
animationDoRetargetingWarnings: 0 |
||||
animationCompression: 1 |
||||
animationRotationError: 0.5 |
||||
animationPositionError: 0.5 |
||||
animationScaleError: 0.5 |
||||
animationWrapMode: 0 |
||||
extraExposedTransformPaths: [] |
||||
clipAnimations: [] |
||||
isReadable: 1 |
||||
meshes: |
||||
lODScreenPercentages: [] |
||||
globalScale: 1 |
||||
meshCompression: 0 |
||||
addColliders: 0 |
||||
importBlendShapes: 1 |
||||
swapUVChannels: 0 |
||||
generateSecondaryUV: 0 |
||||
useFileUnits: 1 |
||||
optimizeMeshForGPU: 1 |
||||
keepQuads: 0 |
||||
weldVertices: 1 |
||||
secondaryUVAngleDistortion: 8 |
||||
secondaryUVAreaDistortion: 15.000001 |
||||
secondaryUVHardAngle: 88 |
||||
secondaryUVPackMargin: 4 |
||||
useFileScale: 1 |
||||
tangentSpace: |
||||
normalSmoothAngle: 60 |
||||
normalImportMode: 0 |
||||
tangentImportMode: 3 |
||||
importAnimation: 1 |
||||
copyAvatar: 0 |
||||
humanDescription: |
||||
serializedVersion: 2 |
||||
human: [] |
||||
skeleton: [] |
||||
armTwist: 0.5 |
||||
foreArmTwist: 0.5 |
||||
upperLegTwist: 0.5 |
||||
legTwist: 0.5 |
||||
armStretch: 0.05 |
||||
legStretch: 0.05 |
||||
feetSpacing: 0 |
||||
rootMotionBoneName: |
||||
rootMotionBoneRotation: {x: 0, y: 0, z: 0, w: 1} |
||||
hasTranslationDoF: 0 |
||||
hasExtraRoot: 0 |
||||
skeletonHasParents: 1 |
||||
lastHumanDescriptionAvatarSource: {instanceID: 0} |
||||
animationType: 2 |
||||
humanoidOversampling: 1 |
||||
additionalBone: 0 |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
Binary file not shown.
@ -0,0 +1,160 @@
|
||||
fileFormatVersion: 2 |
||||
guid: 66bae2e89a5b3ee4c896d7e49db5c2fb |
||||
timeCreated: 1502843852 |
||||
licenseType: Pro |
||||
ModelImporter: |
||||
serializedVersion: 19 |
||||
fileIDToRecycleName: |
||||
100000: F23_Floor |
||||
100002: F23_FM |
||||
100004: F23_GNFQ |
||||
100006: F23_LT |
||||
100008: F23_TSLX |
||||
100010: F23_TWCS |
||||
100012: F23_Wall |
||||
100014: F23_XFDT |
||||
100016: F23_XHS |
||||
100018: F23_XHSWZ |
||||
100020: LT1 |
||||
100022: LT2 |
||||
100024: //RootNode |
||||
100026: XHS142 |
||||
100028: XHS143 |
||||
100030: XHS144 |
||||
100032: XHS145 |
||||
100034: XHS146 |
||||
400000: F23_Floor |
||||
400002: F23_FM |
||||
400004: F23_GNFQ |
||||
400006: F23_LT |
||||
400008: F23_TSLX |
||||
400010: F23_TWCS |
||||
400012: F23_Wall |
||||
400014: F23_XFDT |
||||
400016: F23_XHS |
||||
400018: F23_XHSWZ |
||||
400020: LT1 |
||||
400022: LT2 |
||||
400024: //RootNode |
||||
400026: XHS142 |
||||
400028: XHS143 |
||||
400030: XHS144 |
||||
400032: XHS145 |
||||
400034: XHS146 |
||||
2300000: F23_Floor |
||||
2300002: F23_FM |
||||
2300004: F23_GNFQ |
||||
2300006: F23_TSLX |
||||
2300008: F23_TWCS |
||||
2300010: F23_Wall |
||||
2300012: F23_XFDT |
||||
2300014: F23_XHSWZ |
||||
2300016: LT1 |
||||
2300018: LT2 |
||||
2300020: XHS142 |
||||
2300022: XHS143 |
||||
2300024: XHS144 |
||||
2300026: XHS145 |
||||
2300028: XHS146 |
||||
3300000: F23_Floor |
||||
3300002: F23_FM |
||||
3300004: F23_GNFQ |
||||
3300006: F23_TSLX |
||||
3300008: F23_TWCS |
||||
3300010: F23_Wall |
||||
3300012: F23_XFDT |
||||
3300014: F23_XHSWZ |
||||
3300016: LT1 |
||||
3300018: LT2 |
||||
3300020: XHS142 |
||||
3300022: XHS143 |
||||
3300024: XHS144 |
||||
3300026: XHS145 |
||||
3300028: XHS146 |
||||
4300000: F23_XHSWZ |
||||
4300002: XHS142 |
||||
4300004: XHS143 |
||||
4300006: XHS144 |
||||
4300008: XHS145 |
||||
4300010: XHS146 |
||||
4300012: F23_XFDT |
||||
4300014: F23_Wall |
||||
4300016: F23_TWCS |
||||
4300018: F23_TSLX |
||||
4300020: LT1 |
||||
4300022: LT2 |
||||
4300024: F23_GNFQ |
||||
4300026: F23_FM |
||||
4300028: F23_Floor |
||||
7400000: Take 001 |
||||
9500000: //RootNode |
||||
materials: |
||||
importMaterials: 1 |
||||
materialName: 0 |
||||
materialSearch: 1 |
||||
animations: |
||||
legacyGenerateAnimations: 4 |
||||
bakeSimulation: 0 |
||||
resampleCurves: 1 |
||||
optimizeGameObjects: 0 |
||||
motionNodeName: |
||||
rigImportErrors: |
||||
rigImportWarnings: |
||||
animationImportErrors: |
||||
animationImportWarnings: |
||||
animationRetargetingWarnings: |
||||
animationDoRetargetingWarnings: 0 |
||||
animationCompression: 1 |
||||
animationRotationError: 0.5 |
||||
animationPositionError: 0.5 |
||||
animationScaleError: 0.5 |
||||
animationWrapMode: 0 |
||||
extraExposedTransformPaths: [] |
||||
clipAnimations: [] |
||||
isReadable: 1 |
||||
meshes: |
||||
lODScreenPercentages: [] |
||||
globalScale: 1 |
||||
meshCompression: 0 |
||||
addColliders: 0 |
||||
importBlendShapes: 1 |
||||
swapUVChannels: 0 |
||||
generateSecondaryUV: 0 |
||||
useFileUnits: 1 |
||||
optimizeMeshForGPU: 1 |
||||
keepQuads: 0 |
||||
weldVertices: 1 |
||||
secondaryUVAngleDistortion: 8 |
||||
secondaryUVAreaDistortion: 15.000001 |
||||
secondaryUVHardAngle: 88 |
||||
secondaryUVPackMargin: 4 |
||||
useFileScale: 1 |
||||
tangentSpace: |
||||
normalSmoothAngle: 60 |
||||
normalImportMode: 0 |
||||
tangentImportMode: 3 |
||||
importAnimation: 1 |
||||
copyAvatar: 0 |
||||
humanDescription: |
||||
serializedVersion: 2 |
||||
human: [] |
||||
skeleton: [] |
||||
armTwist: 0.5 |
||||
foreArmTwist: 0.5 |
||||
upperLegTwist: 0.5 |
||||
legTwist: 0.5 |
||||
armStretch: 0.05 |
||||
legStretch: 0.05 |
||||
feetSpacing: 0 |
||||
rootMotionBoneName: |
||||
rootMotionBoneRotation: {x: 0, y: 0, z: 0, w: 1} |
||||
hasTranslationDoF: 0 |
||||
hasExtraRoot: 0 |
||||
skeletonHasParents: 1 |
||||
lastHumanDescriptionAvatarSource: {instanceID: 0} |
||||
animationType: 2 |
||||
humanoidOversampling: 1 |
||||
additionalBone: 0 |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
Binary file not shown.
@ -0,0 +1,160 @@
|
||||
fileFormatVersion: 2 |
||||
guid: b29a2666543e5cf419d72748ee3bb543 |
||||
timeCreated: 1502843854 |
||||
licenseType: Pro |
||||
ModelImporter: |
||||
serializedVersion: 19 |
||||
fileIDToRecycleName: |
||||
100000: F24_Floor |
||||
100002: F24_FM |
||||
100004: F24_GNFQ |
||||
100006: F24_LT |
||||
100008: F24_TSLX |
||||
100010: F24_TWCS |
||||
100012: F24_Wall |
||||
100014: F24_XFDT |
||||
100016: F24_XHS |
||||
100018: F24_XHSWZ |
||||
100020: LT1 |
||||
100022: LT2 |
||||
100024: //RootNode |
||||
100026: XHS147 |
||||
100028: XHS148 |
||||
100030: XHS149 |
||||
100032: XHS150 |
||||
100034: XHS151 |
||||
400000: F24_Floor |
||||
400002: F24_FM |
||||
400004: F24_GNFQ |
||||
400006: F24_LT |
||||
400008: F24_TSLX |
||||
400010: F24_TWCS |
||||
400012: F24_Wall |
||||
400014: F24_XFDT |
||||
400016: F24_XHS |
||||
400018: F24_XHSWZ |
||||
400020: LT1 |
||||
400022: LT2 |
||||
400024: //RootNode |
||||
400026: XHS147 |
||||
400028: XHS148 |
||||
400030: XHS149 |
||||
400032: XHS150 |
||||
400034: XHS151 |
||||
2300000: F24_Floor |
||||
2300002: F24_FM |
||||
2300004: F24_GNFQ |
||||
2300006: F24_TSLX |
||||
2300008: F24_TWCS |
||||
2300010: F24_Wall |
||||
2300012: F24_XFDT |
||||
2300014: F24_XHSWZ |
||||
2300016: LT1 |
||||
2300018: LT2 |
||||
2300020: XHS147 |
||||
2300022: XHS148 |
||||
2300024: XHS149 |
||||
2300026: XHS150 |
||||
2300028: XHS151 |
||||
3300000: F24_Floor |
||||
3300002: F24_FM |
||||
3300004: F24_GNFQ |
||||
3300006: F24_TSLX |
||||
3300008: F24_TWCS |
||||
3300010: F24_Wall |
||||
3300012: F24_XFDT |
||||
3300014: F24_XHSWZ |
||||
3300016: LT1 |
||||
3300018: LT2 |
||||
3300020: XHS147 |
||||
3300022: XHS148 |
||||
3300024: XHS149 |
||||
3300026: XHS150 |
||||
3300028: XHS151 |
||||
4300000: F24_XHSWZ |
||||
4300002: XHS147 |
||||
4300004: XHS148 |
||||
4300006: XHS149 |
||||
4300008: XHS150 |
||||
4300010: XHS151 |
||||
4300012: F24_XFDT |
||||
4300014: F24_Wall |
||||
4300016: F24_TWCS |
||||
4300018: F24_TSLX |
||||
4300020: LT1 |
||||
4300022: LT2 |
||||
4300024: F24_GNFQ |
||||
4300026: F24_FM |
||||
4300028: F24_Floor |
||||
7400000: Take 001 |
||||
9500000: //RootNode |
||||
materials: |
||||
importMaterials: 1 |
||||
materialName: 0 |
||||
materialSearch: 1 |
||||
animations: |
||||
legacyGenerateAnimations: 4 |
||||
bakeSimulation: 0 |
||||
resampleCurves: 1 |
||||
optimizeGameObjects: 0 |
||||
motionNodeName: |
||||
rigImportErrors: |
||||
rigImportWarnings: |
||||
animationImportErrors: |
||||
animationImportWarnings: |
||||
animationRetargetingWarnings: |
||||
animationDoRetargetingWarnings: 0 |
||||
animationCompression: 1 |
||||
animationRotationError: 0.5 |
||||
animationPositionError: 0.5 |
||||
animationScaleError: 0.5 |
||||
animationWrapMode: 0 |
||||
extraExposedTransformPaths: [] |
||||
clipAnimations: [] |
||||
isReadable: 1 |
||||
meshes: |
||||
lODScreenPercentages: [] |
||||
globalScale: 1 |
||||
meshCompression: 0 |
||||
addColliders: 0 |
||||
importBlendShapes: 1 |
||||
swapUVChannels: 0 |
||||
generateSecondaryUV: 0 |
||||
useFileUnits: 1 |
||||
optimizeMeshForGPU: 1 |
||||
keepQuads: 0 |
||||
weldVertices: 1 |
||||
secondaryUVAngleDistortion: 8 |
||||
secondaryUVAreaDistortion: 15.000001 |
||||
secondaryUVHardAngle: 88 |
||||
secondaryUVPackMargin: 4 |
||||
useFileScale: 1 |
||||
tangentSpace: |
||||
normalSmoothAngle: 60 |
||||
normalImportMode: 0 |
||||
tangentImportMode: 3 |
||||
importAnimation: 1 |
||||
copyAvatar: 0 |
||||
humanDescription: |
||||
serializedVersion: 2 |
||||
human: [] |
||||
skeleton: [] |
||||
armTwist: 0.5 |
||||
foreArmTwist: 0.5 |
||||
upperLegTwist: 0.5 |
||||
legTwist: 0.5 |
||||
armStretch: 0.05 |
||||
legStretch: 0.05 |
||||
feetSpacing: 0 |
||||
rootMotionBoneName: |
||||
rootMotionBoneRotation: {x: 0, y: 0, z: 0, w: 1} |
||||
hasTranslationDoF: 0 |
||||
hasExtraRoot: 0 |
||||
skeletonHasParents: 1 |
||||
lastHumanDescriptionAvatarSource: {instanceID: 0} |
||||
animationType: 2 |
||||
humanoidOversampling: 1 |
||||
additionalBone: 0 |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
Binary file not shown.
@ -0,0 +1,95 @@
|
||||
fileFormatVersion: 2 |
||||
guid: eb184c52a1fe6be45877a9da695c6573 |
||||
timeCreated: 1502843855 |
||||
licenseType: Pro |
||||
ModelImporter: |
||||
serializedVersion: 19 |
||||
fileIDToRecycleName: |
||||
100000: F25_Floor |
||||
100002: F25_GNFQ |
||||
100004: F25_Wall |
||||
100006: //RootNode |
||||
400000: F25_Floor |
||||
400002: F25_GNFQ |
||||
400004: F25_Wall |
||||
400006: //RootNode |
||||
2300000: F25_Floor |
||||
2300002: F25_GNFQ |
||||
2300004: F25_Wall |
||||
3300000: F25_Floor |
||||
3300002: F25_GNFQ |
||||
3300004: F25_Wall |
||||
4300000: F25_Wall |
||||
4300002: F25_GNFQ |
||||
4300004: F25_Floor |
||||
9500000: //RootNode |
||||
materials: |
||||
importMaterials: 1 |
||||
materialName: 0 |
||||
materialSearch: 1 |
||||
animations: |
||||
legacyGenerateAnimations: 4 |
||||
bakeSimulation: 0 |
||||
resampleCurves: 1 |
||||
optimizeGameObjects: 0 |
||||
motionNodeName: |
||||
rigImportErrors: |
||||
rigImportWarnings: |
||||
animationImportErrors: |
||||
animationImportWarnings: |
||||
animationRetargetingWarnings: |
||||
animationDoRetargetingWarnings: 0 |
||||
animationCompression: 1 |
||||
animationRotationError: 0.5 |
||||
animationPositionError: 0.5 |
||||
animationScaleError: 0.5 |
||||
animationWrapMode: 0 |
||||
extraExposedTransformPaths: [] |
||||
clipAnimations: [] |
||||
isReadable: 1 |
||||
meshes: |
||||
lODScreenPercentages: [] |
||||
globalScale: 1 |
||||
meshCompression: 0 |
||||
addColliders: 0 |
||||
importBlendShapes: 1 |
||||
swapUVChannels: 0 |
||||
generateSecondaryUV: 0 |
||||
useFileUnits: 1 |
||||
optimizeMeshForGPU: 1 |
||||
keepQuads: 0 |
||||
weldVertices: 1 |
||||
secondaryUVAngleDistortion: 8 |
||||
secondaryUVAreaDistortion: 15.000001 |
||||
secondaryUVHardAngle: 88 |
||||
secondaryUVPackMargin: 4 |
||||
useFileScale: 1 |
||||
tangentSpace: |
||||
normalSmoothAngle: 60 |
||||
normalImportMode: 0 |
||||
tangentImportMode: 3 |
||||
importAnimation: 1 |
||||
copyAvatar: 0 |
||||
humanDescription: |
||||
serializedVersion: 2 |
||||
human: [] |
||||
skeleton: [] |
||||
armTwist: 0.5 |
||||
foreArmTwist: 0.5 |
||||
upperLegTwist: 0.5 |
||||
legTwist: 0.5 |
||||
armStretch: 0.05 |
||||
legStretch: 0.05 |
||||
feetSpacing: 0 |
||||
rootMotionBoneName: |
||||
rootMotionBoneRotation: {x: 0, y: 0, z: 0, w: 1} |
||||
hasTranslationDoF: 0 |
||||
hasExtraRoot: 0 |
||||
skeletonHasParents: 1 |
||||
lastHumanDescriptionAvatarSource: {instanceID: 0} |
||||
animationType: 2 |
||||
humanoidOversampling: 1 |
||||
additionalBone: 0 |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
Binary file not shown.
@ -0,0 +1,160 @@
|
||||
fileFormatVersion: 2 |
||||
guid: c089f3fb58c970a4ab25905c23ba2ce8 |
||||
timeCreated: 1502843854 |
||||
licenseType: Pro |
||||
ModelImporter: |
||||
serializedVersion: 19 |
||||
fileIDToRecycleName: |
||||
100000: F3_Floor |
||||
100002: F3_FM |
||||
100004: F3_GNFQ |
||||
100006: F3_LT |
||||
100008: F3_TSLX |
||||
100010: F3_TWCS |
||||
100012: F3_Wall |
||||
100014: F3_XFDT |
||||
100016: F3_XHS |
||||
100018: F3_XHSWZ |
||||
100020: LT1 |
||||
100022: LT2 |
||||
100024: //RootNode |
||||
100026: XHS042 |
||||
100028: XHS043 |
||||
100030: XHS044 |
||||
100032: XHS045 |
||||
100034: XHS046 |
||||
400000: F3_Floor |
||||
400002: F3_FM |
||||
400004: F3_GNFQ |
||||
400006: F3_LT |
||||
400008: F3_TSLX |
||||
400010: F3_TWCS |
||||
400012: F3_Wall |
||||
400014: F3_XFDT |
||||
400016: F3_XHS |
||||
400018: F3_XHSWZ |
||||
400020: LT1 |
||||
400022: LT2 |
||||
400024: //RootNode |
||||
400026: XHS042 |
||||
400028: XHS043 |
||||
400030: XHS044 |
||||
400032: XHS045 |
||||
400034: XHS046 |
||||
2300000: F3_Floor |
||||
2300002: F3_FM |
||||
2300004: F3_GNFQ |
||||
2300006: F3_TSLX |
||||
2300008: F3_TWCS |
||||
2300010: F3_Wall |
||||
2300012: F3_XFDT |
||||
2300014: F3_XHSWZ |
||||
2300016: LT1 |
||||
2300018: LT2 |
||||
2300020: XHS042 |
||||
2300022: XHS043 |
||||
2300024: XHS044 |
||||
2300026: XHS045 |
||||
2300028: XHS046 |
||||
3300000: F3_Floor |
||||
3300002: F3_FM |
||||
3300004: F3_GNFQ |
||||
3300006: F3_TSLX |
||||
3300008: F3_TWCS |
||||
3300010: F3_Wall |
||||
3300012: F3_XFDT |
||||
3300014: F3_XHSWZ |
||||
3300016: LT1 |
||||
3300018: LT2 |
||||
3300020: XHS042 |
||||
3300022: XHS043 |
||||
3300024: XHS044 |
||||
3300026: XHS045 |
||||
3300028: XHS046 |
||||
4300000: F3_Floor |
||||
4300002: F3_FM |
||||
4300004: F3_GNFQ |
||||
4300006: LT1 |
||||
4300008: LT2 |
||||
4300010: F3_TSLX |
||||
4300012: F3_TWCS |
||||
4300014: F3_Wall |
||||
4300016: F3_XFDT |
||||
4300018: XHS042 |
||||
4300020: XHS043 |
||||
4300022: XHS044 |
||||
4300024: XHS045 |
||||
4300026: XHS046 |
||||
4300028: F3_XHSWZ |
||||
7400000: Take 001 |
||||
9500000: //RootNode |
||||
materials: |
||||
importMaterials: 1 |
||||
materialName: 0 |
||||
materialSearch: 1 |
||||
animations: |
||||
legacyGenerateAnimations: 4 |
||||
bakeSimulation: 0 |
||||
resampleCurves: 1 |
||||
optimizeGameObjects: 0 |
||||
motionNodeName: |
||||
rigImportErrors: |
||||
rigImportWarnings: |
||||
animationImportErrors: |
||||
animationImportWarnings: |
||||
animationRetargetingWarnings: |
||||
animationDoRetargetingWarnings: 0 |
||||
animationCompression: 1 |
||||
animationRotationError: 0.5 |
||||
animationPositionError: 0.5 |
||||
animationScaleError: 0.5 |
||||
animationWrapMode: 0 |
||||
extraExposedTransformPaths: [] |
||||
clipAnimations: [] |
||||
isReadable: 1 |
||||
meshes: |
||||
lODScreenPercentages: [] |
||||
globalScale: 1 |
||||
meshCompression: 0 |
||||
addColliders: 0 |
||||
importBlendShapes: 1 |
||||
swapUVChannels: 0 |
||||
generateSecondaryUV: 0 |
||||
useFileUnits: 1 |
||||
optimizeMeshForGPU: 1 |
||||
keepQuads: 0 |
||||
weldVertices: 1 |
||||
secondaryUVAngleDistortion: 8 |
||||
secondaryUVAreaDistortion: 15.000001 |
||||
secondaryUVHardAngle: 88 |
||||
secondaryUVPackMargin: 4 |
||||
useFileScale: 1 |
||||
tangentSpace: |
||||
normalSmoothAngle: 60 |
||||
normalImportMode: 0 |
||||
tangentImportMode: 3 |
||||
importAnimation: 1 |
||||
copyAvatar: 0 |
||||
humanDescription: |
||||
serializedVersion: 2 |
||||
human: [] |
||||
skeleton: [] |
||||
armTwist: 0.5 |
||||
foreArmTwist: 0.5 |
||||
upperLegTwist: 0.5 |
||||
legTwist: 0.5 |
||||
armStretch: 0.05 |
||||
legStretch: 0.05 |
||||
feetSpacing: 0 |
||||
rootMotionBoneName: |
||||
rootMotionBoneRotation: {x: 0, y: 0, z: 0, w: 1} |
||||
hasTranslationDoF: 0 |
||||
hasExtraRoot: 0 |
||||
skeletonHasParents: 1 |
||||
lastHumanDescriptionAvatarSource: {instanceID: 0} |
||||
animationType: 2 |
||||
humanoidOversampling: 1 |
||||
additionalBone: 0 |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
Binary file not shown.
@ -0,0 +1,160 @@
|
||||
fileFormatVersion: 2 |
||||
guid: c0f45b66cf587e24baabed9165b5139e |
||||
timeCreated: 1502843854 |
||||
licenseType: Pro |
||||
ModelImporter: |
||||
serializedVersion: 19 |
||||
fileIDToRecycleName: |
||||
100000: F4_Floor |
||||
100002: F4_FM |
||||
100004: F4_GNFQ |
||||
100006: F4_LT |
||||
100008: F4_TSLX |
||||
100010: F4_TWCS |
||||
100012: F4_Wall |
||||
100014: F4_XFDT |
||||
100016: F4_XHS |
||||
100018: F4_XHSWZ |
||||
100020: LT1 |
||||
100022: LT2 |
||||
100024: //RootNode |
||||
100026: XHS047 |
||||
100028: XHS048 |
||||
100030: XHS049 |
||||
100032: XHS050 |
||||
100034: XHS051 |
||||
400000: F4_Floor |
||||
400002: F4_FM |
||||
400004: F4_GNFQ |
||||
400006: F4_LT |
||||
400008: F4_TSLX |
||||
400010: F4_TWCS |
||||
400012: F4_Wall |
||||
400014: F4_XFDT |
||||
400016: F4_XHS |
||||
400018: F4_XHSWZ |
||||
400020: LT1 |
||||
400022: LT2 |
||||
400024: //RootNode |
||||
400026: XHS047 |
||||
400028: XHS048 |
||||
400030: XHS049 |
||||
400032: XHS050 |
||||
400034: XHS051 |
||||
2300000: F4_Floor |
||||
2300002: F4_FM |
||||
2300004: F4_GNFQ |
||||
2300006: F4_TSLX |
||||
2300008: F4_TWCS |
||||
2300010: F4_Wall |
||||
2300012: F4_XFDT |
||||
2300014: F4_XHSWZ |
||||
2300016: LT1 |
||||
2300018: LT2 |
||||
2300020: XHS047 |
||||
2300022: XHS048 |
||||
2300024: XHS049 |
||||
2300026: XHS050 |
||||
2300028: XHS051 |
||||
3300000: F4_Floor |
||||
3300002: F4_FM |
||||
3300004: F4_GNFQ |
||||
3300006: F4_TSLX |
||||
3300008: F4_TWCS |
||||
3300010: F4_Wall |
||||
3300012: F4_XFDT |
||||
3300014: F4_XHSWZ |
||||
3300016: LT1 |
||||
3300018: LT2 |
||||
3300020: XHS047 |
||||
3300022: XHS048 |
||||
3300024: XHS049 |
||||
3300026: XHS050 |
||||
3300028: XHS051 |
||||
4300000: F4_Floor |
||||
4300002: F4_FM |
||||
4300004: F4_GNFQ |
||||
4300006: LT1 |
||||
4300008: LT2 |
||||
4300010: F4_TSLX |
||||
4300012: F4_TWCS |
||||
4300014: F4_Wall |
||||
4300016: F4_XFDT |
||||
4300018: XHS047 |
||||
4300020: XHS048 |
||||
4300022: XHS049 |
||||
4300024: XHS050 |
||||
4300026: XHS051 |
||||
4300028: F4_XHSWZ |
||||
7400000: Take 001 |
||||
9500000: //RootNode |
||||
materials: |
||||
importMaterials: 1 |
||||
materialName: 0 |
||||
materialSearch: 1 |
||||
animations: |
||||
legacyGenerateAnimations: 4 |
||||
bakeSimulation: 0 |
||||
resampleCurves: 1 |
||||
optimizeGameObjects: 0 |
||||
motionNodeName: |
||||
rigImportErrors: |
||||
rigImportWarnings: |
||||
animationImportErrors: |
||||
animationImportWarnings: |
||||
animationRetargetingWarnings: |
||||
animationDoRetargetingWarnings: 0 |
||||
animationCompression: 1 |
||||
animationRotationError: 0.5 |
||||
animationPositionError: 0.5 |
||||
animationScaleError: 0.5 |
||||
animationWrapMode: 0 |
||||
extraExposedTransformPaths: [] |
||||
clipAnimations: [] |
||||
isReadable: 1 |
||||
meshes: |
||||
lODScreenPercentages: [] |
||||
globalScale: 1 |
||||
meshCompression: 0 |
||||
addColliders: 0 |
||||
importBlendShapes: 1 |
||||
swapUVChannels: 0 |
||||
generateSecondaryUV: 0 |
||||
useFileUnits: 1 |
||||
optimizeMeshForGPU: 1 |
||||
keepQuads: 0 |
||||
weldVertices: 1 |
||||
secondaryUVAngleDistortion: 8 |
||||
secondaryUVAreaDistortion: 15.000001 |
||||
secondaryUVHardAngle: 88 |
||||
secondaryUVPackMargin: 4 |
||||
useFileScale: 1 |
||||
tangentSpace: |
||||
normalSmoothAngle: 60 |
||||
normalImportMode: 0 |
||||
tangentImportMode: 3 |
||||
importAnimation: 1 |
||||
copyAvatar: 0 |
||||
humanDescription: |
||||
serializedVersion: 2 |
||||
human: [] |
||||
skeleton: [] |
||||
armTwist: 0.5 |
||||
foreArmTwist: 0.5 |
||||
upperLegTwist: 0.5 |
||||
legTwist: 0.5 |
||||
armStretch: 0.05 |
||||
legStretch: 0.05 |
||||
feetSpacing: 0 |
||||
rootMotionBoneName: |
||||
rootMotionBoneRotation: {x: 0, y: 0, z: 0, w: 1} |
||||
hasTranslationDoF: 0 |
||||
hasExtraRoot: 0 |
||||
skeletonHasParents: 1 |
||||
lastHumanDescriptionAvatarSource: {instanceID: 0} |
||||
animationType: 2 |
||||
humanoidOversampling: 1 |
||||
additionalBone: 0 |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
Binary file not shown.
@ -0,0 +1,160 @@
|
||||
fileFormatVersion: 2 |
||||
guid: bf310c59181548849a77b5c003fdcae2 |
||||
timeCreated: 1502843854 |
||||
licenseType: Pro |
||||
ModelImporter: |
||||
serializedVersion: 19 |
||||
fileIDToRecycleName: |
||||
100000: F5_Floor |
||||
100002: F5_FM |
||||
100004: F5_GNFQ |
||||
100006: F5_LT |
||||
100008: F5_TSLX |
||||
100010: F5_TWCS |
||||
100012: F5_Wall |
||||
100014: F5_XFDT |
||||
100016: F5_XHS |
||||
100018: F5_XHSWZ |
||||
100020: LT1 |
||||
100022: LT2 |
||||
100024: //RootNode |
||||
100026: XHS052 |
||||
100028: XHS053 |
||||
100030: XHS054 |
||||
100032: XHS055 |
||||
100034: XHS056 |
||||
400000: F5_Floor |
||||
400002: F5_FM |
||||
400004: F5_GNFQ |
||||
400006: F5_LT |
||||
400008: F5_TSLX |
||||
400010: F5_TWCS |
||||
400012: F5_Wall |
||||
400014: F5_XFDT |
||||
400016: F5_XHS |
||||
400018: F5_XHSWZ |
||||
400020: LT1 |
||||
400022: LT2 |
||||
400024: //RootNode |
||||
400026: XHS052 |
||||
400028: XHS053 |
||||
400030: XHS054 |
||||
400032: XHS055 |
||||
400034: XHS056 |
||||
2300000: F5_Floor |
||||
2300002: F5_FM |
||||
2300004: F5_GNFQ |
||||
2300006: F5_TSLX |
||||
2300008: F5_TWCS |
||||
2300010: F5_Wall |
||||
2300012: F5_XFDT |
||||
2300014: F5_XHSWZ |
||||
2300016: LT1 |
||||
2300018: LT2 |
||||
2300020: XHS052 |
||||
2300022: XHS053 |
||||
2300024: XHS054 |
||||
2300026: XHS055 |
||||
2300028: XHS056 |
||||
3300000: F5_Floor |
||||
3300002: F5_FM |
||||
3300004: F5_GNFQ |
||||
3300006: F5_TSLX |
||||
3300008: F5_TWCS |
||||
3300010: F5_Wall |
||||
3300012: F5_XFDT |
||||
3300014: F5_XHSWZ |
||||
3300016: LT1 |
||||
3300018: LT2 |
||||
3300020: XHS052 |
||||
3300022: XHS053 |
||||
3300024: XHS054 |
||||
3300026: XHS055 |
||||
3300028: XHS056 |
||||
4300000: F5_Wall |
||||
4300002: F5_Floor |
||||
4300004: F5_FM |
||||
4300006: F5_GNFQ |
||||
4300008: LT1 |
||||
4300010: LT2 |
||||
4300012: F5_TSLX |
||||
4300014: F5_TWCS |
||||
4300016: F5_XFDT |
||||
4300018: XHS052 |
||||
4300020: XHS053 |
||||
4300022: XHS054 |
||||
4300024: XHS055 |
||||
4300026: XHS056 |
||||
4300028: F5_XHSWZ |
||||
7400000: Take 001 |
||||
9500000: //RootNode |
||||
materials: |
||||
importMaterials: 1 |
||||
materialName: 0 |
||||
materialSearch: 1 |
||||
animations: |
||||
legacyGenerateAnimations: 4 |
||||
bakeSimulation: 0 |
||||
resampleCurves: 1 |
||||
optimizeGameObjects: 0 |
||||
motionNodeName: |
||||
rigImportErrors: |
||||
rigImportWarnings: |
||||
animationImportErrors: |
||||
animationImportWarnings: |
||||
animationRetargetingWarnings: |
||||
animationDoRetargetingWarnings: 0 |
||||
animationCompression: 1 |
||||
animationRotationError: 0.5 |
||||
animationPositionError: 0.5 |
||||
animationScaleError: 0.5 |
||||
animationWrapMode: 0 |
||||
extraExposedTransformPaths: [] |
||||
clipAnimations: [] |
||||
isReadable: 1 |
||||
meshes: |
||||
lODScreenPercentages: [] |
||||
globalScale: 1 |
||||
meshCompression: 0 |
||||
addColliders: 0 |
||||
importBlendShapes: 1 |
||||
swapUVChannels: 0 |
||||
generateSecondaryUV: 0 |
||||
useFileUnits: 1 |
||||
optimizeMeshForGPU: 1 |
||||
keepQuads: 0 |
||||
weldVertices: 1 |
||||
secondaryUVAngleDistortion: 8 |
||||
secondaryUVAreaDistortion: 15.000001 |
||||
secondaryUVHardAngle: 88 |
||||
secondaryUVPackMargin: 4 |
||||
useFileScale: 1 |
||||
tangentSpace: |
||||
normalSmoothAngle: 60 |
||||
normalImportMode: 0 |
||||
tangentImportMode: 3 |
||||
importAnimation: 1 |
||||
copyAvatar: 0 |
||||
humanDescription: |
||||
serializedVersion: 2 |
||||
human: [] |
||||
skeleton: [] |
||||
armTwist: 0.5 |
||||
foreArmTwist: 0.5 |
||||
upperLegTwist: 0.5 |
||||
legTwist: 0.5 |
||||
armStretch: 0.05 |
||||
legStretch: 0.05 |
||||
feetSpacing: 0 |
||||
rootMotionBoneName: |
||||
rootMotionBoneRotation: {x: 0, y: 0, z: 0, w: 1} |
||||
hasTranslationDoF: 0 |
||||
hasExtraRoot: 0 |
||||
skeletonHasParents: 1 |
||||
lastHumanDescriptionAvatarSource: {instanceID: 0} |
||||
animationType: 2 |
||||
humanoidOversampling: 1 |
||||
additionalBone: 0 |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
Binary file not shown.
@ -0,0 +1,160 @@
|
||||
fileFormatVersion: 2 |
||||
guid: a1ed90fbbd524604c89500928a165a02 |
||||
timeCreated: 1502843854 |
||||
licenseType: Pro |
||||
ModelImporter: |
||||
serializedVersion: 19 |
||||
fileIDToRecycleName: |
||||
100000: F6_Floor |
||||
100002: F6_FM |
||||
100004: F6_GNFQ |
||||
100006: F6_LT |
||||
100008: F6_TSLX |
||||
100010: F6_TWCS |
||||
100012: F6_Wall |
||||
100014: F6_XFDT |
||||
100016: F6_XHS |
||||
100018: F6_XHSWZ |
||||
100020: LT1 |
||||
100022: LT2 |
||||
100024: //RootNode |
||||
100026: XHS057 |
||||
100028: XHS058 |
||||
100030: XHS059 |
||||
100032: XHS060 |
||||
100034: XHS061 |
||||
400000: F6_Floor |
||||
400002: F6_FM |
||||
400004: F6_GNFQ |
||||
400006: F6_LT |
||||
400008: F6_TSLX |
||||
400010: F6_TWCS |
||||
400012: F6_Wall |
||||
400014: F6_XFDT |
||||
400016: F6_XHS |
||||
400018: F6_XHSWZ |
||||
400020: LT1 |
||||
400022: LT2 |
||||
400024: //RootNode |
||||
400026: XHS057 |
||||
400028: XHS058 |
||||
400030: XHS059 |
||||
400032: XHS060 |
||||
400034: XHS061 |
||||
2300000: F6_Floor |
||||
2300002: F6_FM |
||||
2300004: F6_GNFQ |
||||
2300006: F6_TSLX |
||||
2300008: F6_TWCS |
||||
2300010: F6_Wall |
||||
2300012: F6_XFDT |
||||
2300014: F6_XHSWZ |
||||
2300016: LT1 |
||||
2300018: LT2 |
||||
2300020: XHS057 |
||||
2300022: XHS058 |
||||
2300024: XHS059 |
||||
2300026: XHS060 |
||||
2300028: XHS061 |
||||
3300000: F6_Floor |
||||
3300002: F6_FM |
||||
3300004: F6_GNFQ |
||||
3300006: F6_TSLX |
||||
3300008: F6_TWCS |
||||
3300010: F6_Wall |
||||
3300012: F6_XFDT |
||||
3300014: F6_XHSWZ |
||||
3300016: LT1 |
||||
3300018: LT2 |
||||
3300020: XHS057 |
||||
3300022: XHS058 |
||||
3300024: XHS059 |
||||
3300026: XHS060 |
||||
3300028: XHS061 |
||||
4300000: F6_Wall |
||||
4300002: F6_Floor |
||||
4300004: F6_FM |
||||
4300006: F6_GNFQ |
||||
4300008: LT1 |
||||
4300010: LT2 |
||||
4300012: F6_TSLX |
||||
4300014: F6_TWCS |
||||
4300016: F6_XFDT |
||||
4300018: XHS057 |
||||
4300020: XHS058 |
||||
4300022: XHS059 |
||||
4300024: XHS060 |
||||
4300026: XHS061 |
||||
4300028: F6_XHSWZ |
||||
7400000: Take 001 |
||||
9500000: //RootNode |
||||
materials: |
||||
importMaterials: 1 |
||||
materialName: 0 |
||||
materialSearch: 1 |
||||
animations: |
||||
legacyGenerateAnimations: 4 |
||||
bakeSimulation: 0 |
||||
resampleCurves: 1 |
||||
optimizeGameObjects: 0 |
||||
motionNodeName: |
||||
rigImportErrors: |
||||
rigImportWarnings: |
||||
animationImportErrors: |
||||
animationImportWarnings: |
||||
animationRetargetingWarnings: |
||||
animationDoRetargetingWarnings: 0 |
||||
animationCompression: 1 |
||||
animationRotationError: 0.5 |
||||
animationPositionError: 0.5 |
||||
animationScaleError: 0.5 |
||||
animationWrapMode: 0 |
||||
extraExposedTransformPaths: [] |
||||
clipAnimations: [] |
||||
isReadable: 1 |
||||
meshes: |
||||
lODScreenPercentages: [] |
||||
globalScale: 1 |
||||
meshCompression: 0 |
||||
addColliders: 0 |
||||
importBlendShapes: 1 |
||||
swapUVChannels: 0 |
||||
generateSecondaryUV: 0 |
||||
useFileUnits: 1 |
||||
optimizeMeshForGPU: 1 |
||||
keepQuads: 0 |
||||
weldVertices: 1 |
||||
secondaryUVAngleDistortion: 8 |
||||
secondaryUVAreaDistortion: 15.000001 |
||||
secondaryUVHardAngle: 88 |
||||
secondaryUVPackMargin: 4 |
||||
useFileScale: 1 |
||||
tangentSpace: |
||||
normalSmoothAngle: 60 |
||||
normalImportMode: 0 |
||||
tangentImportMode: 3 |
||||
importAnimation: 1 |
||||
copyAvatar: 0 |
||||
humanDescription: |
||||
serializedVersion: 2 |
||||
human: [] |
||||
skeleton: [] |
||||
armTwist: 0.5 |
||||
foreArmTwist: 0.5 |
||||
upperLegTwist: 0.5 |
||||
legTwist: 0.5 |
||||
armStretch: 0.05 |
||||
legStretch: 0.05 |
||||
feetSpacing: 0 |
||||
rootMotionBoneName: |
||||
rootMotionBoneRotation: {x: 0, y: 0, z: 0, w: 1} |
||||
hasTranslationDoF: 0 |
||||
hasExtraRoot: 0 |
||||
skeletonHasParents: 1 |
||||
lastHumanDescriptionAvatarSource: {instanceID: 0} |
||||
animationType: 2 |
||||
humanoidOversampling: 1 |
||||
additionalBone: 0 |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
Binary file not shown.
@ -0,0 +1,160 @@
|
||||
fileFormatVersion: 2 |
||||
guid: 74f12ff5123af6745830c4d885cb28f2 |
||||
timeCreated: 1502843853 |
||||
licenseType: Pro |
||||
ModelImporter: |
||||
serializedVersion: 19 |
||||
fileIDToRecycleName: |
||||
100000: F7_Floor |
||||
100002: F7_FM |
||||
100004: F7_GNFQ |
||||
100006: F7_LT |
||||
100008: F7_TSLX |
||||
100010: F7_TWCS |
||||
100012: F7_Wall |
||||
100014: F7_XFDT |
||||
100016: F7_XHS |
||||
100018: F7_XHSWZ |
||||
100020: LT1 |
||||
100022: LT2 |
||||
100024: //RootNode |
||||
100026: XHS062 |
||||
100028: XHS063 |
||||
100030: XHS064 |
||||
100032: XHS065 |
||||
100034: XHS066 |
||||
400000: F7_Floor |
||||
400002: F7_FM |
||||
400004: F7_GNFQ |
||||
400006: F7_LT |
||||
400008: F7_TSLX |
||||
400010: F7_TWCS |
||||
400012: F7_Wall |
||||
400014: F7_XFDT |
||||
400016: F7_XHS |
||||
400018: F7_XHSWZ |
||||
400020: LT1 |
||||
400022: LT2 |
||||
400024: //RootNode |
||||
400026: XHS062 |
||||
400028: XHS063 |
||||
400030: XHS064 |
||||
400032: XHS065 |
||||
400034: XHS066 |
||||
2300000: F7_Floor |
||||
2300002: F7_FM |
||||
2300004: F7_GNFQ |
||||
2300006: F7_TSLX |
||||
2300008: F7_TWCS |
||||
2300010: F7_Wall |
||||
2300012: F7_XFDT |
||||
2300014: F7_XHSWZ |
||||
2300016: LT1 |
||||
2300018: LT2 |
||||
2300020: XHS062 |
||||
2300022: XHS063 |
||||
2300024: XHS064 |
||||
2300026: XHS065 |
||||
2300028: XHS066 |
||||
3300000: F7_Floor |
||||
3300002: F7_FM |
||||
3300004: F7_GNFQ |
||||
3300006: F7_TSLX |
||||
3300008: F7_TWCS |
||||
3300010: F7_Wall |
||||
3300012: F7_XFDT |
||||
3300014: F7_XHSWZ |
||||
3300016: LT1 |
||||
3300018: LT2 |
||||
3300020: XHS062 |
||||
3300022: XHS063 |
||||
3300024: XHS064 |
||||
3300026: XHS065 |
||||
3300028: XHS066 |
||||
4300000: F7_Wall |
||||
4300002: F7_Floor |
||||
4300004: F7_FM |
||||
4300006: F7_GNFQ |
||||
4300008: LT1 |
||||
4300010: LT2 |
||||
4300012: F7_TSLX |
||||
4300014: F7_TWCS |
||||
4300016: F7_XFDT |
||||
4300018: XHS062 |
||||
4300020: XHS063 |
||||
4300022: XHS064 |
||||
4300024: XHS065 |
||||
4300026: XHS066 |
||||
4300028: F7_XHSWZ |
||||
7400000: Take 001 |
||||
9500000: //RootNode |
||||
materials: |
||||
importMaterials: 1 |
||||
materialName: 0 |
||||
materialSearch: 1 |
||||
animations: |
||||
legacyGenerateAnimations: 4 |
||||
bakeSimulation: 0 |
||||
resampleCurves: 1 |
||||
optimizeGameObjects: 0 |
||||
motionNodeName: |
||||
rigImportErrors: |
||||
rigImportWarnings: |
||||
animationImportErrors: |
||||
animationImportWarnings: |
||||
animationRetargetingWarnings: |
||||
animationDoRetargetingWarnings: 0 |
||||
animationCompression: 1 |
||||
animationRotationError: 0.5 |
||||
animationPositionError: 0.5 |
||||
animationScaleError: 0.5 |
||||
animationWrapMode: 0 |
||||
extraExposedTransformPaths: [] |
||||
clipAnimations: [] |
||||
isReadable: 1 |
||||
meshes: |
||||
lODScreenPercentages: [] |
||||
globalScale: 1 |
||||
meshCompression: 0 |
||||
addColliders: 0 |
||||
importBlendShapes: 1 |
||||
swapUVChannels: 0 |
||||
generateSecondaryUV: 0 |
||||
useFileUnits: 1 |
||||
optimizeMeshForGPU: 1 |
||||
keepQuads: 0 |
||||
weldVertices: 1 |
||||
secondaryUVAngleDistortion: 8 |
||||
secondaryUVAreaDistortion: 15.000001 |
||||
secondaryUVHardAngle: 88 |
||||
secondaryUVPackMargin: 4 |
||||
useFileScale: 1 |
||||
tangentSpace: |
||||
normalSmoothAngle: 60 |
||||
normalImportMode: 0 |
||||
tangentImportMode: 3 |
||||
importAnimation: 1 |
||||
copyAvatar: 0 |
||||
humanDescription: |
||||
serializedVersion: 2 |
||||
human: [] |
||||
skeleton: [] |
||||
armTwist: 0.5 |
||||
foreArmTwist: 0.5 |
||||
upperLegTwist: 0.5 |
||||
legTwist: 0.5 |
||||
armStretch: 0.05 |
||||
legStretch: 0.05 |
||||
feetSpacing: 0 |
||||
rootMotionBoneName: |
||||
rootMotionBoneRotation: {x: 0, y: 0, z: 0, w: 1} |
||||
hasTranslationDoF: 0 |
||||
hasExtraRoot: 0 |
||||
skeletonHasParents: 1 |
||||
lastHumanDescriptionAvatarSource: {instanceID: 0} |
||||
animationType: 2 |
||||
humanoidOversampling: 1 |
||||
additionalBone: 0 |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
Binary file not shown.
@ -0,0 +1,160 @@
|
||||
fileFormatVersion: 2 |
||||
guid: 59dd181d86ef2094f928f7f68e163bd3 |
||||
timeCreated: 1502843852 |
||||
licenseType: Pro |
||||
ModelImporter: |
||||
serializedVersion: 19 |
||||
fileIDToRecycleName: |
||||
100000: F8_Floor |
||||
100002: F8_FM |
||||
100004: F8_GNFQ |
||||
100006: F8_LT |
||||
100008: F8_TSLX |
||||
100010: F8_TWCS |
||||
100012: F8_Wall |
||||
100014: F8_XFDT |
||||
100016: F8_XHS |
||||
100018: F8_XHSWZ |
||||
100020: LT1 |
||||
100022: LT2 |
||||
100024: //RootNode |
||||
100026: XHS067 |
||||
100028: XHS068 |
||||
100030: XHS069 |
||||
100032: XHS070 |
||||
100034: XHS071 |
||||
400000: F8_Floor |
||||
400002: F8_FM |
||||
400004: F8_GNFQ |
||||
400006: F8_LT |
||||
400008: F8_TSLX |
||||
400010: F8_TWCS |
||||
400012: F8_Wall |
||||
400014: F8_XFDT |
||||
400016: F8_XHS |
||||
400018: F8_XHSWZ |
||||
400020: LT1 |
||||
400022: LT2 |
||||
400024: //RootNode |
||||
400026: XHS067 |
||||
400028: XHS068 |
||||
400030: XHS069 |
||||
400032: XHS070 |
||||
400034: XHS071 |
||||
2300000: F8_Floor |
||||
2300002: F8_FM |
||||
2300004: F8_GNFQ |
||||
2300006: F8_TSLX |
||||
2300008: F8_TWCS |
||||
2300010: F8_Wall |
||||
2300012: F8_XFDT |
||||
2300014: F8_XHSWZ |
||||
2300016: LT1 |
||||
2300018: LT2 |
||||
2300020: XHS067 |
||||
2300022: XHS068 |
||||
2300024: XHS069 |
||||
2300026: XHS070 |
||||
2300028: XHS071 |
||||
3300000: F8_Floor |
||||
3300002: F8_FM |
||||
3300004: F8_GNFQ |
||||
3300006: F8_TSLX |
||||
3300008: F8_TWCS |
||||
3300010: F8_Wall |
||||
3300012: F8_XFDT |
||||
3300014: F8_XHSWZ |
||||
3300016: LT1 |
||||
3300018: LT2 |
||||
3300020: XHS067 |
||||
3300022: XHS068 |
||||
3300024: XHS069 |
||||
3300026: XHS070 |
||||
3300028: XHS071 |
||||
4300000: F8_Wall |
||||
4300002: F8_Floor |
||||
4300004: F8_FM |
||||
4300006: F8_GNFQ |
||||
4300008: LT1 |
||||
4300010: LT2 |
||||
4300012: F8_TSLX |
||||
4300014: F8_TWCS |
||||
4300016: F8_XFDT |
||||
4300018: XHS067 |
||||
4300020: XHS068 |
||||
4300022: XHS069 |
||||
4300024: XHS070 |
||||
4300026: XHS071 |
||||
4300028: F8_XHSWZ |
||||
7400000: Take 001 |
||||
9500000: //RootNode |
||||
materials: |
||||
importMaterials: 1 |
||||
materialName: 0 |
||||
materialSearch: 1 |
||||
animations: |
||||
legacyGenerateAnimations: 4 |
||||
bakeSimulation: 0 |
||||
resampleCurves: 1 |
||||
optimizeGameObjects: 0 |
||||
motionNodeName: |
||||
rigImportErrors: |
||||
rigImportWarnings: |
||||
animationImportErrors: |
||||
animationImportWarnings: |
||||
animationRetargetingWarnings: |
||||
animationDoRetargetingWarnings: 0 |
||||
animationCompression: 1 |
||||
animationRotationError: 0.5 |
||||
animationPositionError: 0.5 |
||||
animationScaleError: 0.5 |
||||
animationWrapMode: 0 |
||||
extraExposedTransformPaths: [] |
||||
clipAnimations: [] |
||||
isReadable: 1 |
||||
meshes: |
||||
lODScreenPercentages: [] |
||||
globalScale: 1 |
||||
meshCompression: 0 |
||||
addColliders: 0 |
||||
importBlendShapes: 1 |
||||
swapUVChannels: 0 |
||||
generateSecondaryUV: 0 |
||||
useFileUnits: 1 |
||||
optimizeMeshForGPU: 1 |
||||
keepQuads: 0 |
||||
weldVertices: 1 |
||||
secondaryUVAngleDistortion: 8 |
||||
secondaryUVAreaDistortion: 15.000001 |
||||
secondaryUVHardAngle: 88 |
||||
secondaryUVPackMargin: 4 |
||||
useFileScale: 1 |
||||
tangentSpace: |
||||
normalSmoothAngle: 60 |
||||
normalImportMode: 0 |
||||
tangentImportMode: 3 |
||||
importAnimation: 1 |
||||
copyAvatar: 0 |
||||
humanDescription: |
||||
serializedVersion: 2 |
||||
human: [] |
||||
skeleton: [] |
||||
armTwist: 0.5 |
||||
foreArmTwist: 0.5 |
||||
upperLegTwist: 0.5 |
||||
legTwist: 0.5 |
||||
armStretch: 0.05 |
||||
legStretch: 0.05 |
||||
feetSpacing: 0 |
||||
rootMotionBoneName: |
||||
rootMotionBoneRotation: {x: 0, y: 0, z: 0, w: 1} |
||||
hasTranslationDoF: 0 |
||||
hasExtraRoot: 0 |
||||
skeletonHasParents: 1 |
||||
lastHumanDescriptionAvatarSource: {instanceID: 0} |
||||
animationType: 2 |
||||
humanoidOversampling: 1 |
||||
additionalBone: 0 |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
Binary file not shown.
@ -0,0 +1,160 @@
|
||||
fileFormatVersion: 2 |
||||
guid: 6a6925633f6e67c4887047c4d3b7de03 |
||||
timeCreated: 1502843853 |
||||
licenseType: Pro |
||||
ModelImporter: |
||||
serializedVersion: 19 |
||||
fileIDToRecycleName: |
||||
100000: F9_Floor |
||||
100002: F9_FM |
||||
100004: F9_GNFQ |
||||
100006: F9_LT |
||||
100008: F9_TSLX |
||||
100010: F9_TWCS |
||||
100012: F9_Wall |
||||
100014: F9_XFDT |
||||
100016: F9_XHS |
||||
100018: F9_XHSWZ |
||||
100020: LT1 |
||||
100022: LT2 |
||||
100024: //RootNode |
||||
100026: XHS072 |
||||
100028: XHS073 |
||||
100030: XHS074 |
||||
100032: XHS075 |
||||
100034: XHS076 |
||||
400000: F9_Floor |
||||
400002: F9_FM |
||||
400004: F9_GNFQ |
||||
400006: F9_LT |
||||
400008: F9_TSLX |
||||
400010: F9_TWCS |
||||
400012: F9_Wall |
||||
400014: F9_XFDT |
||||
400016: F9_XHS |
||||
400018: F9_XHSWZ |
||||
400020: LT1 |
||||
400022: LT2 |
||||
400024: //RootNode |
||||
400026: XHS072 |
||||
400028: XHS073 |
||||
400030: XHS074 |
||||
400032: XHS075 |
||||
400034: XHS076 |
||||
2300000: F9_Floor |
||||
2300002: F9_FM |
||||
2300004: F9_GNFQ |
||||
2300006: F9_TSLX |
||||
2300008: F9_TWCS |
||||
2300010: F9_Wall |
||||
2300012: F9_XFDT |
||||
2300014: F9_XHSWZ |
||||
2300016: LT1 |
||||
2300018: LT2 |
||||
2300020: XHS072 |
||||
2300022: XHS073 |
||||
2300024: XHS074 |
||||
2300026: XHS075 |
||||
2300028: XHS076 |
||||
3300000: F9_Floor |
||||
3300002: F9_FM |
||||
3300004: F9_GNFQ |
||||
3300006: F9_TSLX |
||||
3300008: F9_TWCS |
||||
3300010: F9_Wall |
||||
3300012: F9_XFDT |
||||
3300014: F9_XHSWZ |
||||
3300016: LT1 |
||||
3300018: LT2 |
||||
3300020: XHS072 |
||||
3300022: XHS073 |
||||
3300024: XHS074 |
||||
3300026: XHS075 |
||||
3300028: XHS076 |
||||
4300000: F9_Wall |
||||
4300002: F9_Floor |
||||
4300004: F9_FM |
||||
4300006: F9_GNFQ |
||||
4300008: LT1 |
||||
4300010: LT2 |
||||
4300012: F9_TSLX |
||||
4300014: F9_TWCS |
||||
4300016: F9_XFDT |
||||
4300018: XHS072 |
||||
4300020: XHS073 |
||||
4300022: XHS074 |
||||
4300024: XHS075 |
||||
4300026: XHS076 |
||||
4300028: F9_XHSWZ |
||||
7400000: Take 001 |
||||
9500000: //RootNode |
||||
materials: |
||||
importMaterials: 1 |
||||
materialName: 0 |
||||
materialSearch: 1 |
||||
animations: |
||||
legacyGenerateAnimations: 4 |
||||
bakeSimulation: 0 |
||||
resampleCurves: 1 |
||||
optimizeGameObjects: 0 |
||||
motionNodeName: |
||||
rigImportErrors: |
||||
rigImportWarnings: |
||||
animationImportErrors: |
||||
animationImportWarnings: |
||||
animationRetargetingWarnings: |
||||
animationDoRetargetingWarnings: 0 |
||||
animationCompression: 1 |
||||
animationRotationError: 0.5 |
||||
animationPositionError: 0.5 |
||||
animationScaleError: 0.5 |
||||
animationWrapMode: 0 |
||||
extraExposedTransformPaths: [] |
||||
clipAnimations: [] |
||||
isReadable: 1 |
||||
meshes: |
||||
lODScreenPercentages: [] |
||||
globalScale: 1 |
||||
meshCompression: 0 |
||||
addColliders: 0 |
||||
importBlendShapes: 1 |
||||
swapUVChannels: 0 |
||||
generateSecondaryUV: 0 |
||||
useFileUnits: 1 |
||||
optimizeMeshForGPU: 1 |
||||
keepQuads: 0 |
||||
weldVertices: 1 |
||||
secondaryUVAngleDistortion: 8 |
||||
secondaryUVAreaDistortion: 15.000001 |
||||
secondaryUVHardAngle: 88 |
||||
secondaryUVPackMargin: 4 |
||||
useFileScale: 1 |
||||
tangentSpace: |
||||
normalSmoothAngle: 60 |
||||
normalImportMode: 0 |
||||
tangentImportMode: 3 |
||||
importAnimation: 1 |
||||
copyAvatar: 0 |
||||
humanDescription: |
||||
serializedVersion: 2 |
||||
human: [] |
||||
skeleton: [] |
||||
armTwist: 0.5 |
||||
foreArmTwist: 0.5 |
||||
upperLegTwist: 0.5 |
||||
legTwist: 0.5 |
||||
armStretch: 0.05 |
||||
legStretch: 0.05 |
||||
feetSpacing: 0 |
||||
rootMotionBoneName: |
||||
rootMotionBoneRotation: {x: 0, y: 0, z: 0, w: 1} |
||||
hasTranslationDoF: 0 |
||||
hasExtraRoot: 0 |
||||
skeletonHasParents: 1 |
||||
lastHumanDescriptionAvatarSource: {instanceID: 0} |
||||
animationType: 2 |
||||
humanoidOversampling: 1 |
||||
additionalBone: 0 |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2 |
||||
guid: 65ff3f9daba16594eb0fd8ee2c3e2216 |
||||
folderAsset: yes |
||||
DefaultImporter: |
||||
externalObjects: {} |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2 |
||||
guid: c5e76360109526f42ba7bbfd9ca5b335 |
||||
folderAsset: yes |
||||
DefaultImporter: |
||||
externalObjects: {} |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
@ -0,0 +1,77 @@
|
||||
%YAML 1.1 |
||||
%TAG !u! tag:unity3d.com,2011: |
||||
--- !u!21 &2100000 |
||||
Material: |
||||
serializedVersion: 6 |
||||
m_ObjectHideFlags: 0 |
||||
m_CorrespondingSourceObject: {fileID: 0} |
||||
m_PrefabInstance: {fileID: 0} |
||||
m_PrefabAsset: {fileID: 0} |
||||
m_Name: AQCK |
||||
m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} |
||||
m_ShaderKeywords: |
||||
m_LightmapFlags: 4 |
||||
m_EnableInstancingVariants: 0 |
||||
m_DoubleSidedGI: 0 |
||||
m_CustomRenderQueue: -1 |
||||
stringTagMap: {} |
||||
disabledShaderPasses: [] |
||||
m_SavedProperties: |
||||
serializedVersion: 3 |
||||
m_TexEnvs: |
||||
- _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} |
||||
m_Floats: |
||||
- _BumpScale: 1 |
||||
- _Cutoff: 0.5 |
||||
- _DetailNormalMapScale: 1 |
||||
- _DstBlend: 0 |
||||
- _GlossMapScale: 1 |
||||
- _Glossiness: 0 |
||||
- _GlossyReflections: 1 |
||||
- _Metallic: 0 |
||||
- _Mode: 0 |
||||
- _OcclusionStrength: 1 |
||||
- _Parallax: 0.02 |
||||
- _SmoothnessTextureChannel: 0 |
||||
- _SpecularHighlights: 1 |
||||
- _SrcBlend: 1 |
||||
- _UVSec: 0 |
||||
- _ZWrite: 1 |
||||
m_Colors: |
||||
- _Color: {r: 1, g: 0, b: 0, a: 1} |
||||
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1} |
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue