优化ui,谱面替换,以及科研模糊
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 1e0aa569472d46246b3ba02f4f9e00f2
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,47 @@
|
||||
%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: 4d5a2e5cc69ece34faba0659b1b1d58d, type: 3}
|
||||
m_Name: RankConfig
|
||||
m_EditorClassIdentifier:
|
||||
baseScore: 1350000
|
||||
defaultSprite: {fileID: 21300000, guid: 17b11910f9586834c9a6498bf3d82d7f, type: 3}
|
||||
thresholds:
|
||||
- rankName: EASE
|
||||
thresholdPercent: 1
|
||||
rankSprite: {fileID: 21300000, guid: b655fb5d2fbc50d4aae689e5d560e980, type: 3}
|
||||
- rankName: SS
|
||||
thresholdPercent: 0.95
|
||||
rankSprite: {fileID: 21300000, guid: aea32035a52c6cd4e9450249679785f5, type: 3}
|
||||
- rankName: S
|
||||
thresholdPercent: 0.9
|
||||
rankSprite: {fileID: 21300000, guid: ad076cf7fd05ad543bffae7ade0cb30a, type: 3}
|
||||
- rankName: A
|
||||
thresholdPercent: 0.8
|
||||
rankSprite: {fileID: 21300000, guid: 86594eb83b6da0e45bdf258eb02d3a5b, type: 3}
|
||||
- rankName: B
|
||||
thresholdPercent: 0.7
|
||||
rankSprite: {fileID: 21300000, guid: 521b0de5679c4e443b1f8b3a044acc20, type: 3}
|
||||
- rankName: C
|
||||
thresholdPercent: 0.6
|
||||
rankSprite: {fileID: 21300000, guid: 56822bd778d96eb49ba31eb35f164069, type: 3}
|
||||
- rankName: D
|
||||
thresholdPercent: 0.5
|
||||
rankSprite: {fileID: 21300000, guid: 7df9558287709694a888743398e3fb3e, type: 3}
|
||||
- rankName: E
|
||||
thresholdPercent: 0.4
|
||||
rankSprite: {fileID: 21300000, guid: 85308a91d726ee54e84a2384baf1187c, type: 3}
|
||||
- rankName: F
|
||||
thresholdPercent: 0.3
|
||||
rankSprite: {fileID: 21300000, guid: 989584d7d2836774a9de80daf200e38f, type: 3}
|
||||
- rankName: UF
|
||||
thresholdPercent: 0
|
||||
rankSprite: {fileID: 21300000, guid: 17b11910f9586834c9a6498bf3d82d7f, type: 3}
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 951debb97a9b89f48885c82bb601533a
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 11400000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,49 @@
|
||||
using UnityEngine;
|
||||
using System.Collections.Generic;
|
||||
|
||||
[System.Serializable]
|
||||
public class RankThreshold
|
||||
{
|
||||
public string rankName;
|
||||
public float thresholdPercent;
|
||||
public Sprite rankSprite;
|
||||
}
|
||||
|
||||
[CreateAssetMenu(fileName = "RankConfig", menuName = "Config/RankConfig")]
|
||||
public class RankConfig : ScriptableObject
|
||||
{
|
||||
public float baseScore = 2000000f;
|
||||
public Sprite defaultSprite; // Equivalent to ufSprite
|
||||
|
||||
[Tooltip("Thresholds should be ordered from highest to lowest percent.")]
|
||||
public List<RankThreshold> thresholds = new List<RankThreshold>();
|
||||
|
||||
public Sprite GetRankSprite(float score)
|
||||
{
|
||||
if (score <= 0) return defaultSprite;
|
||||
|
||||
Sprite bestSprite = defaultSprite;
|
||||
float highestMatchingPercent = -1f;
|
||||
|
||||
// Ensure we handle baseScore correctly to avoid division by zero if we were to use percentages
|
||||
// But multiplying is safer as long as baseScore is set.
|
||||
|
||||
foreach (var threshold in thresholds)
|
||||
{
|
||||
if (threshold == null || threshold.rankSprite == null) continue;
|
||||
|
||||
float requiredScore = baseScore * threshold.thresholdPercent;
|
||||
if (score >= requiredScore)
|
||||
{
|
||||
// We want the threshold with the HIGHEST percentage that the score satisfies
|
||||
if (threshold.thresholdPercent > highestMatchingPercent)
|
||||
{
|
||||
highestMatchingPercent = threshold.thresholdPercent;
|
||||
bestSprite = threshold.rankSprite;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return bestSprite;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,2 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 4d5a2e5cc69ece34faba0659b1b1d58d
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: d5f8c54e2c0337a4081fdbe6f723c267
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Binary file not shown.
@@ -0,0 +1,23 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 6d81ad2ad45dc1248b96af4bc270e6ad
|
||||
AudioImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 8
|
||||
defaultSettings:
|
||||
serializedVersion: 2
|
||||
loadType: 0
|
||||
sampleRateSetting: 0
|
||||
sampleRateOverride: 44100
|
||||
compressionFormat: 1
|
||||
quality: 1
|
||||
conversionMode: 0
|
||||
preloadAudioData: 1
|
||||
platformSettingOverrides: {}
|
||||
forceToMono: 0
|
||||
normalize: 1
|
||||
loadInBackground: 0
|
||||
ambisonic: 0
|
||||
3D: 1
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: b09644edc3b77a34dac6de760310cb9f
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
+889
@@ -0,0 +1,889 @@
|
||||
{
|
||||
"version": "2.0.2",
|
||||
"title": "Beginning of Bansonic",
|
||||
"composer": "Bansonic",
|
||||
"illustrator": "Unknown",
|
||||
"charter": "Unknown",
|
||||
"beatmapId": "0",
|
||||
"duration": 126,
|
||||
"bpm": 160,
|
||||
"difficulty": 1,
|
||||
"difficultyName": "Normal",
|
||||
"createdDate": "2026-02-24 22:33:04",
|
||||
"lastSavedTime": "2026-02-24 22:39:56",
|
||||
"musicFile": "CFD.wav",
|
||||
"backgroundFile": "A Lake With Endless Stars.png",
|
||||
"noteAmount": 46,
|
||||
"globalDelaySeconds": 0.0,
|
||||
"globalGuidelinesAmount": 4,
|
||||
"enemyList_isEmpty": true,
|
||||
"colorSegments": [],
|
||||
"is_official": true,
|
||||
"remark": "",
|
||||
"noteStatistics": [
|
||||
{
|
||||
"colorType": "red_tap",
|
||||
"count": 6
|
||||
},
|
||||
{
|
||||
"colorType": "red_hold",
|
||||
"count": 2
|
||||
},
|
||||
{
|
||||
"colorType": "green_tap",
|
||||
"count": 6
|
||||
},
|
||||
{
|
||||
"colorType": "green_hold",
|
||||
"count": 0
|
||||
},
|
||||
{
|
||||
"colorType": "yellow_tap",
|
||||
"count": 8
|
||||
},
|
||||
{
|
||||
"colorType": "yellow_hold",
|
||||
"count": 6
|
||||
},
|
||||
{
|
||||
"colorType": "purple_tap",
|
||||
"count": 10
|
||||
},
|
||||
{
|
||||
"colorType": "purple_hold",
|
||||
"count": 0
|
||||
},
|
||||
{
|
||||
"colorType": "blue_tap",
|
||||
"count": 6
|
||||
},
|
||||
{
|
||||
"colorType": "blue_hold",
|
||||
"count": 2
|
||||
}
|
||||
],
|
||||
"trackStates": {
|
||||
"trackFading_active": false,
|
||||
"red": {
|
||||
"isOn": false,
|
||||
"fadeTime": 0.0
|
||||
},
|
||||
"green": {
|
||||
"isOn": false,
|
||||
"fadeTime": 0.0
|
||||
},
|
||||
"yellow": {
|
||||
"isOn": false,
|
||||
"fadeTime": 0.0
|
||||
},
|
||||
"purple": {
|
||||
"isOn": false,
|
||||
"fadeTime": 0.0
|
||||
},
|
||||
"blue": {
|
||||
"isOn": false,
|
||||
"fadeTime": 0.0
|
||||
}
|
||||
},
|
||||
"tracks": [
|
||||
{
|
||||
"color": "red"
|
||||
},
|
||||
{
|
||||
"color": "green"
|
||||
},
|
||||
{
|
||||
"color": "yellow"
|
||||
},
|
||||
{
|
||||
"color": "purple"
|
||||
},
|
||||
{
|
||||
"color": "blue"
|
||||
}
|
||||
],
|
||||
"notes": [
|
||||
{
|
||||
"time": 12.0,
|
||||
"trackIndex": 3,
|
||||
"color": "purple",
|
||||
"type": "tap",
|
||||
"length": 0.0,
|
||||
"barNumber": 9,
|
||||
"yPos": -268.5,
|
||||
"noteFunction": "",
|
||||
"noteid": "5f471839-0dce-4e47-a89a-9b81b1f0c286",
|
||||
"newLocation": {
|
||||
"bar": 9,
|
||||
"guidelineIndex": 0,
|
||||
"lengthGuidelines": 0,
|
||||
"isFree": false
|
||||
}
|
||||
},
|
||||
{
|
||||
"time": 15.0,
|
||||
"trackIndex": 3,
|
||||
"color": "purple",
|
||||
"type": "tap",
|
||||
"length": 0.0,
|
||||
"barNumber": 11,
|
||||
"yPos": -268.5,
|
||||
"noteFunction": "",
|
||||
"noteid": "a59b4e23-7366-4c94-b619-bb4007698451",
|
||||
"newLocation": {
|
||||
"bar": 11,
|
||||
"guidelineIndex": 0,
|
||||
"lengthGuidelines": 0,
|
||||
"isFree": false
|
||||
}
|
||||
},
|
||||
{
|
||||
"time": 18.0,
|
||||
"trackIndex": 3,
|
||||
"color": "purple",
|
||||
"type": "tap",
|
||||
"length": 0.0,
|
||||
"barNumber": 13,
|
||||
"yPos": -268.5,
|
||||
"noteFunction": "",
|
||||
"noteid": "5945e785-d708-41bb-a644-43a8fe2f6e21",
|
||||
"newLocation": {
|
||||
"bar": 13,
|
||||
"guidelineIndex": 0,
|
||||
"lengthGuidelines": 0,
|
||||
"isFree": false
|
||||
}
|
||||
},
|
||||
{
|
||||
"time": 21.0,
|
||||
"trackIndex": 3,
|
||||
"color": "purple",
|
||||
"type": "tap",
|
||||
"length": 0.0,
|
||||
"barNumber": 15,
|
||||
"yPos": -268.5,
|
||||
"noteFunction": "",
|
||||
"noteid": "8909217e-4097-4ce4-b58b-1c0f812b4afe",
|
||||
"newLocation": {
|
||||
"bar": 15,
|
||||
"guidelineIndex": 0,
|
||||
"lengthGuidelines": 0,
|
||||
"isFree": false
|
||||
}
|
||||
},
|
||||
{
|
||||
"time": 30.0,
|
||||
"trackIndex": 3,
|
||||
"color": "purple",
|
||||
"type": "tap",
|
||||
"length": 0.0,
|
||||
"barNumber": 21,
|
||||
"yPos": -268.5,
|
||||
"noteFunction": "",
|
||||
"noteid": "4a96caf4-7a8d-4278-8740-7b8cf8406652",
|
||||
"newLocation": {
|
||||
"bar": 21,
|
||||
"guidelineIndex": 0,
|
||||
"lengthGuidelines": 0,
|
||||
"isFree": false
|
||||
}
|
||||
},
|
||||
{
|
||||
"time": 33.0,
|
||||
"trackIndex": 1,
|
||||
"color": "green",
|
||||
"type": "tap",
|
||||
"length": 0.0,
|
||||
"barNumber": 23,
|
||||
"yPos": -268.5,
|
||||
"noteFunction": "",
|
||||
"noteid": "63c30c25-626f-47fe-b7df-1fa023ca558b",
|
||||
"newLocation": {
|
||||
"bar": 23,
|
||||
"guidelineIndex": 0,
|
||||
"lengthGuidelines": 0,
|
||||
"isFree": false
|
||||
}
|
||||
},
|
||||
{
|
||||
"time": 42.0,
|
||||
"trackIndex": 2,
|
||||
"color": "yellow",
|
||||
"type": "tap",
|
||||
"length": 0.0,
|
||||
"barNumber": 29,
|
||||
"yPos": -268.5,
|
||||
"noteFunction": "",
|
||||
"noteid": "280a0f9e-03a3-4e1c-a2d1-4495f1d59e41",
|
||||
"newLocation": {
|
||||
"bar": 29,
|
||||
"guidelineIndex": 0,
|
||||
"lengthGuidelines": 0,
|
||||
"isFree": false
|
||||
}
|
||||
},
|
||||
{
|
||||
"time": 45.0,
|
||||
"trackIndex": 2,
|
||||
"color": "yellow",
|
||||
"type": "tap",
|
||||
"length": 0.0,
|
||||
"barNumber": 31,
|
||||
"yPos": -268.5,
|
||||
"noteFunction": "",
|
||||
"noteid": "7c25399d-fb6b-4b33-bf69-bea20120f070",
|
||||
"newLocation": {
|
||||
"bar": 31,
|
||||
"guidelineIndex": 0,
|
||||
"lengthGuidelines": 0,
|
||||
"isFree": false
|
||||
}
|
||||
},
|
||||
{
|
||||
"time": 54.0,
|
||||
"trackIndex": 0,
|
||||
"color": "red",
|
||||
"type": "hold",
|
||||
"length": 2.25,
|
||||
"barNumber": 37,
|
||||
"yPos": -268.5,
|
||||
"noteFunction": "",
|
||||
"noteid": "36bb5377-fabe-4649-8933-57b4b74ed2ff",
|
||||
"newLocation": {
|
||||
"bar": 37,
|
||||
"guidelineIndex": 0,
|
||||
"lengthGuidelines": 6,
|
||||
"isFree": false
|
||||
}
|
||||
},
|
||||
{
|
||||
"time": 57.0,
|
||||
"trackIndex": 4,
|
||||
"color": "blue",
|
||||
"type": "hold",
|
||||
"length": 2.25,
|
||||
"barNumber": 39,
|
||||
"yPos": -268.5,
|
||||
"noteFunction": "",
|
||||
"noteid": "cf58574e-46ea-428d-be1e-6f79807653db",
|
||||
"newLocation": {
|
||||
"bar": 39,
|
||||
"guidelineIndex": 0,
|
||||
"lengthGuidelines": 6,
|
||||
"isFree": false
|
||||
}
|
||||
},
|
||||
{
|
||||
"time": 60.0,
|
||||
"trackIndex": 2,
|
||||
"color": "yellow",
|
||||
"type": "hold",
|
||||
"length": 1.5,
|
||||
"barNumber": 41,
|
||||
"yPos": -268.5,
|
||||
"noteFunction": "",
|
||||
"noteid": "258c413e-11e5-459a-9f62-7aa41d10acab",
|
||||
"newLocation": {
|
||||
"bar": 41,
|
||||
"guidelineIndex": 0,
|
||||
"lengthGuidelines": 4,
|
||||
"isFree": false
|
||||
}
|
||||
},
|
||||
{
|
||||
"time": 63.0,
|
||||
"trackIndex": 2,
|
||||
"color": "yellow",
|
||||
"type": "hold",
|
||||
"length": 1.5,
|
||||
"barNumber": 43,
|
||||
"yPos": -268.5,
|
||||
"noteFunction": "",
|
||||
"noteid": "05a7d7a8-269c-40a6-a281-b43f50472972",
|
||||
"newLocation": {
|
||||
"bar": 43,
|
||||
"guidelineIndex": 0,
|
||||
"lengthGuidelines": 4,
|
||||
"isFree": false
|
||||
}
|
||||
},
|
||||
{
|
||||
"time": 66.0,
|
||||
"trackIndex": 2,
|
||||
"color": "yellow",
|
||||
"type": "hold",
|
||||
"length": 1.5,
|
||||
"barNumber": 45,
|
||||
"yPos": -268.5,
|
||||
"noteFunction": "",
|
||||
"noteid": "4050aa3d-e92d-40b3-964b-da339f80316c",
|
||||
"newLocation": {
|
||||
"bar": 45,
|
||||
"guidelineIndex": 0,
|
||||
"lengthGuidelines": 4,
|
||||
"isFree": false
|
||||
}
|
||||
},
|
||||
{
|
||||
"time": 69.0,
|
||||
"trackIndex": 2,
|
||||
"color": "yellow",
|
||||
"type": "tap",
|
||||
"length": 0.0,
|
||||
"barNumber": 47,
|
||||
"yPos": -268.5,
|
||||
"noteFunction": "",
|
||||
"noteid": "79de2690-37c8-4d27-91dd-c2aa867d3e37",
|
||||
"newLocation": {
|
||||
"bar": 47,
|
||||
"guidelineIndex": 0,
|
||||
"lengthGuidelines": 0,
|
||||
"isFree": false
|
||||
}
|
||||
},
|
||||
{
|
||||
"time": 78.0,
|
||||
"trackIndex": 1,
|
||||
"color": "green",
|
||||
"type": "tap",
|
||||
"length": 0.0,
|
||||
"barNumber": 53,
|
||||
"yPos": -268.5,
|
||||
"noteFunction": "",
|
||||
"noteid": "2ba0107e-0194-42e7-bf25-9f3a7f8387de",
|
||||
"newLocation": {
|
||||
"bar": 53,
|
||||
"guidelineIndex": 0,
|
||||
"lengthGuidelines": 0,
|
||||
"isFree": false
|
||||
}
|
||||
},
|
||||
{
|
||||
"time": 78.0,
|
||||
"trackIndex": 0,
|
||||
"color": "red",
|
||||
"type": "tap",
|
||||
"length": 0.0,
|
||||
"barNumber": 53,
|
||||
"yPos": -268.5,
|
||||
"noteFunction": "",
|
||||
"noteid": "21014ea9-04e3-456f-a8f3-7ffb39566880",
|
||||
"newLocation": {
|
||||
"bar": 53,
|
||||
"guidelineIndex": 0,
|
||||
"lengthGuidelines": 0,
|
||||
"isFree": false
|
||||
}
|
||||
},
|
||||
{
|
||||
"time": 81.0,
|
||||
"trackIndex": 3,
|
||||
"color": "purple",
|
||||
"type": "tap",
|
||||
"length": 0.0,
|
||||
"barNumber": 55,
|
||||
"yPos": -268.5,
|
||||
"noteFunction": "",
|
||||
"noteid": "11d56a13-933c-47e9-887b-cca407bc78ff",
|
||||
"newLocation": {
|
||||
"bar": 55,
|
||||
"guidelineIndex": 0,
|
||||
"lengthGuidelines": 0,
|
||||
"isFree": false
|
||||
}
|
||||
},
|
||||
{
|
||||
"time": 81.0,
|
||||
"trackIndex": 4,
|
||||
"color": "blue",
|
||||
"type": "tap",
|
||||
"length": 0.0,
|
||||
"barNumber": 55,
|
||||
"yPos": -268.5,
|
||||
"noteFunction": "",
|
||||
"noteid": "3005ca9f-72da-4cb2-80d4-55105de2b0f5",
|
||||
"newLocation": {
|
||||
"bar": 55,
|
||||
"guidelineIndex": 0,
|
||||
"lengthGuidelines": 0,
|
||||
"isFree": false
|
||||
}
|
||||
},
|
||||
{
|
||||
"time": 84.0,
|
||||
"trackIndex": 0,
|
||||
"color": "red",
|
||||
"type": "tap",
|
||||
"length": 0.0,
|
||||
"barNumber": 57,
|
||||
"yPos": -268.5,
|
||||
"noteFunction": "",
|
||||
"noteid": "ec4faabe-721f-4cd1-b826-f4eb590b1599",
|
||||
"newLocation": {
|
||||
"bar": 57,
|
||||
"guidelineIndex": 0,
|
||||
"lengthGuidelines": 0,
|
||||
"isFree": false
|
||||
}
|
||||
},
|
||||
{
|
||||
"time": 84.0,
|
||||
"trackIndex": 2,
|
||||
"color": "yellow",
|
||||
"type": "tap",
|
||||
"length": 0.0,
|
||||
"barNumber": 57,
|
||||
"yPos": -268.5,
|
||||
"noteFunction": "",
|
||||
"noteid": "c1b25cc2-575f-4d1f-826c-870162c6d6b4",
|
||||
"newLocation": {
|
||||
"bar": 57,
|
||||
"guidelineIndex": 0,
|
||||
"lengthGuidelines": 0,
|
||||
"isFree": false
|
||||
}
|
||||
},
|
||||
{
|
||||
"time": 87.0,
|
||||
"trackIndex": 2,
|
||||
"color": "yellow",
|
||||
"type": "tap",
|
||||
"length": 0.0,
|
||||
"barNumber": 59,
|
||||
"yPos": -268.5,
|
||||
"noteFunction": "",
|
||||
"noteid": "6f0c3f43-282c-4c61-97eb-62bbf91264d0",
|
||||
"newLocation": {
|
||||
"bar": 59,
|
||||
"guidelineIndex": 0,
|
||||
"lengthGuidelines": 0,
|
||||
"isFree": false
|
||||
}
|
||||
},
|
||||
{
|
||||
"time": 87.0,
|
||||
"trackIndex": 4,
|
||||
"color": "blue",
|
||||
"type": "tap",
|
||||
"length": 0.0,
|
||||
"barNumber": 59,
|
||||
"yPos": -268.5,
|
||||
"noteFunction": "",
|
||||
"noteid": "438e067e-d725-4215-afe1-51cf40483d7f",
|
||||
"newLocation": {
|
||||
"bar": 59,
|
||||
"guidelineIndex": 0,
|
||||
"lengthGuidelines": 0,
|
||||
"isFree": false
|
||||
}
|
||||
},
|
||||
{
|
||||
"time": 90.0,
|
||||
"trackIndex": 1,
|
||||
"color": "green",
|
||||
"type": "tap",
|
||||
"length": 0.0,
|
||||
"barNumber": 61,
|
||||
"yPos": -268.5,
|
||||
"noteFunction": "",
|
||||
"noteid": "f7cc4f2a-9a2a-46e8-82b7-6f9469af7f64",
|
||||
"newLocation": {
|
||||
"bar": 61,
|
||||
"guidelineIndex": 0,
|
||||
"lengthGuidelines": 0,
|
||||
"isFree": false
|
||||
}
|
||||
},
|
||||
{
|
||||
"time": 90.0,
|
||||
"trackIndex": 2,
|
||||
"color": "yellow",
|
||||
"type": "tap",
|
||||
"length": 0.0,
|
||||
"barNumber": 61,
|
||||
"yPos": -268.5,
|
||||
"noteFunction": "",
|
||||
"noteid": "6dae3c85-410a-460d-b868-c5fcba484017",
|
||||
"newLocation": {
|
||||
"bar": 61,
|
||||
"guidelineIndex": 0,
|
||||
"lengthGuidelines": 0,
|
||||
"isFree": false
|
||||
}
|
||||
},
|
||||
{
|
||||
"time": 93.0,
|
||||
"trackIndex": 3,
|
||||
"color": "purple",
|
||||
"type": "tap",
|
||||
"length": 0.0,
|
||||
"barNumber": 63,
|
||||
"yPos": -268.5,
|
||||
"noteFunction": "",
|
||||
"noteid": "b10f70ec-712d-4813-8145-8d9f3e9cef9d",
|
||||
"newLocation": {
|
||||
"bar": 63,
|
||||
"guidelineIndex": 0,
|
||||
"lengthGuidelines": 0,
|
||||
"isFree": false
|
||||
}
|
||||
},
|
||||
{
|
||||
"time": 93.0,
|
||||
"trackIndex": 2,
|
||||
"color": "yellow",
|
||||
"type": "tap",
|
||||
"length": 0.0,
|
||||
"barNumber": 63,
|
||||
"yPos": -268.5,
|
||||
"noteFunction": "",
|
||||
"noteid": "fa6a781a-c1e3-406a-980f-627344260915",
|
||||
"newLocation": {
|
||||
"bar": 63,
|
||||
"guidelineIndex": 0,
|
||||
"lengthGuidelines": 0,
|
||||
"isFree": false
|
||||
}
|
||||
},
|
||||
{
|
||||
"time": 96.0,
|
||||
"trackIndex": 0,
|
||||
"color": "red",
|
||||
"type": "hold",
|
||||
"length": 1.5,
|
||||
"barNumber": 65,
|
||||
"yPos": -268.5,
|
||||
"noteFunction": "",
|
||||
"noteid": "cf9c18f1-3814-437d-af1b-266dd2e3a9b9",
|
||||
"newLocation": {
|
||||
"bar": 65,
|
||||
"guidelineIndex": 0,
|
||||
"lengthGuidelines": 4,
|
||||
"isFree": false
|
||||
}
|
||||
},
|
||||
{
|
||||
"time": 96.0,
|
||||
"trackIndex": 1,
|
||||
"color": "green",
|
||||
"type": "tap",
|
||||
"length": 0.0,
|
||||
"barNumber": 65,
|
||||
"yPos": -268.5,
|
||||
"noteFunction": "",
|
||||
"noteid": "096c387a-b6f8-4e82-b5b8-67b2e95bdd41",
|
||||
"newLocation": {
|
||||
"bar": 65,
|
||||
"guidelineIndex": 0,
|
||||
"lengthGuidelines": 0,
|
||||
"isFree": false
|
||||
}
|
||||
},
|
||||
{
|
||||
"time": 99.0,
|
||||
"trackIndex": 3,
|
||||
"color": "purple",
|
||||
"type": "tap",
|
||||
"length": 0.0,
|
||||
"barNumber": 67,
|
||||
"yPos": -268.5,
|
||||
"noteFunction": "",
|
||||
"noteid": "f8c49b37-6495-47de-9c2d-b81066934b2d",
|
||||
"newLocation": {
|
||||
"bar": 67,
|
||||
"guidelineIndex": 0,
|
||||
"lengthGuidelines": 0,
|
||||
"isFree": false
|
||||
}
|
||||
},
|
||||
{
|
||||
"time": 99.0,
|
||||
"trackIndex": 4,
|
||||
"color": "blue",
|
||||
"type": "hold",
|
||||
"length": 1.5,
|
||||
"barNumber": 67,
|
||||
"yPos": -268.5,
|
||||
"noteFunction": "",
|
||||
"noteid": "0432178d-a53b-4978-84c5-22aee137f81e",
|
||||
"newLocation": {
|
||||
"bar": 67,
|
||||
"guidelineIndex": 0,
|
||||
"lengthGuidelines": 4,
|
||||
"isFree": false
|
||||
}
|
||||
},
|
||||
{
|
||||
"time": 102.0,
|
||||
"trackIndex": 2,
|
||||
"color": "yellow",
|
||||
"type": "hold",
|
||||
"length": 1.5,
|
||||
"barNumber": 69,
|
||||
"yPos": -268.5,
|
||||
"noteFunction": "",
|
||||
"noteid": "d4c49900-5c22-4137-8c7d-07a68f6baa8d",
|
||||
"newLocation": {
|
||||
"bar": 69,
|
||||
"guidelineIndex": 0,
|
||||
"lengthGuidelines": 4,
|
||||
"isFree": false
|
||||
}
|
||||
},
|
||||
{
|
||||
"time": 102.0,
|
||||
"trackIndex": 0,
|
||||
"color": "red",
|
||||
"type": "tap",
|
||||
"length": 0.0,
|
||||
"barNumber": 69,
|
||||
"yPos": -268.5,
|
||||
"noteFunction": "",
|
||||
"noteid": "decf8a55-76b9-4105-80bf-e174fd857f5e",
|
||||
"newLocation": {
|
||||
"bar": 69,
|
||||
"guidelineIndex": 0,
|
||||
"lengthGuidelines": 0,
|
||||
"isFree": false
|
||||
}
|
||||
},
|
||||
{
|
||||
"time": 105.0,
|
||||
"trackIndex": 2,
|
||||
"color": "yellow",
|
||||
"type": "hold",
|
||||
"length": 1.5,
|
||||
"barNumber": 71,
|
||||
"yPos": -268.5,
|
||||
"noteFunction": "",
|
||||
"noteid": "39207267-665d-42a4-8567-ea01f9434e9e",
|
||||
"newLocation": {
|
||||
"bar": 71,
|
||||
"guidelineIndex": 0,
|
||||
"lengthGuidelines": 4,
|
||||
"isFree": false
|
||||
}
|
||||
},
|
||||
{
|
||||
"time": 105.0,
|
||||
"trackIndex": 4,
|
||||
"color": "blue",
|
||||
"type": "tap",
|
||||
"length": 0.0,
|
||||
"barNumber": 71,
|
||||
"yPos": -268.5,
|
||||
"noteFunction": "",
|
||||
"noteid": "d99a4c8f-c2e5-4a8d-8761-d690768bf6dc",
|
||||
"newLocation": {
|
||||
"bar": 71,
|
||||
"guidelineIndex": 0,
|
||||
"lengthGuidelines": 0,
|
||||
"isFree": false
|
||||
}
|
||||
},
|
||||
{
|
||||
"time": 108.0,
|
||||
"trackIndex": 0,
|
||||
"color": "red",
|
||||
"type": "tap",
|
||||
"length": 0.0,
|
||||
"barNumber": 73,
|
||||
"yPos": -268.5,
|
||||
"noteFunction": "",
|
||||
"noteid": "e766a82f-385d-4d89-9fc1-bbe5bfbcae58",
|
||||
"newLocation": {
|
||||
"bar": 73,
|
||||
"guidelineIndex": 0,
|
||||
"lengthGuidelines": 0,
|
||||
"isFree": false
|
||||
}
|
||||
},
|
||||
{
|
||||
"time": 109.5,
|
||||
"trackIndex": 1,
|
||||
"color": "green",
|
||||
"type": "tap",
|
||||
"length": 0.0,
|
||||
"barNumber": 74,
|
||||
"yPos": -268.5,
|
||||
"noteFunction": "",
|
||||
"noteid": "bbb5e0f2-0c5f-43b8-8fa1-4b11d25b81bf",
|
||||
"newLocation": {
|
||||
"bar": 74,
|
||||
"guidelineIndex": 0,
|
||||
"lengthGuidelines": 0,
|
||||
"isFree": false
|
||||
}
|
||||
},
|
||||
{
|
||||
"time": 111.0,
|
||||
"trackIndex": 4,
|
||||
"color": "blue",
|
||||
"type": "tap",
|
||||
"length": 0.0,
|
||||
"barNumber": 75,
|
||||
"yPos": -268.5,
|
||||
"noteFunction": "",
|
||||
"noteid": "761944f5-3d5f-401a-92f4-2c5897bde9be",
|
||||
"newLocation": {
|
||||
"bar": 75,
|
||||
"guidelineIndex": 0,
|
||||
"lengthGuidelines": 0,
|
||||
"isFree": false
|
||||
}
|
||||
},
|
||||
{
|
||||
"time": 112.5,
|
||||
"trackIndex": 3,
|
||||
"color": "purple",
|
||||
"type": "tap",
|
||||
"length": 0.0,
|
||||
"barNumber": 76,
|
||||
"yPos": -268.5,
|
||||
"noteFunction": "",
|
||||
"noteid": "045ec251-7ec2-4e31-bb82-40cc4f4cb646",
|
||||
"newLocation": {
|
||||
"bar": 76,
|
||||
"guidelineIndex": 0,
|
||||
"lengthGuidelines": 0,
|
||||
"isFree": false
|
||||
}
|
||||
},
|
||||
{
|
||||
"time": 114.0,
|
||||
"trackIndex": 0,
|
||||
"color": "red",
|
||||
"type": "tap",
|
||||
"length": 0.0,
|
||||
"barNumber": 77,
|
||||
"yPos": -268.5,
|
||||
"noteFunction": "",
|
||||
"noteid": "4f60c7c2-c23e-4f74-a741-a076cb1fa17b",
|
||||
"newLocation": {
|
||||
"bar": 77,
|
||||
"guidelineIndex": 0,
|
||||
"lengthGuidelines": 0,
|
||||
"isFree": false
|
||||
}
|
||||
},
|
||||
{
|
||||
"time": 114.0,
|
||||
"trackIndex": 1,
|
||||
"color": "green",
|
||||
"type": "tap",
|
||||
"length": 0.0,
|
||||
"barNumber": 77,
|
||||
"yPos": -268.5,
|
||||
"noteFunction": "",
|
||||
"noteid": "649d4b68-02ff-493d-938e-eb4551527858",
|
||||
"newLocation": {
|
||||
"bar": 77,
|
||||
"guidelineIndex": 0,
|
||||
"lengthGuidelines": 0,
|
||||
"isFree": false
|
||||
}
|
||||
},
|
||||
{
|
||||
"time": 115.5,
|
||||
"trackIndex": 2,
|
||||
"color": "yellow",
|
||||
"type": "tap",
|
||||
"length": 0.0,
|
||||
"barNumber": 78,
|
||||
"yPos": -268.5,
|
||||
"noteFunction": "",
|
||||
"noteid": "818aacb6-e368-4aa1-81b1-33dbd5c47552",
|
||||
"newLocation": {
|
||||
"bar": 78,
|
||||
"guidelineIndex": 0,
|
||||
"lengthGuidelines": 0,
|
||||
"isFree": false
|
||||
}
|
||||
},
|
||||
{
|
||||
"time": 117.0,
|
||||
"trackIndex": 3,
|
||||
"color": "purple",
|
||||
"type": "tap",
|
||||
"length": 0.0,
|
||||
"barNumber": 79,
|
||||
"yPos": -268.5,
|
||||
"noteFunction": "",
|
||||
"noteid": "03544273-9dc6-4e6e-85b9-310dad021986",
|
||||
"newLocation": {
|
||||
"bar": 79,
|
||||
"guidelineIndex": 0,
|
||||
"lengthGuidelines": 0,
|
||||
"isFree": false
|
||||
}
|
||||
},
|
||||
{
|
||||
"time": 117.0,
|
||||
"trackIndex": 4,
|
||||
"color": "blue",
|
||||
"type": "tap",
|
||||
"length": 0.0,
|
||||
"barNumber": 79,
|
||||
"yPos": -268.5,
|
||||
"noteFunction": "",
|
||||
"noteid": "9e4cbe63-e21a-43b6-82be-2f8484b91281",
|
||||
"newLocation": {
|
||||
"bar": 79,
|
||||
"guidelineIndex": 0,
|
||||
"lengthGuidelines": 0,
|
||||
"isFree": false
|
||||
}
|
||||
},
|
||||
{
|
||||
"time": 118.5,
|
||||
"trackIndex": 2,
|
||||
"color": "yellow",
|
||||
"type": "hold",
|
||||
"length": 0.75,
|
||||
"barNumber": 80,
|
||||
"yPos": -268.5,
|
||||
"noteFunction": "",
|
||||
"noteid": "795d9337-949f-4e85-a9fb-bab23d1ea3e5",
|
||||
"newLocation": {
|
||||
"bar": 80,
|
||||
"guidelineIndex": 0,
|
||||
"lengthGuidelines": 2,
|
||||
"isFree": false
|
||||
}
|
||||
},
|
||||
{
|
||||
"time": 120.0,
|
||||
"trackIndex": 4,
|
||||
"color": "blue",
|
||||
"type": "tap",
|
||||
"length": 0.0,
|
||||
"barNumber": 81,
|
||||
"yPos": -268.5,
|
||||
"noteFunction": "",
|
||||
"noteid": "3592bb32-6111-4b17-9a81-96bb4d8d91a7",
|
||||
"newLocation": {
|
||||
"bar": 81,
|
||||
"guidelineIndex": 0,
|
||||
"lengthGuidelines": 0,
|
||||
"isFree": false
|
||||
}
|
||||
},
|
||||
{
|
||||
"time": 120.0,
|
||||
"trackIndex": 0,
|
||||
"color": "red",
|
||||
"type": "tap",
|
||||
"length": 0.0,
|
||||
"barNumber": 81,
|
||||
"yPos": -268.5,
|
||||
"noteFunction": "",
|
||||
"noteid": "f1435abb-1fe2-4368-8042-07924009deea",
|
||||
"newLocation": {
|
||||
"bar": 81,
|
||||
"guidelineIndex": 0,
|
||||
"lengthGuidelines": 0,
|
||||
"isFree": false
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 929a36cd0fe7d0c42b8f912623e8c6de
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Binary file not shown.
@@ -0,0 +1,23 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 3eb7c19abd446574d841b674603fda31
|
||||
AudioImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 8
|
||||
defaultSettings:
|
||||
serializedVersion: 2
|
||||
loadType: 0
|
||||
sampleRateSetting: 0
|
||||
sampleRateOverride: 44100
|
||||
compressionFormat: 1
|
||||
quality: 1
|
||||
conversionMode: 0
|
||||
preloadAudioData: 1
|
||||
platformSettingOverrides: {}
|
||||
forceToMono: 0
|
||||
normalize: 1
|
||||
loadInBackground: 0
|
||||
ambisonic: 1
|
||||
3D: 1
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,82 @@
|
||||
{
|
||||
"title": "Emilia",
|
||||
"composer": "Pam_dinosaur",
|
||||
"illustrator": "level8",
|
||||
"charter": "ChartMaster",
|
||||
"beatmapId": "NC-001",
|
||||
"duration": 164,
|
||||
"bpm": 100,
|
||||
"difficulty": 2,
|
||||
"difficultyName": "Hard",
|
||||
"createdDate": "2025-03-18",
|
||||
"musicFile": "Assets/Resources/song_songIndex/1002001_emilia/Emilia.ogg",
|
||||
"backgroundFile": "Assets/Backgrounds/Emilia_bg.png",
|
||||
"tracks": [
|
||||
{ "color": "red" },
|
||||
{ "color": "green" },
|
||||
{ "color": "yellow" },
|
||||
{ "color": "purple" },
|
||||
{ "color": "blue" }
|
||||
],
|
||||
"notes": [
|
||||
{ "time": 3.0, "trackIndex": 0, "color": "red", "type": "hold", "length": 2 },
|
||||
{ "time": 3.0, "trackIndex": 1, "color": "green", "type": "hold", "length": 1 },
|
||||
{ "time": 4.8, "trackIndex": 1, "color": "green", "type": "hold", "length": 2.4 },
|
||||
{ "time": 4.8, "trackIndex": 3, "color": "purple", "type": "tap", "length": 0 },
|
||||
{ "time": 5.4, "trackIndex": 3, "color": "purple", "type": "tap", "length": 0 },
|
||||
{ "time": 6.0, "trackIndex": 3, "color": "purple", "type": "tap", "length": 0 },
|
||||
{ "time": 6.6, "trackIndex": 3, "color": "purple", "type": "tap", "length": 0 },
|
||||
{ "time": 7.2, "trackIndex": 0, "color": "red", "type": "hold", "length": 2.4 },
|
||||
{ "time": 7.2, "trackIndex": 4, "color": "blue", "type": "tap", "length": 0 },
|
||||
{ "time": 7.8, "trackIndex": 4, "color": "blue", "type": "tap", "length": 0 },
|
||||
{ "time": 8.4, "trackIndex": 4, "color": "blue", "type": "tap", "length": 0 },
|
||||
{ "time": 9.0, "trackIndex": 4, "color": "blue", "type": "tap", "length": 0 },
|
||||
{ "time": 9.6, "trackIndex": 1, "color": "green", "type": "hold", "length": 2.4 },
|
||||
{ "time": 9.6, "trackIndex": 3, "color": "purple", "type": "tap", "length": 0 },
|
||||
{ "time": 10.2, "trackIndex": 3, "color": "purple", "type": "tap", "length": 0 },
|
||||
{ "time": 10.8, "trackIndex": 3, "color": "purple", "type": "tap", "length": 0 },
|
||||
{ "time": 11.4, "trackIndex": 3, "color": "purple", "type": "tap", "length": 0 },
|
||||
{ "time": 12.0, "trackIndex": 3, "color": "purple", "type": "hold", "length": 1.95 },
|
||||
{ "time": 12.0, "trackIndex": 1, "color": "green", "type": "tap", "length": 0 },
|
||||
{ "time": 12.6, "trackIndex": 1, "color": "green", "type": "tap", "length": 0 },
|
||||
{ "time": 13.2, "trackIndex": 1, "color": "green", "type": "tap", "length": 0 },
|
||||
{ "time": 13.8, "trackIndex": 1, "color": "green", "type": "tap", "length": 0 },
|
||||
{ "time": 13.95, "trackIndex": 2, "color": "yellow", "type": "tap", "length": 0 },
|
||||
{ "time": 14.1, "trackIndex": 3, "color": "purple", "type": "tap", "length": 0 },
|
||||
{ "time": 14.4, "trackIndex": 4, "color": "blue", "type": "tap", "length": 0 },
|
||||
{ "time": 14.4, "trackIndex": 1, "color": "green", "type": "hold", "length": 2.4 },
|
||||
{ "time": 15.0, "trackIndex": 3, "color": "purple", "type": "tap", "length": 0 },
|
||||
{ "time": 15.6, "trackIndex": 3, "color": "purple", "type": "tap", "length": 0 },
|
||||
{ "time": 16.2, "trackIndex": 3, "color": "purple", "type": "tap", "length": 0 },
|
||||
{ "time": 16.8, "trackIndex": 0, "color": "red", "type": "hold", "length": 2.4 },
|
||||
{ "time": 16.8, "trackIndex": 4, "color": "blue", "type": "tap", "length": 0 },
|
||||
{ "time": 17.4, "trackIndex": 4, "color": "blue", "type": "tap", "length": 0 },
|
||||
{ "time": 18.0, "trackIndex": 4, "color": "blue", "type": "tap", "length": 0 },
|
||||
{ "time": 18.6, "trackIndex": 4, "color": "blue", "type": "tap", "length": 0 },
|
||||
{ "time": 19.2, "trackIndex": 1, "color": "green", "type": "hold", "length": 2.4 },
|
||||
{ "time": 19.2, "trackIndex": 3, "color": "purple", "type": "tap", "length": 0 },
|
||||
{ "time": 19.8, "trackIndex": 3, "color": "purple", "type": "tap", "length": 0 },
|
||||
{ "time": 20.4, "trackIndex": 3, "color": "purple", "type": "tap", "length": 0 },
|
||||
{ "time": 21.0, "trackIndex": 3, "color": "purple", "type": "tap", "length": 0 },
|
||||
{ "time": 21.6, "trackIndex": 2, "color": "yellow", "type": "hold", "length": 4.8 },
|
||||
{ "time": 24.0, "trackIndex": 0, "color": "red", "type": "tap", "length": 0 },
|
||||
{ "time": 24.3, "trackIndex": 0, "color": "red", "type": "tap", "length": 0 },
|
||||
{ "time": 24.6, "trackIndex": 0, "color": "red", "type": "tap", "length": 0 },
|
||||
{ "time": 24.9, "trackIndex": 0, "color": "red", "type": "tap", "length": 0 },
|
||||
{ "time": 25.2, "trackIndex": 0, "color": "red", "type": "tap", "length": 0 },
|
||||
{ "time": 25.5, "trackIndex": 0, "color": "red", "type": "tap", "length": 0 },
|
||||
{ "time": 25.8, "trackIndex": 0, "color": "red", "type": "tap", "length": 0 },
|
||||
{ "time": 26.1, "trackIndex": 0, "color": "red", "type": "tap", "length": 0 },
|
||||
{ "time": 26.4, "trackIndex": 4, "color": "blue", "type": "tap", "length": 0 },
|
||||
{ "time": 26.4, "trackIndex": 2, "color": "yellow", "type": "hold", "length": 4.8 },
|
||||
{ "time": 26.4, "trackIndex": 4, "color": "blue", "type": "tap", "length": 0 },
|
||||
{ "time": 26.7, "trackIndex": 4, "color": "blue", "type": "tap", "length": 0 },
|
||||
{ "time": 27.0, "trackIndex": 4, "color": "blue", "type": "tap", "length": 0 },
|
||||
{ "time": 27.3, "trackIndex": 4, "color": "blue", "type": "tap", "length": 0 },
|
||||
{ "time": 27.6, "trackIndex": 4, "color": "blue", "type": "tap", "length": 0 },
|
||||
{ "time": 27.9, "trackIndex": 4, "color": "blue", "type": "tap", "length": 0 },
|
||||
{ "time": 28.2, "trackIndex": 4, "color": "blue", "type": "tap", "length": 0 },
|
||||
{ "time": 28.5, "trackIndex": 4, "color": "blue", "type": "tap", "length": 0 }
|
||||
],
|
||||
"is_official": true
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 9db969d1c1c76f241a78aae01cc3240d
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Binary file not shown.
@@ -0,0 +1,23 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 863f7a662022bd84c85c3072db3a9a64
|
||||
AudioImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 8
|
||||
defaultSettings:
|
||||
serializedVersion: 2
|
||||
loadType: 0
|
||||
sampleRateSetting: 0
|
||||
sampleRateOverride: 44100
|
||||
compressionFormat: 1
|
||||
quality: 1
|
||||
conversionMode: 0
|
||||
preloadAudioData: 1
|
||||
platformSettingOverrides: {}
|
||||
forceToMono: 0
|
||||
normalize: 1
|
||||
loadInBackground: 0
|
||||
ambisonic: 0
|
||||
3D: 1
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 2.4 MiB |
@@ -0,0 +1,156 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 5057a5d2350e7c24b9dbb4b76af4ffed
|
||||
TextureImporter:
|
||||
internalIDToNameTable:
|
||||
- first:
|
||||
213: 7407668828705642837
|
||||
second: selcet song BG_0
|
||||
externalObjects: {}
|
||||
serializedVersion: 13
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 0
|
||||
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: 1
|
||||
wrapV: 1
|
||||
wrapW: 1
|
||||
nPOTScale: 0
|
||||
lightmap: 0
|
||||
compressionQuality: 50
|
||||
spriteMode: 1
|
||||
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: 1
|
||||
spriteTessellationDetail: -1
|
||||
textureType: 8
|
||||
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: 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: Android
|
||||
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:
|
||||
- serializedVersion: 2
|
||||
name: selcet song BG_0
|
||||
rect:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 0
|
||||
width: 1920
|
||||
height: 1080
|
||||
alignment: 0
|
||||
pivot: {x: 0, y: 0}
|
||||
border: {x: 0, y: 0, z: 0, w: 0}
|
||||
customData:
|
||||
outline: []
|
||||
physicsShape: []
|
||||
tessellationDetail: -1
|
||||
bones: []
|
||||
spriteID: 559dbbc5d835dc660800000000000000
|
||||
internalID: 7407668828705642837
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
outline: []
|
||||
customData:
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID: 5e97eb03825dee720800000000000000
|
||||
internalID: 0
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
spriteCustomMetadata:
|
||||
entries: []
|
||||
nameFileIdTable:
|
||||
selcet song BG_0: 7407668828705642837
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 3.5 MiB |
@@ -0,0 +1,156 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 34499d10848dc9c419a2ba579f3d210f
|
||||
TextureImporter:
|
||||
internalIDToNameTable:
|
||||
- first:
|
||||
213: 2180828803396818755
|
||||
second: "\u5934\u56FESONIA_0"
|
||||
externalObjects: {}
|
||||
serializedVersion: 13
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 0
|
||||
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: 1
|
||||
wrapV: 1
|
||||
wrapW: 1
|
||||
nPOTScale: 0
|
||||
lightmap: 0
|
||||
compressionQuality: 50
|
||||
spriteMode: 1
|
||||
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: 1
|
||||
spriteTessellationDetail: -1
|
||||
textureType: 8
|
||||
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: 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: Android
|
||||
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:
|
||||
- serializedVersion: 2
|
||||
name: "\u5934\u56FESONIA_0"
|
||||
rect:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 0
|
||||
width: 1920
|
||||
height: 1080
|
||||
alignment: 0
|
||||
pivot: {x: 0, y: 0}
|
||||
border: {x: 0, y: 0, z: 0, w: 0}
|
||||
customData:
|
||||
outline: []
|
||||
physicsShape: []
|
||||
tessellationDetail: -1
|
||||
bones: []
|
||||
spriteID: 347586efd3cd34e10800000000000000
|
||||
internalID: 2180828803396818755
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
outline: []
|
||||
customData:
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID: 5e97eb03825dee720800000000000000
|
||||
internalID: 0
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
spriteCustomMetadata:
|
||||
entries: []
|
||||
nameFileIdTable:
|
||||
"\u5934\u56FESONIA_0": 2180828803396818755
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Binary file not shown.
@@ -0,0 +1,23 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 41b3e5a2c36c79a48889bc7ff9a93740
|
||||
AudioImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 8
|
||||
defaultSettings:
|
||||
serializedVersion: 2
|
||||
loadType: 0
|
||||
sampleRateSetting: 0
|
||||
sampleRateOverride: 44100
|
||||
compressionFormat: 1
|
||||
quality: 1
|
||||
conversionMode: 0
|
||||
preloadAudioData: 1
|
||||
platformSettingOverrides: {}
|
||||
forceToMono: 0
|
||||
normalize: 1
|
||||
loadInBackground: 1
|
||||
ambisonic: 0
|
||||
3D: 1
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 22 KiB |
@@ -0,0 +1,156 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 9d64dfe23766f5143aeaf5b8c4ae1ccd
|
||||
TextureImporter:
|
||||
internalIDToNameTable:
|
||||
- first:
|
||||
213: -8539712654396728297
|
||||
second: "\u66F2\u7ED8\u5DE5\u7A0B4-1_0"
|
||||
externalObjects: {}
|
||||
serializedVersion: 13
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 0
|
||||
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: 1
|
||||
wrapV: 1
|
||||
wrapW: 1
|
||||
nPOTScale: 0
|
||||
lightmap: 0
|
||||
compressionQuality: 50
|
||||
spriteMode: 1
|
||||
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: 1
|
||||
spriteTessellationDetail: -1
|
||||
textureType: 8
|
||||
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: 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: Android
|
||||
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:
|
||||
- serializedVersion: 2
|
||||
name: "\u66F2\u7ED8\u5DE5\u7A0B4-1_0"
|
||||
rect:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 0
|
||||
width: 87
|
||||
height: 87
|
||||
alignment: 0
|
||||
pivot: {x: 0, y: 0}
|
||||
border: {x: 0, y: 0, z: 0, w: 0}
|
||||
customData:
|
||||
outline: []
|
||||
physicsShape: []
|
||||
tessellationDetail: -1
|
||||
bones: []
|
||||
spriteID: 71c56ce0698dc7980800000000000000
|
||||
internalID: -8539712654396728297
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
outline: []
|
||||
customData:
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID: 5e97eb03825dee720800000000000000
|
||||
internalID: 0
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
spriteCustomMetadata:
|
||||
entries: []
|
||||
nameFileIdTable:
|
||||
"\u66F2\u7ED8\u5DE5\u7A0B4-1_0": -8539712654396728297
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 171 KiB |
@@ -0,0 +1,156 @@
|
||||
fileFormatVersion: 2
|
||||
guid: bf1252aa222b71c45bd34dc9c380794c
|
||||
TextureImporter:
|
||||
internalIDToNameTable:
|
||||
- first:
|
||||
213: 8727036169288937776
|
||||
second: "\u77E9\u5F62 42_0"
|
||||
externalObjects: {}
|
||||
serializedVersion: 13
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 0
|
||||
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: 1
|
||||
wrapV: 1
|
||||
wrapW: 1
|
||||
nPOTScale: 0
|
||||
lightmap: 0
|
||||
compressionQuality: 50
|
||||
spriteMode: 1
|
||||
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: 1
|
||||
spriteTessellationDetail: -1
|
||||
textureType: 8
|
||||
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: 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: Android
|
||||
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:
|
||||
- serializedVersion: 2
|
||||
name: "\u77E9\u5F62 42_0"
|
||||
rect:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 0
|
||||
width: 752
|
||||
height: 102
|
||||
alignment: 0
|
||||
pivot: {x: 0, y: 0}
|
||||
border: {x: 0, y: 0, z: 0, w: 0}
|
||||
customData:
|
||||
outline: []
|
||||
physicsShape: []
|
||||
tessellationDetail: -1
|
||||
bones: []
|
||||
spriteID: 031f37c7829ac1970800000000000000
|
||||
internalID: 8727036169288937776
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
outline: []
|
||||
customData:
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID: 5e97eb03825dee720800000000000000
|
||||
internalID: 0
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
spriteCustomMetadata:
|
||||
entries: []
|
||||
nameFileIdTable:
|
||||
"\u77E9\u5F62 42_0": 8727036169288937776
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 4cc5f29e84c935544b0ffb8c240f8985
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
+14778
File diff suppressed because it is too large
Load Diff
+7
@@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: b9699c3ce25cc9d4fa38074adcaadac6
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
+26338
File diff suppressed because it is too large
Load Diff
+7
@@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 1333012d19842c24c945e004b06c3be8
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
+2759
File diff suppressed because it is too large
Load Diff
+7
@@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: d5dfea41588d98549b8b31c810eb6c35
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 72553388100d3164b91c514056ace657
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 2a13ae527ec516445b9b031c14fdece2
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 1f516994ae72f194a8ba0fadcd5e3308
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 54f9506192ab91d4f9363d15962f878c
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: dc27d9d67f3698646b7b7c3d926eea3c
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: ca9bfdf5df2b55f4284f79ad8e5f41af
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: ba8d28291a1bf2c4fbfbc72a48c71402
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 8f8d61b18c737884eae08b3ba5f1a26a
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
File diff suppressed because it is too large
Load Diff
+7
@@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 23eb0ad32db01d44e9208238ef52f581
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
File diff suppressed because it is too large
Load Diff
+7
@@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: ff8caf7debd28b649aba47f6b480a601
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: b5753321365e3c044937961c41edc449
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 2256896bb3b9b404aab6540bde398a83
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: dd72cb38a43173847994ec3b2e1a83e2
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 94ba99fe1a0616e47b628560c008c78c
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 53cc5d44188f19749bbc12024a5f18ce
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Reference in New Issue
Block a user