Gideros GTween事件监听器

时间:2013-04-11 07:03:27

标签: gideros

我正在尝试以下链接中的GTween示例

Gideros GTween with Easing

该示例无法开箱即用,因此我深入研究了GTween的源代码,并在我的示例中添加了以下行,以便允许事件调度。

local tween = GTween.new(jewel, 2, animProperties, gtweenProperties)
tween.suppressEvents = false -- New Line #1
tween.dispatchEvents = true  -- New Line #2
tween:addEventListener('complete', function()
    stage:removeChild(jewel)
    jewel = nil
end)

但是,应用程序崩溃了。我尝试在gtween.lua

中评论以下内容
self:dispatchEvent(Event.new(name))

并且应用程序不会崩溃,但是不会调用回调(显然,为什么会这样?)

这是应用程序的堆栈跟踪。

gtween.lua:445: attempt to call method 'dispatchEvent' (a boolean value)
stack traceback:
    gtween.lua:445: in function 'dispatchEvt'
    gtween.lua:255: in function 'setPosition'
    gtween.lua:86: in function <gtween.lua:74>

任何指针都将非常感激。感谢。

PS:我不确定这是否是Gideros的错误。

1 个答案:

答案 0 :(得分:2)

我刚尝试使用最新的gideros'gtween(请注意它是在10天前编辑的),并使用此示例(我从您的链接中获取样本并添加精灵定义,还包括一个图像文件它工作(调用回调):

local animate = {}
animate.y = 100
animate.x = 100
animate.alpha = 0.5
animate.scaleX = 0.5
animate.scaleY = 0.5
animate.rotation = math.random(0, 360)
local properties = {}
properties.delay = 0
properties.ease = easing.inElastic
properties.dispatchEvents = true

local sprite = Bitmap.new(Texture.new("box.png"))  -- ADD THIS
stage:addChild(sprite) -- ADD THIS
local tween = GTween.new(sprite, 10, animate, properties)

tween:addEventListener("complete", function()
    stage:removeChild(sprite)
    sprite = nil
end)