X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=data%2Fscenes%2FClassic.lua;h=c60f68b5987c1180e1c67ca5aad9c7eb8d893822;hb=574af38ed616d1adfa5e6ce35f67cda1f707f89d;hp=c2ca18387f1ecf01ae9d73b921faf6d522896da9;hpb=e9a16d767785b1a903a4466ff26265a5f7dae9e5;p=chaz%2Fyoink diff --git a/data/scenes/Classic.lua b/data/scenes/Classic.lua index c2ca183..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,12 +68,13 @@ Event = {} do local mysound = yoink.sound("Explosion") - --local mysound = yoink.sound() - --mysound:sample("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