Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. public Image neckImage, FRShoulder, FLShoulder, FLChest
  2.  
  3. public Slider s1, s2, s3, s4
  4.  
  5. Color newColor = new Color(0.2745098f, 0.2745098f, 0.2745098f, 0.8745098f);
  6.  
  7.  
  8. public void Start()
  9. {
  10. neckImage.color = FRShoulder.color = FLShoulder.color = FLChest.color = newColor;
  11. }
  12.  
  13.  
  14. public void resetButton()
  15. {
  16. s1.value = s2.value = s3.value = s4.value = 0;
  17.  
  18. neckImage.color = FRShoulder.color = FLShoulder.color = FLChest.color = newColor;
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement