Skip to content

Commit ff97560

Browse files
committed
adding SoundsX and background music, adding replay button
1 parent efd778c commit ff97560

28 files changed

+1771
-5
lines changed

.plastic/plastic.changes

1.77 KB
Binary file not shown.

.plastic/plastic.wktree

1.81 KB
Binary file not shown.

Assembly-CSharp.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@
100100
<Compile Include="Assets/TextMesh Pro/Examples &amp; Extras/Scripts/TextMeshProFloatingText.cs" />
101101
<Compile Include="Assets/TextMesh Pro/Examples &amp; Extras/Scripts/ShaderPropAnimator.cs" />
102102
<Compile Include="Assets/TextMesh Pro/Examples &amp; Extras/Scripts/CameraController.cs" />
103+
<Compile Include="Assets/Scripts/GameOver.cs" />
103104
<Compile Include="Assets/TextMesh Pro/Examples &amp; Extras/Scripts/Benchmark03.cs" />
104105
<Compile Include="Assets/Scripts/UIManager.cs" />
105106
<Compile Include="Assets/Scripts/LoseTrigger.cs" />

Assets/Music.meta

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Assets/Music/Icon Loop 1.ogg

902 KB
Binary file not shown.

Assets/Music/Icon Loop 1.ogg.meta

Lines changed: 23 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Assets/Prefabs/GameManager.prefab

Lines changed: 99 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ GameObject:
1010
m_Component:
1111
- component: {fileID: 1301116619029502533}
1212
- component: {fileID: 5844693319789056501}
13+
- component: {fileID: 2900229271285418359}
1314
m_Layer: 0
1415
m_Name: GameManager
1516
m_TagString: Untagged
@@ -45,3 +46,101 @@ MonoBehaviour:
4546
m_Name:
4647
m_EditorClassIdentifier:
4748
vidas: 3
49+
pointsPerBlock: 10
50+
points: 0
51+
--- !u!82 &2900229271285418359
52+
AudioSource:
53+
m_ObjectHideFlags: 0
54+
m_CorrespondingSourceObject: {fileID: 0}
55+
m_PrefabInstance: {fileID: 0}
56+
m_PrefabAsset: {fileID: 0}
57+
m_GameObject: {fileID: 3557854973217161253}
58+
m_Enabled: 1
59+
serializedVersion: 4
60+
OutputAudioMixerGroup: {fileID: 0}
61+
m_audioClip: {fileID: 8300000, guid: 0e398e83a87e10184a832adc577a8f39, type: 3}
62+
m_PlayOnAwake: 1
63+
m_Volume: 0.4
64+
m_Pitch: 1
65+
Loop: 1
66+
Mute: 0
67+
Spatialize: 0
68+
SpatializePostEffects: 0
69+
Priority: 128
70+
DopplerLevel: 1
71+
MinDistance: 1
72+
MaxDistance: 500
73+
Pan2D: 0
74+
rolloffMode: 0
75+
BypassEffects: 0
76+
BypassListenerEffects: 0
77+
BypassReverbZones: 0
78+
rolloffCustomCurve:
79+
serializedVersion: 2
80+
m_Curve:
81+
- serializedVersion: 3
82+
time: 0
83+
value: 1
84+
inSlope: 0
85+
outSlope: 0
86+
tangentMode: 0
87+
weightedMode: 0
88+
inWeight: 0.33333334
89+
outWeight: 0.33333334
90+
- serializedVersion: 3
91+
time: 1
92+
value: 0
93+
inSlope: 0
94+
outSlope: 0
95+
tangentMode: 0
96+
weightedMode: 0
97+
inWeight: 0.33333334
98+
outWeight: 0.33333334
99+
m_PreInfinity: 2
100+
m_PostInfinity: 2
101+
m_RotationOrder: 4
102+
panLevelCustomCurve:
103+
serializedVersion: 2
104+
m_Curve:
105+
- serializedVersion: 3
106+
time: 0
107+
value: 0
108+
inSlope: 0
109+
outSlope: 0
110+
tangentMode: 0
111+
weightedMode: 0
112+
inWeight: 0.33333334
113+
outWeight: 0.33333334
114+
m_PreInfinity: 2
115+
m_PostInfinity: 2
116+
m_RotationOrder: 4
117+
spreadCustomCurve:
118+
serializedVersion: 2
119+
m_Curve:
120+
- serializedVersion: 3
121+
time: 0
122+
value: 0
123+
inSlope: 0
124+
outSlope: 0
125+
tangentMode: 0
126+
weightedMode: 0
127+
inWeight: 0.33333334
128+
outWeight: 0.33333334
129+
m_PreInfinity: 2
130+
m_PostInfinity: 2
131+
m_RotationOrder: 4
132+
reverbZoneMixCustomCurve:
133+
serializedVersion: 2
134+
m_Curve:
135+
- serializedVersion: 3
136+
time: 0
137+
value: 1
138+
inSlope: 0
139+
outSlope: 0
140+
tangentMode: 0
141+
weightedMode: 0
142+
inWeight: 0.33333334
143+
outWeight: 0.33333334
144+
m_PreInfinity: 2
145+
m_PostInfinity: 2
146+
m_RotationOrder: 4

