-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathTest.asset
More file actions
6547 lines (6547 loc) · 250 KB
/
Copy pathTest.asset
File metadata and controls
6547 lines (6547 loc) · 250 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!114 &11400000
MonoBehaviour:
m_ObjectHideFlags: 0
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: 23ab6792f3dae4170a95384b2819a6e6, type: 3}
m_Name: Test
m_EditorClassIdentifier:
assetData:
- assetPath: Assets/Plugins/ExternalAssets/Systems/LunarConsole/Editor/iOS/Common/Controllers/Actions
guid: 45829000c9dc8d54194f3dd12b071e35
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/UnityPurchasing/Bin/unitypurchasing.bundle/Contents/MacOS/unitypurchasing
guid: caaf8410df6c3419b946f344b83a2cf7
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/kogane-unity-lib-master/Scripts/Common
guid: 07c54d102f95c6c419c1748b29cde138
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Resources/Data/AI
guid: 922cb020bab97984fa11fc758ba4e66a
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Resources/Data
guid: 3da76920d362e3b4dba310285bd630eb
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/UnityPurchasing/iOS
guid: b722e2504dd3140409a9beb9c8d1b6b6
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/UnityPurchasing/winrt
guid: 42c41b5080c6ac04bab1ab27a3be4040
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/MessagePack/Scripts/T4
guid: 6ebb0c70692cbbf409849784cb201b36
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Resources/Data/Item
guid: ce806fa06bb0f804784525583aebaa16
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/LunarConsole/Resources
guid: 694891d081780674dabac6503acd92d6
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Scripts/System/Data/CSV/Advertisement
guid: 99357fd0a9f77b44cb4d677bb31cd3fe
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/LunarConsole/Editor/iOS/Common/UI
guid: 3504a8f0558eefc47be37dfb749a8387
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/UDP/Android
guid: 787abbf0358e3455290d9b4a88ad645f
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Scripts/System/Audio/Base/Source/Base
guid: ce61d9214abd56d438f4baf74b61761a
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/LunarConsole/Editor/iOS/Common/Console/Plugin
guid: 3c659c215816c0347bc57303fbaa598e
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/kogane-unity-lib-master/Scripts
guid: ec61f7411c6026047838c02f86c5bdda
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/MessagePack
guid: b35a97510bf34d4488e07357b41e68ca
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/UniRx/Scripts/Schedulers
guid: ff1f0851e15ceca48bb3f06d7e6b1465
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/LunarConsole/Editor
guid: 4055c1713e3184ac68a3c290a69058cf
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/LunarConsole/Editor/Legacy
guid: b0cb1771d92263149a49b077f292ff74
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/UnityPurchasing/Bin/Tizen/live
guid: cbe59f71db68a4af7a43e37bbcf14fe7
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/UnityPurchasing/Editor
guid: beabab81fac9c4cfeb330a7a850aeccc
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/UniRx/Scripts/Subjects
guid: 39a23891f0ba5374f989dd21a5479db2
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/UDP
guid: 823e62b1e45614dd6a39a7c6d4110275
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Scripts/System/Extension/UnityName
guid: a3a282b1755657047b872ca3071357b8
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/UnityPurchasing/Bin/unitypurchasing.bundle/Contents/MacOS
guid: c6c506c19d15649dda233e2bc931a85b
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/ScriptingDefineSymbolsEditor/Scripts/Constants
guid: 800ea0f19bd2f402b9fa9e25508820f6
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/UniRx/Scripts/Operators
guid: c46912f1fb220d34696c165a54110991
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/UnityPurchasing/Bin/Apple
guid: 8b550e22baed642678ae5f13680bf467
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Scripts/System/Debug
guid: 4fc896329b406a544a8cb781e9025025
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/UniRx/Scripts/Asynchronous
guid: ba543872fbcf4674984149aec2f5477b
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/LunarConsole/Editor/iOS/Free/Controllers/Actions
guid: 9a3c3ea235defbe42845e9757144dc56
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Scripts/System/Data/Base
guid: df64d1b22b432914d93cc111f21933bb
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Scripts/System/Data/File
guid: f348f0c25866f244898f5e7964a4b2b6
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/MessagePack/Scripts/Resolvers
guid: b42533c2a2c1e24489584bde7a97340e
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Scripts/System/Extension/GameObject
guid: 131aadc201737454d8869c333d85f0cd
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/UniRx/Scripts/Notifiers
guid: 74eb86f21a5c1e942b5ab6eb8a0a1b13
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/UDP/Editor/Analytics
guid: a874fc03625594195b682deef5bc1278
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity
guid: 386fcb138bdcc0c4fbec0d89c5ac276e
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/UnityPurchasing/scenes
guid: 035be42301656bf47a869a7e578aa67a
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/UniRx/Scripts/Disposables
guid: f446e523a11d6b44bb259cdf035c1b26
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/UniRx.Async/CompilerServices
guid: 287d1a6302ce83443bd3f4418948589c
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/UniRx.Async/Triggers
guid: 7afa2b83be8538e4988f55960f061f93
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/MessagePack/Scripts/Formatters
guid: c076f2a37d7f6e440a8655358c3f076c
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/UnityPurchasing/Bin/Facebook
guid: bb9f4db32eaee4b1aa8f04859aadf81b
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/LunarConsole/Editor/iOS/Free/Console
guid: 60590ac3a95b10745b30f3eb4d01d024
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Scripts/System/FSM/Test
guid: af0d0bc36681d2c4697e0d74ab9a36e1
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Scripts/System/Extension/UnityName/Base
guid: 517d15f3b39b64e40aea5c66efd94f18
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Scripts/System/Audio/Test
guid: 11bd5f24b7fc9ae4e87f0cea7aeec486
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Resources
guid: da17ef24c3ed83948992a30981e3f7b9
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/LunarConsole/Editor/iOS/Free
guid: ef160d3403eb3bd48bccffe85ad938ea
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Resources/Audio/BGS
guid: 82e7d5648cb6a344087071d285db2c79
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/MessagePack/Scripts
guid: 1c03466427a73eb47901038e9f920ce2
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/UniRx/Scripts/UnityEngineBridge/Triggers
guid: f5be686462325a142a1b13510dd585bd
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Textures
guid: ae808674b5b761f4fb5bcf69257b9a5d
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems
guid: 84803974f71d6524faad8599feb32b1c
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/ReferenceViewer
guid: 1fc306943dc95934999f78b152389aa0
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Scripts/System/Data/CSV
guid: 62928fa4b25ea3a45b3860860e8122f5
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Resources
guid: e46b78e46ed5e5145baf168761d49959
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Resources/Audio/Jingle
guid: b1178ef403b256543ae4a52be01599d2
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/LunarConsole/Editor/iOS/Common/Controllers/Popup
guid: 0b37d505e913bd64cb1e1e043fab0301
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/UniRx/Scripts/System
guid: 1116dc25b63d90b458af1e600d8d530e
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/UnityPurchasing/Bin/Facebook/live
guid: ead96b655a23b462591a679e7ff10799
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/UniRx/Scripts/UnityEngineBridge/Operators
guid: 50315a756943cbd409dc6a6195a8409f
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/LunarConsole/Scripts/Utils
guid: b9837f95f6e094d2d9530d6d7d6eb134
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Scripts/System/Data/Save
guid: ca20a9a5b657cd14b8f38b01f0f051a4
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/LunarConsole/Editor/iOS/Common/Controllers/Misc
guid: f0f941c5ea93d0f4aaf6dccba731eff1
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Scripts/System/Audio/Base/Source
guid: 2e7a15d510ce5be4a9ece44cac495a50
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Scripts/System/FSM/Base
guid: c59825e528539d74b8f6c9ccd3c442f7
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/UnityPurchasing/Bin/Security
guid: 88cb58f5be85146488a7d6c3b661acce
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/LunarConsole/Editor/iOS/Common/Console
guid: 41e230160eae9374a88611f476cb987e
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Scripts/System/Data/CSV/Server/Application
guid: 59588a16964005949a76043ee44e320d
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Scripts/System/Data/File/Loader/Base
guid: 02d1f546d1855f24da6ccefeba86fda4
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/ScriptingDefineSymbolsEditor
guid: 23a5a266492f4cb47b820f099008cc2f
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Sample
guid: cc2c2c765d21c8f43986d7b7213f00ba
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/DOTween/Editor
guid: 4b4144b67d2b03f4fb607e33d8dea57e
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/UniRx/Scripts/UnityEngineBridge/Toolkit
guid: 0e4cceb67fa847f408b035a7a9e167da
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Scripts/System/Extension/Math
guid: 0e2293c6282522b449c139dd212550a8
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/UniRx/Scripts/UnityWinRTBridge
guid: 2559f6c6e0ee81942a7803b57828e014
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/UniRx
guid: 2021e0d67c6c00a4b80df25037634980
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/UniRx/Scripts/Tasks
guid: 9445c5d609e449e499ba2f082b8eb636
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/UnityPurchasing/Bin
guid: fb76a9d6cd0934352b92deebf8ab8074
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Scripts/System/Process
guid: c83e57e60bfe2714f8d370ba8ee66d17
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Scripts/System/Singleton
guid: 17489b17289ca9047a6b9358b5051f7f
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/MessagePack/Scripts/LZ4
guid: f99446275fae70f4898469688c50d29b
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/LunarConsole/Scripts
guid: 9ec3db27f4ce9484b9b6bdb042024cc9
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Scripts/System/Audio
guid: 0f093937f4ce1064a8047d8db7121df0
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Scripts/System/Data/Save/Setting
guid: 056acc679adb7b548be7d017330a3da1
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/LunarConsole/Editor/iOS/Common
guid: cf421b87f5fa8a6499ebe7e1e568e9c5
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/UnityPurchasing
guid: 2628f297056214eb5bfc03285c5c8e77
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Resources/Audio/BGM
guid: 30b9cd9750a96ae4aace0fbd8f85541c
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/LunarConsole
guid: 9e8443c772928476e938890ee8ea2959
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Scripts/System/Data/CSV/Command/AI/AICommand
guid: fe16a4c7f696c344786f509a75fa19f8
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/kogane-unity-lib-master
guid: 8ba004084dda6834ea06384a76cdf67e
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Scripts/System/Extension/Data/RawData/Base
guid: 6ac30d08a7f7f644ca0ced3ce26be203
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Scripts/System/Data/Save/ServerCache/CacheData
guid: d048c6289a8c21043836f9cdffaaf3bc
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/UnityPurchasing/Bin/Security/live
guid: 9dc8e7589c2d8425d8eaa71ddef59033
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Resources/Audio
guid: 565d9f6845f435d47a3b4f96903d10aa
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Scripts/System/Data/File/Test
guid: 0c08f878dc6a3ca4a8618cf1ecb2d0d3
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/UniRx.Async/Editor
guid: 677ef9989a099da469da5fffea385a40
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Scripts/System/Audio/Base/Manager
guid: c0bc3d98306ba514db39e53e506dce50
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/ReferenceViewer/Editor/AssetData
guid: d3d8c1c8e1bb44d869085cfc4731fe16
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/DOTween/Editor/Imgs
guid: 85e102e8a13664b41addf9487814208d
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Scripts/Main
guid: ba8e26f88b722ee4cbd37e250d5b1ffa
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Scripts/System/Data/Save/Base
guid: db470409c7b0fe047ae6c96e8ddf57a7
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Sample/Scenes
guid: 8637ba094a6382f4a97517794fb2ba55
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/LunarConsole/Editor/iOS/Common/Console/Entries
guid: 214a2149860c0b740ba03dc79647330f
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Scripts/System/Data/CSV/Command/Base
guid: 5a75c549e1590cd41b54a00a79dc4034
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/MessagePack/Scripts/Unity/Extension
guid: f7ba4649ed2cb0a46bfcd1188142108a
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Resources/Data/Word
guid: c670615935d9fa24e8c386440811b89b
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Scripts/System/Utility
guid: e4a46b692adfe44459369d265c48b148
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/kogane-unity-lib-master/Scripts/Extensions/UI
guid: 27b269893fb7bd34c9d2c8a9d4d01876
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Scripts/System/Extension
guid: 7b9df989cada4274d8ad7b494a2d207e
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/DOTween
guid: 401f55a972e3bdf41b5375f6c1e01104
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Scripts/System/Data/CSV/Command/Word
guid: c479c1c9e93225643a5bcedb261ca797
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Scripts/System/Process/Base
guid: 9bc692c942bc296499e482b8a2eeb31a
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Scripts/System/Extension/Data
guid: 28a273c9618919f4394c345d94041c31
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/LunarConsole/Editor/iOS/Common/Console/Log
guid: 3c6755c9d2ff44e4fb8968f74ce25c50
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Scripts/System/Data/CSV/Server
guid: 01afece93b6644940bc41c76b79828d2
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Scripts/System/Data/CSV/Server/Base
guid: 4741a6f9f825ae54386857f79d0e6e42
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/LunarConsole/Editor/iOS/Free/Controllers
guid: a11c4e1a93cc57c429dc4ac2109a85eb
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Scripts/System/Data/CSV/Item
guid: 2452453a30a392d4e957938179fceeaf
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/UnityPurchasing/Bin/unitypurchasing.bundle/Contents/Resources
guid: cdd7ff4a854bc4e53920d957a25e65ef
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/LunarConsole/Editor/iOS/Free/Console/Plugin
guid: de69575a0f38fc64089271907acff0c6
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Scripts/System/Data
guid: e77a5a5a67209654696da8418cf95b4a
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Scripts/System/Debug/Log
guid: 219f2b5a3dec4b74b9674005f3e63f9c
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/UniRx.Async/Internal
guid: 775a0c6adde84b8438388bb7b23917d4
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/UDP/Editor
guid: 97ccb67a296be4aaa984fc5994af9c8d
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/ReferenceViewer/Editor
guid: 95201b8af8a5e3149a4b5726f2f62f58
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/UniRx/Examples
guid: 80f301ca04601fb4f94bf64cc0f68e92
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/LunarConsole/Editor/iOS/Common/Controllers/Settings
guid: 04ec07ea42ddc9145bf1cf79e11013f9
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/LunarConsole/Editor/iOS
guid: db49f60b6307eab4ba21b7c597b0805d
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Scripts/System/Process/Coroutine
guid: 2b765b0be55ef7542949c7870a083655
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/MessagePack/Scripts/Annotations
guid: 3e50971b8cab9ff4faf1fc38a1f388a0
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/LunarConsole/Editor/iOS/Common/Controllers
guid: 494ccd1bca653a54b84f0b6da7a38e5d
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/DOTween/Modules
guid: 319e3d2bcd2cef541b208291f6b9dc67
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Scripts/System/Debug/Log/Assembly
guid: 911ff53b4a106854fa4baab96407e7fd
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Scripts/System/Data/Save/Play
guid: ae7d9d8b46bdf6346bb2a9efd264eeda
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/UnityPurchasing/winrt/live
guid: 495521eb1bee5ed42a0cf2ef0fd60c19
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Scripts/System/Extension/Data/RawData
guid: b1f8d3ebff806e048a5712220849c6fc
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Scripts/System/Extension/Decoration
guid: c176b9ebf59c7374f8f1fdf4ef851f42
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Scripts/System/FSM
guid: 5130eaebe02202b49a748365859a2cdf
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/LunarConsole/Editor/iOS/Common/Controllers/Warning
guid: 06e375fb2ff256f46a0825e1333cc1e1
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Scripts/System/Data/Save/ServerCache/ServerCacheData
guid: dab9d6fb359520d4b8baae6893767d0a
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Scripts/System/Extension/Decoration/Base
guid: 20ec0bfbcca0a2e48b4907a4da41cb3d
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/UniRx/Scripts
guid: fabaadfbbea257440b9bf7462a45f16a
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Scripts/System/Build
guid: 81d4d00c7cf00c747a00cde2c3424e89
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Scripts/System/Process/Test
guid: ee58220ca6f108345a791e5d67f18bbc
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Resources/Audio/Voice
guid: 26b95d0c38e351845a2f8fe88702634d
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Scripts/System/Data/File/Loader
guid: d054d51c813b8ff4aae1b5f42bbd508a
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/UnityPurchasing/Bin/Android
guid: 04a0a72cfa4884762822028e73128b14
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/UnityPurchasing/script/Demo
guid: 8be2aa4cc9fcb4eefab020afaee595d6
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Scripts/Test
guid: 8759745c500641144a302b90d8829cc4
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/LunarConsole/Editor/iOS/Common/Images
guid: 1c74a55cc81378b4d98fccea9bbbfe06
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/kogane-unity-lib-master/Scripts/Extensions
guid: 7a1ef85ceeb86d3419944dfd7cee92f9
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/UnityPurchasing/Resources
guid: a6e2108cc322a4feebe56b0d2787cf0c
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/ScriptingDefineSymbolsEditor/Scripts
guid: 19e9e48cf9b7d354ab4d920cea0f9fa6
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/UnityPurchasing/Bin/unitypurchasing.bundle/Contents
guid: c247da8cf131b41b4aa9adcb7b20f30c
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Resources/Data/System
guid: 08b85a9cc1ddd71498f8e99db2d20f02
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/UnityPurchasing/Icons
guid: 39bcd3ac60831463b9c857f2631befc6
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Scripts/System/Data/CSV/Base
guid: af910fac9090c3c40b6a1cacf0c9dffc
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Scripts/System/Data/Save/ServerCache
guid: 90b3f3bccdbcc8a4081eb6837e664a06
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/UnityPurchasing/Bin/Tizen
guid: b30771ccbae1546f0ac8811139470e41
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/UnityPurchasing/script
guid: 76591bccc88314c85897ba43a3f95bec
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/LunarConsole/Editor/Android
guid: f6e3240d58aab324aa0adaf90ee793f8
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/LunarConsole/Scripts/Actions
guid: 7c999e0d150a247abb9937afc61b3bfc
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/LunarConsole/Editor/iOS/Common/Utils
guid: 64b9273de412a9e4eb1560235613deb3
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Scripts/System/Data/CSV/Server/CM
guid: 6c58144d3b17a2244ae7c9b10b205546
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/MessagePack/Scripts/Internal
guid: 00f4195d331479d4e94b4b261b96dda9
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Scripts/System/Audio/Base
guid: acc48f5d57fbb524c80bd25a111a2291
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets
guid: 8b21268db832379469bbc217a6ca6e48
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/UniRx/Scripts/UnityEngineBridge/Diagnostics
guid: ad939b8dfca85a94685201210353c687
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Scripts/System/Data/CSV/Result
guid: 3184f29dea6677c4fab940840b7cfaf3
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/UniRx/Scripts/UnityEngineBridge
guid: 53771a9db541ecd4da1fd5b6cb7a8d7a
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/MessagePack/Scripts/Unity
guid: dc2cdabd656f8e14dbe29a9b50a7b4da
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/LunarConsole/Editor/iOS/Common/Controllers/Resize
guid: 61998bbd8b91b3c44b4c68727cb8b4e2
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Scripts
guid: 201a5addd5750fd499d5d2061ea83e5c
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/ScriptingDefineSymbolsEditor/Editor
guid: 44732bed3c0e9314b996941bebf05b6b
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/UniRx/Scripts/InternalUtil
guid: 523be1fda08215e4db8d6056f70caddd
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Resources/Audio/SE
guid: 8588a4fda7501624e90b8eb7057a67f0
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/ReferenceViewer/LICENSE
guid: a7ccac1e08cccc44d9b0d343248d7649
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Scripts/System/Data/CSV/Command/AI
guid: 41c64b2e232105b41bb0d589008becf6
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/LunarConsole/Editor/UI
guid: 734ebf2e216f64271b27dc62b5e92c14
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Scripts/System/UI
guid: a524e54eceb14874d9008536441a6214
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/DOTween/Resources
guid: 0f171c5ea972326449611fbb3ac5b8e5
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Scripts/System
guid: e55c4c6ef3b409e429b5e572f930b4f2
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/kogane-unity-lib-master/Scripts/Utils
guid: 5328ff8e5383b704092708411fe55297
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/ScriptingDefineSymbolsEditor/Editor/SymbolEditor
guid: 0033b6bec2484483c8599848db9ee231
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/UnityPurchasing/ETag
guid: 9b028cde5dab437479db9dcd6f4d1b36
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/LunarConsole/Editor/Automation
guid: d4e850fe7b6044182b4b5f3ec9836a11
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Scripts/System/Data/CSV/Purchase
guid: 9b403c5fe7b318941807fdce30d549bd
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Scripts/System/Scene
guid: d603739f7ae92df42a6ab2b8755a01e9
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins
guid: 0e92aaaf139606d429f1a0fa00776d61
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/LunarConsole/Scripts/Legacy
guid: b6b52baf9e1c79f40aa55a603da45876
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/SubmarineMirageFrameworkForUnity/Scripts/System/Data/CSV/Command
guid: 67d3acafe70db0d40bb790d9f8c70bb2
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/UnityPurchasing/Bin/Apple/live
guid: 9c487eaf8837d47f8a8a32397ad18cad
reference: []
subAssets: []
sceneData: []
- assetPath: Assets/Plugins/ExternalAssets/Systems/LunarConsole/Editor/iOS/Free/Controllers/Variables
guid: b5ef2dbf2ba4c8d4ab9be0fdce2f67f2
reference: []
subAssets: []
sceneData: []