Advertisement
Guest User

script2

a guest
Oct 7th, 2012
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. #pragma strict
  2.  
  3.  
  4. var Clear : boolean = false;
  5. var open : boolean;
  6.  
  7. function Start () {
  8.  
  9. open = Switch.opened();
  10.  
  11. }
  12.  
  13. function Update () {
  14.  
  15.  
  16. if( open == true){
  17. animation.Play("RockMove");
  18. Clear = true;
  19. }
  20.  
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement