trace, console

This commit is contained in:
Face
2025-09-01 17:08:47 +03:00
parent f973bb55f6
commit a6e96328ae
34 changed files with 1353 additions and 65 deletions

View File

@@ -53,7 +53,7 @@
local moveBox = gurt.select('#move-box')
local comboBox = gurt.select('#combo-box')
gurt.log('Tween animation demo started!')
trace.log('Tween animation demo started!')
-- Fade Animation
gurt.select('#fade-btn'):on('click', function()
@@ -143,7 +143,7 @@
-- Callback example
gurt.select('#callback-btn'):on('click', function()
fadeBox:createTween():to('opacity', 0.3):duration(1.0):easing('inout'):callback(function()
gurt.log('Fade animation completed!')
trace.log('Fade animation completed!')
end):play()
end)