mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2025-04-04 17:19:47 -04:00
Stupid casting sound effect.
This commit is contained in:
parent
6505064fb6
commit
c29e4d6c9c
2 changed files with 2 additions and 1 deletions
app
|
@ -33,7 +33,7 @@ class Media
|
|||
|
||||
class AudioPlayer extends CocoClass
|
||||
subscriptions:
|
||||
'play-sound': (e) -> @playInterfaceSound e.trigger
|
||||
'play-sound': (e) -> @playInterfaceSound e.trigger, e.volume
|
||||
|
||||
constructor: () ->
|
||||
super()
|
||||
|
|
|
@ -54,6 +54,7 @@ module.exports = class CastButtonView extends View
|
|||
|
||||
onCastSpells: (e) ->
|
||||
@casting = true
|
||||
Backbone.Mediator.publish 'play-sound', trigger: 'cast', volume: 0.25
|
||||
@updateCastButton()
|
||||
|
||||
onWorldLoadProgressChanged: (e) ->
|
||||
|
|
Loading…
Add table
Reference in a new issue