Assets/Prefabs/player.prefab

Lines changed: 100 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ GameObject:
1313
- component: {fileID: 9071093922208384687}
1414
- component: {fileID: 3556461601012886840}
1515
- component: {fileID: 6613176294159747044}
16+
- component: {fileID: 8539756750621124182}
1617
m_Layer: 0
1718
m_Name: ball
1819
m_TagString: ball
@@ -163,6 +164,105 @@ MonoBehaviour:
163164
m_EditorClassIdentifier:
164165
initialSpeed: {x: 4, y: 6}
165166
velocityMultiplier: 1.05
167+
audioSource: {fileID: 8539756750621124182}
168+
hitSound: {fileID: 8300000, guid: daa0a72e0ff926cbe85f1c25a2800267, type: 3}
169+
brickSound: {fileID: 8300000, guid: ea90512c18c77a2bdaf8ab2b70448f6b, type: 3}
170+
--- !u!82 &8539756750621124182
171+
AudioSource:
172+
m_ObjectHideFlags: 0
173+
m_CorrespondingSourceObject: {fileID: 0}
174+
m_PrefabInstance: {fileID: 0}
175+
m_PrefabAsset: {fileID: 0}
176+
m_GameObject: {fileID: 620408380235045669}
177+
m_Enabled: 1
178+
serializedVersion: 4
179+
OutputAudioMixerGroup: {fileID: 0}
180+
m_audioClip: {fileID: 0}
181+
m_PlayOnAwake: 0
182+
m_Volume: 0.85
183+
m_Pitch: 1
184+
Loop: 0
185+
Mute: 0
186+
Spatialize: 0
187+
SpatializePostEffects: 0
188+
Priority: 128
189+
DopplerLevel: 1
190+
MinDistance: 1
191+
MaxDistance: 500
192+
Pan2D: 0
193+
rolloffMode: 0
194+
BypassEffects: 0
195+
BypassListenerEffects: 0
196+
BypassReverbZones: 0
197+
rolloffCustomCurve:
198+
serializedVersion: 2
199+
m_Curve:
200+
- serializedVersion: 3
201+
time: 0
202+
value: 1
203+
inSlope: 0
204+
outSlope: 0
205+
tangentMode: 0
206+
weightedMode: 0
207+
inWeight: 0.33333334
208+
outWeight: 0.33333334
209+
- serializedVersion: 3
210+
time: 1
211+
value: 0
212+
inSlope: 0
213+
outSlope: 0
214+
tangentMode: 0
215+
weightedMode: 0
216+
inWeight: 0.33333334
217+
outWeight: 0.33333334
218+
m_PreInfinity: 2
219+
m_PostInfinity: 2
220+
m_RotationOrder: 4
221+
panLevelCustomCurve:
222+
serializedVersion: 2
223+
m_Curve:
224+
- serializedVersion: 3
225+
time: 0
226+
value: 0
227+
inSlope: 0
228+
outSlope: 0
229+
tangentMode: 0
230+
weightedMode: 0
231+
inWeight: 0.33333334
232+
outWeight: 0.33333334
233+
m_PreInfinity: 2
234+
m_PostInfinity: 2
235+
m_RotationOrder: 4
236+
spreadCustomCurve:
237+
serializedVersion: 2
238+
m_Curve:
239+
- serializedVersion: 3
240+
time: 0
241+
value: 0
242+
inSlope: 0
243+
outSlope: 0
244+
tangentMode: 0
245+
weightedMode: 0
246+
inWeight: 0.33333334
247+
outWeight: 0.33333334
248+
m_PreInfinity: 2
249+
m_PostInfinity: 2
250+
m_RotationOrder: 4
251+
reverbZoneMixCustomCurve:
252+
serializedVersion: 2
253+
m_Curve:
254+
- serializedVersion: 3
255+
time: 0
256+
value: 1
257+
inSlope: 0
258+
outSlope: 0
259+
tangentMode: 0
260+
weightedMode: 0
261+
inWeight: 0.33333334
262+
outWeight: 0.33333334
263+
m_PreInfinity: 2
264+
m_PostInfinity: 2
265+
m_RotationOrder: 4
166266
--- !u!1 &6685179703376916415
167267
GameObject:
168268
m_ObjectHideFlags: 0

Assets/SFX.meta

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Assets/SFX/Cancel 1.wav

115 KB
Binary file not shown.

0 commit comments

Comments
 (0)