Guest User

Untitled

a guest
Dec 11th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. local t = Def.ActorFrame {
  2.  
  3. LoadActor(math.int(math.random()*10)..".png") .. {
  4. InitCommand=cmd(Center;scaletoclipped,SCREEN_WIDTH,SCREEN_HEIGHT);
  5. };
  6.  
  7.  
  8. LoadActor("bgtop") .. {
  9. InitCommand=cmd(Center;addy,-20);
  10. };
  11. LoadActor("bgbottom") .. {
  12. InitCommand=cmd(Center;addy,20);
  13. OnCommand=cmd(zoomy,0;linear,0.3;zoomy,1);
  14. OffCommand=cmd(zoomy,1;linear,0.3;zoomy,0);
  15. };
  16. };
  17. return t;
Add Comment
Please, Sign In to add comment