diff --git a/Assets/ScenesPX/BuildingScene.unity b/Assets/ScenesPX/BuildingScene.unity
index bc77173..c920004 100644
--- a/Assets/ScenesPX/BuildingScene.unity
+++ b/Assets/ScenesPX/BuildingScene.unity
@@ -118,7 +118,7 @@ NavMeshSettings:
debug:
m_Flags: 0
m_NavMeshData: {fileID: 0}
---- !u!1001 &4993523542716099883
+--- !u!1001 &1959127548242384077
PrefabInstance:
m_ObjectHideFlags: 0
serializedVersion: 2
@@ -126,50 +126,50 @@ PrefabInstance:
serializedVersion: 3
m_TransformParent: {fileID: 0}
m_Modifications:
- - target: {fileID: 309976732623497829, guid: 7564b15670613b948810ad11fa632231, type: 3}
+ - target: {fileID: 249569262373266707, guid: 7564b15670613b948810ad11fa632231, type: 3}
+ propertyPath: m_Name
+ value: MainBuilding
+ objectReference: {fileID: 0}
+ - target: {fileID: 7275199989174734519, guid: 7564b15670613b948810ad11fa632231, type: 3}
propertyPath: m_LocalPosition.x
value: 0
objectReference: {fileID: 0}
- - target: {fileID: 309976732623497829, guid: 7564b15670613b948810ad11fa632231, type: 3}
+ - target: {fileID: 7275199989174734519, guid: 7564b15670613b948810ad11fa632231, type: 3}
propertyPath: m_LocalPosition.y
value: 0
objectReference: {fileID: 0}
- - target: {fileID: 309976732623497829, guid: 7564b15670613b948810ad11fa632231, type: 3}
+ - target: {fileID: 7275199989174734519, guid: 7564b15670613b948810ad11fa632231, type: 3}
propertyPath: m_LocalPosition.z
value: 0
objectReference: {fileID: 0}
- - target: {fileID: 309976732623497829, guid: 7564b15670613b948810ad11fa632231, type: 3}
+ - target: {fileID: 7275199989174734519, guid: 7564b15670613b948810ad11fa632231, type: 3}
propertyPath: m_LocalRotation.w
value: 1
objectReference: {fileID: 0}
- - target: {fileID: 309976732623497829, guid: 7564b15670613b948810ad11fa632231, type: 3}
+ - target: {fileID: 7275199989174734519, guid: 7564b15670613b948810ad11fa632231, type: 3}
propertyPath: m_LocalRotation.x
value: 0
objectReference: {fileID: 0}
- - target: {fileID: 309976732623497829, guid: 7564b15670613b948810ad11fa632231, type: 3}
+ - target: {fileID: 7275199989174734519, guid: 7564b15670613b948810ad11fa632231, type: 3}
propertyPath: m_LocalRotation.y
value: 0
objectReference: {fileID: 0}
- - target: {fileID: 309976732623497829, guid: 7564b15670613b948810ad11fa632231, type: 3}
+ - target: {fileID: 7275199989174734519, guid: 7564b15670613b948810ad11fa632231, type: 3}
propertyPath: m_LocalRotation.z
value: 0
objectReference: {fileID: 0}
- - target: {fileID: 309976732623497829, guid: 7564b15670613b948810ad11fa632231, type: 3}
+ - target: {fileID: 7275199989174734519, guid: 7564b15670613b948810ad11fa632231, type: 3}
propertyPath: m_LocalEulerAnglesHint.x
value: 0
objectReference: {fileID: 0}
- - target: {fileID: 309976732623497829, guid: 7564b15670613b948810ad11fa632231, type: 3}
+ - target: {fileID: 7275199989174734519, guid: 7564b15670613b948810ad11fa632231, type: 3}
propertyPath: m_LocalEulerAnglesHint.y
value: 0
objectReference: {fileID: 0}
- - target: {fileID: 309976732623497829, guid: 7564b15670613b948810ad11fa632231, type: 3}
+ - target: {fileID: 7275199989174734519, guid: 7564b15670613b948810ad11fa632231, type: 3}
propertyPath: m_LocalEulerAnglesHint.z
value: 0
objectReference: {fileID: 0}
- - target: {fileID: 5938912343950445698, guid: 7564b15670613b948810ad11fa632231, type: 3}
- propertyPath: m_Name
- value: MainBuilding
- objectReference: {fileID: 0}
m_RemovedComponents: []
m_RemovedGameObjects: []
m_AddedGameObjects: []
@@ -179,4 +179,4 @@ PrefabInstance:
SceneRoots:
m_ObjectHideFlags: 0
m_Roots:
- - {fileID: 4993523542716099883}
+ - {fileID: 1959127548242384077}
diff --git a/Assets/Scripts.meta b/Assets/Scripts.meta
new file mode 100644
index 0000000..093abf8
--- /dev/null
+++ b/Assets/Scripts.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: acca00e1dbe19a849a405f9fb486c34f
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/Scripts/BaseGameObjInfo.cs b/Assets/Scripts/BaseGameObjInfo.cs
new file mode 100644
index 0000000..3149a5e
--- /dev/null
+++ b/Assets/Scripts/BaseGameObjInfo.cs
@@ -0,0 +1,29 @@
+using System.Collections;
+using System.Collections.Generic;
+using UnityEngine;
+
+///
+/// 游戏对象信息基类
+///
+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 () {
+
+ }
+}
diff --git a/Assets/Scripts/BaseGameObjInfo.cs.meta b/Assets/Scripts/BaseGameObjInfo.cs.meta
new file mode 100644
index 0000000..be9377b
--- /dev/null
+++ b/Assets/Scripts/BaseGameObjInfo.cs.meta
@@ -0,0 +1,2 @@
+fileFormatVersion: 2
+guid: a4c084de76af8c349ae1f222d8716b1b
\ No newline at end of file
diff --git a/Assets/Scripts/CameraViewDataForFunArea.cs b/Assets/Scripts/CameraViewDataForFunArea.cs
new file mode 100644
index 0000000..83dda20
--- /dev/null
+++ b/Assets/Scripts/CameraViewDataForFunArea.cs
@@ -0,0 +1,11 @@
+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;
+}
diff --git a/Assets/Scripts/CameraViewDataForFunArea.cs.meta b/Assets/Scripts/CameraViewDataForFunArea.cs.meta
new file mode 100644
index 0000000..f60e94b
--- /dev/null
+++ b/Assets/Scripts/CameraViewDataForFunArea.cs.meta
@@ -0,0 +1,2 @@
+fileFormatVersion: 2
+guid: 78722e55a6f8aa54db9f860ce5caf529
\ No newline at end of file
diff --git a/Assets/Scripts/CloneGameObjInfo.cs b/Assets/Scripts/CloneGameObjInfo.cs
new file mode 100644
index 0000000..ef20271
--- /dev/null
+++ b/Assets/Scripts/CloneGameObjInfo.cs
@@ -0,0 +1,24 @@
+
+///
+/// 克隆游戏对象信息基类
+///
+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表示隐藏
+}
+
diff --git a/Assets/Scripts/CloneGameObjInfo.cs.meta b/Assets/Scripts/CloneGameObjInfo.cs.meta
new file mode 100644
index 0000000..ffe56dc
--- /dev/null
+++ b/Assets/Scripts/CloneGameObjInfo.cs.meta
@@ -0,0 +1,2 @@
+fileFormatVersion: 2
+guid: 77fb9be10c0901f46a68b3ee09e7972b
\ No newline at end of file
diff --git a/Assets/Scripts/CloneObjType.cs b/Assets/Scripts/CloneObjType.cs
new file mode 100644
index 0000000..5cedc16
--- /dev/null
+++ b/Assets/Scripts/CloneObjType.cs
@@ -0,0 +1,307 @@
+using System.Collections;
+using System.Collections.Generic;
+using UnityEngine;
+
+///
+/// 克隆类型(枚举)
+///
+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
+}
+
+///
+/// 根据克隆类型获取其对应的中文名称。
+/// Tips:添加克隆类型时,注意同步添加到CloneTypeDic字典中
+///
+public class CloneObjTypeName
+{
+ private CloneObjTypeName() { }
+ private static CloneObjTypeName instance;
+ private static Dictionary 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();
+
+ 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, "医生");
+
+ }
+}
diff --git a/Assets/Scripts/CloneObjType.cs.meta b/Assets/Scripts/CloneObjType.cs.meta
new file mode 100644
index 0000000..3f16d3b
--- /dev/null
+++ b/Assets/Scripts/CloneObjType.cs.meta
@@ -0,0 +1,2 @@
+fileFormatVersion: 2
+guid: b9e79d9d52924c24abfeef77eb7fdca6
\ No newline at end of file
diff --git a/Assets/Scripts/CloneableEnums.cs b/Assets/Scripts/CloneableEnums.cs
new file mode 100644
index 0000000..3691244
--- /dev/null
+++ b/Assets/Scripts/CloneableEnums.cs
@@ -0,0 +1,16 @@
+using System.Collections;
+using System.Collections.Generic;
+using UnityEngine;
+
+///
+/// 该脚本挂在点击可实例化物体的模型上
+/// 选择该模型上具体可实例化的Clone类型
+///
+[DisallowMultipleComponent]
+public class CloneableEnums : MonoBehaviour {
+
+ public List CloneableTypes = new List();
+
+ //是否处理克隆操作点击碰撞的点
+ public bool isHandleCloneHitPoint;
+}
diff --git a/Assets/Scripts/CloneableEnums.cs.meta b/Assets/Scripts/CloneableEnums.cs.meta
new file mode 100644
index 0000000..036cf0c
--- /dev/null
+++ b/Assets/Scripts/CloneableEnums.cs.meta
@@ -0,0 +1,2 @@
+fileFormatVersion: 2
+guid: 1c0e57298488ae54aba3ef60b0b26920
\ No newline at end of file
diff --git a/Assets/Scripts/EvacuatePoint.cs b/Assets/Scripts/EvacuatePoint.cs
new file mode 100644
index 0000000..b99d217
--- /dev/null
+++ b/Assets/Scripts/EvacuatePoint.cs
@@ -0,0 +1,20 @@
+using System;
+using System.Collections;
+using System.Collections.Generic;
+using UnityEngine;
+
+public class EvacuatePoint : MonoBehaviour
+{
+ public static List evacuatePoints = new List();
+
+ private void Awake()
+ {
+ evacuatePoints.Clear();
+ }
+
+ // Start is called before the first frame update
+ void Start()
+ {
+ evacuatePoints.Add(transform.position);
+ }
+}
diff --git a/Assets/Scripts/EvacuatePoint.cs.meta b/Assets/Scripts/EvacuatePoint.cs.meta
new file mode 100644
index 0000000..3c00d37
--- /dev/null
+++ b/Assets/Scripts/EvacuatePoint.cs.meta
@@ -0,0 +1,2 @@
+fileFormatVersion: 2
+guid: d00f7578dda0a1c41b151766a6426479
\ No newline at end of file
diff --git a/Assets/Scripts/FloorMessage.cs b/Assets/Scripts/FloorMessage.cs
new file mode 100644
index 0000000..17dcfa4
--- /dev/null
+++ b/Assets/Scripts/FloorMessage.cs
@@ -0,0 +1,15 @@
+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;//切楼层时候用来定位的目标点
+}
diff --git a/Assets/Scripts/FloorMessage.cs.meta b/Assets/Scripts/FloorMessage.cs.meta
new file mode 100644
index 0000000..464a868
--- /dev/null
+++ b/Assets/Scripts/FloorMessage.cs.meta
@@ -0,0 +1,2 @@
+fileFormatVersion: 2
+guid: 7eb663056acb2644698df34826b5c60f
\ No newline at end of file
diff --git a/Assets/Scripts/GetAreaTargetManager.cs b/Assets/Scripts/GetAreaTargetManager.cs
new file mode 100644
index 0000000..f0ee299
--- /dev/null
+++ b/Assets/Scripts/GetAreaTargetManager.cs
@@ -0,0 +1,38 @@
+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 children;
+ private void Awake()
+ {
+ children = new List();
+ 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;
+ }
+}
diff --git a/Assets/Scripts/GetAreaTargetManager.cs.meta b/Assets/Scripts/GetAreaTargetManager.cs.meta
new file mode 100644
index 0000000..1ca9d59
--- /dev/null
+++ b/Assets/Scripts/GetAreaTargetManager.cs.meta
@@ -0,0 +1,2 @@
+fileFormatVersion: 2
+guid: ad1ddb7b6b473ac4ea26f44aea624e2b
\ No newline at end of file
diff --git a/Assets/Scripts/LoadShader.cs b/Assets/Scripts/LoadShader.cs
new file mode 100644
index 0000000..e50bc39
--- /dev/null
+++ b/Assets/Scripts/LoadShader.cs
@@ -0,0 +1,51 @@
+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())
+ {
+ var r = child.GetComponent();
+ 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");
+ }
+}
diff --git a/Assets/Scripts/LoadShader.cs.meta b/Assets/Scripts/LoadShader.cs.meta
new file mode 100644
index 0000000..cfd75c4
--- /dev/null
+++ b/Assets/Scripts/LoadShader.cs.meta
@@ -0,0 +1,2 @@
+fileFormatVersion: 2
+guid: 5627e6832e9378c4e8632a52efa22183
\ No newline at end of file
diff --git a/Assets/Scripts/PathFindable.cs b/Assets/Scripts/PathFindable.cs
new file mode 100644
index 0000000..0980cc8
--- /dev/null
+++ b/Assets/Scripts/PathFindable.cs
@@ -0,0 +1,18 @@
+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()
+ {
+
+ }
+}
diff --git a/Assets/Scripts/PathFindable.cs.meta b/Assets/Scripts/PathFindable.cs.meta
new file mode 100644
index 0000000..048ca00
--- /dev/null
+++ b/Assets/Scripts/PathFindable.cs.meta
@@ -0,0 +1,2 @@
+fileFormatVersion: 2
+guid: 43929be615d468749bba2f9917117a45
\ No newline at end of file
diff --git a/Assets/Scripts/TeamTargetItem.cs b/Assets/Scripts/TeamTargetItem.cs
new file mode 100644
index 0000000..a4ec6ce
--- /dev/null
+++ b/Assets/Scripts/TeamTargetItem.cs
@@ -0,0 +1,9 @@
+using System.Collections;
+using System.Collections.Generic;
+using UnityEngine;
+
+public class TeamTargetItem : MonoBehaviour
+{
+ public List TaskNames;
+ public string TankName;
+}
diff --git a/Assets/Scripts/TeamTargetItem.cs.meta b/Assets/Scripts/TeamTargetItem.cs.meta
new file mode 100644
index 0000000..0eb7733
--- /dev/null
+++ b/Assets/Scripts/TeamTargetItem.cs.meta
@@ -0,0 +1,2 @@
+fileFormatVersion: 2
+guid: 408648110f0742348a48d10da40f3ea5
\ No newline at end of file
diff --git a/Assets/Scripts/TeamTargetManager.cs b/Assets/Scripts/TeamTargetManager.cs
new file mode 100644
index 0000000..69a997b
--- /dev/null
+++ b/Assets/Scripts/TeamTargetManager.cs
@@ -0,0 +1,52 @@
+using System.Collections;
+using System.Collections.Generic;
+using UnityEngine;
+
+///
+/// 组任务目标点管理
+///
+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(path);
+ GameObject clone = Instantiate(obj);
+ clone.name = "TeamTargetParent";
+ instance = clone.GetComponent();
+ }
+ return instance;
+ }
+ }
+ ///
+ /// 罐区类组任务获取目标点
+ ///
+ /// 任务名称
+ /// 罐区名称
+ ///
+ public Vector3 GetTargetPos(string taskName, string tankName)
+ {
+ Vector3 pos = Vector3.zero;
+ foreach (Transform item in transform)
+ {
+ if (item.GetComponent().TaskNames.Contains(taskName) &&
+ item.GetComponent().TankName == tankName)
+ {
+ pos = item.position;
+ break;
+ }
+ }
+ return pos;
+ }
+}
diff --git a/Assets/Scripts/TeamTargetManager.cs.meta b/Assets/Scripts/TeamTargetManager.cs.meta
new file mode 100644
index 0000000..4c1e604
--- /dev/null
+++ b/Assets/Scripts/TeamTargetManager.cs.meta
@@ -0,0 +1,2 @@
+fileFormatVersion: 2
+guid: de3dcbb1284b2394a8049095e2bae278
\ No newline at end of file
diff --git a/Assets/StreamingAssets/AssetBundles/PXDKQYLGQ/PXDKQYLGQ b/Assets/StreamingAssets/AssetBundles/PXDKQYLGQ/PXDKQYLGQ
index b7eeb1c..68c0de4 100644
Binary files a/Assets/StreamingAssets/AssetBundles/PXDKQYLGQ/PXDKQYLGQ and b/Assets/StreamingAssets/AssetBundles/PXDKQYLGQ/PXDKQYLGQ differ
diff --git a/Assets/StreamingAssets/AssetBundles/PXDKQYLGQ/PXDKQYLGQ.manifest b/Assets/StreamingAssets/AssetBundles/PXDKQYLGQ/PXDKQYLGQ.manifest
index ffed0c5..b2de9e1 100644
--- a/Assets/StreamingAssets/AssetBundles/PXDKQYLGQ/PXDKQYLGQ.manifest
+++ b/Assets/StreamingAssets/AssetBundles/PXDKQYLGQ/PXDKQYLGQ.manifest
@@ -1,6 +1,6 @@
ManifestFileVersion: 0
UnityVersion: 6000.0.17f1c1
-CRC: 276309352
+CRC: 2135563862
HashAppended: 0
AssetBundleManifest:
AssetBundleInfos:
diff --git a/Assets/StreamingAssets/AssetBundles/PXDKQYLGQ/mainbuilding b/Assets/StreamingAssets/AssetBundles/PXDKQYLGQ/mainbuilding
index 3b69f9f..704ab99 100644
Binary files a/Assets/StreamingAssets/AssetBundles/PXDKQYLGQ/mainbuilding and b/Assets/StreamingAssets/AssetBundles/PXDKQYLGQ/mainbuilding differ
diff --git a/Assets/StreamingAssets/AssetBundles/PXDKQYLGQ/mainbuilding.manifest b/Assets/StreamingAssets/AssetBundles/PXDKQYLGQ/mainbuilding.manifest
index 7d2c400..f874bf1 100644
--- a/Assets/StreamingAssets/AssetBundles/PXDKQYLGQ/mainbuilding.manifest
+++ b/Assets/StreamingAssets/AssetBundles/PXDKQYLGQ/mainbuilding.manifest
@@ -1,16 +1,16 @@
ManifestFileVersion: 0
UnityVersion: 6000.0.17f1c1
-CRC: 939027924
+CRC: 4185488802
Hashes:
AssetFileHash:
serializedVersion: 2
- Hash: 7bc7dbd0555774ca0dd75bc52cd4a4eb
+ Hash: 086a839159744c19a52f9fb7728bf754
TypeTreeHash:
serializedVersion: 2
- Hash: e7b2853f65ee4eab169b4ddcd60e2f2f
+ Hash: 8c543a89a1a0e1fba358decc0d14ae8c
IncrementalBuildHash:
serializedVersion: 2
- Hash: 339aceaf36a2cafbdb2b6064bfd88a51
+ Hash: b9e7bbd7c3296cbc190c3562879de653
HashAppended: 0
ClassTypes:
- Class: 1
@@ -29,10 +29,12 @@ ClassTypes:
Script: {instanceID: 0}
- Class: 48
Script: {instanceID: 0}
+- Class: 64
+ Script: {instanceID: 0}
- Class: 114
Script: {fileID: 11500000, guid: 0777d029ed3dffa4692f417d4aba19ca, type: 3}
- Class: 114
- Script: {fileID: 11500000, guid: 6a037d9e9c9c3844b81465c371b5e60c, type: 3}
+ Script: {fileID: 11500000, guid: 5627e6832e9378c4e8632a52efa22183, type: 3}
- Class: 115
Script: {instanceID: 0}
SerializeReferenceClassIdentifiers: []
diff --git a/Assets/StreamingAssets/WebAssetBundles/PXDKQYLGQ/PXDKQYLGQ b/Assets/StreamingAssets/WebAssetBundles/PXDKQYLGQ/PXDKQYLGQ
index b5c872f..cb09ef5 100644
Binary files a/Assets/StreamingAssets/WebAssetBundles/PXDKQYLGQ/PXDKQYLGQ and b/Assets/StreamingAssets/WebAssetBundles/PXDKQYLGQ/PXDKQYLGQ differ
diff --git a/Assets/StreamingAssets/WebAssetBundles/PXDKQYLGQ/PXDKQYLGQ.manifest b/Assets/StreamingAssets/WebAssetBundles/PXDKQYLGQ/PXDKQYLGQ.manifest
index dd41a16..3f588b0 100644
--- a/Assets/StreamingAssets/WebAssetBundles/PXDKQYLGQ/PXDKQYLGQ.manifest
+++ b/Assets/StreamingAssets/WebAssetBundles/PXDKQYLGQ/PXDKQYLGQ.manifest
@@ -1,6 +1,6 @@
ManifestFileVersion: 0
UnityVersion: 6000.0.17f1c1
-CRC: 2687671905
+CRC: 286311119
HashAppended: 0
AssetBundleManifest:
AssetBundleInfos:
diff --git a/Assets/StreamingAssets/WebAssetBundles/PXDKQYLGQ/mainbuilding b/Assets/StreamingAssets/WebAssetBundles/PXDKQYLGQ/mainbuilding
index 3c1d11e..bae1420 100644
Binary files a/Assets/StreamingAssets/WebAssetBundles/PXDKQYLGQ/mainbuilding and b/Assets/StreamingAssets/WebAssetBundles/PXDKQYLGQ/mainbuilding differ
diff --git a/Assets/StreamingAssets/WebAssetBundles/PXDKQYLGQ/mainbuilding.manifest b/Assets/StreamingAssets/WebAssetBundles/PXDKQYLGQ/mainbuilding.manifest
index ee34450..fd387bd 100644
--- a/Assets/StreamingAssets/WebAssetBundles/PXDKQYLGQ/mainbuilding.manifest
+++ b/Assets/StreamingAssets/WebAssetBundles/PXDKQYLGQ/mainbuilding.manifest
@@ -1,16 +1,16 @@
ManifestFileVersion: 0
UnityVersion: 6000.0.17f1c1
-CRC: 298111533
+CRC: 332034016
Hashes:
AssetFileHash:
serializedVersion: 2
- Hash: b5065d027da92c6761ebf8a41718a0ce
+ Hash: ee3498ff7a59c0432687fdb51f165077
TypeTreeHash:
serializedVersion: 2
- Hash: e7b2853f65ee4eab169b4ddcd60e2f2f
+ Hash: 8c543a89a1a0e1fba358decc0d14ae8c
IncrementalBuildHash:
serializedVersion: 2
- Hash: 7f0ca2b128c3596bcb778e4d659036d6
+ Hash: 2398f84f17784e23209deafebb3fedb8
HashAppended: 0
ClassTypes:
- Class: 1
@@ -29,10 +29,12 @@ ClassTypes:
Script: {instanceID: 0}
- Class: 48
Script: {instanceID: 0}
+- Class: 64
+ Script: {instanceID: 0}
- Class: 114
Script: {fileID: 11500000, guid: 0777d029ed3dffa4692f417d4aba19ca, type: 3}
- Class: 114
- Script: {fileID: 11500000, guid: 6a037d9e9c9c3844b81465c371b5e60c, type: 3}
+ Script: {fileID: 11500000, guid: 5627e6832e9378c4e8632a52efa22183, type: 3}
- Class: 115
Script: {instanceID: 0}
SerializeReferenceClassIdentifiers: []
diff --git a/Assets/ZhenHaiLiaHua/Scenes/0MT.meta b/Assets/ZhenHaiLiaHua/Scenes/0MT.meta
new file mode 100644
index 0000000..11a7b39
--- /dev/null
+++ b/Assets/ZhenHaiLiaHua/Scenes/0MT.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: bcea84f2a8844244c88103bfd641867e
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/ZhenHaiLiaHua/Scenes/0MT/CJ_DI1.mat b/Assets/ZhenHaiLiaHua/Scenes/0MT/CJ_DI1.mat
new file mode 100644
index 0000000..8e78f0c
--- /dev/null
+++ b/Assets/ZhenHaiLiaHua/Scenes/0MT/CJ_DI1.mat
@@ -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
diff --git a/Assets/ZhenHaiLiaHua/Scenes/0MT/CJ_DI1.mat.meta b/Assets/ZhenHaiLiaHua/Scenes/0MT/CJ_DI1.mat.meta
new file mode 100644
index 0000000..c04e12a
--- /dev/null
+++ b/Assets/ZhenHaiLiaHua/Scenes/0MT/CJ_DI1.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 207db93e118474f41977070fd621d68e
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/ZhenHaiLiaHua/Scenes/0MT/CJ_MAlu.mat b/Assets/ZhenHaiLiaHua/Scenes/0MT/CJ_MAlu.mat
new file mode 100644
index 0000000..dca5053
--- /dev/null
+++ b/Assets/ZhenHaiLiaHua/Scenes/0MT/CJ_MAlu.mat
@@ -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
diff --git a/Assets/ZhenHaiLiaHua/Scenes/0MT/CJ_MAlu.mat.meta b/Assets/ZhenHaiLiaHua/Scenes/0MT/CJ_MAlu.mat.meta
new file mode 100644
index 0000000..fa2bc4b
--- /dev/null
+++ b/Assets/ZhenHaiLiaHua/Scenes/0MT/CJ_MAlu.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 298c420f53897e741bcb96b43f482ded
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/ZhenHaiLiaHua/Scenes/0MT/CJ_MAlu1.mat b/Assets/ZhenHaiLiaHua/Scenes/0MT/CJ_MAlu1.mat
new file mode 100644
index 0000000..9381a37
--- /dev/null
+++ b/Assets/ZhenHaiLiaHua/Scenes/0MT/CJ_MAlu1.mat
@@ -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
diff --git a/Assets/ZhenHaiLiaHua/Scenes/0MT/CJ_MAlu1.mat.meta b/Assets/ZhenHaiLiaHua/Scenes/0MT/CJ_MAlu1.mat.meta
new file mode 100644
index 0000000..32162fc
--- /dev/null
+++ b/Assets/ZhenHaiLiaHua/Scenes/0MT/CJ_MAlu1.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: acb85f379521a5f47851b7d6f7a8f88d
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/ZhenHaiLiaHua/Scenes/0MT/CJ_RXD.mat b/Assets/ZhenHaiLiaHua/Scenes/0MT/CJ_RXD.mat
new file mode 100644
index 0000000..3f18c3f
--- /dev/null
+++ b/Assets/ZhenHaiLiaHua/Scenes/0MT/CJ_RXD.mat
@@ -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
diff --git a/Assets/ZhenHaiLiaHua/Scenes/0MT/CJ_RXD.mat.meta b/Assets/ZhenHaiLiaHua/Scenes/0MT/CJ_RXD.mat.meta
new file mode 100644
index 0000000..0f268e6
--- /dev/null
+++ b/Assets/ZhenHaiLiaHua/Scenes/0MT/CJ_RXD.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 18d73290f97fe5743aa26d9f4c50573d
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/ZhenHaiLiaHua/Scenes/0MT/HL_AA_HunNingTuDiMian_JiaoCuo.mat b/Assets/ZhenHaiLiaHua/Scenes/0MT/HL_AA_HunNingTuDiMian_JiaoCuo.mat
new file mode 100644
index 0000000..a73f41d
--- /dev/null
+++ b/Assets/ZhenHaiLiaHua/Scenes/0MT/HL_AA_HunNingTuDiMian_JiaoCuo.mat
@@ -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
diff --git a/Assets/ZhenHaiLiaHua/Scenes/0MT/HL_AA_HunNingTuDiMian_JiaoCuo.mat.meta b/Assets/ZhenHaiLiaHua/Scenes/0MT/HL_AA_HunNingTuDiMian_JiaoCuo.mat.meta
new file mode 100644
index 0000000..aaea6cc
--- /dev/null
+++ b/Assets/ZhenHaiLiaHua/Scenes/0MT/HL_AA_HunNingTuDiMian_JiaoCuo.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: e3ef98408a95da5458a98777c30fc355
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/ZhenHaiLiaHua/Scenes/0MT/HL_JiJianLingShiKuai_AN_FX.mat b/Assets/ZhenHaiLiaHua/Scenes/0MT/HL_JiJianLingShiKuai_AN_FX.mat
new file mode 100644
index 0000000..efd02c8
--- /dev/null
+++ b/Assets/ZhenHaiLiaHua/Scenes/0MT/HL_JiJianLingShiKuai_AN_FX.mat
@@ -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
diff --git a/Assets/ZhenHaiLiaHua/Scenes/0MT/HL_JiJianLingShiKuai_AN_FX.mat.meta b/Assets/ZhenHaiLiaHua/Scenes/0MT/HL_JiJianLingShiKuai_AN_FX.mat.meta
new file mode 100644
index 0000000..d501073
--- /dev/null
+++ b/Assets/ZhenHaiLiaHua/Scenes/0MT/HL_JiJianLingShiKuai_AN_FX.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 40586e03882ffe04480bf84b09215fb7
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/ZhenHaiLiaHua/Scenes/0MT/YL_LvBan_1.mat b/Assets/ZhenHaiLiaHua/Scenes/0MT/YL_LvBan_1.mat
new file mode 100644
index 0000000..9d65c6e
--- /dev/null
+++ b/Assets/ZhenHaiLiaHua/Scenes/0MT/YL_LvBan_1.mat
@@ -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
diff --git a/Assets/ZhenHaiLiaHua/Scenes/0MT/YL_LvBan_1.mat.meta b/Assets/ZhenHaiLiaHua/Scenes/0MT/YL_LvBan_1.mat.meta
new file mode 100644
index 0000000..ab42d26
--- /dev/null
+++ b/Assets/ZhenHaiLiaHua/Scenes/0MT/YL_LvBan_1.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: b0f6e13639a77d24a93741be2da5aefb
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/ZhenHaiLiaHua/Scenes/0MT/YL_malu_1.mat b/Assets/ZhenHaiLiaHua/Scenes/0MT/YL_malu_1.mat
new file mode 100644
index 0000000..2bac5bb
--- /dev/null
+++ b/Assets/ZhenHaiLiaHua/Scenes/0MT/YL_malu_1.mat
@@ -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
diff --git a/Assets/ZhenHaiLiaHua/Scenes/0MT/YL_malu_1.mat.meta b/Assets/ZhenHaiLiaHua/Scenes/0MT/YL_malu_1.mat.meta
new file mode 100644
index 0000000..7edc749
--- /dev/null
+++ b/Assets/ZhenHaiLiaHua/Scenes/0MT/YL_malu_1.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 0c47351e35ebc8a4e8609b6c4bbfa6c0
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/ZhenHaiLiaHua/Scenes/0Texture.meta b/Assets/ZhenHaiLiaHua/Scenes/0Texture.meta
new file mode 100644
index 0000000..617717f
--- /dev/null
+++ b/Assets/ZhenHaiLiaHua/Scenes/0Texture.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 807d3e68420a006479da996e0b1dc458
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/ZhenHaiLiaHua/Scenes/0Texture/CJ_DI1 1.jpg b/Assets/ZhenHaiLiaHua/Scenes/0Texture/CJ_DI1 1.jpg
new file mode 100644
index 0000000..4d505a3
Binary files /dev/null and b/Assets/ZhenHaiLiaHua/Scenes/0Texture/CJ_DI1 1.jpg differ
diff --git a/Assets/ZhenHaiLiaHua/Scenes/0Texture/CJ_DI1 1.jpg.meta b/Assets/ZhenHaiLiaHua/Scenes/0Texture/CJ_DI1 1.jpg.meta
new file mode 100644
index 0000000..152b5fb
--- /dev/null
+++ b/Assets/ZhenHaiLiaHua/Scenes/0Texture/CJ_DI1 1.jpg.meta
@@ -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:
diff --git a/Assets/ZhenHaiLiaHua/Scenes/0Texture/CJ_DI1.jpg b/Assets/ZhenHaiLiaHua/Scenes/0Texture/CJ_DI1.jpg
new file mode 100644
index 0000000..4d505a3
Binary files /dev/null and b/Assets/ZhenHaiLiaHua/Scenes/0Texture/CJ_DI1.jpg differ
diff --git a/Assets/ZhenHaiLiaHua/Scenes/0Texture/CJ_DI1.jpg.meta b/Assets/ZhenHaiLiaHua/Scenes/0Texture/CJ_DI1.jpg.meta
new file mode 100644
index 0000000..c9cfbf0
--- /dev/null
+++ b/Assets/ZhenHaiLiaHua/Scenes/0Texture/CJ_DI1.jpg.meta
@@ -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:
diff --git a/Assets/ZhenHaiLiaHua/Scenes/0Texture/CJ_MAlu 1.jpg b/Assets/ZhenHaiLiaHua/Scenes/0Texture/CJ_MAlu 1.jpg
new file mode 100644
index 0000000..3c8afd5
Binary files /dev/null and b/Assets/ZhenHaiLiaHua/Scenes/0Texture/CJ_MAlu 1.jpg differ
diff --git a/Assets/ZhenHaiLiaHua/Scenes/0Texture/CJ_MAlu 1.jpg.meta b/Assets/ZhenHaiLiaHua/Scenes/0Texture/CJ_MAlu 1.jpg.meta
new file mode 100644
index 0000000..435d70e
--- /dev/null
+++ b/Assets/ZhenHaiLiaHua/Scenes/0Texture/CJ_MAlu 1.jpg.meta
@@ -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:
diff --git a/Assets/ZhenHaiLiaHua/Scenes/0Texture/CJ_MAlu.jpg b/Assets/ZhenHaiLiaHua/Scenes/0Texture/CJ_MAlu.jpg
new file mode 100644
index 0000000..3c8afd5
Binary files /dev/null and b/Assets/ZhenHaiLiaHua/Scenes/0Texture/CJ_MAlu.jpg differ
diff --git a/Assets/ZhenHaiLiaHua/Scenes/0Texture/CJ_MAlu.jpg.meta b/Assets/ZhenHaiLiaHua/Scenes/0Texture/CJ_MAlu.jpg.meta
new file mode 100644
index 0000000..ae21e8f
--- /dev/null
+++ b/Assets/ZhenHaiLiaHua/Scenes/0Texture/CJ_MAlu.jpg.meta
@@ -0,0 +1,143 @@
+fileFormatVersion: 2
+guid: 4b7259ffd0ec18b4492d9b62e4b7a169
+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:
diff --git a/Assets/ZhenHaiLiaHua/Scenes/0Texture/CJ_MAlu1 1.jpg b/Assets/ZhenHaiLiaHua/Scenes/0Texture/CJ_MAlu1 1.jpg
new file mode 100644
index 0000000..81bf17b
Binary files /dev/null and b/Assets/ZhenHaiLiaHua/Scenes/0Texture/CJ_MAlu1 1.jpg differ
diff --git a/Assets/ZhenHaiLiaHua/Scenes/0Texture/CJ_MAlu1 1.jpg.meta b/Assets/ZhenHaiLiaHua/Scenes/0Texture/CJ_MAlu1 1.jpg.meta
new file mode 100644
index 0000000..4ea7e00
--- /dev/null
+++ b/Assets/ZhenHaiLiaHua/Scenes/0Texture/CJ_MAlu1 1.jpg.meta
@@ -0,0 +1,143 @@
+fileFormatVersion: 2
+guid: c5b2592306731f34f8ae37781a4c278e
+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:
diff --git a/Assets/ZhenHaiLiaHua/Scenes/0Texture/CJ_MAlu1.jpg b/Assets/ZhenHaiLiaHua/Scenes/0Texture/CJ_MAlu1.jpg
new file mode 100644
index 0000000..81bf17b
Binary files /dev/null and b/Assets/ZhenHaiLiaHua/Scenes/0Texture/CJ_MAlu1.jpg differ
diff --git a/Assets/ZhenHaiLiaHua/Scenes/0Texture/CJ_MAlu1.jpg.meta b/Assets/ZhenHaiLiaHua/Scenes/0Texture/CJ_MAlu1.jpg.meta
new file mode 100644
index 0000000..baedd2c
--- /dev/null
+++ b/Assets/ZhenHaiLiaHua/Scenes/0Texture/CJ_MAlu1.jpg.meta
@@ -0,0 +1,143 @@
+fileFormatVersion: 2
+guid: 1847f20ee4a7ffa479be3d4b3a849e2c
+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:
diff --git a/Assets/ZhenHaiLiaHua/Scenes/0Texture/CJ_RXD 1.jpg b/Assets/ZhenHaiLiaHua/Scenes/0Texture/CJ_RXD 1.jpg
new file mode 100644
index 0000000..d713ae5
Binary files /dev/null and b/Assets/ZhenHaiLiaHua/Scenes/0Texture/CJ_RXD 1.jpg differ
diff --git a/Assets/ZhenHaiLiaHua/Scenes/0Texture/CJ_RXD 1.jpg.meta b/Assets/ZhenHaiLiaHua/Scenes/0Texture/CJ_RXD 1.jpg.meta
new file mode 100644
index 0000000..5f06296
--- /dev/null
+++ b/Assets/ZhenHaiLiaHua/Scenes/0Texture/CJ_RXD 1.jpg.meta
@@ -0,0 +1,143 @@
+fileFormatVersion: 2
+guid: 891b123a908adab408532e49326ec475
+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:
diff --git a/Assets/ZhenHaiLiaHua/Scenes/0Texture/CJ_RXD.jpg b/Assets/ZhenHaiLiaHua/Scenes/0Texture/CJ_RXD.jpg
new file mode 100644
index 0000000..d713ae5
Binary files /dev/null and b/Assets/ZhenHaiLiaHua/Scenes/0Texture/CJ_RXD.jpg differ
diff --git a/Assets/ZhenHaiLiaHua/Scenes/0Texture/CJ_RXD.jpg.meta b/Assets/ZhenHaiLiaHua/Scenes/0Texture/CJ_RXD.jpg.meta
new file mode 100644
index 0000000..57506cc
--- /dev/null
+++ b/Assets/ZhenHaiLiaHua/Scenes/0Texture/CJ_RXD.jpg.meta
@@ -0,0 +1,143 @@
+fileFormatVersion: 2
+guid: 71cc2f369b010f54ab6cb1051b2d2a15
+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:
diff --git a/Assets/ZhenHaiLiaHua/Scenes/0Texture/HL_AA_HunNingTuDiMian_JiaoCuo.jpg b/Assets/ZhenHaiLiaHua/Scenes/0Texture/HL_AA_HunNingTuDiMian_JiaoCuo.jpg
new file mode 100644
index 0000000..10ac608
Binary files /dev/null and b/Assets/ZhenHaiLiaHua/Scenes/0Texture/HL_AA_HunNingTuDiMian_JiaoCuo.jpg differ
diff --git a/Assets/ZhenHaiLiaHua/Scenes/0Texture/HL_AA_HunNingTuDiMian_JiaoCuo.jpg.meta b/Assets/ZhenHaiLiaHua/Scenes/0Texture/HL_AA_HunNingTuDiMian_JiaoCuo.jpg.meta
new file mode 100644
index 0000000..f1016ac
--- /dev/null
+++ b/Assets/ZhenHaiLiaHua/Scenes/0Texture/HL_AA_HunNingTuDiMian_JiaoCuo.jpg.meta
@@ -0,0 +1,143 @@
+fileFormatVersion: 2
+guid: 6f7bbf85dd3ba00498adbec88b1619dc
+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:
diff --git a/Assets/ZhenHaiLiaHua/Scenes/0Texture/HL_JiJianLingShiKuai_AN_FX 1.jpg b/Assets/ZhenHaiLiaHua/Scenes/0Texture/HL_JiJianLingShiKuai_AN_FX 1.jpg
new file mode 100644
index 0000000..6af4d29
Binary files /dev/null and b/Assets/ZhenHaiLiaHua/Scenes/0Texture/HL_JiJianLingShiKuai_AN_FX 1.jpg differ
diff --git a/Assets/ZhenHaiLiaHua/Scenes/0Texture/HL_JiJianLingShiKuai_AN_FX 1.jpg.meta b/Assets/ZhenHaiLiaHua/Scenes/0Texture/HL_JiJianLingShiKuai_AN_FX 1.jpg.meta
new file mode 100644
index 0000000..048ed7b
--- /dev/null
+++ b/Assets/ZhenHaiLiaHua/Scenes/0Texture/HL_JiJianLingShiKuai_AN_FX 1.jpg.meta
@@ -0,0 +1,143 @@
+fileFormatVersion: 2
+guid: 2685a3d32e2724644a1c377034f6d8b2
+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:
diff --git a/Assets/ZhenHaiLiaHua/Scenes/0Texture/HL_JiJianLingShiKuai_AN_FX.jpg b/Assets/ZhenHaiLiaHua/Scenes/0Texture/HL_JiJianLingShiKuai_AN_FX.jpg
new file mode 100644
index 0000000..6af4d29
Binary files /dev/null and b/Assets/ZhenHaiLiaHua/Scenes/0Texture/HL_JiJianLingShiKuai_AN_FX.jpg differ
diff --git a/Assets/ZhenHaiLiaHua/Scenes/0Texture/HL_JiJianLingShiKuai_AN_FX.jpg.meta b/Assets/ZhenHaiLiaHua/Scenes/0Texture/HL_JiJianLingShiKuai_AN_FX.jpg.meta
new file mode 100644
index 0000000..2b1b44f
--- /dev/null
+++ b/Assets/ZhenHaiLiaHua/Scenes/0Texture/HL_JiJianLingShiKuai_AN_FX.jpg.meta
@@ -0,0 +1,143 @@
+fileFormatVersion: 2
+guid: 01c91a56c8b2a1d49994bd54ab20a55d
+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:
diff --git a/Assets/ZhenHaiLiaHua/Scenes/0Texture/YL_LvBan_1 1.jpg b/Assets/ZhenHaiLiaHua/Scenes/0Texture/YL_LvBan_1 1.jpg
new file mode 100644
index 0000000..cc756bb
Binary files /dev/null and b/Assets/ZhenHaiLiaHua/Scenes/0Texture/YL_LvBan_1 1.jpg differ
diff --git a/Assets/ZhenHaiLiaHua/Scenes/0Texture/YL_LvBan_1 1.jpg.meta b/Assets/ZhenHaiLiaHua/Scenes/0Texture/YL_LvBan_1 1.jpg.meta
new file mode 100644
index 0000000..9ec72bc
--- /dev/null
+++ b/Assets/ZhenHaiLiaHua/Scenes/0Texture/YL_LvBan_1 1.jpg.meta
@@ -0,0 +1,143 @@
+fileFormatVersion: 2
+guid: 371b37fdde831c640a72c8900893ab3a
+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:
diff --git a/Assets/ZhenHaiLiaHua/Scenes/0Texture/YL_LvBan_1.jpg b/Assets/ZhenHaiLiaHua/Scenes/0Texture/YL_LvBan_1.jpg
new file mode 100644
index 0000000..cc756bb
Binary files /dev/null and b/Assets/ZhenHaiLiaHua/Scenes/0Texture/YL_LvBan_1.jpg differ
diff --git a/Assets/ZhenHaiLiaHua/Scenes/0Texture/YL_LvBan_1.jpg.meta b/Assets/ZhenHaiLiaHua/Scenes/0Texture/YL_LvBan_1.jpg.meta
new file mode 100644
index 0000000..1b7764c
--- /dev/null
+++ b/Assets/ZhenHaiLiaHua/Scenes/0Texture/YL_LvBan_1.jpg.meta
@@ -0,0 +1,143 @@
+fileFormatVersion: 2
+guid: 8a9229382b36ffa48bbe97757757c908
+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:
diff --git a/Assets/ZhenHaiLiaHua/Scenes/0Texture/YL_malu_1 1.jpg b/Assets/ZhenHaiLiaHua/Scenes/0Texture/YL_malu_1 1.jpg
new file mode 100644
index 0000000..c0a6270
Binary files /dev/null and b/Assets/ZhenHaiLiaHua/Scenes/0Texture/YL_malu_1 1.jpg differ
diff --git a/Assets/ZhenHaiLiaHua/Scenes/0Texture/YL_malu_1 1.jpg.meta b/Assets/ZhenHaiLiaHua/Scenes/0Texture/YL_malu_1 1.jpg.meta
new file mode 100644
index 0000000..9b44f85
--- /dev/null
+++ b/Assets/ZhenHaiLiaHua/Scenes/0Texture/YL_malu_1 1.jpg.meta
@@ -0,0 +1,143 @@
+fileFormatVersion: 2
+guid: 408b321ae8dd55e43af40d1f0edf7fa6
+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:
diff --git a/Assets/ZhenHaiLiaHua/Scenes/0Texture/YL_malu_1.jpg b/Assets/ZhenHaiLiaHua/Scenes/0Texture/YL_malu_1.jpg
new file mode 100644
index 0000000..c0a6270
Binary files /dev/null and b/Assets/ZhenHaiLiaHua/Scenes/0Texture/YL_malu_1.jpg differ
diff --git a/Assets/ZhenHaiLiaHua/Scenes/0Texture/YL_malu_1.jpg.meta b/Assets/ZhenHaiLiaHua/Scenes/0Texture/YL_malu_1.jpg.meta
new file mode 100644
index 0000000..3b1e64f
--- /dev/null
+++ b/Assets/ZhenHaiLiaHua/Scenes/0Texture/YL_malu_1.jpg.meta
@@ -0,0 +1,143 @@
+fileFormatVersion: 2
+guid: 5c2c14d1e8213604facc93ff80da54a6
+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:
diff --git a/Assets/ZhenHaiLiaHua/Scenes/SatelliteMap.fbx.meta b/Assets/ZhenHaiLiaHua/Scenes/SatelliteMap.fbx.meta
index c9248d9..3b0bcdb 100644
--- a/Assets/ZhenHaiLiaHua/Scenes/SatelliteMap.fbx.meta
+++ b/Assets/ZhenHaiLiaHua/Scenes/SatelliteMap.fbx.meta
@@ -13,7 +13,37 @@ ModelImporter:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: CJ_DI1
- second: {fileID: 2100000, guid: 9df545a812c385347aaab1b652e34481, type: 2}
+ second: {fileID: 2100000, guid: 207db93e118474f41977070fd621d68e, type: 2}
+ - first:
+ type: UnityEngine:Material
+ assembly: UnityEngine.CoreModule
+ name: CJ_MAlu
+ second: {fileID: 2100000, guid: 298c420f53897e741bcb96b43f482ded, type: 2}
+ - first:
+ type: UnityEngine:Material
+ assembly: UnityEngine.CoreModule
+ name: CJ_MAlu1
+ second: {fileID: 2100000, guid: acb85f379521a5f47851b7d6f7a8f88d, type: 2}
+ - first:
+ type: UnityEngine:Material
+ assembly: UnityEngine.CoreModule
+ name: CJ_RXD
+ second: {fileID: 2100000, guid: 18d73290f97fe5743aa26d9f4c50573d, type: 2}
+ - first:
+ type: UnityEngine:Material
+ assembly: UnityEngine.CoreModule
+ name: HL_JiJianLingShiKuai_AN_FX
+ second: {fileID: 2100000, guid: 40586e03882ffe04480bf84b09215fb7, type: 2}
+ - first:
+ type: UnityEngine:Material
+ assembly: UnityEngine.CoreModule
+ name: YL_LvBan_1
+ second: {fileID: 2100000, guid: 2e94528a0a0956a49998b25289a3427e, type: 2}
+ - first:
+ type: UnityEngine:Material
+ assembly: UnityEngine.CoreModule
+ name: YL_malu_1
+ second: {fileID: 2100000, guid: 1eb7c43dfc8fb8645b7feedda8a2d532, type: 2}
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
@@ -77,7 +107,7 @@ ModelImporter:
materials:
materialImportMode: 2
materialName: 0
- materialSearch: 1
+ materialSearch: 2
materialLocation: 1
animations:
legacyGenerateAnimations: 4