瀏覽代碼

Male scream;

bjorn 10 年之前
父節點
當前提交
7206fbd5ce
共有 2 個文件被更改,包括 6 次插入0 次删除
  1. 二進制
      media/sounds/scream2.ogg
  2. 6 0
      person.lua

二進制
media/sounds/scream2.ogg


+ 6 - 0
person.lua

@@ -122,6 +122,12 @@ function Person.dead:enter()
   self.body:setAngularVelocity(-20 + love.math.random() * 40)
   ctx.hud:addScore(10, 'person')
   ctx.sound:play('pop')
+  if self.gender == 'male' and love.math.random() < .75 then
+    self.screamSound = ctx.sound:play('scream2', function(sound)
+      sound:setVolume(.75)
+    end)
+    self.screamed = true
+  end
 end
 
 function Person.dead:update()