fixed repo
This commit is contained in:
parent
b490a0e37d
commit
498f4bd016
|
@ -2,7 +2,6 @@ using UnityEngine;
|
||||||
using UnityEngine.UI;
|
using UnityEngine.UI;
|
||||||
|
|
||||||
using TMPro;
|
using TMPro;
|
||||||
using Starpelly;
|
|
||||||
|
|
||||||
public class ColorPreview : MonoBehaviour
|
public class ColorPreview : MonoBehaviour
|
||||||
{
|
{
|
||||||
|
@ -21,18 +20,18 @@ public class ColorPreview : MonoBehaviour
|
||||||
public void ChangeColor(Color c)
|
public void ChangeColor(Color c)
|
||||||
{
|
{
|
||||||
colorPicker.color = c;
|
colorPicker.color = c;
|
||||||
hex.text = c.Color2Hex();
|
hex.text = Color2Hex(c);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void OnColorChanged(Color c)
|
public void OnColorChanged(Color c)
|
||||||
{
|
{
|
||||||
previewGraphic.color = c;
|
previewGraphic.color = c;
|
||||||
hex.text = c.Color2Hex();
|
hex.text = Color2Hex(c);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void SetColorFromHex(string hex)
|
public void SetColorFromHex(string hex)
|
||||||
{
|
{
|
||||||
colorPicker.color = Starpelly.Colors.Hex2RGB(hex);
|
colorPicker.color = Hex2RGB(hex);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void OnDestroy()
|
private void OnDestroy()
|
||||||
|
@ -45,4 +44,38 @@ public class ColorPreview : MonoBehaviour
|
||||||
{
|
{
|
||||||
SetColorFromHex(hex.text);
|
SetColorFromHex(hex.text);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static string Color2Hex(Color color)
|
||||||
|
{
|
||||||
|
Color32 col = (Color32)color;
|
||||||
|
string hex = col.r.ToString("X2") + col.g.ToString("X2") + col.b.ToString("X2");
|
||||||
|
return hex;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Converts a Hexadecimal Color to an RGB Color.
|
||||||
|
/// </summary>
|
||||||
|
static Color Hex2RGB(string hex)
|
||||||
|
{
|
||||||
|
if (hex is null or "") return Color.black;
|
||||||
|
try
|
||||||
|
{
|
||||||
|
hex = hex.Replace("0x", "");//in case the string is formatted 0xFFFFFF
|
||||||
|
hex = hex.Replace("#", "");//in case the string is formatted #FFFFFF
|
||||||
|
byte a = 255;//assume fully visible unless specified in hex
|
||||||
|
byte r = byte.Parse(hex.Substring(0, 2), System.Globalization.NumberStyles.HexNumber);
|
||||||
|
byte g = byte.Parse(hex.Substring(2, 2), System.Globalization.NumberStyles.HexNumber);
|
||||||
|
byte b = byte.Parse(hex.Substring(4, 2), System.Globalization.NumberStyles.HexNumber);
|
||||||
|
//Only use alpha if the string has enough characters
|
||||||
|
if (hex.Length >= 8)
|
||||||
|
{
|
||||||
|
a = byte.Parse(hex.Substring(6, 2), System.Globalization.NumberStyles.HexNumber);
|
||||||
|
}
|
||||||
|
return new Color32(r, g, b, a);
|
||||||
|
}
|
||||||
|
catch
|
||||||
|
{
|
||||||
|
return Color.black;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
|
@ -101,7 +101,7 @@ All used properties of Nintendo (such as names, audio, graphics, characters, des
|
||||||
|
|
||||||
IF YOU PAID FOR THIS SOFTWARE OR RECIEVED IT AS PART OF A BUNDLE FOLLOWING PAYMENT, YOU HAVE BEEN SCAMMED. CONTACT THE SELLER AND DEMAND YOUR MONEY BACK IMMEDIATELY.</b>
|
IF YOU PAID FOR THIS SOFTWARE OR RECIEVED IT AS PART OF A BUNDLE FOLLOWING PAYMENT, YOU HAVE BEEN SCAMMED. CONTACT THE SELLER AND DEMAND YOUR MONEY BACK IMMEDIATELY.</b>
|
||||||
|
|
||||||
This software is licensed under GNU GPL-3.0.
|
Source code for Heaven Studio is licensed under the MIT License.
|
||||||
https://github.com/RHeavenStudio/HeavenStudio/blob/master/LICENSE.md
|
https://github.com/RHeavenStudio/HeavenStudio/blob/master/LICENSE.md
|
||||||
|
|
||||||
https://github.com/RHeavenStudio/HeavenStudio
|
https://github.com/RHeavenStudio/HeavenStudio
|
||||||
|
|
|
@ -247,15 +247,8 @@ MonoBehaviour:
|
||||||
m_LigatureGlyphID: 9328
|
m_LigatureGlyphID: 9328
|
||||||
- m_ComponentGlyphIDs: 320000004b000000
|
- m_ComponentGlyphIDs: 320000004b000000
|
||||||
m_LigatureGlyphID: 9333
|
m_LigatureGlyphID: 9333
|
||||||
<<<<<<< Updated upstream
|
|
||||||
- m_ComponentGlyphIDs: 010000004b000000
|
- m_ComponentGlyphIDs: 010000004b000000
|
||||||
m_LigatureGlyphID: 9450
|
m_LigatureGlyphID: 9450
|
||||||
- m_ComponentGlyphIDs: 320000004b000000
|
|
||||||
m_LigatureGlyphID: 9331
|
|
||||||
=======
|
|
||||||
- m_ComponentGlyphIDs: 400000004b000000
|
|
||||||
m_LigatureGlyphID: 9451
|
|
||||||
>>>>>>> Stashed changes
|
|
||||||
m_GlyphPairAdjustmentRecords:
|
m_GlyphPairAdjustmentRecords:
|
||||||
- m_FirstAdjustmentRecord:
|
- m_FirstAdjustmentRecord:
|
||||||
m_GlyphIndex: 34
|
m_GlyphIndex: 34
|
||||||
|
|
File diff suppressed because one or more lines are too long
Binary file not shown.
|
@ -370,68 +370,6 @@ MonoBehaviour:
|
||||||
m_LigatureGlyphID: 9817
|
m_LigatureGlyphID: 9817
|
||||||
- m_ComponentGlyphIDs: 19000000100000001a000000
|
- m_ComponentGlyphIDs: 19000000100000001a000000
|
||||||
m_LigatureGlyphID: 9805
|
m_LigatureGlyphID: 9805
|
||||||
- m_ComponentGlyphIDs: 13000000100000001200000012000000
|
|
||||||
m_LigatureGlyphID: 9811
|
|
||||||
- m_ComponentGlyphIDs: 130000001000000014000000
|
|
||||||
m_LigatureGlyphID: 9782
|
|
||||||
- m_ComponentGlyphIDs: 130000001000000016000000
|
|
||||||
m_LigatureGlyphID: 9785
|
|
||||||
- m_ComponentGlyphIDs: 130000001000000018000000
|
|
||||||
m_LigatureGlyphID: 9791
|
|
||||||
- m_ComponentGlyphIDs: 13000000100000001a000000
|
|
||||||
m_LigatureGlyphID: 9801
|
|
||||||
- m_ComponentGlyphIDs: 1200000010000000120000001100000011000000
|
|
||||||
m_LigatureGlyphID: 9824
|
|
||||||
- m_ComponentGlyphIDs: 1200000011000000100000001200000012000000
|
|
||||||
m_LigatureGlyphID: 9819
|
|
||||||
- m_ComponentGlyphIDs: 1200000012000000100000001200000013000000
|
|
||||||
m_LigatureGlyphID: 9823
|
|
||||||
- m_ComponentGlyphIDs: 12000000100000001200000011000000
|
|
||||||
m_LigatureGlyphID: 9806
|
|
||||||
- m_ComponentGlyphIDs: 12000000100000001200000012000000
|
|
||||||
m_LigatureGlyphID: 9810
|
|
||||||
- m_ComponentGlyphIDs: 12000000100000001200000013000000
|
|
||||||
m_LigatureGlyphID: 9820
|
|
||||||
- m_ComponentGlyphIDs: 120000001000000013000000
|
|
||||||
m_LigatureGlyphID: 8184
|
|
||||||
- m_ComponentGlyphIDs: 120000001000000014000000
|
|
||||||
m_LigatureGlyphID: 9781
|
|
||||||
- m_ComponentGlyphIDs: 120000001000000015000000
|
|
||||||
m_LigatureGlyphID: 8185
|
|
||||||
- m_ComponentGlyphIDs: 120000001000000016000000
|
|
||||||
m_LigatureGlyphID: 9784
|
|
||||||
- m_ComponentGlyphIDs: 120000001000000017000000
|
|
||||||
m_LigatureGlyphID: 9788
|
|
||||||
- m_ComponentGlyphIDs: 120000001000000018000000
|
|
||||||
m_LigatureGlyphID: 9790
|
|
||||||
- m_ComponentGlyphIDs: 120000001000000019000000
|
|
||||||
m_LigatureGlyphID: 9796
|
|
||||||
- m_ComponentGlyphIDs: 12000000100000001a000000
|
|
||||||
m_LigatureGlyphID: 9800
|
|
||||||
- m_ComponentGlyphIDs: 14000000100000001200000011000000
|
|
||||||
m_LigatureGlyphID: 9807
|
|
||||||
- m_ComponentGlyphIDs: 14000000100000001200000012000000
|
|
||||||
m_LigatureGlyphID: 9812
|
|
||||||
- m_ComponentGlyphIDs: 140000001000000015000000
|
|
||||||
m_LigatureGlyphID: 9783
|
|
||||||
- m_ComponentGlyphIDs: 140000001000000016000000
|
|
||||||
m_LigatureGlyphID: 9786
|
|
||||||
- m_ComponentGlyphIDs: 140000001000000018000000
|
|
||||||
m_LigatureGlyphID: 9792
|
|
||||||
- m_ComponentGlyphIDs: 140000001000000019000000
|
|
||||||
m_LigatureGlyphID: 9797
|
|
||||||
- m_ComponentGlyphIDs: 16000000100000001200000012000000
|
|
||||||
m_LigatureGlyphID: 9814
|
|
||||||
- m_ComponentGlyphIDs: 16000000100000001200000013000000
|
|
||||||
m_LigatureGlyphID: 9821
|
|
||||||
- m_ComponentGlyphIDs: 160000001000000017000000
|
|
||||||
m_LigatureGlyphID: 9789
|
|
||||||
- m_ComponentGlyphIDs: 160000001000000018000000
|
|
||||||
m_LigatureGlyphID: 9794
|
|
||||||
- m_ComponentGlyphIDs: 160000001000000019000000
|
|
||||||
m_LigatureGlyphID: 9798
|
|
||||||
- m_ComponentGlyphIDs: 16000000100000001a000000
|
|
||||||
m_LigatureGlyphID: 9803
|
|
||||||
m_GlyphPairAdjustmentRecords:
|
m_GlyphPairAdjustmentRecords:
|
||||||
- m_FirstAdjustmentRecord:
|
- m_FirstAdjustmentRecord:
|
||||||
m_GlyphIndex: 79
|
m_GlyphIndex: 79
|
||||||
|
@ -7588,51 +7526,6 @@ MonoBehaviour:
|
||||||
m_XAdvance: 0
|
m_XAdvance: 0
|
||||||
m_YAdvance: 0
|
m_YAdvance: 0
|
||||||
m_FeatureLookupFlags: -11456224
|
m_FeatureLookupFlags: -11456224
|
||||||
- m_FirstAdjustmentRecord:
|
|
||||||
m_GlyphIndex: 57
|
|
||||||
m_GlyphValueRecord:
|
|
||||||
m_XPlacement: 0
|
|
||||||
m_YPlacement: 0
|
|
||||||
m_XAdvance: 0.90000004
|
|
||||||
m_YAdvance: 0
|
|
||||||
m_SecondAdjustmentRecord:
|
|
||||||
m_GlyphIndex: 10
|
|
||||||
m_GlyphValueRecord:
|
|
||||||
m_XPlacement: 0
|
|
||||||
m_YPlacement: 0
|
|
||||||
m_XAdvance: 0
|
|
||||||
m_YAdvance: 0
|
|
||||||
m_FeatureLookupFlags: -951701216
|
|
||||||
- m_FirstAdjustmentRecord:
|
|
||||||
m_GlyphIndex: 57
|
|
||||||
m_GlyphValueRecord:
|
|
||||||
m_XPlacement: 0
|
|
||||||
m_YPlacement: 0
|
|
||||||
m_XAdvance: 0.90000004
|
|
||||||
m_YAdvance: 0
|
|
||||||
m_SecondAdjustmentRecord:
|
|
||||||
m_GlyphIndex: 62
|
|
||||||
m_GlyphValueRecord:
|
|
||||||
m_XPlacement: 0
|
|
||||||
m_YPlacement: 0
|
|
||||||
m_XAdvance: 0
|
|
||||||
m_YAdvance: 0
|
|
||||||
m_FeatureLookupFlags: -951701216
|
|
||||||
- m_FirstAdjustmentRecord:
|
|
||||||
m_GlyphIndex: 57
|
|
||||||
m_GlyphValueRecord:
|
|
||||||
m_XPlacement: 0
|
|
||||||
m_YPlacement: 0
|
|
||||||
m_XAdvance: 0.90000004
|
|
||||||
m_YAdvance: 0
|
|
||||||
m_SecondAdjustmentRecord:
|
|
||||||
m_GlyphIndex: 122
|
|
||||||
m_GlyphValueRecord:
|
|
||||||
m_XPlacement: 0
|
|
||||||
m_YPlacement: 0
|
|
||||||
m_XAdvance: 0
|
|
||||||
m_YAdvance: 0
|
|
||||||
m_FeatureLookupFlags: -951701216
|
|
||||||
m_MarkToBaseAdjustmentRecords: []
|
m_MarkToBaseAdjustmentRecords: []
|
||||||
m_MarkToMarkAdjustmentRecords: []
|
m_MarkToMarkAdjustmentRecords: []
|
||||||
m_ShouldReimportFontFeatures: 0
|
m_ShouldReimportFontFeatures: 0
|
||||||
|
|
|
@ -1464,7 +1464,9 @@ MonoBehaviour:
|
||||||
m_Name:
|
m_Name:
|
||||||
m_EditorClassIdentifier:
|
m_EditorClassIdentifier:
|
||||||
SoundSequences: []
|
SoundSequences: []
|
||||||
|
EligibleHits: []
|
||||||
scheduledInputs: []
|
scheduledInputs: []
|
||||||
|
firstEnable: 0
|
||||||
camPos: {fileID: 90712470157425058}
|
camPos: {fileID: 90712470157425058}
|
||||||
cameraFoV: 13
|
cameraFoV: 13
|
||||||
environmentRenderer: {fileID: 3593377758750892331}
|
environmentRenderer: {fileID: 3593377758750892331}
|
||||||
|
@ -1480,6 +1482,7 @@ MonoBehaviour:
|
||||||
shooterMaterial: {fileID: 2100000, guid: 97aebf98db2a0bb4a974fbbbbf03fda8, type: 2}
|
shooterMaterial: {fileID: 2100000, guid: 97aebf98db2a0bb4a974fbbbbf03fda8, type: 2}
|
||||||
objectMaterial: {fileID: 2100000, guid: 05418807da86e2146bc9e10ad24a33aa, type: 2}
|
objectMaterial: {fileID: 2100000, guid: 05418807da86e2146bc9e10ad24a33aa, type: 2}
|
||||||
gridPlaneMaterial: {fileID: 2100000, guid: 3df450e97190f504d9ac4f14283b2e0a, type: 2}
|
gridPlaneMaterial: {fileID: 2100000, guid: 3df450e97190f504d9ac4f14283b2e0a, type: 2}
|
||||||
|
elevatorMaterial: {fileID: 0}
|
||||||
beltSpeed: 4.33
|
beltSpeed: 4.33
|
||||||
--- !u!1 &8373923870426321472
|
--- !u!1 &8373923870426321472
|
||||||
GameObject:
|
GameObject:
|
||||||
|
@ -2120,7 +2123,7 @@ PrefabInstance:
|
||||||
objectReference: {fileID: 0}
|
objectReference: {fileID: 0}
|
||||||
- target: {fileID: -947387224812249842, guid: 4d6a1ca519b6789419c00178b5d2b983, type: 3}
|
- target: {fileID: -947387224812249842, guid: 4d6a1ca519b6789419c00178b5d2b983, type: 3}
|
||||||
propertyPath: m_LocalEulerAnglesHint.y
|
propertyPath: m_LocalEulerAnglesHint.y
|
||||||
value: 0.0000046908485
|
value: 0.0000036424658
|
||||||
objectReference: {fileID: 0}
|
objectReference: {fileID: 0}
|
||||||
- target: {fileID: -944302891571569470, guid: 4d6a1ca519b6789419c00178b5d2b983, type: 3}
|
- target: {fileID: -944302891571569470, guid: 4d6a1ca519b6789419c00178b5d2b983, type: 3}
|
||||||
propertyPath: m_Layer
|
propertyPath: m_Layer
|
||||||
|
@ -2136,7 +2139,7 @@ PrefabInstance:
|
||||||
objectReference: {fileID: 0}
|
objectReference: {fileID: 0}
|
||||||
- target: {fileID: 364309268697413728, guid: 4d6a1ca519b6789419c00178b5d2b983, type: 3}
|
- target: {fileID: 364309268697413728, guid: 4d6a1ca519b6789419c00178b5d2b983, type: 3}
|
||||||
propertyPath: m_LocalEulerAnglesHint.y
|
propertyPath: m_LocalEulerAnglesHint.y
|
||||||
value: 0.0000046908503
|
value: 0.0000036424663
|
||||||
objectReference: {fileID: 0}
|
objectReference: {fileID: 0}
|
||||||
- target: {fileID: 919132149155446097, guid: 4d6a1ca519b6789419c00178b5d2b983, type: 3}
|
- target: {fileID: 919132149155446097, guid: 4d6a1ca519b6789419c00178b5d2b983, type: 3}
|
||||||
propertyPath: m_Name
|
propertyPath: m_Name
|
||||||
|
@ -2200,15 +2203,15 @@ PrefabInstance:
|
||||||
objectReference: {fileID: 0}
|
objectReference: {fileID: 0}
|
||||||
- target: {fileID: 7193526923147233643, guid: 4d6a1ca519b6789419c00178b5d2b983, type: 3}
|
- target: {fileID: 7193526923147233643, guid: 4d6a1ca519b6789419c00178b5d2b983, type: 3}
|
||||||
propertyPath: m_LocalEulerAnglesHint.x
|
propertyPath: m_LocalEulerAnglesHint.x
|
||||||
value: 0
|
value: 7.016709e-15
|
||||||
objectReference: {fileID: 0}
|
objectReference: {fileID: 0}
|
||||||
- target: {fileID: 7193526923147233643, guid: 4d6a1ca519b6789419c00178b5d2b983, type: 3}
|
- target: {fileID: 7193526923147233643, guid: 4d6a1ca519b6789419c00178b5d2b983, type: 3}
|
||||||
propertyPath: m_LocalEulerAnglesHint.y
|
propertyPath: m_LocalEulerAnglesHint.y
|
||||||
value: 0.000008723224
|
value: -179.99998
|
||||||
objectReference: {fileID: 0}
|
objectReference: {fileID: 0}
|
||||||
- target: {fileID: 7193526923147233643, guid: 4d6a1ca519b6789419c00178b5d2b983, type: 3}
|
- target: {fileID: 7193526923147233643, guid: 4d6a1ca519b6789419c00178b5d2b983, type: 3}
|
||||||
propertyPath: m_LocalEulerAnglesHint.z
|
propertyPath: m_LocalEulerAnglesHint.z
|
||||||
value: 0
|
value: -180
|
||||||
objectReference: {fileID: 0}
|
objectReference: {fileID: 0}
|
||||||
m_RemovedComponents: []
|
m_RemovedComponents: []
|
||||||
m_SourcePrefab: {fileID: 100100000, guid: 4d6a1ca519b6789419c00178b5d2b983, type: 3}
|
m_SourcePrefab: {fileID: 100100000, guid: 4d6a1ca519b6789419c00178b5d2b983, type: 3}
|
||||||
|
@ -2320,10 +2323,6 @@ PrefabInstance:
|
||||||
propertyPath: m_Layer
|
propertyPath: m_Layer
|
||||||
value: 0
|
value: 0
|
||||||
objectReference: {fileID: 0}
|
objectReference: {fileID: 0}
|
||||||
- target: {fileID: -3631897138051517956, guid: 69111fa8d72cdb847ad14fc0d8fd984c, type: 3}
|
|
||||||
propertyPath: m_LocalEulerAnglesHint.y
|
|
||||||
value: 0.0000036424663
|
|
||||||
objectReference: {fileID: 0}
|
|
||||||
- target: {fileID: -3203485738917446855, guid: 69111fa8d72cdb847ad14fc0d8fd984c, type: 3}
|
- target: {fileID: -3203485738917446855, guid: 69111fa8d72cdb847ad14fc0d8fd984c, type: 3}
|
||||||
propertyPath: m_Layer
|
propertyPath: m_Layer
|
||||||
value: 0
|
value: 0
|
||||||
|
@ -2352,22 +2351,6 @@ PrefabInstance:
|
||||||
propertyPath: m_IsActive
|
propertyPath: m_IsActive
|
||||||
value: 0
|
value: 0
|
||||||
objectReference: {fileID: 0}
|
objectReference: {fileID: 0}
|
||||||
- target: {fileID: 2043205891256864238, guid: 69111fa8d72cdb847ad14fc0d8fd984c, type: 3}
|
|
||||||
propertyPath: m_LocalEulerAnglesHint.x
|
|
||||||
value: -89.98021
|
|
||||||
objectReference: {fileID: 0}
|
|
||||||
- target: {fileID: 3042270054197743208, guid: 69111fa8d72cdb847ad14fc0d8fd984c, type: 3}
|
|
||||||
propertyPath: m_LocalEulerAnglesHint.x
|
|
||||||
value: 7.016709e-15
|
|
||||||
objectReference: {fileID: 0}
|
|
||||||
- target: {fileID: 3042270054197743208, guid: 69111fa8d72cdb847ad14fc0d8fd984c, type: 3}
|
|
||||||
propertyPath: m_LocalEulerAnglesHint.y
|
|
||||||
value: -179.99998
|
|
||||||
objectReference: {fileID: 0}
|
|
||||||
- target: {fileID: 3042270054197743208, guid: 69111fa8d72cdb847ad14fc0d8fd984c, type: 3}
|
|
||||||
propertyPath: m_LocalEulerAnglesHint.z
|
|
||||||
value: -180
|
|
||||||
objectReference: {fileID: 0}
|
|
||||||
- target: {fileID: 7226848437003788013, guid: 69111fa8d72cdb847ad14fc0d8fd984c, type: 3}
|
- target: {fileID: 7226848437003788013, guid: 69111fa8d72cdb847ad14fc0d8fd984c, type: 3}
|
||||||
propertyPath: m_Layer
|
propertyPath: m_Layer
|
||||||
value: 0
|
value: 0
|
||||||
|
|
File diff suppressed because it is too large
Load diff
8299
Assets/Resources/Games/slotMonster.prefab
Normal file
8299
Assets/Resources/Games/slotMonster.prefab
Normal file
File diff suppressed because it is too large
Load diff
7
Assets/Resources/Games/slotMonster.prefab.meta
Normal file
7
Assets/Resources/Games/slotMonster.prefab.meta
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: e7ad928f6070e394a9dc9f42ce17881b
|
||||||
|
PrefabImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName: ntrslotmonster/common
|
||||||
|
assetBundleVariant:
|
7281
Assets/Resources/Games/sumoBrothers.prefab
Normal file
7281
Assets/Resources/Games/sumoBrothers.prefab
Normal file
File diff suppressed because it is too large
Load diff
7
Assets/Resources/Games/sumoBrothers.prefab.meta
Normal file
7
Assets/Resources/Games/sumoBrothers.prefab.meta
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 470ba3b49007faf44bcf604b10437d5c
|
||||||
|
PrefabImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
|
@ -2198,7 +2198,7 @@ RectTransform:
|
||||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
m_AnchorMin: {x: 0, y: 0.5}
|
m_AnchorMin: {x: 0, y: 0.5}
|
||||||
m_AnchorMax: {x: 0, y: 0.5}
|
m_AnchorMax: {x: 0, y: 0.5}
|
||||||
m_AnchoredPosition: {x: -0.25, y: 0}
|
m_AnchoredPosition: {x: -0.25, y: 1}
|
||||||
m_SizeDelta: {x: 1, y: 1}
|
m_SizeDelta: {x: 1, y: 1}
|
||||||
m_Pivot: {x: 0, y: 0.5}
|
m_Pivot: {x: 0, y: 0.5}
|
||||||
--- !u!222 &1479785503205304790
|
--- !u!222 &1479785503205304790
|
||||||
|
|
|
@ -14,8 +14,8 @@ RenderTexture:
|
||||||
m_DownscaleFallback: 0
|
m_DownscaleFallback: 0
|
||||||
m_IsAlphaChannelOptional: 0
|
m_IsAlphaChannelOptional: 0
|
||||||
serializedVersion: 5
|
serializedVersion: 5
|
||||||
m_Width: 1018
|
m_Width: 1057
|
||||||
m_Height: 572
|
m_Height: 595
|
||||||
m_AntiAliasing: 2
|
m_AntiAliasing: 2
|
||||||
m_MipCount: -1
|
m_MipCount: -1
|
||||||
m_DepthStencilFormat: 92
|
m_DepthStencilFormat: 92
|
||||||
|
|
|
@ -8,7 +8,7 @@ Material:
|
||||||
m_PrefabInstance: {fileID: 0}
|
m_PrefabInstance: {fileID: 0}
|
||||||
m_PrefabAsset: {fileID: 0}
|
m_PrefabAsset: {fileID: 0}
|
||||||
m_Name: GameTexMaterial
|
m_Name: GameTexMaterial
|
||||||
m_Shader: {fileID: 4800000, guid: 0ae724cf80d801b43b140517e4bbb12f, type: 3}
|
m_Shader: {fileID: 4800000, guid: 0596a6838d78f624397b642817cf20bc, type: 3}
|
||||||
m_ValidKeywords: []
|
m_ValidKeywords: []
|
||||||
m_InvalidKeywords: []
|
m_InvalidKeywords: []
|
||||||
m_LightmapFlags: 4
|
m_LightmapFlags: 4
|
||||||
|
@ -20,10 +20,18 @@ Material:
|
||||||
m_SavedProperties:
|
m_SavedProperties:
|
||||||
serializedVersion: 3
|
serializedVersion: 3
|
||||||
m_TexEnvs:
|
m_TexEnvs:
|
||||||
|
- _BlendTex:
|
||||||
|
m_Texture: {fileID: 0}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
- _BumpMap:
|
- _BumpMap:
|
||||||
m_Texture: {fileID: 0}
|
m_Texture: {fileID: 0}
|
||||||
m_Scale: {x: 1, y: 1}
|
m_Scale: {x: 1, y: 1}
|
||||||
m_Offset: {x: 0, y: 0}
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _Cube:
|
||||||
|
m_Texture: {fileID: 0}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
- _DetailAlbedoMap:
|
- _DetailAlbedoMap:
|
||||||
m_Texture: {fileID: 0}
|
m_Texture: {fileID: 0}
|
||||||
m_Scale: {x: 1, y: 1}
|
m_Scale: {x: 1, y: 1}
|
||||||
|
@ -40,10 +48,18 @@ Material:
|
||||||
m_Texture: {fileID: 0}
|
m_Texture: {fileID: 0}
|
||||||
m_Scale: {x: 1, y: 1}
|
m_Scale: {x: 1, y: 1}
|
||||||
m_Offset: {x: 0, y: 0}
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _FaceTex:
|
||||||
|
m_Texture: {fileID: 0}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
- _MainTex:
|
- _MainTex:
|
||||||
m_Texture: {fileID: 0}
|
m_Texture: {fileID: 0}
|
||||||
m_Scale: {x: 1, y: 1}
|
m_Scale: {x: 1, y: 1}
|
||||||
m_Offset: {x: 0, y: 0}
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _MaskTex:
|
||||||
|
m_Texture: {fileID: 0}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
- _MetallicGlossMap:
|
- _MetallicGlossMap:
|
||||||
m_Texture: {fileID: 0}
|
m_Texture: {fileID: 0}
|
||||||
m_Scale: {x: 1, y: 1}
|
m_Scale: {x: 1, y: 1}
|
||||||
|
@ -52,6 +68,10 @@ Material:
|
||||||
m_Texture: {fileID: 0}
|
m_Texture: {fileID: 0}
|
||||||
m_Scale: {x: 1, y: 1}
|
m_Scale: {x: 1, y: 1}
|
||||||
m_Offset: {x: 0, y: 0}
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _OutlineTex:
|
||||||
|
m_Texture: {fileID: 0}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
- _ParallaxMap:
|
- _ParallaxMap:
|
||||||
m_Texture: {fileID: 0}
|
m_Texture: {fileID: 0}
|
||||||
m_Scale: {x: 1, y: 1}
|
m_Scale: {x: 1, y: 1}
|
||||||
|
@ -63,21 +83,51 @@ Material:
|
||||||
m_Ints: []
|
m_Ints: []
|
||||||
m_Floats:
|
m_Floats:
|
||||||
- _Alpha: 1
|
- _Alpha: 1
|
||||||
|
- _Bevel: 0.5
|
||||||
|
- _BevelClamp: 0
|
||||||
|
- _BevelOffset: 0
|
||||||
|
- _BevelRoundness: 0
|
||||||
|
- _BevelWidth: 0
|
||||||
- _BlendDst: 1
|
- _BlendDst: 1
|
||||||
- _BlendSrc: 1
|
- _BlendSrc: 1
|
||||||
|
- _BumpFace: 0.5
|
||||||
|
- _BumpOutline: 0.5
|
||||||
- _BumpScale: 1
|
- _BumpScale: 1
|
||||||
- _ColorMask: 15
|
- _ColorMask: 15
|
||||||
|
- _CullMode: 0
|
||||||
- _Cutoff: 0.5
|
- _Cutoff: 0.5
|
||||||
- _DetailNormalMapScale: 1
|
- _DetailNormalMapScale: 1
|
||||||
- _DstBlend: 0
|
- _DstBlend: 0
|
||||||
|
- _FaceDilate: 0
|
||||||
|
- _FaceShininess: 0
|
||||||
|
- _FaceUVSpeedX: 0
|
||||||
|
- _FaceUVSpeedY: 0
|
||||||
- _GlossMapScale: 1
|
- _GlossMapScale: 1
|
||||||
- _Glossiness: 0.5
|
- _Glossiness: 0.5
|
||||||
- _GlossyReflections: 1
|
- _GlossyReflections: 1
|
||||||
|
- _GlowInner: 0.05
|
||||||
|
- _GlowOffset: 0
|
||||||
|
- _GlowOuter: 0.05
|
||||||
|
- _GlowPower: 0.75
|
||||||
|
- _GradientScale: 5
|
||||||
- _InvFade: 1
|
- _InvFade: 1
|
||||||
- _Metallic: 0
|
- _Metallic: 0
|
||||||
- _Mode: 0
|
- _Mode: 0
|
||||||
- _OcclusionStrength: 1
|
- _OcclusionStrength: 1
|
||||||
|
- _OutlineShininess: 0
|
||||||
|
- _OutlineSoftness: 0
|
||||||
|
- _OutlineUVSpeedX: 0
|
||||||
|
- _OutlineUVSpeedY: 0
|
||||||
|
- _OutlineWidth: 0
|
||||||
- _Parallax: 0.02
|
- _Parallax: 0.02
|
||||||
|
- _PerspectiveFilter: 0.875
|
||||||
|
- _ScaleRatioA: 1
|
||||||
|
- _ScaleRatioB: 1
|
||||||
|
- _ScaleRatioC: 1
|
||||||
|
- _ScaleX: 1
|
||||||
|
- _ScaleY: 1
|
||||||
|
- _ShaderFlags: 0
|
||||||
|
- _Sharpness: 0
|
||||||
- _SmoothnessTextureChannel: 0
|
- _SmoothnessTextureChannel: 0
|
||||||
- _SpecularHighlights: 1
|
- _SpecularHighlights: 1
|
||||||
- _SrcBlend: 1
|
- _SrcBlend: 1
|
||||||
|
@ -86,12 +136,27 @@ Material:
|
||||||
- _StencilOp: 0
|
- _StencilOp: 0
|
||||||
- _StencilReadMask: 255
|
- _StencilReadMask: 255
|
||||||
- _StencilWriteMask: 255
|
- _StencilWriteMask: 255
|
||||||
|
- _TextureHeight: 512
|
||||||
|
- _TextureWidth: 512
|
||||||
- _UVSec: 0
|
- _UVSec: 0
|
||||||
- _UseUIAlphaClip: 0
|
- _UseUIAlphaClip: 0
|
||||||
|
- _VertexOffsetX: 0
|
||||||
|
- _VertexOffsetY: 0
|
||||||
|
- _WeightBold: 0.5
|
||||||
|
- _WeightNormal: 0
|
||||||
- _ZWrite: 1
|
- _ZWrite: 1
|
||||||
m_Colors:
|
m_Colors:
|
||||||
|
- _BlendColor: {r: 1, g: 1, b: 1, a: 1}
|
||||||
- _Color: {r: 1, g: 1, b: 1, a: 1}
|
- _Color: {r: 1, g: 1, b: 1, a: 1}
|
||||||
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
|
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
|
||||||
|
- _EnvMatrixRotation: {r: 0, g: 0, b: 0, a: 0}
|
||||||
|
- _FaceColor: {r: 1, g: 1, b: 1, a: 1}
|
||||||
|
- _GlowColor: {r: 0, g: 1, b: 0, a: 0.5}
|
||||||
|
- _MainColor: {r: 1, g: 1, b: 1, a: 1}
|
||||||
|
- _OutlineColor: {r: 0, g: 0, b: 0, a: 1}
|
||||||
|
- _ReflectFaceColor: {r: 0, g: 0, b: 0, a: 1}
|
||||||
|
- _ReflectOutlineColor: {r: 0, g: 0, b: 0, a: 1}
|
||||||
|
- _SpecColor: {r: 0, g: 0, b: 0, a: 1}
|
||||||
- _Tint1: {r: 1, g: 1, b: 1, a: 0}
|
- _Tint1: {r: 1, g: 1, b: 1, a: 0}
|
||||||
- _Tint2: {r: 1, g: 1, b: 1, a: 0}
|
- _Tint2: {r: 1, g: 1, b: 1, a: 0}
|
||||||
m_BuildTextureStacks: []
|
m_BuildTextureStacks: []
|
||||||
|
|
|
@ -14,8 +14,8 @@ RenderTexture:
|
||||||
m_DownscaleFallback: 0
|
m_DownscaleFallback: 0
|
||||||
m_IsAlphaChannelOptional: 0
|
m_IsAlphaChannelOptional: 0
|
||||||
serializedVersion: 5
|
serializedVersion: 5
|
||||||
m_Width: 1527
|
m_Width: 1585
|
||||||
m_Height: 858
|
m_Height: 892
|
||||||
m_AntiAliasing: 1
|
m_AntiAliasing: 1
|
||||||
m_MipCount: -1
|
m_MipCount: -1
|
||||||
m_DepthStencilFormat: 92
|
m_DepthStencilFormat: 92
|
||||||
|
|
|
@ -1459,7 +1459,7 @@ MonoBehaviour:
|
||||||
m_EditorClassIdentifier:
|
m_EditorClassIdentifier:
|
||||||
m_Material: {fileID: 0}
|
m_Material: {fileID: 0}
|
||||||
m_Color: {r: 0.1254902, g: 0.1254902, b: 0.1254902, a: 1}
|
m_Color: {r: 0.1254902, g: 0.1254902, b: 0.1254902, a: 1}
|
||||||
m_RaycastTarget: 1
|
m_RaycastTarget: 0
|
||||||
m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
|
m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
|
||||||
m_Maskable: 1
|
m_Maskable: 1
|
||||||
m_OnCullStateChanged:
|
m_OnCullStateChanged:
|
||||||
|
@ -1688,7 +1688,7 @@ MonoBehaviour:
|
||||||
m_EditorClassIdentifier:
|
m_EditorClassIdentifier:
|
||||||
m_Material: {fileID: 0}
|
m_Material: {fileID: 0}
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 1}
|
m_Color: {r: 1, g: 1, b: 1, a: 1}
|
||||||
m_RaycastTarget: 1
|
m_RaycastTarget: 0
|
||||||
m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
|
m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
|
||||||
m_Maskable: 1
|
m_Maskable: 1
|
||||||
m_OnCullStateChanged:
|
m_OnCullStateChanged:
|
||||||
|
|
BIN
Assets/Resources/Sfx/bassDrumNTR.wav
Normal file
BIN
Assets/Resources/Sfx/bassDrumNTR.wav
Normal file
Binary file not shown.
22
Assets/Resources/Sfx/bassDrumNTR.wav.meta
Normal file
22
Assets/Resources/Sfx/bassDrumNTR.wav.meta
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: e9ab216893d3c8947b108638a27d6b47
|
||||||
|
AudioImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 6
|
||||||
|
defaultSettings:
|
||||||
|
loadType: 0
|
||||||
|
sampleRateSetting: 0
|
||||||
|
sampleRateOverride: 44100
|
||||||
|
compressionFormat: 1
|
||||||
|
quality: 1
|
||||||
|
conversionMode: 0
|
||||||
|
platformSettingOverrides: {}
|
||||||
|
forceToMono: 0
|
||||||
|
normalize: 1
|
||||||
|
preloadAudioData: 1
|
||||||
|
loadInBackground: 0
|
||||||
|
ambisonic: 0
|
||||||
|
3D: 1
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
|
@ -1,5 +1,5 @@
|
||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: 2a94373c8707a7942a3f0fe8c7cd192b
|
guid: 86beea3bfc10f2d45a9625d0b302de4f
|
||||||
AudioImporter:
|
AudioImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
serializedVersion: 6
|
serializedVersion: 6
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: 7a9baba2f5178804baa7f39d58a38b3f
|
guid: ca419971b69be814ca0938d90116e096
|
||||||
AudioImporter:
|
AudioImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
serializedVersion: 6
|
serializedVersion: 6
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: bdcb9e8693061344eb9cc0fda38ad4ea
|
guid: 2728326c0164a8247bc6cb2568005078
|
||||||
AudioImporter:
|
AudioImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
serializedVersion: 6
|
serializedVersion: 6
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: aa9fbfc3e4e6d9d47b04be6c3f539887
|
guid: 49120028920989f4d9203a98295b9647
|
||||||
AudioImporter:
|
AudioImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
serializedVersion: 6
|
serializedVersion: 6
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: eb88bd659d811ac4888be5754f3142fa
|
guid: b5555e2f6d6886e4394bc5d39d8ac9a4
|
||||||
AudioImporter:
|
AudioImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
serializedVersion: 6
|
serializedVersion: 6
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: d8db0b41cc535b94e86c9e59c0bd6cdd
|
guid: 88421f872b2217248a7f40af473b1e1d
|
||||||
AudioImporter:
|
AudioImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
serializedVersion: 6
|
serializedVersion: 6
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: b9b2cec605f746c498c02e6c4034f471
|
guid: d05aebd5e18e8cb49a88c14c11eb0cc2
|
||||||
AudioImporter:
|
AudioImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
serializedVersion: 6
|
serializedVersion: 6
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: e0411e2a612315744849de3e83df739d
|
guid: 7dfc0c530018c754e9a97fc20d484990
|
||||||
AudioImporter:
|
AudioImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
serializedVersion: 6
|
serializedVersion: 6
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: ed47c220ed62cf540a6d2c4fb8e2db39
|
guid: 0876eee29a3505642b5033c4b90c4fb7
|
||||||
AudioImporter:
|
AudioImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
serializedVersion: 6
|
serializedVersion: 6
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: 0adde17d618c6e449814a3593b07f373
|
guid: f1b31393020dc5e43803be9f03e1313e
|
||||||
AudioImporter:
|
AudioImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
serializedVersion: 6
|
serializedVersion: 6
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: b9224b9c80eed2741abfb0d2b926c64c
|
guid: 2562167f3eaca1b4fbda13fc4d22bcfa
|
||||||
AudioImporter:
|
AudioImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
serializedVersion: 6
|
serializedVersion: 6
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: 1390bf51e746bb3489d74db5537e9b50
|
guid: e7b44c0b248bd7f44b6ee93d6892b1e3
|
||||||
AudioImporter:
|
AudioImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
serializedVersion: 6
|
serializedVersion: 6
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: 8735177bf148ba34ba021c5ca9e3b9b8
|
guid: 9a2ed598b54246f4fabef239b2ec4eb1
|
||||||
AudioImporter:
|
AudioImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
serializedVersion: 6
|
serializedVersion: 6
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: a95faf62d3ab9ab4da3eb1c2b189ad7b
|
guid: c72bff5570dd3824f96b9179c2bbca39
|
||||||
AudioImporter:
|
AudioImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
serializedVersion: 6
|
serializedVersion: 6
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: fc9c5dd2898539e4d941b2e371ed7dc4
|
guid: 2c170e702f22bb0459ed027148bff81c
|
||||||
AudioImporter:
|
AudioImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
serializedVersion: 6
|
serializedVersion: 6
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: 276ab9b183058ca4b969ffbfa7f1933b
|
guid: 3dde2a6ea21064e47889595d3b841fb9
|
||||||
AudioImporter:
|
AudioImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
serializedVersion: 6
|
serializedVersion: 6
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: d252636c03445bc46ae4cc1d556a5605
|
guid: 7f071734103e25f4fb36792de621ccbd
|
||||||
AudioImporter:
|
AudioImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
serializedVersion: 6
|
serializedVersion: 6
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: 51b243a47e187a348a662bb705ea87a3
|
guid: cd01732f92ba8bf43b9c4297eab69b4a
|
||||||
AudioImporter:
|
AudioImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
serializedVersion: 6
|
serializedVersion: 6
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: 24d2d807573ba9949b99b7f3ab490bdb
|
guid: 11492a275205c1444a874d12f51e1343
|
||||||
AudioImporter:
|
AudioImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
serializedVersion: 6
|
serializedVersion: 6
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: 65b255473c87bda4eae7aa9fb472b6ff
|
guid: b77c962dd8140c04f9042927957392c3
|
||||||
AudioImporter:
|
AudioImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
serializedVersion: 6
|
serializedVersion: 6
|
||||||
|
|
|
@ -18,5 +18,5 @@ AudioImporter:
|
||||||
ambisonic: 0
|
ambisonic: 0
|
||||||
3D: 1
|
3D: 1
|
||||||
userData:
|
userData:
|
||||||
assetBundleName:
|
assetBundleName: rvlbadminton/common
|
||||||
assetBundleVariant:
|
assetBundleVariant:
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: 7b5043598e8ba3e4cab4db512a80b0a3
|
guid: 515695a45bf741a44b28e41ef1352915
|
||||||
AudioImporter:
|
AudioImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
serializedVersion: 6
|
serializedVersion: 6
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: 88af34bf9935b1c4091d756f656fa6e8
|
guid: c19958e9ad7378746a7babbb9c95fc15
|
||||||
AudioImporter:
|
AudioImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
serializedVersion: 6
|
serializedVersion: 6
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: 94f2261d121eac641a10e0abb5fa2ce4
|
guid: 549d5905e0c50a141a7fca5c6a891f5a
|
||||||
AudioImporter:
|
AudioImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
serializedVersion: 6
|
serializedVersion: 6
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: 8a0992a37b62c1b469d4e4e650b593da
|
guid: fcacb25137c506f45bc8cc1f621093cc
|
||||||
AudioImporter:
|
AudioImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
serializedVersion: 6
|
serializedVersion: 6
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: 24ea4abf57f853f48aa534d1a59941a0
|
guid: f94da4f8a4ebaf04d9ed8e3eac330fa8
|
||||||
AudioImporter:
|
AudioImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
serializedVersion: 6
|
serializedVersion: 6
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: 039cbeb8005ba0e429f2b06c61869a97
|
guid: e1402fba5ade3b04baf1e2a56c3be457
|
||||||
AudioImporter:
|
AudioImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
serializedVersion: 6
|
serializedVersion: 6
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: cbfd41d515f37c849a31caaee59e0036
|
guid: 6363a4aedb968464a976664c4a1e650a
|
||||||
AudioImporter:
|
AudioImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
serializedVersion: 6
|
serializedVersion: 6
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: bf28f50f5219ee04bb8f617d89b01de3
|
guid: 19afeed99ea616846bbd80cff24e0a3c
|
||||||
AudioImporter:
|
AudioImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
serializedVersion: 6
|
serializedVersion: 6
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: 9d8a49a7004b1d4449aaf210c57e1b22
|
guid: 0c29c3afdfad0724585ef7764e8f314f
|
||||||
AudioImporter:
|
AudioImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
serializedVersion: 6
|
serializedVersion: 6
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: 60e389f4797ac3b478c20c6e0b30db5c
|
guid: 95c03d06508a4e8498aafac4239979cb
|
||||||
AudioImporter:
|
AudioImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
serializedVersion: 6
|
serializedVersion: 6
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: db080b3cff86b9e44b9561e4bb07fb69
|
guid: 5ed15a2dc1eb1444a840356b71ce2b85
|
||||||
AudioImporter:
|
AudioImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
serializedVersion: 6
|
serializedVersion: 6
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: 4bf18c28e07b8fb488403e3fc2080f36
|
guid: 78c34852f9d66694a98dc1b07fb0570e
|
||||||
AudioImporter:
|
AudioImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
serializedVersion: 6
|
serializedVersion: 6
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: d59bc63e331a573429c19dd42fbfae7c
|
guid: ded7741d0ec37a34997cf72deb9e8e76
|
||||||
AudioImporter:
|
AudioImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
serializedVersion: 6
|
serializedVersion: 6
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: 1648d2274a996854c8c43511327b0c9a
|
guid: defa7caddb095e948aca05b2b1987be9
|
||||||
AudioImporter:
|
AudioImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
serializedVersion: 6
|
serializedVersion: 6
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: 3fd699e1173c80f49ad1ae0042517e55
|
guid: 62e9825a8a075f14ab89ac3cf4a58b25
|
||||||
AudioImporter:
|
AudioImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
serializedVersion: 6
|
serializedVersion: 6
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: eaeb6fa244df37e4d9c737a70d967c29
|
guid: fe463a2b154e75442b063372c5c9f6e2
|
||||||
AudioImporter:
|
AudioImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
serializedVersion: 6
|
serializedVersion: 6
|
||||||
|
|
8
Assets/Resources/Sfx/games/airRally/en.meta
Normal file
8
Assets/Resources/Sfx/games/airRally/en.meta
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 465bccd87e65a8e4b9ebc3c2a35d3406
|
||||||
|
folderAsset: yes
|
||||||
|
DefaultImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName: rvlbadminton/locale
|
||||||
|
assetBundleVariant: en
|
BIN
Assets/Resources/Sfx/games/airRally/en/baBumBumBum_Close1.wav
Normal file
BIN
Assets/Resources/Sfx/games/airRally/en/baBumBumBum_Close1.wav
Normal file
Binary file not shown.
|
@ -0,0 +1,22 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: e3a9eb864a333444fb5df15e4e247c7f
|
||||||
|
AudioImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 6
|
||||||
|
defaultSettings:
|
||||||
|
loadType: 0
|
||||||
|
sampleRateSetting: 0
|
||||||
|
sampleRateOverride: 44100
|
||||||
|
compressionFormat: 2
|
||||||
|
quality: 1
|
||||||
|
conversionMode: 0
|
||||||
|
platformSettingOverrides: {}
|
||||||
|
forceToMono: 0
|
||||||
|
normalize: 1
|
||||||
|
preloadAudioData: 1
|
||||||
|
loadInBackground: 0
|
||||||
|
ambisonic: 0
|
||||||
|
3D: 1
|
||||||
|
userData:
|
||||||
|
assetBundleName: rvlbadminton/locale
|
||||||
|
assetBundleVariant: en
|
BIN
Assets/Resources/Sfx/games/airRally/en/baBumBumBum_Close2.wav
Normal file
BIN
Assets/Resources/Sfx/games/airRally/en/baBumBumBum_Close2.wav
Normal file
Binary file not shown.
|
@ -0,0 +1,22 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: da1767b7722f20849966ee9cc9970af7
|
||||||
|
AudioImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 6
|
||||||
|
defaultSettings:
|
||||||
|
loadType: 0
|
||||||
|
sampleRateSetting: 0
|
||||||
|
sampleRateOverride: 44100
|
||||||
|
compressionFormat: 2
|
||||||
|
quality: 1
|
||||||
|
conversionMode: 0
|
||||||
|
platformSettingOverrides: {}
|
||||||
|
forceToMono: 0
|
||||||
|
normalize: 1
|
||||||
|
preloadAudioData: 1
|
||||||
|
loadInBackground: 0
|
||||||
|
ambisonic: 0
|
||||||
|
3D: 1
|
||||||
|
userData:
|
||||||
|
assetBundleName: rvlbadminton/locale
|
||||||
|
assetBundleVariant: en
|
BIN
Assets/Resources/Sfx/games/airRally/en/baBumBumBum_Close3.wav
Normal file
BIN
Assets/Resources/Sfx/games/airRally/en/baBumBumBum_Close3.wav
Normal file
Binary file not shown.
|
@ -0,0 +1,22 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 953759a03e17eda449475690f11f32a0
|
||||||
|
AudioImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 6
|
||||||
|
defaultSettings:
|
||||||
|
loadType: 0
|
||||||
|
sampleRateSetting: 0
|
||||||
|
sampleRateOverride: 44100
|
||||||
|
compressionFormat: 2
|
||||||
|
quality: 1
|
||||||
|
conversionMode: 0
|
||||||
|
platformSettingOverrides: {}
|
||||||
|
forceToMono: 0
|
||||||
|
normalize: 1
|
||||||
|
preloadAudioData: 1
|
||||||
|
loadInBackground: 0
|
||||||
|
ambisonic: 0
|
||||||
|
3D: 1
|
||||||
|
userData:
|
||||||
|
assetBundleName: rvlbadminton/locale
|
||||||
|
assetBundleVariant: en
|
BIN
Assets/Resources/Sfx/games/airRally/en/baBumBumBum_Close4.wav
Normal file
BIN
Assets/Resources/Sfx/games/airRally/en/baBumBumBum_Close4.wav
Normal file
Binary file not shown.
|
@ -0,0 +1,22 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 169dfa103ccbc9642983bac5a06ea3e9
|
||||||
|
AudioImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 6
|
||||||
|
defaultSettings:
|
||||||
|
loadType: 0
|
||||||
|
sampleRateSetting: 0
|
||||||
|
sampleRateOverride: 44100
|
||||||
|
compressionFormat: 2
|
||||||
|
quality: 1
|
||||||
|
conversionMode: 0
|
||||||
|
platformSettingOverrides: {}
|
||||||
|
forceToMono: 0
|
||||||
|
normalize: 1
|
||||||
|
preloadAudioData: 1
|
||||||
|
loadInBackground: 0
|
||||||
|
ambisonic: 0
|
||||||
|
3D: 1
|
||||||
|
userData:
|
||||||
|
assetBundleName: rvlbadminton/locale
|
||||||
|
assetBundleVariant: en
|
BIN
Assets/Resources/Sfx/games/airRally/en/baBumBumBum_Far1.ogg
Normal file
BIN
Assets/Resources/Sfx/games/airRally/en/baBumBumBum_Far1.ogg
Normal file
Binary file not shown.
|
@ -0,0 +1,22 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: b77a4bc53f60bf5479dd2468697b1478
|
||||||
|
AudioImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 6
|
||||||
|
defaultSettings:
|
||||||
|
loadType: 0
|
||||||
|
sampleRateSetting: 0
|
||||||
|
sampleRateOverride: 44100
|
||||||
|
compressionFormat: 2
|
||||||
|
quality: 1
|
||||||
|
conversionMode: 0
|
||||||
|
platformSettingOverrides: {}
|
||||||
|
forceToMono: 0
|
||||||
|
normalize: 1
|
||||||
|
preloadAudioData: 1
|
||||||
|
loadInBackground: 0
|
||||||
|
ambisonic: 0
|
||||||
|
3D: 1
|
||||||
|
userData:
|
||||||
|
assetBundleName: rvlbadminton/locale
|
||||||
|
assetBundleVariant: en
|
BIN
Assets/Resources/Sfx/games/airRally/en/baBumBumBum_Far2.ogg
Normal file
BIN
Assets/Resources/Sfx/games/airRally/en/baBumBumBum_Far2.ogg
Normal file
Binary file not shown.
|
@ -0,0 +1,22 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: f8de60e34dda41449afb942520f86dfc
|
||||||
|
AudioImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 6
|
||||||
|
defaultSettings:
|
||||||
|
loadType: 0
|
||||||
|
sampleRateSetting: 0
|
||||||
|
sampleRateOverride: 44100
|
||||||
|
compressionFormat: 2
|
||||||
|
quality: 1
|
||||||
|
conversionMode: 0
|
||||||
|
platformSettingOverrides: {}
|
||||||
|
forceToMono: 0
|
||||||
|
normalize: 1
|
||||||
|
preloadAudioData: 1
|
||||||
|
loadInBackground: 0
|
||||||
|
ambisonic: 0
|
||||||
|
3D: 1
|
||||||
|
userData:
|
||||||
|
assetBundleName: rvlbadminton/locale
|
||||||
|
assetBundleVariant: en
|
BIN
Assets/Resources/Sfx/games/airRally/en/baBumBumBum_Far3.ogg
Normal file
BIN
Assets/Resources/Sfx/games/airRally/en/baBumBumBum_Far3.ogg
Normal file
Binary file not shown.
|
@ -0,0 +1,22 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 9ba3ab4569c8a6340ac654da3bda321a
|
||||||
|
AudioImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 6
|
||||||
|
defaultSettings:
|
||||||
|
loadType: 0
|
||||||
|
sampleRateSetting: 0
|
||||||
|
sampleRateOverride: 44100
|
||||||
|
compressionFormat: 2
|
||||||
|
quality: 1
|
||||||
|
conversionMode: 0
|
||||||
|
platformSettingOverrides: {}
|
||||||
|
forceToMono: 0
|
||||||
|
normalize: 1
|
||||||
|
preloadAudioData: 1
|
||||||
|
loadInBackground: 0
|
||||||
|
ambisonic: 0
|
||||||
|
3D: 1
|
||||||
|
userData:
|
||||||
|
assetBundleName: rvlbadminton/locale
|
||||||
|
assetBundleVariant: en
|
BIN
Assets/Resources/Sfx/games/airRally/en/baBumBumBum_Far4.ogg
Normal file
BIN
Assets/Resources/Sfx/games/airRally/en/baBumBumBum_Far4.ogg
Normal file
Binary file not shown.
|
@ -0,0 +1,22 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 091fc89c683f1d740abea72398a7bffc
|
||||||
|
AudioImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 6
|
||||||
|
defaultSettings:
|
||||||
|
loadType: 0
|
||||||
|
sampleRateSetting: 0
|
||||||
|
sampleRateOverride: 44100
|
||||||
|
compressionFormat: 2
|
||||||
|
quality: 1
|
||||||
|
conversionMode: 0
|
||||||
|
platformSettingOverrides: {}
|
||||||
|
forceToMono: 0
|
||||||
|
normalize: 1
|
||||||
|
preloadAudioData: 1
|
||||||
|
loadInBackground: 0
|
||||||
|
ambisonic: 0
|
||||||
|
3D: 1
|
||||||
|
userData:
|
||||||
|
assetBundleName: rvlbadminton/locale
|
||||||
|
assetBundleVariant: en
|
BIN
Assets/Resources/Sfx/games/airRally/en/baBumBumBum_FarAlt1.wav
Normal file
BIN
Assets/Resources/Sfx/games/airRally/en/baBumBumBum_FarAlt1.wav
Normal file
Binary file not shown.
|
@ -0,0 +1,22 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 0069c5b2cd80b7246957d233d6806dd6
|
||||||
|
AudioImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 6
|
||||||
|
defaultSettings:
|
||||||
|
loadType: 0
|
||||||
|
sampleRateSetting: 0
|
||||||
|
sampleRateOverride: 44100
|
||||||
|
compressionFormat: 2
|
||||||
|
quality: 1
|
||||||
|
conversionMode: 0
|
||||||
|
platformSettingOverrides: {}
|
||||||
|
forceToMono: 0
|
||||||
|
normalize: 1
|
||||||
|
preloadAudioData: 1
|
||||||
|
loadInBackground: 0
|
||||||
|
ambisonic: 0
|
||||||
|
3D: 1
|
||||||
|
userData:
|
||||||
|
assetBundleName: rvlbadminton/locale
|
||||||
|
assetBundleVariant: en
|
BIN
Assets/Resources/Sfx/games/airRally/en/baBumBumBum_FarAlt2.wav
Normal file
BIN
Assets/Resources/Sfx/games/airRally/en/baBumBumBum_FarAlt2.wav
Normal file
Binary file not shown.
|
@ -0,0 +1,22 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 11235a74238d29844ae1174dd51dcc4e
|
||||||
|
AudioImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 6
|
||||||
|
defaultSettings:
|
||||||
|
loadType: 0
|
||||||
|
sampleRateSetting: 0
|
||||||
|
sampleRateOverride: 44100
|
||||||
|
compressionFormat: 2
|
||||||
|
quality: 1
|
||||||
|
conversionMode: 0
|
||||||
|
platformSettingOverrides: {}
|
||||||
|
forceToMono: 0
|
||||||
|
normalize: 1
|
||||||
|
preloadAudioData: 1
|
||||||
|
loadInBackground: 0
|
||||||
|
ambisonic: 0
|
||||||
|
3D: 1
|
||||||
|
userData:
|
||||||
|
assetBundleName: rvlbadminton/locale
|
||||||
|
assetBundleVariant: en
|
BIN
Assets/Resources/Sfx/games/airRally/en/baBumBumBum_FarAlt3.wav
Normal file
BIN
Assets/Resources/Sfx/games/airRally/en/baBumBumBum_FarAlt3.wav
Normal file
Binary file not shown.
|
@ -0,0 +1,22 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 621b31b73ef650247a7226360fcc553b
|
||||||
|
AudioImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 6
|
||||||
|
defaultSettings:
|
||||||
|
loadType: 0
|
||||||
|
sampleRateSetting: 0
|
||||||
|
sampleRateOverride: 44100
|
||||||
|
compressionFormat: 2
|
||||||
|
quality: 1
|
||||||
|
conversionMode: 0
|
||||||
|
platformSettingOverrides: {}
|
||||||
|
forceToMono: 0
|
||||||
|
normalize: 1
|
||||||
|
preloadAudioData: 1
|
||||||
|
loadInBackground: 0
|
||||||
|
ambisonic: 0
|
||||||
|
3D: 1
|
||||||
|
userData:
|
||||||
|
assetBundleName: rvlbadminton/locale
|
||||||
|
assetBundleVariant: en
|
BIN
Assets/Resources/Sfx/games/airRally/en/baBumBumBum_FarAlt4.wav
Normal file
BIN
Assets/Resources/Sfx/games/airRally/en/baBumBumBum_FarAlt4.wav
Normal file
Binary file not shown.
|
@ -0,0 +1,22 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 0177c7d43700cd04283557d4041f3e39
|
||||||
|
AudioImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 6
|
||||||
|
defaultSettings:
|
||||||
|
loadType: 0
|
||||||
|
sampleRateSetting: 0
|
||||||
|
sampleRateOverride: 44100
|
||||||
|
compressionFormat: 2
|
||||||
|
quality: 1
|
||||||
|
conversionMode: 0
|
||||||
|
platformSettingOverrides: {}
|
||||||
|
forceToMono: 0
|
||||||
|
normalize: 1
|
||||||
|
preloadAudioData: 1
|
||||||
|
loadInBackground: 0
|
||||||
|
ambisonic: 0
|
||||||
|
3D: 1
|
||||||
|
userData:
|
||||||
|
assetBundleName: rvlbadminton/locale
|
||||||
|
assetBundleVariant: en
|
BIN
Assets/Resources/Sfx/games/airRally/en/baBumBumBum_Farther1.wav
Normal file
BIN
Assets/Resources/Sfx/games/airRally/en/baBumBumBum_Farther1.wav
Normal file
Binary file not shown.
|
@ -0,0 +1,22 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 359fe94652e213c4ebf19f633a218718
|
||||||
|
AudioImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 6
|
||||||
|
defaultSettings:
|
||||||
|
loadType: 0
|
||||||
|
sampleRateSetting: 0
|
||||||
|
sampleRateOverride: 44100
|
||||||
|
compressionFormat: 2
|
||||||
|
quality: 1
|
||||||
|
conversionMode: 0
|
||||||
|
platformSettingOverrides: {}
|
||||||
|
forceToMono: 0
|
||||||
|
normalize: 1
|
||||||
|
preloadAudioData: 1
|
||||||
|
loadInBackground: 0
|
||||||
|
ambisonic: 0
|
||||||
|
3D: 1
|
||||||
|
userData:
|
||||||
|
assetBundleName: rvlbadminton/locale
|
||||||
|
assetBundleVariant: en
|
BIN
Assets/Resources/Sfx/games/airRally/en/baBumBumBum_Farther2.wav
Normal file
BIN
Assets/Resources/Sfx/games/airRally/en/baBumBumBum_Farther2.wav
Normal file
Binary file not shown.
|
@ -0,0 +1,22 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: df33e76d45d33e4498f0968bf462b3f3
|
||||||
|
AudioImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 6
|
||||||
|
defaultSettings:
|
||||||
|
loadType: 0
|
||||||
|
sampleRateSetting: 0
|
||||||
|
sampleRateOverride: 44100
|
||||||
|
compressionFormat: 2
|
||||||
|
quality: 1
|
||||||
|
conversionMode: 0
|
||||||
|
platformSettingOverrides: {}
|
||||||
|
forceToMono: 0
|
||||||
|
normalize: 1
|
||||||
|
preloadAudioData: 1
|
||||||
|
loadInBackground: 0
|
||||||
|
ambisonic: 0
|
||||||
|
3D: 1
|
||||||
|
userData:
|
||||||
|
assetBundleName: rvlbadminton/locale
|
||||||
|
assetBundleVariant: en
|
BIN
Assets/Resources/Sfx/games/airRally/en/baBumBumBum_Farther3.wav
Normal file
BIN
Assets/Resources/Sfx/games/airRally/en/baBumBumBum_Farther3.wav
Normal file
Binary file not shown.
|
@ -0,0 +1,22 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: bbf8c138db772c84b9a82d6e1d306637
|
||||||
|
AudioImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 6
|
||||||
|
defaultSettings:
|
||||||
|
loadType: 0
|
||||||
|
sampleRateSetting: 0
|
||||||
|
sampleRateOverride: 44100
|
||||||
|
compressionFormat: 2
|
||||||
|
quality: 1
|
||||||
|
conversionMode: 0
|
||||||
|
platformSettingOverrides: {}
|
||||||
|
forceToMono: 0
|
||||||
|
normalize: 1
|
||||||
|
preloadAudioData: 1
|
||||||
|
loadInBackground: 0
|
||||||
|
ambisonic: 0
|
||||||
|
3D: 1
|
||||||
|
userData:
|
||||||
|
assetBundleName: rvlbadminton/locale
|
||||||
|
assetBundleVariant: en
|
BIN
Assets/Resources/Sfx/games/airRally/en/baBumBumBum_Farther4.wav
Normal file
BIN
Assets/Resources/Sfx/games/airRally/en/baBumBumBum_Farther4.wav
Normal file
Binary file not shown.
|
@ -0,0 +1,22 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 10ec0230199b77a438a866c0e920a9ca
|
||||||
|
AudioImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 6
|
||||||
|
defaultSettings:
|
||||||
|
loadType: 0
|
||||||
|
sampleRateSetting: 0
|
||||||
|
sampleRateOverride: 44100
|
||||||
|
compressionFormat: 2
|
||||||
|
quality: 1
|
||||||
|
conversionMode: 0
|
||||||
|
platformSettingOverrides: {}
|
||||||
|
forceToMono: 0
|
||||||
|
normalize: 1
|
||||||
|
preloadAudioData: 1
|
||||||
|
loadInBackground: 0
|
||||||
|
ambisonic: 0
|
||||||
|
3D: 1
|
||||||
|
userData:
|
||||||
|
assetBundleName: rvlbadminton/locale
|
||||||
|
assetBundleVariant: en
|
BIN
Assets/Resources/Sfx/games/airRally/en/baBumBumBum_Farthest1.wav
Normal file
BIN
Assets/Resources/Sfx/games/airRally/en/baBumBumBum_Farthest1.wav
Normal file
Binary file not shown.
|
@ -0,0 +1,22 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 4cb68d506c9f76044a98007b04828cb7
|
||||||
|
AudioImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 6
|
||||||
|
defaultSettings:
|
||||||
|
loadType: 0
|
||||||
|
sampleRateSetting: 0
|
||||||
|
sampleRateOverride: 44100
|
||||||
|
compressionFormat: 2
|
||||||
|
quality: 1
|
||||||
|
conversionMode: 0
|
||||||
|
platformSettingOverrides: {}
|
||||||
|
forceToMono: 0
|
||||||
|
normalize: 1
|
||||||
|
preloadAudioData: 1
|
||||||
|
loadInBackground: 0
|
||||||
|
ambisonic: 0
|
||||||
|
3D: 1
|
||||||
|
userData:
|
||||||
|
assetBundleName: rvlbadminton/locale
|
||||||
|
assetBundleVariant: en
|
BIN
Assets/Resources/Sfx/games/airRally/en/baBumBumBum_Farthest2.wav
Normal file
BIN
Assets/Resources/Sfx/games/airRally/en/baBumBumBum_Farthest2.wav
Normal file
Binary file not shown.
|
@ -0,0 +1,22 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 373e6e1e33b7bb047b4fdd64c2472fda
|
||||||
|
AudioImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 6
|
||||||
|
defaultSettings:
|
||||||
|
loadType: 0
|
||||||
|
sampleRateSetting: 0
|
||||||
|
sampleRateOverride: 44100
|
||||||
|
compressionFormat: 2
|
||||||
|
quality: 1
|
||||||
|
conversionMode: 0
|
||||||
|
platformSettingOverrides: {}
|
||||||
|
forceToMono: 0
|
||||||
|
normalize: 1
|
||||||
|
preloadAudioData: 1
|
||||||
|
loadInBackground: 0
|
||||||
|
ambisonic: 0
|
||||||
|
3D: 1
|
||||||
|
userData:
|
||||||
|
assetBundleName: rvlbadminton/locale
|
||||||
|
assetBundleVariant: en
|
BIN
Assets/Resources/Sfx/games/airRally/en/baBumBumBum_Farthest3.wav
Normal file
BIN
Assets/Resources/Sfx/games/airRally/en/baBumBumBum_Farthest3.wav
Normal file
Binary file not shown.
|
@ -0,0 +1,22 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: feb219e70cfc272469261025d8438ece
|
||||||
|
AudioImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 6
|
||||||
|
defaultSettings:
|
||||||
|
loadType: 0
|
||||||
|
sampleRateSetting: 0
|
||||||
|
sampleRateOverride: 44100
|
||||||
|
compressionFormat: 2
|
||||||
|
quality: 1
|
||||||
|
conversionMode: 0
|
||||||
|
platformSettingOverrides: {}
|
||||||
|
forceToMono: 0
|
||||||
|
normalize: 1
|
||||||
|
preloadAudioData: 1
|
||||||
|
loadInBackground: 0
|
||||||
|
ambisonic: 0
|
||||||
|
3D: 1
|
||||||
|
userData:
|
||||||
|
assetBundleName: rvlbadminton/locale
|
||||||
|
assetBundleVariant: en
|
BIN
Assets/Resources/Sfx/games/airRally/en/baBumBumBum_Farthest4.wav
Normal file
BIN
Assets/Resources/Sfx/games/airRally/en/baBumBumBum_Farthest4.wav
Normal file
Binary file not shown.
|
@ -0,0 +1,22 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 32295c976a2896d4487abac4ba32b25c
|
||||||
|
AudioImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 6
|
||||||
|
defaultSettings:
|
||||||
|
loadType: 0
|
||||||
|
sampleRateSetting: 0
|
||||||
|
sampleRateOverride: 44100
|
||||||
|
compressionFormat: 2
|
||||||
|
quality: 1
|
||||||
|
conversionMode: 0
|
||||||
|
platformSettingOverrides: {}
|
||||||
|
forceToMono: 0
|
||||||
|
normalize: 1
|
||||||
|
preloadAudioData: 1
|
||||||
|
loadInBackground: 0
|
||||||
|
ambisonic: 0
|
||||||
|
3D: 1
|
||||||
|
userData:
|
||||||
|
assetBundleName: rvlbadminton/locale
|
||||||
|
assetBundleVariant: en
|
BIN
Assets/Resources/Sfx/games/airRally/en/countIn1.wav
Normal file
BIN
Assets/Resources/Sfx/games/airRally/en/countIn1.wav
Normal file
Binary file not shown.
22
Assets/Resources/Sfx/games/airRally/en/countIn1.wav.meta
Normal file
22
Assets/Resources/Sfx/games/airRally/en/countIn1.wav.meta
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: af2adbff627bedf4ca6205970af8c740
|
||||||
|
AudioImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 6
|
||||||
|
defaultSettings:
|
||||||
|
loadType: 0
|
||||||
|
sampleRateSetting: 0
|
||||||
|
sampleRateOverride: 44100
|
||||||
|
compressionFormat: 2
|
||||||
|
quality: 1
|
||||||
|
conversionMode: 0
|
||||||
|
platformSettingOverrides: {}
|
||||||
|
forceToMono: 0
|
||||||
|
normalize: 1
|
||||||
|
preloadAudioData: 1
|
||||||
|
loadInBackground: 0
|
||||||
|
ambisonic: 0
|
||||||
|
3D: 1
|
||||||
|
userData:
|
||||||
|
assetBundleName: rvlbadminton/locale
|
||||||
|
assetBundleVariant: en
|
BIN
Assets/Resources/Sfx/games/airRally/en/countIn1Far.wav
Normal file
BIN
Assets/Resources/Sfx/games/airRally/en/countIn1Far.wav
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue