Guest User

Untitled

a guest
Feb 9th, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. gomb.addEventListener(MouseEvent.CLICK, ujcsillag);
  2.  
  3. function ujcsillag(event:MouseEvent):void
  4. {
  5.     var cs:Csillag = new Csillag();
  6.    
  7.     cs.x = Math.random() * 550;
  8.     cs.y = Math.random() * 400;
  9.     cs.rotation = Math.random() * 100;
  10.     addChild(cs);
  11.    
  12. }
Add Comment
Please, Sign In to add comment