Guest User

Untitled

a guest
Apr 14th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function changeVisualzer(num:int):void
  2. {
  3. if (!toggled)
  4. {
  5. _vis1.removeSelf();
  6. _vis2.removeSelf();
  7. return;
  8. }
  9.  
  10. if (_vis1.active) _vis1.removeSelf(); else if (_vis2.active) _vis2.removeSelf();
  11.  
  12. if (num == 1) addChild(_vis1) else if (num == 2) addChild(_vis2);
  13. }
Add Comment
Please, Sign In to add comment