在我的菜单故事板和名为“搜索”的故事板之间转换时,我正在尝试使用效果 slideLeft。
场景更改有效,但没有应用于过渡的效果。或者..根本没有过渡。新的场景刚刚出现。
我在这里想念什么?
谢谢。
local function goToPage(event)
if (event.phase == "ended") then
changeButtonIndentation()
local nextSceneName = "pages." .. event.target.name
if (storyboard.getCurrentSceneName() ~= nextSceneName) then
print("From page: " .. storyboard.getCurrentSceneName())
print("To page: " ..nextSceneName)
local options =
{
effect = "slideLeft",
time = 1000
}
storyboard.gotoScene("pages.search", options)
currentActivePage = event.target.name
print(event.target.name)
end
end
changeButtonIndentation()
end
编辑:所以显然这些选项有效。如果我增加选项的时间参数,我会注意到搜索故事板上的某些按钮在 1 秒内无法点击。但是效果不起作用。