X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=data%2Fscenes%2FClassic.lua;h=c60f68b5987c1180e1c67ca5aad9c7eb8d893822;hb=574af38ed616d1adfa5e6ce35f67cda1f707f89d;hp=8476279e0d3aefd94ae4e7746dcc541cf35173ce;hpb=6f1b787a10d8ab1a3117a4b8c004dd2d90599608;p=chaz%2Fyoink diff --git a/data/scenes/Classic.lua b/data/scenes/Classic.lua index 8476279..c60f68b 100644 --- a/data/scenes/Classic.lua +++ b/data/scenes/Classic.lua @@ -21,7 +21,7 @@ LogInfo("-----", -- detail - level of detail of the scene (HIGH, MEDIUM, or LOW) -SetBounds({-5, 0, -6}, {45, 15, 4}) +--SetBounds({-5, 0, -6}, {45, 15, 4}) --geometry = yoink.mesh("classic.ac") @@ -68,10 +68,13 @@ Event = {} do local mysound = yoink.sound("Explosion") + mysound = yoink.sound() + mysound:sample("Pop") local count = 0 function Event.Think() if count % 300 == 0 then - --mysound:play() + mysound:play() + LogDebug("Hello world!") end count = count + 1 end