Guest User

Untitled

a guest
Apr 25th, 2018
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. function Update()
  2. {
  3. if(!keep_track_attack)
  4. {
  5. EnemyDamage.enabledScript=true;
  6. EnemyPoliceGuy.enabledScript=true;
  7. }
  8. }
  9.  
  10.  
  11. ---
  12. EnemyDamage/EnemyPoliceGuy.js
  13.  
  14. public static var enabledScript : boolean = false;
  15.  
  16. function Update()
  17. {
  18. if(enabledScript)
  19. {
  20. //Your code
  21. }
  22. }
Add Comment
Please, Sign In to add comment