Compare commits
5 Commits
Author | SHA1 | Date |
---|---|---|
曹衍涛 | 225fd8eff1 | 3 months ago |
曹衍涛 | ca01eaa55a | 3 months ago |
曹衍涛 | 2f51ef2fd2 | 3 months ago |
曹衍涛 | 8838217ab6 | 3 months ago |
曹衍涛 | 94d08b8cb8 | 3 months ago |
@ -0,0 +1,3 @@
|
||||
[submodule "Assets/URPPublic"] |
||||
path = Assets/URPPublic |
||||
url = http://121.36.37.70:15501/AX-ORG/URPPublic.git |
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2 |
||||
guid: 3847d78b92764464991342d5436ced0b |
||||
guid: 850abdba2249eee4e8ad40c8d3569b9b |
||||
folderAsset: yes |
||||
DefaultImporter: |
||||
externalObjects: {} |
@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2 |
||||
guid: 2fe0903fed0fc5a4a90f37a9ceeefbb1 |
||||
DefaultImporter: |
||||
externalObjects: {} |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2 |
||||
guid: 6a3e8b433acfbf94abb5747133f80a20 |
||||
PrefabImporter: |
||||
externalObjects: {} |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2 |
||||
guid: fe5399e5b612e1a488ec08ab707110ad |
||||
PrefabImporter: |
||||
externalObjects: {} |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2 |
||||
guid: b98d27dd581a1204ca7d529f0fc1c1ca |
||||
folderAsset: yes |
||||
DefaultImporter: |
||||
externalObjects: {} |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2 |
||||
guid: 92772dd5a6bfe18499bb7a1fabf2ada1 |
||||
NativeFormatImporter: |
||||
externalObjects: {} |
||||
mainObjectFileID: 23800000 |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2 |
||||
guid: 51644def8826be945a711e5e1c241261 |
||||
NativeFormatImporter: |
||||
externalObjects: {} |
||||
mainObjectFileID: 23800000 |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
@ -1,29 +0,0 @@
|
||||
using System.Collections; |
||||
using System.Collections.Generic; |
||||
using UnityEngine; |
||||
|
||||
/// <summary> |
||||
/// 游戏对象信息基类 |
||||
/// </summary> |
||||
public class BaseGameObjInfo : MonoBehaviour { |
||||
|
||||
public long gameObjID;//游戏对象ID |
||||
public CloneObjType gameObjType;//游戏对象类型 |
||||
|
||||
public long GameObjID { get { return gameObjID; } } |
||||
|
||||
public void SetGameObjID(long id) |
||||
{ |
||||
gameObjID = id; |
||||
} |
||||
|
||||
// Use this for initialization |
||||
void Start () { |
||||
|
||||
} |
||||
|
||||
// Update is called once per frame |
||||
void Update () { |
||||
|
||||
} |
||||
} |
@ -1,2 +0,0 @@
|
||||
fileFormatVersion: 2 |
||||
guid: a4c084de76af8c349ae1f222d8716b1b |
@ -1,11 +0,0 @@
|
||||
using System.Collections; |
||||
using System.Collections.Generic; |
||||
using UnityEngine; |
||||
|
||||
public class CameraViewDataForFunArea : MonoBehaviour |
||||
{ |
||||
public Vector3 TargetPos; |
||||
public float CameraX; |
||||
public float CameraY; |
||||
public float Distance; |
||||
} |
@ -1,2 +0,0 @@
|
||||
fileFormatVersion: 2 |
||||
guid: 78722e55a6f8aa54db9f860ce5caf529 |
@ -1,24 +0,0 @@
|
||||
|
||||
/// <summary> |
||||
/// 克隆游戏对象信息基类 |
||||
/// </summary> |
||||
public class CloneGameObjInfo : BaseGameObjInfo |
||||
{ |
||||
public string buildNum;//楼号 |
||||
public int floorNum;//层号 |
||||
public int interlayerNum;//夹层号,0表示不是夹层,1表示第一个夹层 |
||||
|
||||
public int Layer; |
||||
|
||||
public bool ShoworHidden;//显示或隐藏 |
||||
public string FullName; |
||||
public string SpecialTag = ""; |
||||
} |
||||
|
||||
public struct SpreadObjHandle |
||||
{ |
||||
public long gameObjId; |
||||
public CloneObjType gameObjType; |
||||
public bool isShow;//是否显示:true表示显示出来;false表示隐藏 |
||||
} |
||||
|
@ -1,2 +0,0 @@
|
||||
fileFormatVersion: 2 |
||||
guid: 77fb9be10c0901f46a68b3ee09e7972b |
@ -1,307 +0,0 @@
|
||||
using System.Collections; |
||||
using System.Collections.Generic; |
||||
using UnityEngine; |
||||
|
||||
/// <summary> |
||||
/// 克隆类型(枚举) |
||||
/// </summary> |
||||
public enum CloneObjType |
||||
{ |
||||
None = 0, |
||||
|
||||
//基本信息能克隆的实体类型 |
||||
AdjoiningBuildings = 1,//毗邻 |
||||
NoParkingArea = 2,//禁停区 |
||||
KeyParts = 3,//重点部位 |
||||
FireControlRoom = 4,//消控室 |
||||
PumpRoom = 5,//泵房 |
||||
BubblePumpRoom = 6,//泡沫泵房 |
||||
WaterTank = 7,//水罐 |
||||
PostFireHydrant = 8,//地上消火栓 |
||||
FlushFireHydrant = 9,//地下消火栓 |
||||
PumpAdapter = 10,//水泵接合器 |
||||
FireWaterMonitor = 11,//消防水炮 |
||||
FoamHydrant = 12,//泡沫栓 |
||||
IndoorFireHydrant = 13,//室内消火栓 |
||||
|
||||
//消防力量设定图标克隆类型 |
||||
ZongDuiIcon = 101,//中队图标 |
||||
ZhiDuiIcon = 102,//大队图标 |
||||
DaDuiIcon = 103,//支队图标 |
||||
ZhongDuiIcon = 104,//总队图标 |
||||
|
||||
//灾情能克隆的实体类型 |
||||
//注意:在增加灾情类型的时候要在带入答案的地方处理 |
||||
NormalFire = 200,//普通火 |
||||
FullSurfaceFire = 201,//全液面火 |
||||
Insider = 202,//知情人 |
||||
TrappedPerson = 203,//被困人员 |
||||
WoundedPerson = 204,//伤员 |
||||
FlowingFire = 205,//地面流淌火 |
||||
Boilover = 206,//泄露 |
||||
Smoke = 207,//烟雾 |
||||
FireOpenType = 208,//敞开式燃烧 |
||||
FireBreakThough = 209,//突破火 |
||||
ForcibleEntryDoor = 210,//破拆门 |
||||
|
||||
//消防力量克隆类型:车辆类型 |
||||
WaterTanker = 250,//水罐车 |
||||
FoamFireTruck = 251,//泡沫车 |
||||
HighSprayingCar = 252,//高喷车 |
||||
LadderTruck = 253,//云梯车 |
||||
LiftTruck = 254,//举高车 |
||||
SmokeCar = 255,//排烟车 |
||||
RescueVehicle = 256,//抢险救援车 |
||||
LightingVehicle = 257,//照明车 |
||||
InflatableCar = 258,//供气车 |
||||
CommandVehicle = 259,//指挥车 |
||||
ForcibleCar = 260,//破拆车 |
||||
EquipmentCar = 261,//器材车 |
||||
RemoteWaterSupplyTruck = 262,//远程供水车 |
||||
DecontaminationTruck = 263,//洗消车 |
||||
LiquidSupplyTruck = 264,//供液车 |
||||
FoodSecurityTruck = 265,//饮食保障车 |
||||
EquipmentTransportTruck = 266,//装备运输车 |
||||
EquipmentRepairTruck = 267,//装备抢修车 |
||||
MedicalSupportTruck = 268,//卫勤保障车 |
||||
PowderFireTruck = 269,//干粉车 |
||||
|
||||
//消防力量克隆类型:消防员,移动水炮,灭火机器人等特殊装备类型 |
||||
Fireman = 300,//消防员 |
||||
MobileWaterCannon = 301,//移动水炮 |
||||
FireFightingRobot = 302,//灭火机器人 |
||||
SnowstormCannon = 303,//暴风雪炮 |
||||
|
||||
//工具克隆类型 |
||||
WarningLine = 350,//警戒线 |
||||
FireHose = 351,//消防水带 |
||||
Attack = 352,//进攻 |
||||
Retreat = 353,//撤退 |
||||
CommandPost = 354,//火场指挥部 |
||||
StagingArea = 355,//集结区 |
||||
WaterCurtainHose = 356,//水幕水带 |
||||
RegionalSettings = 357,//区域设定 |
||||
SafeArea = 358,//安全区 |
||||
ZhongDuiCommander = 359,//中队指挥员 |
||||
ZhiDuiCommander = 360,//支队指挥员 |
||||
SupportArea = 361,//战勤保障集结区 |
||||
WaterBisector = 362,//二分水器 |
||||
WaterTrisector = 363,//三分水器 |
||||
SafetyOfficer = 364,//安全员 |
||||
//WaterCurtain=365,//水幕水带 |
||||
FoamHookPipe = 365,//泡沫钩管 |
||||
TheSurroundingWaterPoint = 366,//周边水源取水点 |
||||
FirePoolPoint = 367,//消防水池取水点 |
||||
DecontaminationArea = 368,//洗消区 |
||||
SmokeExhaustFan = 369,//排烟风机 |
||||
|
||||
//技能要克隆的物体的克隆类型 |
||||
BlockOff = 400,//封堵 |
||||
DrawLine = 401,//铺设的管线 |
||||
LifeLightLine = 402,//铺设的就剩照明线 |
||||
|
||||
//截图工具克隆类型 |
||||
Rectangle = 450,//矩形 |
||||
Circular = 451,//圆形 |
||||
Arrow = 452,//箭头 |
||||
Text = 453,//文字 |
||||
|
||||
//战术板工具克隆类型 |
||||
TBArrow = 500,//战术板箭头 |
||||
CutOff = 501,//堵截 |
||||
BreakThrough = 502,//突破 |
||||
Segment = 503,//分割 |
||||
Suppress = 504,//围剿 |
||||
PincerAttack = 505,//夹攻 |
||||
JointAttack = 506,//合击 |
||||
//通信保障克隆类型 |
||||
UVA = 550,//无人机 |
||||
MonitorBall = 551,//布控球 |
||||
MeshSolider = 552,//mesh单兵 |
||||
FourGSolider = 553,//4g单兵图传 |
||||
DigitalInterphone = 554,//数字对讲机 |
||||
FourGBS = 555,//4g基站 |
||||
VoiceReplayStation = 556,//语音中继台 |
||||
PortableSateLliteStation = 557,//卫星便携站 |
||||
PaintingLanguagePlatform = 558,//语绘平台 |
||||
MeshRelaying = 559, //mesh中继 |
||||
SignalBox = 560,//信号塔 |
||||
//联动力量克隆类型 |
||||
Cruiser = 600,//巡逻车 |
||||
Motorbike = 601,//摩托车 |
||||
Ambulance = 602,//救护车 |
||||
PatrolWagon = 603,//警车 |
||||
ElectricRepairCar = 604,//电力抢修车 |
||||
GasRepairCar = 605,//燃气抢修车 |
||||
WaterSupplyRepairCar = 606,//供水抢修车 |
||||
EnvironmentalTestingVehicle = 607,//环保检测车 |
||||
TransportVehicle = 608,//交通运输车 |
||||
SanitartPreventionVehicle = 609,//卫生防疫车 |
||||
EmergencyCommunicationVehicle = 610,//应急通讯车 |
||||
FamilyCar = 611,//家庭轿车 |
||||
EnterpriseMechanic = 612,//企业技工 |
||||
PublicSecurity = 613,//保安 |
||||
OfficeClerk = 614,//职员 |
||||
Manager = 615,//经理 |
||||
TechnicalEngineer = 616,//技术工程师 |
||||
Doctor = 617,//医生 |
||||
|
||||
Team = 1000,//消防员组 |
||||
StaticGameObject = 1001,//场景中固有的静态游戏实体对象 |
||||
StaticUI = 1002//静态UI |
||||
} |
||||
|
||||
/// <summary> |
||||
/// 根据克隆类型获取其对应的中文名称。 |
||||
/// Tips:添加克隆类型时,注意同步添加到CloneTypeDic字典中 |
||||
/// </summary> |
||||
public class CloneObjTypeName |
||||
{ |
||||
private CloneObjTypeName() { } |
||||
private static CloneObjTypeName instance; |
||||
private static Dictionary<CloneObjType, string> CloneTypeDic; |
||||
public static CloneObjTypeName Instance |
||||
{ |
||||
get |
||||
{ |
||||
if (null == instance) |
||||
{ |
||||
instance = new CloneObjTypeName(); |
||||
InitCloneTypeDic(); |
||||
} |
||||
return instance; |
||||
} |
||||
} |
||||
|
||||
public string GetCloneObjTypeName(CloneObjType type) |
||||
{ |
||||
string name = "未命名"; |
||||
CloneTypeDic.TryGetValue(type, out name); |
||||
return name; |
||||
} |
||||
|
||||
private static void InitCloneTypeDic() |
||||
{ |
||||
CloneTypeDic = new Dictionary<CloneObjType, string>(); |
||||
|
||||
CloneTypeDic.Add(CloneObjType.AdjoiningBuildings, "毗邻"); |
||||
CloneTypeDic.Add(CloneObjType.NoParkingArea, "禁停区"); |
||||
CloneTypeDic.Add(CloneObjType.KeyParts, "重点部位"); |
||||
CloneTypeDic.Add(CloneObjType.FireControlRoom, "消控室"); |
||||
CloneTypeDic.Add(CloneObjType.PumpRoom, "泵房"); |
||||
CloneTypeDic.Add(CloneObjType.BubblePumpRoom, "泡沫泵房"); |
||||
CloneTypeDic.Add(CloneObjType.WaterTank, "水罐"); |
||||
CloneTypeDic.Add(CloneObjType.PostFireHydrant, "地上消火栓"); |
||||
CloneTypeDic.Add(CloneObjType.FlushFireHydrant, "地下消火栓"); |
||||
CloneTypeDic.Add(CloneObjType.PumpAdapter, "水泵接合器"); |
||||
CloneTypeDic.Add(CloneObjType.FireWaterMonitor, "消防水炮"); |
||||
CloneTypeDic.Add(CloneObjType.FoamHydrant, "泡沫栓"); |
||||
|
||||
CloneTypeDic.Add(CloneObjType.NormalFire, "普通火"); |
||||
CloneTypeDic.Add(CloneObjType.FullSurfaceFire, "全液面火"); |
||||
CloneTypeDic.Add(CloneObjType.Insider, "知情人"); |
||||
CloneTypeDic.Add(CloneObjType.TrappedPerson, "被困人员"); |
||||
CloneTypeDic.Add(CloneObjType.WoundedPerson, "伤员"); |
||||
CloneTypeDic.Add(CloneObjType.Boilover, "泄露"); |
||||
CloneTypeDic.Add(CloneObjType.Smoke, "烟雾"); |
||||
CloneTypeDic.Add(CloneObjType.FlowingFire, "流淌火"); |
||||
CloneTypeDic.Add(CloneObjType.FireOpenType, "敞开式燃烧"); |
||||
CloneTypeDic.Add(CloneObjType.FireBreakThough, "突破火"); |
||||
CloneTypeDic.Add(CloneObjType.ForcibleEntryDoor, "破拆点"); |
||||
|
||||
CloneTypeDic.Add(CloneObjType.WaterTanker, "水罐车"); |
||||
CloneTypeDic.Add(CloneObjType.FoamFireTruck, "泡沫车"); |
||||
CloneTypeDic.Add(CloneObjType.HighSprayingCar, "高喷车"); |
||||
CloneTypeDic.Add(CloneObjType.LadderTruck, "云梯车"); |
||||
CloneTypeDic.Add(CloneObjType.LiftTruck, "举高车"); |
||||
CloneTypeDic.Add(CloneObjType.SmokeCar, "排烟车"); |
||||
CloneTypeDic.Add(CloneObjType.RescueVehicle, "抢险救援车"); |
||||
CloneTypeDic.Add(CloneObjType.LightingVehicle, "照明车"); |
||||
CloneTypeDic.Add(CloneObjType.InflatableCar, "供气车"); |
||||
CloneTypeDic.Add(CloneObjType.CommandVehicle, "指挥车"); |
||||
CloneTypeDic.Add(CloneObjType.ForcibleCar, "破拆车"); |
||||
CloneTypeDic.Add(CloneObjType.EquipmentCar, "器材车"); |
||||
CloneTypeDic.Add(CloneObjType.RemoteWaterSupplyTruck, "远程供水车"); |
||||
CloneTypeDic.Add(CloneObjType.DecontaminationTruck, "洗消车"); |
||||
CloneTypeDic.Add(CloneObjType.LiquidSupplyTruck, "供液车"); |
||||
CloneTypeDic.Add(CloneObjType.FoodSecurityTruck, "饮食保障车"); |
||||
CloneTypeDic.Add(CloneObjType.EquipmentTransportTruck, "装备运输车"); |
||||
CloneTypeDic.Add(CloneObjType.EquipmentRepairTruck, "装备抢修车"); |
||||
CloneTypeDic.Add(CloneObjType.MedicalSupportTruck, "卫勤保障车"); |
||||
CloneTypeDic.Add(CloneObjType.PowderFireTruck, "干粉车"); |
||||
CloneTypeDic.Add(CloneObjType.Fireman, "消防员"); |
||||
CloneTypeDic.Add(CloneObjType.MobileWaterCannon, "移动水炮"); |
||||
CloneTypeDic.Add(CloneObjType.FireFightingRobot, "灭火机器人"); |
||||
CloneTypeDic.Add(CloneObjType.SnowstormCannon, "暴风雪炮"); |
||||
|
||||
CloneTypeDic.Add(CloneObjType.WarningLine, "警戒线"); |
||||
CloneTypeDic.Add(CloneObjType.FireHose, "水带"); |
||||
CloneTypeDic.Add(CloneObjType.Attack, "进攻"); |
||||
CloneTypeDic.Add(CloneObjType.Retreat, "撤退"); |
||||
CloneTypeDic.Add(CloneObjType.CommandPost, "指挥部"); |
||||
CloneTypeDic.Add(CloneObjType.StagingArea, "集结区"); |
||||
CloneTypeDic.Add(CloneObjType.SafeArea, "安全区"); |
||||
CloneTypeDic.Add(CloneObjType.SupportArea, "战勤保障集结区"); |
||||
CloneTypeDic.Add(CloneObjType.ZhongDuiCommander, "中队指挥员"); |
||||
CloneTypeDic.Add(CloneObjType.ZhiDuiCommander, "支队指挥员"); |
||||
CloneTypeDic.Add(CloneObjType.WaterCurtainHose, "水幕水带"); |
||||
CloneTypeDic.Add(CloneObjType.RegionalSettings, "区域设定"); |
||||
CloneTypeDic.Add(CloneObjType.WaterBisector, "二分水器"); |
||||
CloneTypeDic.Add(CloneObjType.WaterTrisector, "三分水器"); |
||||
//CloneTypeDic.Add(CloneObjType.WaterCurtainHose, "水幕水带"); |
||||
CloneTypeDic.Add(CloneObjType.SafetyOfficer, "安全员"); |
||||
CloneTypeDic.Add(CloneObjType.FoamHookPipe, "泡沫钩管"); |
||||
CloneTypeDic.Add(CloneObjType.TheSurroundingWaterPoint, "周边水源取水点"); |
||||
CloneTypeDic.Add(CloneObjType.FirePoolPoint, "消防水池取水点"); |
||||
CloneTypeDic.Add(CloneObjType.DecontaminationArea, "洗消区"); |
||||
CloneTypeDic.Add(CloneObjType.SmokeExhaustFan, "排烟机"); |
||||
|
||||
|
||||
CloneTypeDic.Add(CloneObjType.BlockOff, "封堵"); |
||||
|
||||
CloneTypeDic.Add(CloneObjType.Rectangle, "矩形"); |
||||
CloneTypeDic.Add(CloneObjType.Circular, "圆形"); |
||||
CloneTypeDic.Add(CloneObjType.Arrow, "箭头"); |
||||
CloneTypeDic.Add(CloneObjType.Text, "文字"); |
||||
|
||||
CloneTypeDic.Add(CloneObjType.TBArrow, "战术箭头"); |
||||
CloneTypeDic.Add(CloneObjType.CutOff, "堵截"); |
||||
CloneTypeDic.Add(CloneObjType.BreakThrough, "突破"); |
||||
CloneTypeDic.Add(CloneObjType.Segment, "分割"); |
||||
CloneTypeDic.Add(CloneObjType.Suppress, "围剿"); |
||||
CloneTypeDic.Add(CloneObjType.PincerAttack, "夹攻"); |
||||
CloneTypeDic.Add(CloneObjType.JointAttack, "合击"); |
||||
|
||||
CloneTypeDic.Add(CloneObjType.UVA, "无人机"); |
||||
CloneTypeDic.Add(CloneObjType.MonitorBall, "布控球"); |
||||
CloneTypeDic.Add(CloneObjType.MeshSolider, "mesh单兵"); |
||||
CloneTypeDic.Add(CloneObjType.FourGSolider, "4g单兵图传"); |
||||
CloneTypeDic.Add(CloneObjType.DigitalInterphone, "数字对讲机"); |
||||
CloneTypeDic.Add(CloneObjType.FourGBS, "4g基站"); |
||||
CloneTypeDic.Add(CloneObjType.VoiceReplayStation, "语音中继台"); |
||||
CloneTypeDic.Add(CloneObjType.PortableSateLliteStation, "卫星便携站"); |
||||
CloneTypeDic.Add(CloneObjType.PaintingLanguagePlatform, "语绘平台"); |
||||
CloneTypeDic.Add(CloneObjType.MeshRelaying, "mesh中继"); |
||||
CloneTypeDic.Add(CloneObjType.SignalBox, "信号塔"); |
||||
|
||||
CloneTypeDic.Add(CloneObjType.Cruiser, "巡逻车"); |
||||
CloneTypeDic.Add(CloneObjType.Motorbike, "摩托车"); |
||||
CloneTypeDic.Add(CloneObjType.Ambulance, "救护车"); |
||||
CloneTypeDic.Add(CloneObjType.PatrolWagon, "警车"); |
||||
CloneTypeDic.Add(CloneObjType.ElectricRepairCar, "电力抢修车"); |
||||
CloneTypeDic.Add(CloneObjType.GasRepairCar, "燃气抢修车"); |
||||
CloneTypeDic.Add(CloneObjType.WaterSupplyRepairCar, "供水抢修车"); |
||||
CloneTypeDic.Add(CloneObjType.EnvironmentalTestingVehicle, "环保检测车"); |
||||
CloneTypeDic.Add(CloneObjType.TransportVehicle, "交通运输车"); |
||||
CloneTypeDic.Add(CloneObjType.SanitartPreventionVehicle, "卫生防疫车"); |
||||
CloneTypeDic.Add(CloneObjType.EmergencyCommunicationVehicle, "应急通讯车"); |
||||
CloneTypeDic.Add(CloneObjType.FamilyCar, "家庭轿车"); |
||||
CloneTypeDic.Add(CloneObjType.EnterpriseMechanic, "企业技工"); |
||||
CloneTypeDic.Add(CloneObjType.PublicSecurity, "保安"); |
||||
CloneTypeDic.Add(CloneObjType.OfficeClerk, "职员"); |
||||
CloneTypeDic.Add(CloneObjType.Manager, "经理"); |
||||
CloneTypeDic.Add(CloneObjType.TechnicalEngineer, "技术工程师"); |
||||
CloneTypeDic.Add(CloneObjType.Doctor, "医生"); |
||||
|
||||
} |
||||
} |
@ -1,2 +0,0 @@
|
||||
fileFormatVersion: 2 |
||||
guid: b9e79d9d52924c24abfeef77eb7fdca6 |
@ -1,16 +0,0 @@
|
||||
using System.Collections; |
||||
using System.Collections.Generic; |
||||
using UnityEngine; |
||||
|
||||
/// <summary> |
||||
/// 该脚本挂在点击可实例化物体的模型上 |
||||
/// 选择该模型上具体可实例化的Clone类型 |
||||
/// </summary> |
||||
[DisallowMultipleComponent] |
||||
public class CloneableEnums : MonoBehaviour { |
||||
|
||||
public List<CloneObjType> CloneableTypes = new List<CloneObjType>(); |
||||
|
||||
//是否处理克隆操作点击碰撞的点 |
||||
public bool isHandleCloneHitPoint; |
||||
} |
@ -1,2 +0,0 @@
|
||||
fileFormatVersion: 2 |
||||
guid: 1c0e57298488ae54aba3ef60b0b26920 |
@ -1,20 +0,0 @@
|
||||
using System; |
||||
using System.Collections; |
||||
using System.Collections.Generic; |
||||
using UnityEngine; |
||||
|
||||
public class EvacuatePoint : MonoBehaviour |
||||
{ |
||||
public static List<Vector3> evacuatePoints = new List<Vector3>(); |
||||
|
||||
private void Awake() |
||||
{ |
||||
evacuatePoints.Clear(); |
||||
} |
||||
|
||||
// Start is called before the first frame update |
||||
void Start() |
||||
{ |
||||
evacuatePoints.Add(transform.position); |
||||
} |
||||
} |
@ -1,2 +0,0 @@
|
||||
fileFormatVersion: 2 |
||||
guid: d00f7578dda0a1c41b151766a6426479 |
@ -1,15 +0,0 @@
|
||||
using System.Collections; |
||||
using System.Collections.Generic; |
||||
using UnityEngine; |
||||
|
||||
public class FloorMessage : MonoBehaviour |
||||
{ |
||||
// Use this for initialization |
||||
//使用方法:将脚本挂在场景中每一层的室内结构和室外结构的父对象上 |
||||
//功能:记录建筑每层结构的层信息 |
||||
|
||||
public string buildNum;//楼号 |
||||
public int floorNum;//层号 |
||||
public int interlayerNum;//夹层号,0表示不是夹层,1表示第一个夹层 |
||||
public Transform targetTrans;//切楼层时候用来定位的目标点 |
||||
} |
@ -1,2 +0,0 @@
|
||||
fileFormatVersion: 2 |
||||
guid: 7eb663056acb2644698df34826b5c60f |
@ -1,38 +0,0 @@
|
||||
using System.Collections; |
||||
using System.Collections.Generic; |
||||
using UnityEngine; |
||||
|
||||
public class GetAreaTargetManager : MonoBehaviour |
||||
{ |
||||
public Vector3 cameraInitPos = new Vector3();//相机Target初始位置 |
||||
public float initDis;//相机离Target距离的初始值 |
||||
public float init_X;//相机水平旋转初始值 |
||||
public float init_Y;//相机竖直旋转初始值 |
||||
|
||||
public static GetAreaTargetManager Instance; |
||||
[SerializeField] |
||||
private List<Transform> children; |
||||
private void Awake() |
||||
{ |
||||
children = new List<Transform>(); |
||||
foreach (Transform item in transform) |
||||
{ |
||||
children.Add(item); |
||||
} |
||||
Instance = this; |
||||
} |
||||
public Transform GetTarget(string name) |
||||
{ |
||||
Transform result = null; |
||||
foreach (var item in children) |
||||
{ |
||||
if (item.name == name) |
||||
{ |
||||
result = item; |
||||
break; |
||||
} |
||||
} |
||||
|
||||
return result; |
||||
} |
||||
} |
@ -1,2 +0,0 @@
|
||||
fileFormatVersion: 2 |
||||
guid: ad1ddb7b6b473ac4ea26f44aea624e2b |
@ -1,51 +0,0 @@
|
||||
using UnityEngine; |
||||
using System.Collections; |
||||
|
||||
public class LoadShader : MonoBehaviour |
||||
{ |
||||
// Start is called once before the first execution of Update after the MonoBehaviour is created |
||||
void Start() |
||||
{ |
||||
#if !UNITY_WEBGL || UNITY_EDITOR |
||||
SetShader(transform); |
||||
#endif |
||||
} |
||||
|
||||
// Update is called once per frame |
||||
void Update() |
||||
{ |
||||
|
||||
} |
||||
public void SetShader(Transform child) |
||||
{ |
||||
if (child.childCount > 0) |
||||
{ |
||||
for (int i = 0; i < child.childCount; i++) |
||||
{ |
||||
SetShader(child.GetChild(i)); |
||||
} |
||||
} |
||||
else |
||||
{ |
||||
if (child.GetComponent<Renderer>()) |
||||
{ |
||||
var r = child.GetComponent<Renderer>(); |
||||
foreach (var material in r.materials) |
||||
{ |
||||
//Debug.Log(material.shader.name); |
||||
if (material.shader.name == "Universal Render Pipeline/Lit") |
||||
{ |
||||
StartCoroutine(setshader(material)); |
||||
} |
||||
} |
||||
} |
||||
} |
||||
} |
||||
|
||||
IEnumerator setshader(Material m) |
||||
{ |
||||
m.shader = null; |
||||
yield return new WaitForSeconds(0.1f); |
||||
m.shader = Shader.Find("Universal Render Pipeline/Lit"); |
||||
} |
||||
} |
@ -1,2 +0,0 @@
|
||||
fileFormatVersion: 2 |
||||
guid: 5627e6832e9378c4e8632a52efa22183 |
@ -1,18 +0,0 @@
|
||||
using System.Collections; |
||||
using System.Collections.Generic; |
||||
using UnityEngine; |
||||
|
||||
public class PathFindable : MonoBehaviour |
||||
{ |
||||
// Start is called before the first frame update |
||||
void Start() |
||||
{ |
||||
|
||||
} |
||||
|
||||
// Update is called once per frame |
||||
void Update() |
||||
{ |
||||
|
||||
} |
||||
} |
@ -1,2 +0,0 @@
|
||||
fileFormatVersion: 2 |
||||
guid: 43929be615d468749bba2f9917117a45 |
@ -1,9 +0,0 @@
|
||||
using System.Collections; |
||||
using System.Collections.Generic; |
||||
using UnityEngine; |
||||
|
||||
public class TeamTargetItem : MonoBehaviour |
||||
{ |
||||
public List<string> TaskNames; |
||||
public string TankName; |
||||
} |
@ -1,2 +0,0 @@
|
||||
fileFormatVersion: 2 |
||||
guid: 408648110f0742348a48d10da40f3ea5 |
@ -1,52 +0,0 @@
|
||||
using System.Collections; |
||||
using System.Collections.Generic; |
||||
using UnityEngine; |
||||
|
||||
/// <summary> |
||||
/// 组任务目标点管理 |
||||
/// </summary> |
||||
public class TeamTargetManager : MonoBehaviour |
||||
{ |
||||
public static TeamTargetManager instance; |
||||
|
||||
private void Awake() |
||||
{ |
||||
instance = this; |
||||
} |
||||
|
||||
public static TeamTargetManager GetInstance |
||||
{ |
||||
get |
||||
{ |
||||
if (instance == null) |
||||
{ |
||||
string path = "TeamTargetParent"; |
||||
GameObject obj = Resources.Load<GameObject>(path); |
||||
GameObject clone = Instantiate(obj); |
||||
clone.name = "TeamTargetParent"; |
||||
instance = clone.GetComponent<TeamTargetManager>(); |
||||
} |
||||
return instance; |
||||
} |
||||
} |
||||
/// <summary> |
||||
/// 罐区类组任务获取目标点 |
||||
/// </summary> |
||||
/// <param name="taskName">任务名称</param> |
||||
/// <param name="tankName">罐区名称</param> |
||||
/// <returns></returns> |
||||
public Vector3 GetTargetPos(string taskName, string tankName) |
||||
{ |
||||
Vector3 pos = Vector3.zero; |
||||
foreach (Transform item in transform) |
||||
{ |
||||
if (item.GetComponent<TeamTargetItem>().TaskNames.Contains(taskName) && |
||||
item.GetComponent<TeamTargetItem>().TankName == tankName) |
||||
{ |
||||
pos = item.position; |
||||
break; |
||||
} |
||||
} |
||||
return pos; |
||||
} |
||||
} |
@ -1,2 +0,0 @@
|
||||
fileFormatVersion: 2 |
||||
guid: de3dcbb1284b2394a8049095e2bae278 |
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2 |
||||
guid: 12405a25dce603e4686f695b3a56f95a |
||||
folderAsset: yes |
||||
DefaultImporter: |
||||
externalObjects: {} |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
@ -0,0 +1,9 @@
|
||||
ManifestFileVersion: 0 |
||||
UnityVersion: 6000.0.17f1c1 |
||||
CRC: 1355318957 |
||||
HashAppended: 0 |
||||
AssetBundleManifest: |
||||
AssetBundleInfos: |
||||
Info_0: |
||||
Name: buildingscene |
||||
Dependencies: {} |
@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2 |
||||
guid: a6e67d32d21b9d64aa2efa249ee5dda3 |
||||
DefaultImporter: |
||||
externalObjects: {} |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2 |
||||
guid: aecb64f5df05f794e9a8372513a159f3 |
||||
DefaultImporter: |
||||
externalObjects: {} |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
@ -0,0 +1,75 @@
|
||||
ManifestFileVersion: 0 |
||||
UnityVersion: 6000.0.17f1c1 |
||||
CRC: 3162375805 |
||||
Hashes: |
||||
AssetFileHash: |
||||
serializedVersion: 2 |
||||
Hash: 0f2f9fa64f4dabc3943529dc6948c5b9 |
||||
TypeTreeHash: |
||||
serializedVersion: 2 |
||||
Hash: 55ac0987be952647943fcb9099777765 |
||||
IncrementalBuildHash: |
||||
serializedVersion: 2 |
||||
Hash: 57a5d289e71abc9fd4f7a4c59e72a4dd |
||||
HashAppended: 0 |
||||
ClassTypes: |
||||
- Class: 1 |
||||
Script: {instanceID: 0} |
||||
- Class: 4 |
||||
Script: {instanceID: 0} |
||||
- Class: 21 |
||||
Script: {instanceID: 0} |
||||
- Class: 23 |
||||
Script: {instanceID: 0} |
||||
- Class: 28 |
||||
Script: {instanceID: 0} |
||||
- Class: 33 |
||||
Script: {instanceID: 0} |
||||
- Class: 43 |
||||
Script: {instanceID: 0} |
||||
- Class: 48 |
||||
Script: {instanceID: 0} |
||||
- Class: 64 |
||||
Script: {instanceID: 0} |
||||
- Class: 65 |
||||
Script: {instanceID: 0} |
||||
- Class: 89 |
||||
Script: {instanceID: 0} |
||||
- Class: 104 |
||||
Script: {instanceID: 0} |
||||
- Class: 114 |
||||
Script: {fileID: 11500000, guid: d00f7578dda0a1c41b151766a6426479, type: 3} |
||||
- Class: 114 |
||||
Script: {fileID: 11500000, guid: 43929be615d468749bba2f9917117a45, type: 3} |
||||
- Class: 114 |
||||
Script: {fileID: 11500000, guid: 1e3fdca004f2d45fe8abbed571a8abd5, type: 3} |
||||
- Class: 114 |
||||
Script: {fileID: 11500000, guid: de3dcbb1284b2394a8049095e2bae278, type: 3} |
||||
- Class: 114 |
||||
Script: {fileID: 11500000, guid: 0777d029ed3dffa4692f417d4aba19ca, type: 3} |
||||
- Class: 114 |
||||
Script: {fileID: 11500000, guid: b0f36456c352b534cb76fe2cc683b76d, type: 3} |
||||
- Class: 114 |
||||
Script: {fileID: 11500000, guid: 1c0e57298488ae54aba3ef60b0b26920, type: 3} |
||||
- Class: 114 |
||||
Script: {fileID: 11500000, guid: ad1ddb7b6b473ac4ea26f44aea624e2b, type: 3} |
||||
- Class: 114 |
||||
Script: {fileID: 11500000, guid: 5627e6832e9378c4e8632a52efa22183, type: 3} |
||||
- Class: 114 |
||||
Script: {fileID: 11500000, guid: 6eeb5dc026fdf4b488bc7ae0138ab719, type: 3} |
||||
- Class: 114 |
||||
Script: {fileID: 11500000, guid: 7a5ac11cc976e418e8d13136b07e1f52, type: 3} |
||||
- Class: 115 |
||||
Script: {instanceID: 0} |
||||
- Class: 157 |
||||
Script: {instanceID: 0} |
||||
- Class: 196 |
||||
Script: {instanceID: 0} |
||||
- Class: 238 |
||||
Script: {instanceID: 0} |
||||
- Class: 850595691 |
||||
Script: {instanceID: 0} |
||||
SerializeReferenceClassIdentifiers: [] |
||||
Assets: |
||||
- Assets/ScenesKH/BuildingScene.unity |
||||
Dependencies: [] |
@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2 |
||||
guid: 4807e367a4591974baf7c39a578dd366 |
||||
DefaultImporter: |
||||
externalObjects: {} |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2 |
||||
guid: 7431bebf0f191de4981f2aa35887b3a5 |
||||
DefaultImporter: |
||||
externalObjects: {} |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
@ -0,0 +1,9 @@
|
||||
ManifestFileVersion: 0 |
||||
UnityVersion: 6000.0.17f1c1 |
||||
CRC: 2088397712 |
||||
HashAppended: 0 |
||||
AssetBundleManifest: |
||||
AssetBundleInfos: |
||||
Info_0: |
||||
Name: buildingscene |
||||
Dependencies: {} |
@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2 |
||||
guid: 0a96d4f39ff6cdb4c84a46ff979fd20f |
||||
DefaultImporter: |
||||
externalObjects: {} |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2 |
||||
guid: 16514f64f43d90947b7ec33c10b7f1bb |
||||
DefaultImporter: |
||||
externalObjects: {} |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2 |
||||
guid: b318fa51b6db48f47821d9f536e86b7f |
||||
folderAsset: yes |
||||
DefaultImporter: |
||||
externalObjects: {} |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
@ -0,0 +1,9 @@
|
||||
ManifestFileVersion: 0 |
||||
UnityVersion: 6000.0.17f1c1 |
||||
CRC: 2386842907 |
||||
HashAppended: 0 |
||||
AssetBundleManifest: |
||||
AssetBundleInfos: |
||||
Info_0: |
||||
Name: buildingscene |
||||
Dependencies: {} |
@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2 |
||||
guid: 11da023667d867345bcb17bd6a3f5c64 |
||||
DefaultImporter: |
||||
externalObjects: {} |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2 |
||||
guid: f36683f3db3bf5441bdd65109ae18405 |
||||
DefaultImporter: |
||||
externalObjects: {} |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
@ -0,0 +1,75 @@
|
||||
ManifestFileVersion: 0 |
||||
UnityVersion: 6000.0.17f1c1 |
||||
CRC: 258592244 |
||||
Hashes: |
||||
AssetFileHash: |
||||
serializedVersion: 2 |
||||
Hash: 91adffa3707bcfdb1d90acf977a76093 |
||||
TypeTreeHash: |
||||
serializedVersion: 2 |
||||
Hash: 55ac0987be952647943fcb9099777765 |
||||
IncrementalBuildHash: |
||||
serializedVersion: 2 |
||||
Hash: b894c36a48ee02e24c1563485ee3401b |
||||
HashAppended: 0 |
||||
ClassTypes: |
||||
- Class: 1 |
||||
Script: {instanceID: 0} |
||||
- Class: 4 |
||||
Script: {instanceID: 0} |
||||
- Class: 21 |
||||
Script: {instanceID: 0} |
||||
- Class: 23 |
||||
Script: {instanceID: 0} |
||||
- Class: 28 |
||||
Script: {instanceID: 0} |
||||
- Class: 33 |
||||
Script: {instanceID: 0} |
||||
- Class: 43 |
||||
Script: {instanceID: 0} |
||||
- Class: 48 |
||||
Script: {instanceID: 0} |
||||
- Class: 64 |
||||
Script: {instanceID: 0} |
||||
- Class: 65 |
||||
Script: {instanceID: 0} |
||||
- Class: 89 |
||||
Script: {instanceID: 0} |
||||
- Class: 104 |
||||
Script: {instanceID: 0} |
||||
- Class: 114 |
||||
Script: {fileID: 11500000, guid: d00f7578dda0a1c41b151766a6426479, type: 3} |
||||
- Class: 114 |
||||
Script: {fileID: 11500000, guid: 43929be615d468749bba2f9917117a45, type: 3} |
||||
- Class: 114 |
||||
Script: {fileID: 11500000, guid: 1e3fdca004f2d45fe8abbed571a8abd5, type: 3} |
||||
- Class: 114 |
||||
Script: {fileID: 11500000, guid: de3dcbb1284b2394a8049095e2bae278, type: 3} |
||||
- Class: 114 |
||||
Script: {fileID: 11500000, guid: 0777d029ed3dffa4692f417d4aba19ca, type: 3} |
||||
- Class: 114 |
||||
Script: {fileID: 11500000, guid: b0f36456c352b534cb76fe2cc683b76d, type: 3} |
||||
- Class: 114 |
||||
Script: {fileID: 11500000, guid: 1c0e57298488ae54aba3ef60b0b26920, type: 3} |
||||
- Class: 114 |
||||
Script: {fileID: 11500000, guid: ad1ddb7b6b473ac4ea26f44aea624e2b, type: 3} |
||||
- Class: 114 |
||||
Script: {fileID: 11500000, guid: 5627e6832e9378c4e8632a52efa22183, type: 3} |
||||
- Class: 114 |
||||
Script: {fileID: 11500000, guid: 6eeb5dc026fdf4b488bc7ae0138ab719, type: 3} |
||||
- Class: 114 |
||||
Script: {fileID: 11500000, guid: 7a5ac11cc976e418e8d13136b07e1f52, type: 3} |
||||
- Class: 115 |
||||
Script: {instanceID: 0} |
||||
- Class: 157 |
||||
Script: {instanceID: 0} |
||||
- Class: 196 |
||||
Script: {instanceID: 0} |
||||
- Class: 238 |
||||
Script: {instanceID: 0} |
||||
- Class: 850595691 |
||||
Script: {instanceID: 0} |
||||
SerializeReferenceClassIdentifiers: [] |
||||
Assets: |
||||
- Assets/ScenesKH/BuildingScene.unity |
||||
Dependencies: [] |
@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2 |
||||
guid: 66e5d174a79a8c742accc759ef5eb703 |
||||
DefaultImporter: |
||||
externalObjects: {} |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2 |
||||
guid: ff46e7d136ded4e41bea98bacf0af0d7 |
||||
DefaultImporter: |
||||
externalObjects: {} |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
@ -0,0 +1,75 @@
|
||||
ManifestFileVersion: 0 |
||||
UnityVersion: 6000.0.17f1c1 |
||||
CRC: 2415770282 |
||||
Hashes: |
||||
AssetFileHash: |
||||
serializedVersion: 2 |
||||
Hash: 95654c7148fe90a28b2af794c57f07b6 |
||||
TypeTreeHash: |
||||
serializedVersion: 2 |
||||
Hash: 55ac0987be952647943fcb9099777765 |
||||
IncrementalBuildHash: |
||||
serializedVersion: 2 |
||||
Hash: a34866fc5bcdb6fff274dbd17812efbe |
||||
HashAppended: 0 |
||||
ClassTypes: |
||||
- Class: 1 |
||||
Script: {instanceID: 0} |
||||
- Class: 4 |
||||
Script: {instanceID: 0} |
||||
- Class: 21 |
||||
Script: {instanceID: 0} |
||||
- Class: 23 |
||||
Script: {instanceID: 0} |
||||
- Class: 28 |
||||
Script: {instanceID: 0} |
||||
- Class: 33 |
||||
Script: {instanceID: 0} |
||||
- Class: 43 |
||||
Script: {instanceID: 0} |
||||
- Class: 48 |
||||
Script: {instanceID: 0} |
||||
- Class: 64 |
||||
Script: {instanceID: 0} |
||||
- Class: 65 |
||||
Script: {instanceID: 0} |
||||
- Class: 89 |
||||
Script: {instanceID: 0} |
||||
- Class: 104 |
||||
Script: {instanceID: 0} |
||||
- Class: 114 |
||||
Script: {fileID: 11500000, guid: d00f7578dda0a1c41b151766a6426479, type: 3} |
||||
- Class: 114 |
||||
Script: {fileID: 11500000, guid: 43929be615d468749bba2f9917117a45, type: 3} |
||||
- Class: 114 |
||||
Script: {fileID: 11500000, guid: 1e3fdca004f2d45fe8abbed571a8abd5, type: 3} |
||||
- Class: 114 |
||||
Script: {fileID: 11500000, guid: de3dcbb1284b2394a8049095e2bae278, type: 3} |
||||
- Class: 114 |
||||
Script: {fileID: 11500000, guid: 0777d029ed3dffa4692f417d4aba19ca, type: 3} |
||||
- Class: 114 |
||||
Script: {fileID: 11500000, guid: b0f36456c352b534cb76fe2cc683b76d, type: 3} |
||||
- Class: 114 |
||||
Script: {fileID: 11500000, guid: 1c0e57298488ae54aba3ef60b0b26920, type: 3} |
||||
- Class: 114 |
||||
Script: {fileID: 11500000, guid: ad1ddb7b6b473ac4ea26f44aea624e2b, type: 3} |
||||
- Class: 114 |
||||
Script: {fileID: 11500000, guid: 5627e6832e9378c4e8632a52efa22183, type: 3} |
||||
- Class: 114 |
||||
Script: {fileID: 11500000, guid: 6eeb5dc026fdf4b488bc7ae0138ab719, type: 3} |
||||
- Class: 114 |
||||
Script: {fileID: 11500000, guid: 7a5ac11cc976e418e8d13136b07e1f52, type: 3} |
||||
- Class: 115 |
||||
Script: {instanceID: 0} |
||||
- Class: 157 |
||||
Script: {instanceID: 0} |
||||
- Class: 196 |
||||
Script: {instanceID: 0} |
||||
- Class: 238 |
||||
Script: {instanceID: 0} |
||||
- Class: 850595691 |
||||
Script: {instanceID: 0} |
||||
SerializeReferenceClassIdentifiers: [] |
||||
Assets: |
||||
- Assets/ScenesPX/BuildingScene.unity |
||||
Dependencies: [] |
@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2 |
||||
guid: 094fb73df1dcdcc4a916edde68690de0 |
||||
DefaultImporter: |
||||
externalObjects: {} |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2 |
||||
guid: c9e059d783038d94392cbc92f7b50744 |
||||
DefaultImporter: |
||||
externalObjects: {} |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2 |
||||
guid: 02ba24b974f47da41ade112b8726c0b9 |
||||
folderAsset: yes |
||||
DefaultImporter: |
||||
externalObjects: {} |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
@ -0,0 +1,107 @@
|
||||
fileFormatVersion: 2 |
||||
guid: 9484d4161b4b2bf4d803001d1a232afa |
||||
ModelImporter: |
||||
serializedVersion: 22200 |
||||
internalIDToNameTable: [] |
||||
externalObjects: {} |
||||
materials: |
||||
materialImportMode: 2 |
||||
materialName: 0 |
||||
materialSearch: 1 |
||||
materialLocation: 1 |
||||
animations: |
||||
legacyGenerateAnimations: 4 |
||||
bakeSimulation: 0 |
||||
resampleCurves: 1 |
||||
optimizeGameObjects: 0 |
||||
removeConstantScaleCurves: 0 |
||||
motionNodeName: |
||||
animationImportErrors: |
||||
animationImportWarnings: |
||||
animationRetargetingWarnings: |
||||
animationDoRetargetingWarnings: 0 |
||||
importAnimatedCustomProperties: 0 |
||||
importConstraints: 0 |
||||
animationCompression: 1 |
||||
animationRotationError: 0.5 |
||||
animationPositionError: 0.5 |
||||
animationScaleError: 0.5 |
||||
animationWrapMode: 0 |
||||
extraExposedTransformPaths: [] |
||||
extraUserProperties: [] |
||||
clipAnimations: [] |
||||
isReadable: 0 |
||||
meshes: |
||||
lODScreenPercentages: [] |
||||
globalScale: 1 |
||||
meshCompression: 0 |
||||
addColliders: 0 |
||||
useSRGBMaterialColor: 1 |
||||
sortHierarchyByName: 1 |
||||
importPhysicalCameras: 1 |
||||
importVisibility: 1 |
||||
importBlendShapes: 1 |
||||
importCameras: 1 |
||||
importLights: 1 |
||||
nodeNameCollisionStrategy: 1 |
||||
fileIdsGeneration: 2 |
||||
swapUVChannels: 0 |
||||
generateSecondaryUV: 0 |
||||
useFileUnits: 1 |
||||
keepQuads: 0 |
||||
weldVertices: 1 |
||||
bakeAxisConversion: 0 |
||||
preserveHierarchy: 0 |
||||
skinWeightsMode: 0 |
||||
maxBonesPerVertex: 4 |
||||
minBoneWeight: 0.001 |
||||
optimizeBones: 1 |
||||
meshOptimizationFlags: -1 |
||||
indexFormat: 0 |
||||
secondaryUVAngleDistortion: 8 |
||||
secondaryUVAreaDistortion: 15.000001 |
||||
secondaryUVHardAngle: 88 |
||||
secondaryUVMarginMethod: 1 |
||||
secondaryUVMinLightmapResolution: 40 |
||||
secondaryUVMinObjectScale: 1 |
||||
secondaryUVPackMargin: 4 |
||||
useFileScale: 1 |
||||
strictVertexDataChecks: 0 |
||||
tangentSpace: |
||||
normalSmoothAngle: 60 |
||||
normalImportMode: 0 |
||||
tangentImportMode: 3 |
||||
normalCalculationMode: 4 |
||||
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 |
||||
blendShapeNormalImportMode: 1 |
||||
normalSmoothingSource: 0 |
||||
referencedClips: [] |
||||
importAnimation: 1 |
||||
humanDescription: |
||||
serializedVersion: 3 |
||||
human: [] |
||||
skeleton: [] |
||||
armTwist: 0.5 |
||||
foreArmTwist: 0.5 |
||||
upperLegTwist: 0.5 |
||||
legTwist: 0.5 |
||||
armStretch: 0.05 |
||||
legStretch: 0.05 |
||||
feetSpacing: 0 |
||||
globalScale: 1 |
||||
rootMotionBoneName: |
||||
hasTranslationDoF: 0 |
||||
hasExtraRoot: 0 |
||||
skeletonHasParents: 1 |
||||
lastHumanDescriptionAvatarSource: {instanceID: 0} |
||||
autoGenerateAvatarMappingIfUnspecified: 1 |
||||
animationType: 2 |
||||
humanoidOversampling: 1 |
||||
avatarSetup: 0 |
||||
addHumanoidExtraRootOnlyWhenUsingAvatar: 1 |
||||
importBlendShapeDeformPercent: 1 |
||||
remapMaterialsIfMaterialImportModeIsNone: 0 |
||||
additionalBone: 0 |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2 |
||||
guid: 3407fecc8be0c0f449a95451a37c3c65 |
||||
folderAsset: yes |
||||
DefaultImporter: |
||||
externalObjects: {} |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
@ -0,0 +1,138 @@
|
||||
%YAML 1.1 |
||||
%TAG !u! tag:unity3d.com,2011: |
||||
--- !u!114 &-2851563207126696611 |
||||
MonoBehaviour: |
||||
m_ObjectHideFlags: 11 |
||||
m_CorrespondingSourceObject: {fileID: 0} |
||||
m_PrefabInstance: {fileID: 0} |
||||
m_PrefabAsset: {fileID: 0} |
||||
m_GameObject: {fileID: 0} |
||||
m_Enabled: 1 |
||||
m_EditorHideFlags: 0 |
||||
m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} |
||||
m_Name: |
||||
m_EditorClassIdentifier: |
||||
version: 9 |
||||
--- !u!21 &2100000 |
||||
Material: |
||||
serializedVersion: 8 |
||||
m_ObjectHideFlags: 0 |
||||
m_CorrespondingSourceObject: {fileID: 0} |
||||
m_PrefabInstance: {fileID: 0} |
||||
m_PrefabAsset: {fileID: 0} |
||||
m_Name: CJ_DI1 |
||||
m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} |
||||
m_Parent: {fileID: 0} |
||||
m_ModifiedSerializedProperties: 0 |
||||
m_ValidKeywords: [] |
||||
m_InvalidKeywords: [] |
||||
m_LightmapFlags: 4 |
||||
m_EnableInstancingVariants: 0 |
||||
m_DoubleSidedGI: 0 |
||||
m_CustomRenderQueue: -1 |
||||
stringTagMap: |
||||
RenderType: Opaque |
||||
disabledShaderPasses: |
||||
- MOTIONVECTORS |
||||
m_LockedProperties: |
||||
m_SavedProperties: |
||||
serializedVersion: 3 |
||||
m_TexEnvs: |
||||
- _BaseMap: |
||||
m_Texture: {fileID: 2800000, guid: bcc3a2e3274b7354eb3f55f2e889415b, type: 3} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- _BumpMap: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- _DetailAlbedoMap: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- _DetailMask: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- _DetailNormalMap: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- _EmissionMap: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- _MainTex: |
||||
m_Texture: {fileID: 2800000, guid: bcc3a2e3274b7354eb3f55f2e889415b, 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} |
||||
- _SpecGlossMap: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- unity_Lightmaps: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- unity_LightmapsInd: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- unity_ShadowMasks: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
m_Ints: [] |
||||
m_Floats: |
||||
- _AddPrecomputedVelocity: 0 |
||||
- _AlphaClip: 0 |
||||
- _AlphaToMask: 0 |
||||
- _Blend: 0 |
||||
- _BlendModePreserveSpecular: 1 |
||||
- _BumpScale: 1 |
||||
- _ClearCoatMask: 0 |
||||
- _ClearCoatSmoothness: 0 |
||||
- _Cull: 2 |
||||
- _Cutoff: 0.5 |
||||
- _DetailAlbedoMapScale: 1 |
||||
- _DetailNormalMapScale: 1 |
||||
- _DstBlend: 0 |
||||
- _DstBlendAlpha: 0 |
||||
- _EnvironmentReflections: 1 |
||||
- _GlossMapScale: 1 |
||||
- _Glossiness: 0.14142135 |
||||
- _GlossyReflections: 1 |
||||
- _Metallic: 0 |
||||
- _Mode: 0 |
||||
- _OcclusionStrength: 1 |
||||
- _Parallax: 0.02 |
||||
- _QueueOffset: 0 |
||||
- _ReceiveShadows: 1 |
||||
- _Smoothness: 0.14142135 |
||||
- _SmoothnessTextureChannel: 0 |
||||
- _SpecularHighlights: 1 |
||||
- _SrcBlend: 1 |
||||
- _SrcBlendAlpha: 1 |
||||
- _Surface: 0 |
||||
- _UVSec: 0 |
||||
- _WorkflowMode: 1 |
||||
- _ZWrite: 1 |
||||
m_Colors: |
||||
- _BaseColor: {r: 0.6431373, g: 0.6431373, b: 0.6431373, a: 1} |
||||
- _Color: {r: 0.6431373, g: 0.6431373, b: 0.6431373, a: 1} |
||||
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1} |
||||
- _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} |
||||
m_BuildTextureStacks: [] |
||||
m_AllowLocking: 1 |
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2 |
||||
guid: 207db93e118474f41977070fd621d68e |
||||
NativeFormatImporter: |
||||
externalObjects: {} |
||||
mainObjectFileID: 2100000 |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
@ -0,0 +1,138 @@
|
||||
%YAML 1.1 |
||||
%TAG !u! tag:unity3d.com,2011: |
||||
--- !u!21 &2100000 |
||||
Material: |
||||
serializedVersion: 8 |
||||
m_ObjectHideFlags: 0 |
||||
m_CorrespondingSourceObject: {fileID: 0} |
||||
m_PrefabInstance: {fileID: 0} |
||||
m_PrefabAsset: {fileID: 0} |
||||
m_Name: CJ_MAlu |
||||
m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} |
||||
m_Parent: {fileID: 0} |
||||
m_ModifiedSerializedProperties: 0 |
||||
m_ValidKeywords: [] |
||||
m_InvalidKeywords: [] |
||||
m_LightmapFlags: 4 |
||||
m_EnableInstancingVariants: 0 |
||||
m_DoubleSidedGI: 0 |
||||
m_CustomRenderQueue: -1 |
||||
stringTagMap: |
||||
RenderType: Opaque |
||||
disabledShaderPasses: |
||||
- MOTIONVECTORS |
||||
m_LockedProperties: |
||||
m_SavedProperties: |
||||
serializedVersion: 3 |
||||
m_TexEnvs: |
||||
- _BaseMap: |
||||
m_Texture: {fileID: 2800000, guid: 4b7259ffd0ec18b4492d9b62e4b7a169, type: 3} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- _BumpMap: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- _DetailAlbedoMap: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- _DetailMask: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- _DetailNormalMap: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- _EmissionMap: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- _MainTex: |
||||
m_Texture: {fileID: 2800000, guid: 4b7259ffd0ec18b4492d9b62e4b7a169, 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} |
||||
- _SpecGlossMap: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- unity_Lightmaps: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- unity_LightmapsInd: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- unity_ShadowMasks: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
m_Ints: [] |
||||
m_Floats: |
||||
- _AddPrecomputedVelocity: 0 |
||||
- _AlphaClip: 0 |
||||
- _AlphaToMask: 0 |
||||
- _Blend: 0 |
||||
- _BlendModePreserveSpecular: 1 |
||||
- _BumpScale: 1 |
||||
- _ClearCoatMask: 0 |
||||
- _ClearCoatSmoothness: 0 |
||||
- _Cull: 2 |
||||
- _Cutoff: 0.5 |
||||
- _DetailAlbedoMapScale: 1 |
||||
- _DetailNormalMapScale: 1 |
||||
- _DstBlend: 0 |
||||
- _DstBlendAlpha: 0 |
||||
- _EnvironmentReflections: 1 |
||||
- _GlossMapScale: 1 |
||||
- _Glossiness: 0.14142135 |
||||
- _GlossyReflections: 1 |
||||
- _Metallic: 0 |
||||
- _Mode: 0 |
||||
- _OcclusionStrength: 1 |
||||
- _Parallax: 0.02 |
||||
- _QueueOffset: 0 |
||||
- _ReceiveShadows: 1 |
||||
- _Smoothness: 0.14142135 |
||||
- _SmoothnessTextureChannel: 0 |
||||
- _SpecularHighlights: 1 |
||||
- _SrcBlend: 1 |
||||
- _SrcBlendAlpha: 1 |
||||
- _Surface: 0 |
||||
- _UVSec: 0 |
||||
- _WorkflowMode: 1 |
||||
- _ZWrite: 1 |
||||
m_Colors: |
||||
- _BaseColor: {r: 0.6431373, g: 0.6431373, b: 0.6431373, a: 1} |
||||
- _Color: {r: 0.6431373, g: 0.6431373, b: 0.6431373, a: 1} |
||||
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1} |
||||
- _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} |
||||
m_BuildTextureStacks: [] |
||||
m_AllowLocking: 1 |
||||
--- !u!114 &2764556918378014994 |
||||
MonoBehaviour: |
||||
m_ObjectHideFlags: 11 |
||||
m_CorrespondingSourceObject: {fileID: 0} |
||||
m_PrefabInstance: {fileID: 0} |
||||
m_PrefabAsset: {fileID: 0} |
||||
m_GameObject: {fileID: 0} |
||||
m_Enabled: 1 |
||||
m_EditorHideFlags: 0 |
||||
m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} |
||||
m_Name: |
||||
m_EditorClassIdentifier: |
||||
version: 9 |
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2 |
||||
guid: 298c420f53897e741bcb96b43f482ded |
||||
NativeFormatImporter: |
||||
externalObjects: {} |
||||
mainObjectFileID: 2100000 |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
@ -0,0 +1,138 @@
|
||||
%YAML 1.1 |
||||
%TAG !u! tag:unity3d.com,2011: |
||||
--- !u!114 &-809649124740862538 |
||||
MonoBehaviour: |
||||
m_ObjectHideFlags: 11 |
||||
m_CorrespondingSourceObject: {fileID: 0} |
||||
m_PrefabInstance: {fileID: 0} |
||||
m_PrefabAsset: {fileID: 0} |
||||
m_GameObject: {fileID: 0} |
||||
m_Enabled: 1 |
||||
m_EditorHideFlags: 0 |
||||
m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} |
||||
m_Name: |
||||
m_EditorClassIdentifier: |
||||
version: 9 |
||||
--- !u!21 &2100000 |
||||
Material: |
||||
serializedVersion: 8 |
||||
m_ObjectHideFlags: 0 |
||||
m_CorrespondingSourceObject: {fileID: 0} |
||||
m_PrefabInstance: {fileID: 0} |
||||
m_PrefabAsset: {fileID: 0} |
||||
m_Name: CJ_MAlu1 |
||||
m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} |
||||
m_Parent: {fileID: 0} |
||||
m_ModifiedSerializedProperties: 0 |
||||
m_ValidKeywords: [] |
||||
m_InvalidKeywords: [] |
||||
m_LightmapFlags: 4 |
||||
m_EnableInstancingVariants: 0 |
||||
m_DoubleSidedGI: 0 |
||||
m_CustomRenderQueue: -1 |
||||
stringTagMap: |
||||
RenderType: Opaque |
||||
disabledShaderPasses: |
||||
- MOTIONVECTORS |
||||
m_LockedProperties: |
||||
m_SavedProperties: |
||||
serializedVersion: 3 |
||||
m_TexEnvs: |
||||
- _BaseMap: |
||||
m_Texture: {fileID: 2800000, guid: 1847f20ee4a7ffa479be3d4b3a849e2c, type: 3} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- _BumpMap: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- _DetailAlbedoMap: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- _DetailMask: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- _DetailNormalMap: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- _EmissionMap: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- _MainTex: |
||||
m_Texture: {fileID: 2800000, guid: 1847f20ee4a7ffa479be3d4b3a849e2c, 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} |
||||
- _SpecGlossMap: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- unity_Lightmaps: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- unity_LightmapsInd: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- unity_ShadowMasks: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
m_Ints: [] |
||||
m_Floats: |
||||
- _AddPrecomputedVelocity: 0 |
||||
- _AlphaClip: 0 |
||||
- _AlphaToMask: 0 |
||||
- _Blend: 0 |
||||
- _BlendModePreserveSpecular: 1 |
||||
- _BumpScale: 1 |
||||
- _ClearCoatMask: 0 |
||||
- _ClearCoatSmoothness: 0 |
||||
- _Cull: 2 |
||||
- _Cutoff: 0.5 |
||||
- _DetailAlbedoMapScale: 1 |
||||
- _DetailNormalMapScale: 1 |
||||
- _DstBlend: 0 |
||||
- _DstBlendAlpha: 0 |
||||
- _EnvironmentReflections: 1 |
||||
- _GlossMapScale: 1 |
||||
- _Glossiness: 0.14142135 |
||||
- _GlossyReflections: 1 |
||||
- _Metallic: 0 |
||||
- _Mode: 0 |
||||
- _OcclusionStrength: 1 |
||||
- _Parallax: 0.02 |
||||
- _QueueOffset: 0 |
||||
- _ReceiveShadows: 1 |
||||
- _Smoothness: 0.14142135 |
||||
- _SmoothnessTextureChannel: 0 |
||||
- _SpecularHighlights: 1 |
||||
- _SrcBlend: 1 |
||||
- _SrcBlendAlpha: 1 |
||||
- _Surface: 0 |
||||
- _UVSec: 0 |
||||
- _WorkflowMode: 1 |
||||
- _ZWrite: 1 |
||||
m_Colors: |
||||
- _BaseColor: {r: 0.6431373, g: 0.6431373, b: 0.6431373, a: 1} |
||||
- _Color: {r: 0.6431373, g: 0.6431373, b: 0.6431373, a: 1} |
||||
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1} |
||||
- _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} |
||||
m_BuildTextureStacks: [] |
||||
m_AllowLocking: 1 |
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2 |
||||
guid: acb85f379521a5f47851b7d6f7a8f88d |
||||
NativeFormatImporter: |
||||
externalObjects: {} |
||||
mainObjectFileID: 2100000 |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
@ -0,0 +1,138 @@
|
||||
%YAML 1.1 |
||||
%TAG !u! tag:unity3d.com,2011: |
||||
--- !u!114 &-4814692453858961063 |
||||
MonoBehaviour: |
||||
m_ObjectHideFlags: 11 |
||||
m_CorrespondingSourceObject: {fileID: 0} |
||||
m_PrefabInstance: {fileID: 0} |
||||
m_PrefabAsset: {fileID: 0} |
||||
m_GameObject: {fileID: 0} |
||||
m_Enabled: 1 |
||||
m_EditorHideFlags: 0 |
||||
m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} |
||||
m_Name: |
||||
m_EditorClassIdentifier: |
||||
version: 9 |
||||
--- !u!21 &2100000 |
||||
Material: |
||||
serializedVersion: 8 |
||||
m_ObjectHideFlags: 0 |
||||
m_CorrespondingSourceObject: {fileID: 0} |
||||
m_PrefabInstance: {fileID: 0} |
||||
m_PrefabAsset: {fileID: 0} |
||||
m_Name: CJ_RXD |
||||
m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} |
||||
m_Parent: {fileID: 0} |
||||
m_ModifiedSerializedProperties: 0 |
||||
m_ValidKeywords: [] |
||||
m_InvalidKeywords: [] |
||||
m_LightmapFlags: 4 |
||||
m_EnableInstancingVariants: 0 |
||||
m_DoubleSidedGI: 0 |
||||
m_CustomRenderQueue: -1 |
||||
stringTagMap: |
||||
RenderType: Opaque |
||||
disabledShaderPasses: |
||||
- MOTIONVECTORS |
||||
m_LockedProperties: |
||||
m_SavedProperties: |
||||
serializedVersion: 3 |
||||
m_TexEnvs: |
||||
- _BaseMap: |
||||
m_Texture: {fileID: 2800000, guid: 71cc2f369b010f54ab6cb1051b2d2a15, type: 3} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- _BumpMap: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- _DetailAlbedoMap: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- _DetailMask: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- _DetailNormalMap: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- _EmissionMap: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- _MainTex: |
||||
m_Texture: {fileID: 2800000, guid: 71cc2f369b010f54ab6cb1051b2d2a15, 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} |
||||
- _SpecGlossMap: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- unity_Lightmaps: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- unity_LightmapsInd: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- unity_ShadowMasks: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
m_Ints: [] |
||||
m_Floats: |
||||
- _AddPrecomputedVelocity: 0 |
||||
- _AlphaClip: 0 |
||||
- _AlphaToMask: 0 |
||||
- _Blend: 0 |
||||
- _BlendModePreserveSpecular: 1 |
||||
- _BumpScale: 1 |
||||
- _ClearCoatMask: 0 |
||||
- _ClearCoatSmoothness: 0 |
||||
- _Cull: 2 |
||||
- _Cutoff: 0.5 |
||||
- _DetailAlbedoMapScale: 1 |
||||
- _DetailNormalMapScale: 1 |
||||
- _DstBlend: 0 |
||||
- _DstBlendAlpha: 0 |
||||
- _EnvironmentReflections: 1 |
||||
- _GlossMapScale: 1 |
||||
- _Glossiness: 0.14142135 |
||||
- _GlossyReflections: 1 |
||||
- _Metallic: 0 |
||||
- _Mode: 0 |
||||
- _OcclusionStrength: 1 |
||||
- _Parallax: 0.02 |
||||
- _QueueOffset: 0 |
||||
- _ReceiveShadows: 1 |
||||
- _Smoothness: 0.14142135 |
||||
- _SmoothnessTextureChannel: 0 |
||||
- _SpecularHighlights: 1 |
||||
- _SrcBlend: 1 |
||||
- _SrcBlendAlpha: 1 |
||||
- _Surface: 0 |
||||
- _UVSec: 0 |
||||
- _WorkflowMode: 1 |
||||
- _ZWrite: 1 |
||||
m_Colors: |
||||
- _BaseColor: {r: 0.6431373, g: 0.6431373, b: 0.6431373, a: 1} |
||||
- _Color: {r: 0.6431373, g: 0.6431373, b: 0.6431373, a: 1} |
||||
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1} |
||||
- _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} |
||||
m_BuildTextureStacks: [] |
||||
m_AllowLocking: 1 |
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2 |
||||
guid: 18d73290f97fe5743aa26d9f4c50573d |
||||
NativeFormatImporter: |
||||
externalObjects: {} |
||||
mainObjectFileID: 2100000 |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
@ -0,0 +1,138 @@
|
||||
%YAML 1.1 |
||||
%TAG !u! tag:unity3d.com,2011: |
||||
--- !u!21 &2100000 |
||||
Material: |
||||
serializedVersion: 8 |
||||
m_ObjectHideFlags: 0 |
||||
m_CorrespondingSourceObject: {fileID: 0} |
||||
m_PrefabInstance: {fileID: 0} |
||||
m_PrefabAsset: {fileID: 0} |
||||
m_Name: HL_AA_HunNingTuDiMian_JiaoCuo |
||||
m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} |
||||
m_Parent: {fileID: 0} |
||||
m_ModifiedSerializedProperties: 0 |
||||
m_ValidKeywords: [] |
||||
m_InvalidKeywords: [] |
||||
m_LightmapFlags: 4 |
||||
m_EnableInstancingVariants: 0 |
||||
m_DoubleSidedGI: 0 |
||||
m_CustomRenderQueue: -1 |
||||
stringTagMap: |
||||
RenderType: Opaque |
||||
disabledShaderPasses: |
||||
- MOTIONVECTORS |
||||
m_LockedProperties: |
||||
m_SavedProperties: |
||||
serializedVersion: 3 |
||||
m_TexEnvs: |
||||
- _BaseMap: |
||||
m_Texture: {fileID: 2800000, guid: 6f7bbf85dd3ba00498adbec88b1619dc, type: 3} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- _BumpMap: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- _DetailAlbedoMap: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- _DetailMask: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- _DetailNormalMap: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- _EmissionMap: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- _MainTex: |
||||
m_Texture: {fileID: 2800000, guid: 6f7bbf85dd3ba00498adbec88b1619dc, 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} |
||||
- _SpecGlossMap: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- unity_Lightmaps: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- unity_LightmapsInd: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- unity_ShadowMasks: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
m_Ints: [] |
||||
m_Floats: |
||||
- _AddPrecomputedVelocity: 0 |
||||
- _AlphaClip: 0 |
||||
- _AlphaToMask: 0 |
||||
- _Blend: 0 |
||||
- _BlendModePreserveSpecular: 1 |
||||
- _BumpScale: 1 |
||||
- _ClearCoatMask: 0 |
||||
- _ClearCoatSmoothness: 0 |
||||
- _Cull: 2 |
||||
- _Cutoff: 0.5 |
||||
- _DetailAlbedoMapScale: 1 |
||||
- _DetailNormalMapScale: 1 |
||||
- _DstBlend: 0 |
||||
- _DstBlendAlpha: 0 |
||||
- _EnvironmentReflections: 1 |
||||
- _GlossMapScale: 1 |
||||
- _Glossiness: 0.14142135 |
||||
- _GlossyReflections: 1 |
||||
- _Metallic: 0 |
||||
- _Mode: 0 |
||||
- _OcclusionStrength: 1 |
||||
- _Parallax: 0.02 |
||||
- _QueueOffset: 0 |
||||
- _ReceiveShadows: 1 |
||||
- _Smoothness: 0.14142135 |
||||
- _SmoothnessTextureChannel: 0 |
||||
- _SpecularHighlights: 1 |
||||
- _SrcBlend: 1 |
||||
- _SrcBlendAlpha: 1 |
||||
- _Surface: 0 |
||||
- _UVSec: 0 |
||||
- _WorkflowMode: 1 |
||||
- _ZWrite: 1 |
||||
m_Colors: |
||||
- _BaseColor: {r: 0.6431373, g: 0.6431373, b: 0.6431373, a: 1} |
||||
- _Color: {r: 0.6431373, g: 0.6431373, b: 0.6431373, a: 1} |
||||
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1} |
||||
- _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} |
||||
m_BuildTextureStacks: [] |
||||
m_AllowLocking: 1 |
||||
--- !u!114 &3910104402040726911 |
||||
MonoBehaviour: |
||||
m_ObjectHideFlags: 11 |
||||
m_CorrespondingSourceObject: {fileID: 0} |
||||
m_PrefabInstance: {fileID: 0} |
||||
m_PrefabAsset: {fileID: 0} |
||||
m_GameObject: {fileID: 0} |
||||
m_Enabled: 1 |
||||
m_EditorHideFlags: 0 |
||||
m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} |
||||
m_Name: |
||||
m_EditorClassIdentifier: |
||||
version: 9 |
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2 |
||||
guid: e3ef98408a95da5458a98777c30fc355 |
||||
NativeFormatImporter: |
||||
externalObjects: {} |
||||
mainObjectFileID: 2100000 |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
@ -0,0 +1,138 @@
|
||||
%YAML 1.1 |
||||
%TAG !u! tag:unity3d.com,2011: |
||||
--- !u!21 &2100000 |
||||
Material: |
||||
serializedVersion: 8 |
||||
m_ObjectHideFlags: 0 |
||||
m_CorrespondingSourceObject: {fileID: 0} |
||||
m_PrefabInstance: {fileID: 0} |
||||
m_PrefabAsset: {fileID: 0} |
||||
m_Name: HL_JiJianLingShiKuai_AN_FX |
||||
m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} |
||||
m_Parent: {fileID: 0} |
||||
m_ModifiedSerializedProperties: 0 |
||||
m_ValidKeywords: [] |
||||
m_InvalidKeywords: [] |
||||
m_LightmapFlags: 4 |
||||
m_EnableInstancingVariants: 0 |
||||
m_DoubleSidedGI: 0 |
||||
m_CustomRenderQueue: -1 |
||||
stringTagMap: |
||||
RenderType: Opaque |
||||
disabledShaderPasses: |
||||
- MOTIONVECTORS |
||||
m_LockedProperties: |
||||
m_SavedProperties: |
||||
serializedVersion: 3 |
||||
m_TexEnvs: |
||||
- _BaseMap: |
||||
m_Texture: {fileID: 2800000, guid: 01c91a56c8b2a1d49994bd54ab20a55d, type: 3} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- _BumpMap: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- _DetailAlbedoMap: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- _DetailMask: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- _DetailNormalMap: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- _EmissionMap: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- _MainTex: |
||||
m_Texture: {fileID: 2800000, guid: 01c91a56c8b2a1d49994bd54ab20a55d, 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} |
||||
- _SpecGlossMap: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- unity_Lightmaps: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- unity_LightmapsInd: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- unity_ShadowMasks: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
m_Ints: [] |
||||
m_Floats: |
||||
- _AddPrecomputedVelocity: 0 |
||||
- _AlphaClip: 0 |
||||
- _AlphaToMask: 0 |
||||
- _Blend: 0 |
||||
- _BlendModePreserveSpecular: 1 |
||||
- _BumpScale: 1 |
||||
- _ClearCoatMask: 0 |
||||
- _ClearCoatSmoothness: 0 |
||||
- _Cull: 2 |
||||
- _Cutoff: 0.5 |
||||
- _DetailAlbedoMapScale: 1 |
||||
- _DetailNormalMapScale: 1 |
||||
- _DstBlend: 0 |
||||
- _DstBlendAlpha: 0 |
||||
- _EnvironmentReflections: 1 |
||||
- _GlossMapScale: 1 |
||||
- _Glossiness: 0.14142135 |
||||
- _GlossyReflections: 1 |
||||
- _Metallic: 0 |
||||
- _Mode: 0 |
||||
- _OcclusionStrength: 1 |
||||
- _Parallax: 0.02 |
||||
- _QueueOffset: 0 |
||||
- _ReceiveShadows: 1 |
||||
- _Smoothness: 0.14142135 |
||||
- _SmoothnessTextureChannel: 0 |
||||
- _SpecularHighlights: 1 |
||||
- _SrcBlend: 1 |
||||
- _SrcBlendAlpha: 1 |
||||
- _Surface: 0 |
||||
- _UVSec: 0 |
||||
- _WorkflowMode: 1 |
||||
- _ZWrite: 1 |
||||
m_Colors: |
||||
- _BaseColor: {r: 0.6431373, g: 0.6431373, b: 0.6431373, a: 1} |
||||
- _Color: {r: 0.6431373, g: 0.6431373, b: 0.6431373, a: 1} |
||||
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1} |
||||
- _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} |
||||
m_BuildTextureStacks: [] |
||||
m_AllowLocking: 1 |
||||
--- !u!114 &1748970830383472061 |
||||
MonoBehaviour: |
||||
m_ObjectHideFlags: 11 |
||||
m_CorrespondingSourceObject: {fileID: 0} |
||||
m_PrefabInstance: {fileID: 0} |
||||
m_PrefabAsset: {fileID: 0} |
||||
m_GameObject: {fileID: 0} |
||||
m_Enabled: 1 |
||||
m_EditorHideFlags: 0 |
||||
m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} |
||||
m_Name: |
||||
m_EditorClassIdentifier: |
||||
version: 9 |
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2 |
||||
guid: 40586e03882ffe04480bf84b09215fb7 |
||||
NativeFormatImporter: |
||||
externalObjects: {} |
||||
mainObjectFileID: 2100000 |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
@ -0,0 +1,138 @@
|
||||
%YAML 1.1 |
||||
%TAG !u! tag:unity3d.com,2011: |
||||
--- !u!114 &-2763326458962133618 |
||||
MonoBehaviour: |
||||
m_ObjectHideFlags: 11 |
||||
m_CorrespondingSourceObject: {fileID: 0} |
||||
m_PrefabInstance: {fileID: 0} |
||||
m_PrefabAsset: {fileID: 0} |
||||
m_GameObject: {fileID: 0} |
||||
m_Enabled: 1 |
||||
m_EditorHideFlags: 0 |
||||
m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} |
||||
m_Name: |
||||
m_EditorClassIdentifier: |
||||
version: 9 |
||||
--- !u!21 &2100000 |
||||
Material: |
||||
serializedVersion: 8 |
||||
m_ObjectHideFlags: 0 |
||||
m_CorrespondingSourceObject: {fileID: 0} |
||||
m_PrefabInstance: {fileID: 0} |
||||
m_PrefabAsset: {fileID: 0} |
||||
m_Name: YL_LvBan_1 |
||||
m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} |
||||
m_Parent: {fileID: 0} |
||||
m_ModifiedSerializedProperties: 0 |
||||
m_ValidKeywords: [] |
||||
m_InvalidKeywords: [] |
||||
m_LightmapFlags: 4 |
||||
m_EnableInstancingVariants: 0 |
||||
m_DoubleSidedGI: 0 |
||||
m_CustomRenderQueue: -1 |
||||
stringTagMap: |
||||
RenderType: Opaque |
||||
disabledShaderPasses: |
||||
- MOTIONVECTORS |
||||
m_LockedProperties: |
||||
m_SavedProperties: |
||||
serializedVersion: 3 |
||||
m_TexEnvs: |
||||
- _BaseMap: |
||||
m_Texture: {fileID: 2800000, guid: 8a9229382b36ffa48bbe97757757c908, type: 3} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- _BumpMap: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- _DetailAlbedoMap: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- _DetailMask: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- _DetailNormalMap: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- _EmissionMap: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- _MainTex: |
||||
m_Texture: {fileID: 2800000, guid: 8a9229382b36ffa48bbe97757757c908, 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} |
||||
- _SpecGlossMap: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- unity_Lightmaps: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- unity_LightmapsInd: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- unity_ShadowMasks: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
m_Ints: [] |
||||
m_Floats: |
||||
- _AddPrecomputedVelocity: 0 |
||||
- _AlphaClip: 0 |
||||
- _AlphaToMask: 0 |
||||
- _Blend: 0 |
||||
- _BlendModePreserveSpecular: 1 |
||||
- _BumpScale: 1 |
||||
- _ClearCoatMask: 0 |
||||
- _ClearCoatSmoothness: 0 |
||||
- _Cull: 2 |
||||
- _Cutoff: 0.5 |
||||
- _DetailAlbedoMapScale: 1 |
||||
- _DetailNormalMapScale: 1 |
||||
- _DstBlend: 0 |
||||
- _DstBlendAlpha: 0 |
||||
- _EnvironmentReflections: 1 |
||||
- _GlossMapScale: 1 |
||||
- _Glossiness: 0.14142135 |
||||
- _GlossyReflections: 1 |
||||
- _Metallic: 0 |
||||
- _Mode: 0 |
||||
- _OcclusionStrength: 1 |
||||
- _Parallax: 0.02 |
||||
- _QueueOffset: 0 |
||||
- _ReceiveShadows: 1 |
||||
- _Smoothness: 0.14142135 |
||||
- _SmoothnessTextureChannel: 0 |
||||
- _SpecularHighlights: 1 |
||||
- _SrcBlend: 1 |
||||
- _SrcBlendAlpha: 1 |
||||
- _Surface: 0 |
||||
- _UVSec: 0 |
||||
- _WorkflowMode: 1 |
||||
- _ZWrite: 1 |
||||
m_Colors: |
||||
- _BaseColor: {r: 0.6431373, g: 0.6431373, b: 0.6431373, a: 1} |
||||
- _Color: {r: 0.6431373, g: 0.6431373, b: 0.6431373, a: 1} |
||||
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1} |
||||
- _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} |
||||
m_BuildTextureStacks: [] |
||||
m_AllowLocking: 1 |
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2 |
||||
guid: b0f6e13639a77d24a93741be2da5aefb |
||||
NativeFormatImporter: |
||||
externalObjects: {} |
||||
mainObjectFileID: 2100000 |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
@ -0,0 +1,138 @@
|
||||
%YAML 1.1 |
||||
%TAG !u! tag:unity3d.com,2011: |
||||
--- !u!21 &2100000 |
||||
Material: |
||||
serializedVersion: 8 |
||||
m_ObjectHideFlags: 0 |
||||
m_CorrespondingSourceObject: {fileID: 0} |
||||
m_PrefabInstance: {fileID: 0} |
||||
m_PrefabAsset: {fileID: 0} |
||||
m_Name: YL_malu_1 |
||||
m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} |
||||
m_Parent: {fileID: 0} |
||||
m_ModifiedSerializedProperties: 0 |
||||
m_ValidKeywords: [] |
||||
m_InvalidKeywords: [] |
||||
m_LightmapFlags: 4 |
||||
m_EnableInstancingVariants: 0 |
||||
m_DoubleSidedGI: 0 |
||||
m_CustomRenderQueue: -1 |
||||
stringTagMap: |
||||
RenderType: Opaque |
||||
disabledShaderPasses: |
||||
- MOTIONVECTORS |
||||
m_LockedProperties: |
||||
m_SavedProperties: |
||||
serializedVersion: 3 |
||||
m_TexEnvs: |
||||
- _BaseMap: |
||||
m_Texture: {fileID: 2800000, guid: 5c2c14d1e8213604facc93ff80da54a6, type: 3} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- _BumpMap: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- _DetailAlbedoMap: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- _DetailMask: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- _DetailNormalMap: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- _EmissionMap: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- _MainTex: |
||||
m_Texture: {fileID: 2800000, guid: 5c2c14d1e8213604facc93ff80da54a6, 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} |
||||
- _SpecGlossMap: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- unity_Lightmaps: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- unity_LightmapsInd: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
- unity_ShadowMasks: |
||||
m_Texture: {fileID: 0} |
||||
m_Scale: {x: 1, y: 1} |
||||
m_Offset: {x: 0, y: 0} |
||||
m_Ints: [] |
||||
m_Floats: |
||||
- _AddPrecomputedVelocity: 0 |
||||
- _AlphaClip: 0 |
||||
- _AlphaToMask: 0 |
||||
- _Blend: 0 |
||||
- _BlendModePreserveSpecular: 1 |
||||
- _BumpScale: 1 |
||||
- _ClearCoatMask: 0 |
||||
- _ClearCoatSmoothness: 0 |
||||
- _Cull: 2 |
||||
- _Cutoff: 0.5 |
||||
- _DetailAlbedoMapScale: 1 |
||||
- _DetailNormalMapScale: 1 |
||||
- _DstBlend: 0 |
||||
- _DstBlendAlpha: 0 |
||||
- _EnvironmentReflections: 1 |
||||
- _GlossMapScale: 1 |
||||
- _Glossiness: 0.14142135 |
||||
- _GlossyReflections: 1 |
||||
- _Metallic: 0 |
||||
- _Mode: 0 |
||||
- _OcclusionStrength: 1 |
||||
- _Parallax: 0.02 |
||||
- _QueueOffset: 0 |
||||
- _ReceiveShadows: 1 |
||||
- _Smoothness: 0.14142135 |
||||
- _SmoothnessTextureChannel: 0 |
||||
- _SpecularHighlights: 1 |
||||
- _SrcBlend: 1 |
||||
- _SrcBlendAlpha: 1 |
||||
- _Surface: 0 |
||||
- _UVSec: 0 |
||||
- _WorkflowMode: 1 |
||||
- _ZWrite: 1 |
||||
m_Colors: |
||||
- _BaseColor: {r: 0.6431373, g: 0.6431373, b: 0.6431373, a: 1} |
||||
- _Color: {r: 0.6431373, g: 0.6431373, b: 0.6431373, a: 1} |
||||
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1} |
||||
- _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} |
||||
m_BuildTextureStacks: [] |
||||
m_AllowLocking: 1 |
||||
--- !u!114 &5624479483331183606 |
||||
MonoBehaviour: |
||||
m_ObjectHideFlags: 11 |
||||
m_CorrespondingSourceObject: {fileID: 0} |
||||
m_PrefabInstance: {fileID: 0} |
||||
m_PrefabAsset: {fileID: 0} |
||||
m_GameObject: {fileID: 0} |
||||
m_Enabled: 1 |
||||
m_EditorHideFlags: 0 |
||||
m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} |
||||
m_Name: |
||||
m_EditorClassIdentifier: |
||||
version: 9 |
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2 |
||||
guid: 0c47351e35ebc8a4e8609b6c4bbfa6c0 |
||||
NativeFormatImporter: |
||||
externalObjects: {} |
||||
mainObjectFileID: 2100000 |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2 |
||||
guid: 64384e91596145646b51d5fa8336576e |
||||
folderAsset: yes |
||||
DefaultImporter: |
||||
externalObjects: {} |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
Before Width: | Height: | Size: 28 MiB After Width: | Height: | Size: 28 MiB |
@ -0,0 +1,143 @@
|
||||
fileFormatVersion: 2 |
||||
guid: 026a672ceb04a454bbb2b4a3408dee05 |
||||
TextureImporter: |
||||
internalIDToNameTable: [] |
||||
externalObjects: {} |
||||
serializedVersion: 13 |
||||
mipmaps: |
||||
mipMapMode: 0 |
||||
enableMipMap: 1 |
||||
sRGBTexture: 1 |
||||
linearTexture: 0 |
||||
fadeOut: 0 |
||||
borderMipMap: 0 |
||||
mipMapsPreserveCoverage: 0 |
||||
alphaTestReferenceValue: 0.5 |
||||
mipMapFadeDistanceStart: 1 |
||||
mipMapFadeDistanceEnd: 3 |
||||
bumpmap: |
||||
convertToNormalMap: 0 |
||||
externalNormalMap: 0 |
||||
heightScale: 0.25 |
||||
normalMapFilter: 0 |
||||
flipGreenChannel: 0 |
||||
isReadable: 0 |
||||
streamingMipmaps: 0 |
||||
streamingMipmapsPriority: 0 |
||||
vTOnly: 0 |
||||
ignoreMipmapLimit: 0 |
||||
grayScaleToAlpha: 0 |
||||
generateCubemap: 6 |
||||
cubemapConvolution: 0 |
||||
seamlessCubemap: 0 |
||||
textureFormat: 1 |
||||
maxTextureSize: 2048 |
||||
textureSettings: |
||||
serializedVersion: 2 |
||||
filterMode: 1 |
||||
aniso: 1 |
||||
mipBias: 0 |
||||
wrapU: 0 |
||||
wrapV: 0 |
||||
wrapW: 0 |
||||
nPOTScale: 1 |
||||
lightmap: 0 |
||||
compressionQuality: 50 |
||||
spriteMode: 0 |
||||
spriteExtrude: 1 |
||||
spriteMeshType: 1 |
||||
alignment: 0 |
||||
spritePivot: {x: 0.5, y: 0.5} |
||||
spritePixelsToUnits: 100 |
||||
spriteBorder: {x: 0, y: 0, z: 0, w: 0} |
||||
spriteGenerateFallbackPhysicsShape: 1 |
||||
alphaUsage: 1 |
||||
alphaIsTransparency: 0 |
||||
spriteTessellationDetail: -1 |
||||
textureType: 0 |
||||
textureShape: 1 |
||||
singleChannelComponent: 0 |
||||
flipbookRows: 1 |
||||
flipbookColumns: 1 |
||||
maxTextureSizeSet: 0 |
||||
compressionQualitySet: 0 |
||||
textureFormatSet: 0 |
||||
ignorePngGamma: 0 |
||||
applyGammaDecoding: 0 |
||||
swizzle: 50462976 |
||||
cookieLightType: 0 |
||||
platformSettings: |
||||
- serializedVersion: 4 |
||||
buildTarget: DefaultTexturePlatform |
||||
maxTextureSize: 2048 |
||||
resizeAlgorithm: 0 |
||||
textureFormat: -1 |
||||
textureCompression: 1 |
||||
compressionQuality: 50 |
||||
crunchedCompression: 0 |
||||
allowsAlphaSplitting: 0 |
||||
overridden: 0 |
||||
ignorePlatformSupport: 0 |
||||
androidETC2FallbackOverride: 0 |
||||
forceMaximumCompressionQuality_BC6H_BC7: 0 |
||||
- serializedVersion: 4 |
||||
buildTarget: Win64 |
||||
maxTextureSize: 2048 |
||||
resizeAlgorithm: 0 |
||||
textureFormat: -1 |
||||
textureCompression: 1 |
||||
compressionQuality: 50 |
||||
crunchedCompression: 0 |
||||
allowsAlphaSplitting: 0 |
||||
overridden: 0 |
||||
ignorePlatformSupport: 0 |
||||
androidETC2FallbackOverride: 0 |
||||
forceMaximumCompressionQuality_BC6H_BC7: 0 |
||||
- serializedVersion: 4 |
||||
buildTarget: Standalone |
||||
maxTextureSize: 2048 |
||||
resizeAlgorithm: 0 |
||||
textureFormat: -1 |
||||
textureCompression: 1 |
||||
compressionQuality: 50 |
||||
crunchedCompression: 0 |
||||
allowsAlphaSplitting: 0 |
||||
overridden: 0 |
||||
ignorePlatformSupport: 0 |
||||
androidETC2FallbackOverride: 0 |
||||
forceMaximumCompressionQuality_BC6H_BC7: 0 |
||||
- serializedVersion: 4 |
||||
buildTarget: WebGL |
||||
maxTextureSize: 2048 |
||||
resizeAlgorithm: 0 |
||||
textureFormat: -1 |
||||
textureCompression: 1 |
||||
compressionQuality: 50 |
||||
crunchedCompression: 0 |
||||
allowsAlphaSplitting: 0 |
||||
overridden: 0 |
||||
ignorePlatformSupport: 0 |
||||
androidETC2FallbackOverride: 0 |
||||
forceMaximumCompressionQuality_BC6H_BC7: 0 |
||||
spriteSheet: |
||||
serializedVersion: 2 |
||||
sprites: [] |
||||
outline: [] |
||||
customData: |
||||
physicsShape: [] |
||||
bones: [] |
||||
spriteID: |
||||
internalID: 0 |
||||
vertices: [] |
||||
indices: |
||||
edges: [] |
||||
weights: [] |
||||
secondaryTextures: [] |
||||
spriteCustomMetadata: |
||||
entries: [] |
||||
nameFileIdTable: {} |
||||
mipmapLimitGroupName: |
||||
pSDRemoveMatte: 0 |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
Before Width: | Height: | Size: 28 MiB After Width: | Height: | Size: 28 MiB |
@ -0,0 +1,143 @@
|
||||
fileFormatVersion: 2 |
||||
guid: bcc3a2e3274b7354eb3f55f2e889415b |
||||
TextureImporter: |
||||
internalIDToNameTable: [] |
||||
externalObjects: {} |
||||
serializedVersion: 13 |
||||
mipmaps: |
||||
mipMapMode: 0 |
||||
enableMipMap: 1 |
||||
sRGBTexture: 1 |
||||
linearTexture: 0 |
||||
fadeOut: 0 |
||||
borderMipMap: 0 |
||||
mipMapsPreserveCoverage: 0 |
||||
alphaTestReferenceValue: 0.5 |
||||
mipMapFadeDistanceStart: 1 |
||||
mipMapFadeDistanceEnd: 3 |
||||
bumpmap: |
||||
convertToNormalMap: 0 |
||||
externalNormalMap: 0 |
||||
heightScale: 0.25 |
||||
normalMapFilter: 0 |
||||
flipGreenChannel: 0 |
||||
isReadable: 0 |
||||
streamingMipmaps: 0 |
||||
streamingMipmapsPriority: 0 |
||||
vTOnly: 0 |
||||
ignoreMipmapLimit: 0 |
||||
grayScaleToAlpha: 0 |
||||
generateCubemap: 6 |
||||
cubemapConvolution: 0 |
||||
seamlessCubemap: 0 |
||||
textureFormat: 1 |
||||
maxTextureSize: 2048 |
||||
textureSettings: |
||||
serializedVersion: 2 |
||||
filterMode: 1 |
||||
aniso: 1 |
||||
mipBias: 0 |
||||
wrapU: 0 |
||||
wrapV: 0 |
||||
wrapW: 0 |
||||
nPOTScale: 1 |
||||
lightmap: 0 |
||||
compressionQuality: 50 |
||||
spriteMode: 0 |
||||
spriteExtrude: 1 |
||||
spriteMeshType: 1 |
||||
alignment: 0 |
||||
spritePivot: {x: 0.5, y: 0.5} |
||||
spritePixelsToUnits: 100 |
||||
spriteBorder: {x: 0, y: 0, z: 0, w: 0} |
||||
spriteGenerateFallbackPhysicsShape: 1 |
||||
alphaUsage: 1 |
||||
alphaIsTransparency: 0 |
||||
spriteTessellationDetail: -1 |
||||
textureType: 0 |
||||
textureShape: 1 |
||||
singleChannelComponent: 0 |
||||
flipbookRows: 1 |
||||
flipbookColumns: 1 |
||||
maxTextureSizeSet: 0 |
||||
compressionQualitySet: 0 |
||||
textureFormatSet: 0 |
||||
ignorePngGamma: 0 |
||||
applyGammaDecoding: 0 |
||||
swizzle: 50462976 |
||||
cookieLightType: 0 |
||||
platformSettings: |
||||
- serializedVersion: 4 |
||||
buildTarget: DefaultTexturePlatform |
||||
maxTextureSize: 2048 |
||||
resizeAlgorithm: 0 |
||||
textureFormat: -1 |
||||
textureCompression: 1 |
||||
compressionQuality: 50 |
||||
crunchedCompression: 0 |
||||
allowsAlphaSplitting: 0 |
||||
overridden: 0 |
||||
ignorePlatformSupport: 0 |
||||
androidETC2FallbackOverride: 0 |
||||
forceMaximumCompressionQuality_BC6H_BC7: 0 |
||||
- serializedVersion: 4 |
||||
buildTarget: Win64 |
||||
maxTextureSize: 2048 |
||||
resizeAlgorithm: 0 |
||||
textureFormat: -1 |
||||
textureCompression: 1 |
||||
compressionQuality: 50 |
||||
crunchedCompression: 0 |
||||
allowsAlphaSplitting: 0 |
||||
overridden: 0 |
||||
ignorePlatformSupport: 0 |
||||
androidETC2FallbackOverride: 0 |
||||
forceMaximumCompressionQuality_BC6H_BC7: 0 |
||||
- serializedVersion: 4 |
||||
buildTarget: Standalone |
||||
maxTextureSize: 2048 |
||||
resizeAlgorithm: 0 |
||||
textureFormat: -1 |
||||
textureCompression: 1 |
||||
compressionQuality: 50 |
||||
crunchedCompression: 0 |
||||
allowsAlphaSplitting: 0 |
||||
overridden: 0 |
||||
ignorePlatformSupport: 0 |
||||
androidETC2FallbackOverride: 0 |
||||
forceMaximumCompressionQuality_BC6H_BC7: 0 |
||||
- serializedVersion: 4 |
||||
buildTarget: WebGL |
||||
maxTextureSize: 2048 |
||||
resizeAlgorithm: 0 |
||||
textureFormat: -1 |
||||
textureCompression: 1 |
||||
compressionQuality: 50 |
||||
crunchedCompression: 0 |
||||
allowsAlphaSplitting: 0 |
||||
overridden: 0 |
||||
ignorePlatformSupport: 0 |
||||
androidETC2FallbackOverride: 0 |
||||
forceMaximumCompressionQuality_BC6H_BC7: 0 |
||||
spriteSheet: |
||||
serializedVersion: 2 |
||||
sprites: [] |
||||
outline: [] |
||||
customData: |
||||
physicsShape: [] |
||||
bones: [] |
||||
spriteID: |
||||
internalID: 0 |
||||
vertices: [] |
||||
indices: |
||||
edges: [] |
||||
weights: [] |
||||
secondaryTextures: [] |
||||
spriteCustomMetadata: |
||||
entries: [] |
||||
nameFileIdTable: {} |
||||
mipmapLimitGroupName: |
||||
pSDRemoveMatte: 0 |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
Before Width: | Height: | Size: 151 KiB After Width: | Height: | Size: 151 KiB |
@ -0,0 +1,143 @@
|
||||
fileFormatVersion: 2 |
||||
guid: df48bb55a43b76149a89d21f0654dde8 |
||||
TextureImporter: |
||||
internalIDToNameTable: [] |
||||
externalObjects: {} |
||||
serializedVersion: 13 |
||||
mipmaps: |
||||
mipMapMode: 0 |
||||
enableMipMap: 1 |
||||
sRGBTexture: 1 |
||||
linearTexture: 0 |
||||
fadeOut: 0 |
||||
borderMipMap: 0 |
||||
mipMapsPreserveCoverage: 0 |
||||
alphaTestReferenceValue: 0.5 |
||||
mipMapFadeDistanceStart: 1 |
||||
mipMapFadeDistanceEnd: 3 |
||||
bumpmap: |
||||
convertToNormalMap: 0 |
||||
externalNormalMap: 0 |
||||
heightScale: 0.25 |
||||
normalMapFilter: 0 |
||||
flipGreenChannel: 0 |
||||
isReadable: 0 |
||||
streamingMipmaps: 0 |
||||
streamingMipmapsPriority: 0 |
||||
vTOnly: 0 |
||||
ignoreMipmapLimit: 0 |
||||
grayScaleToAlpha: 0 |
||||
generateCubemap: 6 |
||||
cubemapConvolution: 0 |
||||
seamlessCubemap: 0 |
||||
textureFormat: 1 |
||||
maxTextureSize: 2048 |
||||
textureSettings: |
||||
serializedVersion: 2 |
||||
filterMode: 1 |
||||
aniso: 1 |
||||
mipBias: 0 |
||||
wrapU: 0 |
||||
wrapV: 0 |
||||
wrapW: 0 |
||||
nPOTScale: 1 |
||||
lightmap: 0 |
||||
compressionQuality: 50 |
||||
spriteMode: 0 |
||||
spriteExtrude: 1 |
||||
spriteMeshType: 1 |
||||
alignment: 0 |
||||
spritePivot: {x: 0.5, y: 0.5} |
||||
spritePixelsToUnits: 100 |
||||
spriteBorder: {x: 0, y: 0, z: 0, w: 0} |
||||
spriteGenerateFallbackPhysicsShape: 1 |
||||
alphaUsage: 1 |
||||
alphaIsTransparency: 0 |
||||
spriteTessellationDetail: -1 |
||||
textureType: 0 |
||||
textureShape: 1 |
||||
singleChannelComponent: 0 |
||||
flipbookRows: 1 |
||||
flipbookColumns: 1 |
||||
maxTextureSizeSet: 0 |
||||
compressionQualitySet: 0 |
||||
textureFormatSet: 0 |
||||
ignorePngGamma: 0 |
||||
applyGammaDecoding: 0 |
||||
swizzle: 50462976 |
||||
cookieLightType: 0 |
||||
platformSettings: |
||||
- serializedVersion: 4 |
||||
buildTarget: DefaultTexturePlatform |
||||
maxTextureSize: 2048 |
||||
resizeAlgorithm: 0 |
||||
textureFormat: -1 |
||||
textureCompression: 1 |
||||
compressionQuality: 50 |
||||
crunchedCompression: 0 |
||||
allowsAlphaSplitting: 0 |
||||
overridden: 0 |
||||
ignorePlatformSupport: 0 |
||||
androidETC2FallbackOverride: 0 |
||||
forceMaximumCompressionQuality_BC6H_BC7: 0 |
||||
- serializedVersion: 4 |
||||
buildTarget: Win64 |
||||
maxTextureSize: 2048 |
||||
resizeAlgorithm: 0 |
||||
textureFormat: -1 |
||||
textureCompression: 1 |
||||
compressionQuality: 50 |
||||
crunchedCompression: 0 |
||||
allowsAlphaSplitting: 0 |
||||
overridden: 0 |
||||
ignorePlatformSupport: 0 |
||||
androidETC2FallbackOverride: 0 |
||||
forceMaximumCompressionQuality_BC6H_BC7: 0 |
||||
- serializedVersion: 4 |
||||
buildTarget: Standalone |
||||
maxTextureSize: 2048 |
||||
resizeAlgorithm: 0 |
||||
textureFormat: -1 |
||||
textureCompression: 1 |
||||
compressionQuality: 50 |
||||
crunchedCompression: 0 |
||||
allowsAlphaSplitting: 0 |
||||
overridden: 0 |
||||
ignorePlatformSupport: 0 |
||||
androidETC2FallbackOverride: 0 |
||||
forceMaximumCompressionQuality_BC6H_BC7: 0 |
||||
- serializedVersion: 4 |
||||
buildTarget: WebGL |
||||
maxTextureSize: 2048 |
||||
resizeAlgorithm: 0 |
||||
textureFormat: -1 |
||||
textureCompression: 1 |
||||
compressionQuality: 50 |
||||
crunchedCompression: 0 |
||||
allowsAlphaSplitting: 0 |
||||
overridden: 0 |
||||
ignorePlatformSupport: 0 |
||||
androidETC2FallbackOverride: 0 |
||||
forceMaximumCompressionQuality_BC6H_BC7: 0 |
||||
spriteSheet: |
||||
serializedVersion: 2 |
||||
sprites: [] |
||||
outline: [] |
||||
customData: |
||||
physicsShape: [] |
||||
bones: [] |
||||
spriteID: |
||||
internalID: 0 |
||||
vertices: [] |
||||
indices: |
||||
edges: [] |
||||
weights: [] |
||||
secondaryTextures: [] |
||||
spriteCustomMetadata: |
||||
entries: [] |
||||
nameFileIdTable: {} |
||||
mipmapLimitGroupName: |
||||
pSDRemoveMatte: 0 |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
Before Width: | Height: | Size: 151 KiB After Width: | Height: | Size: 151 KiB |