Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 38 additions & 2 deletions composer.lua
Original file line number Diff line number Diff line change
Expand Up @@ -549,7 +549,43 @@ local effectList = {
alphaEnd = 1.0
},
concurrent = true
}
},

["tossLeft"] =
{
["from"] =
{
xStart = 0,
xEnd = -displayW * 3,
rotationStart = 0,
rotationEnd = -30,
},

["to"] =
{
xStart = 0,
xEnd = 0,
},
concurrent = true
},

["tossRight"] =
{
["from"] =
{
xStart = 0,
xEnd = displayW * 3,
rotationStart = 0,
rotationEnd = 30,
},

["to"] =
{
xStart = 0,
xEnd = 0,
},
concurrent = true
},
}
lib.effectList = effectList

Expand Down Expand Up @@ -1632,4 +1668,4 @@ lib._sceneFileExists = function( fileName )
return fileExists
end

return lib
return lib