Commit 999c5bee authored by Ruidong's avatar Ruidong

美术资源

parent 0aa332f9
This diff is collapsed.
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -45,6 +45,10 @@ public class BattleCtrl : MonoBehaviour ...@@ -45,6 +45,10 @@ public class BattleCtrl : MonoBehaviour
public String GoldName = "Egg"; //金币名称(Resources) public String GoldName = "Egg"; //金币名称(Resources)
//更新分数 //更新分数
public delegate void UpdateScoreDe(); public delegate void UpdateScoreDe();
public UpdateScoreDe updateScore; public UpdateScoreDe updateScore;
...@@ -54,7 +58,9 @@ public class BattleCtrl : MonoBehaviour ...@@ -54,7 +58,9 @@ public class BattleCtrl : MonoBehaviour
//随机生成金币。 //随机生成金币。
public delegate void RandomGold(); public delegate void RandomGold();
public RandomGold randomGold; public RandomGold randomGold;
//实时更新更新排行榜。
public delegate void UpdateRanking();
public UpdateRanking updateRanking;
private void Awake() private void Awake()
...@@ -72,6 +78,8 @@ public class BattleCtrl : MonoBehaviour ...@@ -72,6 +78,8 @@ public class BattleCtrl : MonoBehaviour
battleUI.onStartBtn += StartBattle; battleUI.onStartBtn += StartBattle;
} }
void InitServices() void InitServices()
{ {
_GameServices = GameServices.Create(); _GameServices = GameServices.Create();
...@@ -212,6 +220,13 @@ public class BattleCtrl : MonoBehaviour ...@@ -212,6 +220,13 @@ public class BattleCtrl : MonoBehaviour
//#endif //#endif
// } // }
private void Update()
{
}
private void OnDestroy() private void OnDestroy()
{ {
m_levelManager.onBeforeLoadLevel -= OnBeforeLoadLevel; m_levelManager.onBeforeLoadLevel -= OnBeforeLoadLevel;
......
...@@ -41,9 +41,11 @@ public class BattleUI : MonoBehaviour ...@@ -41,9 +41,11 @@ public class BattleUI : MonoBehaviour
[Header("得分")] [Header("得分")]
public Slider sliderScore; public Slider sliderScore;
public Text ScoreTex; public Text ScoreTex;
public Text Timer; public Text Timer;
[Header("排行榜")]
public Text text1;
public Text text2;
public Text text3;
public Action onStartBtn; public Action onStartBtn;
public Action onPosUpBtn; public Action onPosUpBtn;
...@@ -81,6 +83,7 @@ public class BattleUI : MonoBehaviour ...@@ -81,6 +83,7 @@ public class BattleUI : MonoBehaviour
GameServices.audioServices.PlayBgm(GameServices.configService.audioConfig.GameBgm); GameServices.audioServices.PlayBgm(GameServices.configService.audioConfig.GameBgm);
GameServices.configService.playerConfig.ClawMoveSpeed = 0.4f;//开始默认值 GameServices.configService.playerConfig.ClawMoveSpeed = 0.4f;//开始默认值
BattleCtrl.instance.updateScore += UpdateScore; BattleCtrl.instance.updateScore += UpdateScore;
BattleCtrl.instance.updateRanking += UpdateRanking;
} }
private void Start() private void Start()
{ {
...@@ -367,8 +370,40 @@ public class BattleUI : MonoBehaviour ...@@ -367,8 +370,40 @@ public class BattleUI : MonoBehaviour
sliderScore.value = BattleCtrl.instance.Score; sliderScore.value = BattleCtrl.instance.Score;
ScoreTex.text = BattleCtrl.instance.Score.ToString(); ScoreTex.text = BattleCtrl.instance.Score.ToString();
} }
public void UpdateRanking()
{
if (DoRanking._instance.rankingList[2].tag == "Player")
{
text1.text = "1 "+DoRanking._instance.rankingList[2].name+"\t"+DoRanking._instance.rankingList[2].GetComponent<PlayerMove>().SpeedLevel * DoRanking._instance.rankingList[2].GetComponent<PlayerMove>().HSpeed;
}
else
{
text1.text = "1 " + DoRanking._instance.rankingList[2].name + "\t" + DoRanking._instance.rankingList[2].GetComponent<AIMove>().SpeedLevel * DoRanking._instance.rankingList[2].GetComponent<AIMove>().HSpeed;
}
if (DoRanking._instance.rankingList[1].tag == "Player")
{
text2.text = "2 " + DoRanking._instance.rankingList[1].name + "\t" + DoRanking._instance.rankingList[1].GetComponent<PlayerMove>().SpeedLevel * DoRanking._instance.rankingList[1].GetComponent<PlayerMove>().HSpeed;
}
else
{
text2.text = "2 " + DoRanking._instance.rankingList[1].name + "\t" + DoRanking._instance.rankingList[1].GetComponent<AIMove>().SpeedLevel * DoRanking._instance.rankingList[1].GetComponent<AIMove>().HSpeed;
}
if (DoRanking._instance.rankingList[0].tag == "Player")
{
text3.text = "3 " + DoRanking._instance.rankingList[0].name + "\t" + DoRanking._instance.rankingList[0].GetComponent<PlayerMove>().SpeedLevel * DoRanking._instance.rankingList[0].GetComponent<PlayerMove>().HSpeed;
}
else
{
text3.text = "3 " + DoRanking._instance.rankingList[0].name + "\t" + DoRanking._instance.rankingList[0].GetComponent<AIMove>().SpeedLevel * DoRanking._instance.rankingList[0].GetComponent<AIMove>().HSpeed;
}
//text1.text = DoRanking._instance.rankingList[2].name;
//text2.text = DoRanking._instance.rankingList[1].name;
//text3.text = DoRanking._instance.rankingList[0].name;
}
void OnDestroy() void OnDestroy()
{ {
BattleCtrl.instance.updateScore -= UpdateScore; BattleCtrl.instance.updateScore -= UpdateScore;
BattleCtrl.instance.updateRanking -= UpdateRanking;
} }
} }
fileFormatVersion: 2 fileFormatVersion: 2
guid: 926cb33366a15fa4ba8c115238d3e642 guid: 717b9411856c6df4f86a4ba154b69261
folderAsset: yes folderAsset: yes
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: 07e0bcc082937b8048d20ee73d751095 guid: da24905fc55316942bccb8dd8f92d5c6
folderAsset: yes folderAsset: yes
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: 3ea9abe6adfb7598a9a2967f7940e480 guid: e70a16372e922b145a17af6d72e2259f
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: f10892f1d0653a3f79669a9c3f76382e guid: 0fb793529993c6d42b332dbd05f97bae
NativeFormatImporter: NativeFormatImporter:
externalObjects: {} externalObjects: {}
mainObjectFileID: 112000000 mainObjectFileID: 112000000
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: 095694fbe19a89d19b8f9edf1a7517dc guid: df7df8e72d01ca447a72f3880447b069
TextureImporter: TextureImporter:
fileIDToRecycleName: {} fileIDToRecycleName: {}
externalObjects: {} externalObjects: {}
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: 4ddc10454fea2b1629f3b7cb07f4a166 guid: 5e6bbf338e9f0d64dbd778e74a413e1c
TextureImporter: TextureImporter:
fileIDToRecycleName: {} fileIDToRecycleName: {}
externalObjects: {} externalObjects: {}
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: 78a48f4d217ab4a69889f8786543cfe9 guid: 9b329950aa963c543b252530dce41212
TextureImporter: TextureImporter:
fileIDToRecycleName: {} fileIDToRecycleName: {}
externalObjects: {} externalObjects: {}
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: 0667c06d2d3ab2536916095b160d20de guid: 9d2bc9227fefac24e967211104e5d84d
TextureImporter: TextureImporter:
fileIDToRecycleName: {} fileIDToRecycleName: {}
externalObjects: {} externalObjects: {}
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: 3a6f795f59fc9305b8da6ed240f5c70a guid: fce77810c6eb1b44aa8162c0e2fb659b
TextureImporter: TextureImporter:
fileIDToRecycleName: {} fileIDToRecycleName: {}
externalObjects: {} externalObjects: {}
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: d95f9dec16a1b49da976b8d3307cb6ec guid: bdb35ab64f864654e94123ffbc912e32
TextureImporter: TextureImporter:
fileIDToRecycleName: {} fileIDToRecycleName: {}
externalObjects: {} externalObjects: {}
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: b6495c8c1212d7a27b70604a1bee35bf guid: 3e24a9fc56706f74db0b3f8c080da60d
TextureImporter: TextureImporter:
fileIDToRecycleName: {} fileIDToRecycleName: {}
externalObjects: {} externalObjects: {}
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: c6a463af7bc57c66f8196b74b6d60b05 guid: baa09639f8a14fc458cc4fdf6866a34c
TextureImporter: TextureImporter:
fileIDToRecycleName: {} fileIDToRecycleName: {}
externalObjects: {} externalObjects: {}
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: 5fde6af6ef09cca02a8b554e134e0961 guid: 420c1d11a054c7d42a1197b2d0a63f01
TextureImporter: TextureImporter:
fileIDToRecycleName: {} fileIDToRecycleName: {}
externalObjects: {} externalObjects: {}
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: c7bda3b7a1739dbc5b9879125dcfd7bc guid: 947f0efda1c3c3844b136562d9b19d07
TextureImporter: TextureImporter:
fileIDToRecycleName: {} fileIDToRecycleName: {}
externalObjects: {} externalObjects: {}
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: e865dc929d693fcf4ad0be83cd50e727 guid: 074c1ae042b49a8478e13799828bc926
TextureImporter: TextureImporter:
fileIDToRecycleName: {} fileIDToRecycleName: {}
externalObjects: {} externalObjects: {}
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: 4d12cabf3d528601991feeee817152a9 guid: 8d9c98c3893017646b35c1c29c5b6efd
TextureImporter: TextureImporter:
fileIDToRecycleName: {} fileIDToRecycleName: {}
externalObjects: {} externalObjects: {}
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: 635141daeae25ac8783bbeea7af88d06 guid: b3c94d4f837c001478adb95c12b5880c
TextureImporter: TextureImporter:
fileIDToRecycleName: {} fileIDToRecycleName: {}
externalObjects: {} externalObjects: {}
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: 11a92a4ff863cc56e84430c68f3795ce guid: d70604d5413803144b3e441945d89a5e
TextureImporter: TextureImporter:
fileIDToRecycleName: {} fileIDToRecycleName: {}
externalObjects: {} externalObjects: {}
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: 2adfa0a0efde7db6f9502ae5eb537eb8 guid: ff629454fa2d6b348a2c1bd7339627ee
TextureImporter: TextureImporter:
fileIDToRecycleName: {} fileIDToRecycleName: {}
externalObjects: {} externalObjects: {}
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: 850120a0b87a15d0a85cbda003c9fafd guid: a246f5627db107a4bb5a291d54144385
TextureImporter: TextureImporter:
fileIDToRecycleName: {} fileIDToRecycleName: {}
externalObjects: {} externalObjects: {}
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: 6a5f7d073dc42a046be9937f89da847c guid: fbeb1bb0a6c5e604f90579963b3e661c
TextureImporter: TextureImporter:
fileIDToRecycleName: {} fileIDToRecycleName: {}
externalObjects: {} externalObjects: {}
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: cc67f41be740b8441b2e7ea34b79fe4d guid: cbaa8972375b3b84597cfdf974790398
TextureImporter: TextureImporter:
fileIDToRecycleName: {} fileIDToRecycleName: {}
externalObjects: {} externalObjects: {}
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: e7dbf59ba372f8a87b7d8954804229e3 guid: 1ebe0d279b223114f9d88931c32dd0bb
TextureImporter: TextureImporter:
fileIDToRecycleName: {} fileIDToRecycleName: {}
externalObjects: {} externalObjects: {}
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: 1b82360eb19d0ed1aa793b23c5f7652a guid: 24ad001f41be2344d904b809e3158e4d
TextureImporter: TextureImporter:
fileIDToRecycleName: {} fileIDToRecycleName: {}
externalObjects: {} externalObjects: {}
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: 8786fc418ca0d4d9298cd33202fbbd8f guid: 12b321e14436be4429ee1f29d726f0fa
TextureImporter: TextureImporter:
fileIDToRecycleName: {} fileIDToRecycleName: {}
externalObjects: {} externalObjects: {}
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: 51f38a4c8be0b31b8ac2099dc2e1b479 guid: 547d13a0491f36740a131ba9094eb176
TextureImporter: TextureImporter:
fileIDToRecycleName: {} fileIDToRecycleName: {}
externalObjects: {} externalObjects: {}
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: c915a70b38721be199a31ae9cf121655 guid: bbd6a87b928243d4e95dae9e6b617c2c
TextureImporter: TextureImporter:
fileIDToRecycleName: {} fileIDToRecycleName: {}
externalObjects: {} externalObjects: {}
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: d23abe06e3b22a864a926dc92803df3e guid: e19d1591fe9a7b24fb6e28675605c739
TextureImporter: TextureImporter:
fileIDToRecycleName: {} fileIDToRecycleName: {}
externalObjects: {} externalObjects: {}
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: 7f51ac6a5dfe8a318af2ba6cbfd98b9a guid: b190e7f561a3f9045bb6bf35974f25b1
TextureImporter: TextureImporter:
fileIDToRecycleName: {} fileIDToRecycleName: {}
externalObjects: {} externalObjects: {}
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: 2e8c5403c05df723bb91d3c9be526575 guid: 2e2fb1f534aa1954290e42385e48c74f
TextureImporter: TextureImporter:
fileIDToRecycleName: {} fileIDToRecycleName: {}
externalObjects: {} externalObjects: {}
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: 3d488ca7a12ad6c7d9fdc4620caba470 guid: 5ae09b0762648fd4782eec0ceed62d99
TextureImporter: TextureImporter:
fileIDToRecycleName: {} fileIDToRecycleName: {}
externalObjects: {} externalObjects: {}
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: d4257a12518044e90b356773a75df67d guid: 7e7f853dfafd11244ab03796a2f08e66
TextureImporter: TextureImporter:
fileIDToRecycleName: {} fileIDToRecycleName: {}
externalObjects: {} externalObjects: {}
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: 02da994fc855929429bb0583a718c9f2 guid: c4780c8dca62c8c42b297db5bb1d2fc9
TextureImporter: TextureImporter:
fileIDToRecycleName: {} fileIDToRecycleName: {}
externalObjects: {} externalObjects: {}
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: f7b8bf254ec3d7404bcec13c3b79cbc1 guid: 9d31d4ca831386b4fb6af7aa0294a6b3
TextureImporter: TextureImporter:
fileIDToRecycleName: {} fileIDToRecycleName: {}
externalObjects: {} externalObjects: {}
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: 1fcc28db04cb2f7f995507973e8faba2 guid: 936e6d6f23e71b444b2d03bb29e7cff7
TextureImporter: TextureImporter:
fileIDToRecycleName: {} fileIDToRecycleName: {}
externalObjects: {} externalObjects: {}
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: 3409d71861a0fa59392b05f15089afae guid: 74d5043920d81ad4ca84945becc1c202
TextureImporter: TextureImporter:
fileIDToRecycleName: {} fileIDToRecycleName: {}
externalObjects: {} externalObjects: {}
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: ed1af9cc569a76d1ca89fff0f10b6660 guid: a62ed2d1279a194478cc36c00fe37168
TextureImporter: TextureImporter:
fileIDToRecycleName: {} fileIDToRecycleName: {}
externalObjects: {} externalObjects: {}
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: 8e9e554976174f03eafb6590679fd00b guid: b6cdbd965e2d6694b837da84a547c1ea
TextureImporter: TextureImporter:
fileIDToRecycleName: {} fileIDToRecycleName: {}
externalObjects: {} externalObjects: {}
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: 55813c272ac52ba11a74661b6d89ec50 guid: f8895b414d7c3e24fb97f65a9bf1c7a2
TextureImporter: TextureImporter:
fileIDToRecycleName: {} fileIDToRecycleName: {}
externalObjects: {} externalObjects: {}
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: 6e95a26fc2387afc99fea8ae8d9638d1 guid: 7b1c2602275e7b84696e08e674f6404c
TextureImporter: TextureImporter:
fileIDToRecycleName: {} fileIDToRecycleName: {}
externalObjects: {} externalObjects: {}
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: b0d8611f1ed82dd6a9545887bd35f1fb guid: 7bcb4623d9d040949a0b471fa7c898eb
TextureImporter: TextureImporter:
fileIDToRecycleName: {} fileIDToRecycleName: {}
externalObjects: {} externalObjects: {}
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: e40c0b34422856a84b555d1b650a1361 guid: 995df38cb6cdd7640838681a5fe5d71b
TextureImporter: TextureImporter:
fileIDToRecycleName: {} fileIDToRecycleName: {}
externalObjects: {} externalObjects: {}
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: 06d9414eae5d1429e82cda28fb23fe89 guid: c858d4b6bcd3c614fa61cb1ac4131047
TextureImporter: TextureImporter:
fileIDToRecycleName: {} fileIDToRecycleName: {}
externalObjects: {} externalObjects: {}
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: 92a8f1255c1ef1b438040e41e488466d guid: c4dd0e0e762c6c34db73c0f6cc861739
TextureImporter: TextureImporter:
fileIDToRecycleName: {} fileIDToRecycleName: {}
externalObjects: {} externalObjects: {}
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: 4360af4867ec3f1d2aed13d0a1f5d782 guid: d115f49ac85204f4584361a3dd562b95
TextureImporter: TextureImporter:
fileIDToRecycleName: {} fileIDToRecycleName: {}
externalObjects: {} externalObjects: {}
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: 16a0c93a2222719a9b684542146113e2 guid: ef4d9978fb50ff54fbd4349e8c698992
TextureImporter: TextureImporter:
fileIDToRecycleName: {} fileIDToRecycleName: {}
externalObjects: {} externalObjects: {}
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: b04db9c236788d478936aad01783aa59 guid: cd5af48726949c143a91d73160b91452
TextureImporter: TextureImporter:
fileIDToRecycleName: {} fileIDToRecycleName: {}
externalObjects: {} externalObjects: {}
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: 418395b7769bcc5ae9da235880c6fb3c guid: 71dc85a8288f29b47aa433c7e4e6f47c
TextureImporter: TextureImporter:
fileIDToRecycleName: {} fileIDToRecycleName: {}
externalObjects: {} externalObjects: {}
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: 0fe33410bbfcc4590940251a6b6e586a guid: 9f1a8385b84bf2a43b95e9ea86e8a208
TextureImporter: TextureImporter:
fileIDToRecycleName: {} fileIDToRecycleName: {}
externalObjects: {} externalObjects: {}
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: 300d90c11d95c4fc889bbcccf8cb89eb guid: 33674c5088db2b943926772a2f49af5d
TextureImporter: TextureImporter:
fileIDToRecycleName: {} fileIDToRecycleName: {}
externalObjects: {} externalObjects: {}
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: 723b9e7c2c20a64eeae37174ee03426f guid: a1f6c237ca24b414e99c66a76bdcd8f8
TextureImporter: TextureImporter:
fileIDToRecycleName: {} fileIDToRecycleName: {}
externalObjects: {} externalObjects: {}
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: 978913700f70389d8865defd60592a48 guid: c81334509ada36c40b44859220b64f93
TextureImporter: TextureImporter:
fileIDToRecycleName: {} fileIDToRecycleName: {}
externalObjects: {} externalObjects: {}
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: 0058f9116ccef379bbfe4b26a4ad2163 guid: 334c06965c16b0b4b97ee2cd53274130
TextureImporter: TextureImporter:
fileIDToRecycleName: fileIDToRecycleName:
8900000: generatedCubemap 8900000: generatedCubemap
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: d95b5e49839d84ee191c3c6961b60124 guid: 0630c33ca2bb3714f928a7966b1b00f7
NativeFormatImporter: NativeFormatImporter:
externalObjects: {} externalObjects: {}
mainObjectFileID: 13400000 mainObjectFileID: 13400000
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: b24f006dd77a94f649454da633b6e015 guid: cade7dca76898d64ea3ae48d509acb8a
PrefabImporter: PrefabImporter:
externalObjects: {} externalObjects: {}
userData: userData:
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: 978f2579079bb4d1a8a107f243d50576 guid: ac1711b0d37f95c4996a5fee1f25a9b6
TextScriptImporter: TextScriptImporter:
externalObjects: {} externalObjects: {}
userData: userData:
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: 12e2b00b74af245668cd1585ccc38320 guid: 37a8c1115a9d76a4cbceaad24c6622bd
folderAsset: yes folderAsset: yes
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: ab6c20591d30b4a15a38bef4b6078b9f guid: 32c983a3480a23c45a97ac42e55b7962
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: 57d23153e8a364f379241122438b5cc2 guid: 5a9970e6c306ab24fb654af5e29d2fa3
ModelImporter: ModelImporter:
serializedVersion: 22 serializedVersion: 22
fileIDToRecycleName: fileIDToRecycleName:
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: 5fa95b0e838084b6fb77a2625dbc1945 guid: da6d90df91e4f7148919f3feed67ca2c
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: 2bdb67dd109374a0cb46d1c3f285d23d guid: 7a492293769e9484fbf987e3a12f62f3
ModelImporter: ModelImporter:
serializedVersion: 22 serializedVersion: 22
fileIDToRecycleName: fileIDToRecycleName:
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: 8f6be6ed826c84b0781fd791c7ab1b21 guid: 73a0fb505d193574cb4ba4be3aa173d5
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: 67c19608083624fca91e4b6da4f20740 guid: 3ebcd57dfd725404da39dcce8599b0ec
ModelImporter: ModelImporter:
serializedVersion: 22 serializedVersion: 22
fileIDToRecycleName: fileIDToRecycleName:
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: 82dd0eaca7fff4036ae03ccb3b589368 guid: 9b0c9caf3fe659e4dbd817a6ca30edb7
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: 09e64466acbe94caf9b481b85cd65501 guid: d3b70926c4009ba46b21243e816be9ed
ModelImporter: ModelImporter:
serializedVersion: 22 serializedVersion: 22
fileIDToRecycleName: fileIDToRecycleName:
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: fa8a8dd48ab08443db52fbd02e2cb584 guid: 86958bfc7561c7847a4ad677afbf0e72
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: 2c9905fc8f65a4003856f80c2d000216 guid: d17bae4b797e7e34e83f842c78cffd73
ModelImporter: ModelImporter:
serializedVersion: 22 serializedVersion: 22
fileIDToRecycleName: fileIDToRecycleName:
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: 4225ea3ad69c24b098771cba940d4113 guid: 90b8936582f13a8428a48f4f8014afdd
folderAsset: yes folderAsset: yes
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: 6e0fb6e087e4c4da5bca85363e48fce3 guid: 55af06b2ecfa12040b516de17f727bb2
folderAsset: yes folderAsset: yes
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: 43d762c2da98848399d80e0b72a9e554 guid: c2f62e466d337c5478bb440650743d71
NativeFormatImporter: NativeFormatImporter:
externalObjects: {} externalObjects: {}
mainObjectFileID: 0 mainObjectFileID: 0
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: 675468da4c3634b139f2109a30b5a04a guid: aacaa5e65d7d796418771eb462d4b101
NativeFormatImporter: NativeFormatImporter:
externalObjects: {} externalObjects: {}
mainObjectFileID: 0 mainObjectFileID: 0
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: d2e97f90587c2409cbb4ab4a12d17326 guid: c9f2ab30dab9ada45923c51ca73abfff
NativeFormatImporter: NativeFormatImporter:
externalObjects: {} externalObjects: {}
mainObjectFileID: 0 mainObjectFileID: 0
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: ed96969b0cf0b4413b279284eb907496 guid: 68977c93f26b4d749b2f9b243291a3d8
NativeFormatImporter: NativeFormatImporter:
externalObjects: {} externalObjects: {}
mainObjectFileID: 0 mainObjectFileID: 0
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: d2b5ea14a70ce46bba6a984dfe8ae350 guid: 019affd141c324748a06f773e2599784
NativeFormatImporter: NativeFormatImporter:
externalObjects: {} externalObjects: {}
mainObjectFileID: 0 mainObjectFileID: 0
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: 8bf2efa4d09a54f859f356463f2fe061 guid: ad50fcd77a474504796a0edf7b1a4006
NativeFormatImporter: NativeFormatImporter:
externalObjects: {} externalObjects: {}
mainObjectFileID: 0 mainObjectFileID: 0
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: 0fac9eb970e354c57a229e9573919884 guid: 454f3bcf702991e4798f03c79d317f73
NativeFormatImporter: NativeFormatImporter:
externalObjects: {} externalObjects: {}
mainObjectFileID: 0 mainObjectFileID: 0
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: 780556afed5454c5b922a4095e9bed3a guid: ea456504a8233e349927e2074342f60a
NativeFormatImporter: NativeFormatImporter:
externalObjects: {} externalObjects: {}
mainObjectFileID: 0 mainObjectFileID: 0
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: 1ed98b14d8dfd4e6cab19727f93f4ee9 guid: 0510bebf6e69ec742bfede5f0445b701
NativeFormatImporter: NativeFormatImporter:
externalObjects: {} externalObjects: {}
mainObjectFileID: 0 mainObjectFileID: 0
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: c124dac8d5ea94993a82ac30d0f9d334 guid: 5a211b1d42c777947a587996df33b2df
NativeFormatImporter: NativeFormatImporter:
externalObjects: {} externalObjects: {}
mainObjectFileID: 0 mainObjectFileID: 0
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: 8e4b871f5d20842fbafceb61e90e35b5 guid: 963e6f74c60c79f4fbc91f87c8194eaf
NativeFormatImporter: NativeFormatImporter:
externalObjects: {} externalObjects: {}
mainObjectFileID: 0 mainObjectFileID: 0
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: dbc957e2aa9e348bcba826991bac645b guid: 88057d003948c2d4aa9fd44785d13b26
NativeFormatImporter: NativeFormatImporter:
externalObjects: {} externalObjects: {}
mainObjectFileID: 0 mainObjectFileID: 0
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: 1d5a2cb545ca946d791c3d186e515998 guid: a925b7a1b901ae34f87b5064f8370b31
NativeFormatImporter: NativeFormatImporter:
externalObjects: {} externalObjects: {}
mainObjectFileID: 0 mainObjectFileID: 0
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: 787c98110ee5c42579f1f91d0775b7c8 guid: ba81e9950afcae246961e139b7b22180
NativeFormatImporter: NativeFormatImporter:
externalObjects: {} externalObjects: {}
mainObjectFileID: 0 mainObjectFileID: 0
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: 98e023dfd37f244d886fd52f8c57fe97 guid: 69e578bd417a25d4b8843fd8bfb9213f
ModelImporter: ModelImporter:
serializedVersion: 22 serializedVersion: 22
fileIDToRecycleName: fileIDToRecycleName:
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: 1e0df56b5ca894ea7ba0c84036f31b6f guid: a8860c129c94ee143969ed2f498e6399
ModelImporter: ModelImporter:
serializedVersion: 22 serializedVersion: 22
fileIDToRecycleName: fileIDToRecycleName:
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: 7a919246d935a40519db05b590422953 guid: e4e2b31b389195c438903f6bf148e0e1
ModelImporter: ModelImporter:
serializedVersion: 22 serializedVersion: 22
fileIDToRecycleName: fileIDToRecycleName:
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: 3b6f5f909be8e4bd0af997c2c6779d22 guid: d7e397a0c228cc449bcd7f16d4908b87
ModelImporter: ModelImporter:
serializedVersion: 22 serializedVersion: 22
fileIDToRecycleName: fileIDToRecycleName:
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: 9b40a93cd2e4944409023a7bc461d9a3 guid: c4396e28dc4444241991eb088190f987
ModelImporter: ModelImporter:
serializedVersion: 22 serializedVersion: 22
fileIDToRecycleName: fileIDToRecycleName:
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: 4647e0c8c427641fb9f80b944a61b948 guid: 0946437442c1c474cbf19d3150a4b5ec
ModelImporter: ModelImporter:
serializedVersion: 22 serializedVersion: 22
fileIDToRecycleName: fileIDToRecycleName:
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: 56cdd4f18f2d24cdda05105d3ae565da guid: 0a77db86000f74b4daf4e6f0c31a1996
ModelImporter: ModelImporter:
serializedVersion: 22 serializedVersion: 22
fileIDToRecycleName: fileIDToRecycleName:
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: ef61208449dcd47e6a5425cd02669c29 guid: 12caa7a1f91b9f248ae52dabedab672d
ModelImporter: ModelImporter:
serializedVersion: 22 serializedVersion: 22
fileIDToRecycleName: fileIDToRecycleName:
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: 16a275b0a87384bf2b17ee340f695b9b guid: 7b2c1c169b68e1a44a1cadb07c5a1f66
ModelImporter: ModelImporter:
serializedVersion: 22 serializedVersion: 22
fileIDToRecycleName: fileIDToRecycleName:
......
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment