Director Class Effects?

Hi, im pretty new to director class but i just have a simple really quick question. I know how to apply effects

[lua]-----------PLAY-SCENE-------------------------
local function pressPlay (event)
if event.phase == “ended” then
director:changeScene (“playS”,“fade”)
end
end

play:addEventListener (“touch”, pressPlay)

But i dont know any more effects than “fade”, and i cant find anything on the forum or google.
so I would be happy if someone could write down some effects.

//B :slight_smile: [import]uid: 119384 topic_id: 21038 reply_id: 321038[/import]

there are lots of different transitions in Director (i don’t remember all of them by memory). the easiest way to get their names is simply open director.lua and check the code (it is clear, believe me :)): all the transitions are listed there. [import]uid: 4883 topic_id: 21038 reply_id: 83121[/import]

If you open the director.lua file you can look through the code and see the different effects starting around line 1100. moveFromRight, overFromRight, moveFromLeft, overFromLeft, moveFromTop, overFromTop, moveFromBottom, overFromBottom, crossfade, fade, flip, downFlip I believe is the list of possible effects. [import]uid: 80890 topic_id: 21038 reply_id: 83122[/import]

Oh, thanks alot guys !!:smiley: [import]uid: 119384 topic_id: 21038 reply_id: 83123[/import]

Hey, a little late but;

[lua]director:changeScene(“scene”, “moveFromRight”)
director:changeScene(“scene”, “overFromRight”)
director:changeScene(“scene”, “moveFromLeft”)
director:changeScene(“scene”, “overFromLeft”)
director:changeScene(“scene”, “overFromTop”)
director:changeScene(“scene”, “overFromBottom”)
director:changeScene(“scene”, “fade”)
director:changeScene(“scene”, “flip”)
director:changeScene(“scene”, “downFlip”)[/lua]

Last I checked that was the full list - I had it in a blog comment from the end of last year - hopefully it helps for quick reference :slight_smile:

Peach [import]uid: 52491 topic_id: 21038 reply_id: 83130[/import]