frozenLake

Untitled

Mar 16th, 2017
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.26 KB | None | 0 0
  1.  
  2. #2.2 color blending
  3.  
  4. #Red 0 0
  5. #Orange 20 30
  6. #Yellow 40 60
  7. #Emerald 80 120
  8. #Aqua 110 165
  9. #Blue 160 240
  10. #Purple 180 270
  11. #Magenta 200 300
  12.  
  13. if hue>30
  14. if hue>60
  15. if hue>120
  16. if hue>165
  17. if hue>240
  18. if hue>270
  19. if hue>300
  20. colora==SKINCOLOR_MAGENTA
  21. colorb==SKINCOLOR_RED
  22. blendb==(hue-300)/6
  23. if hue%6>=3
  24. blendb==blendb+1
  25. else
  26. colora==SKINCOLOR_PURPLE
  27. colorb==SKINCOLOR_MAGENTA
  28. blendb==(hue-270)/3
  29. if hue%3>=2
  30. blendb==blendb+1
  31. else
  32. colora==SKINCOLOR_BLUE
  33. colorb==SKINCOLOR_PURPLE
  34. blendb==(hue-240)/3
  35. if hue%3>=2
  36. blendb==blendb+1
  37. else
  38. colora==SKINCOLOR_AQUA
  39. colorb==SKINCOLOR_BLUE
  40. blendb==(hue-165)*2/15
  41. if hue*2%15>=8
  42. blendb==blendb+1
  43. else
  44. colora==SKINCOLOR_EMERALD
  45. colorb==SKINCOLOR_AQUA
  46. blendb==(hue-120)*2/9
  47. if hue*2%9>=5
  48. blendb==blendb+1
  49. else
  50. colora==SKINCOLOR_YELLOW
  51. colorb==SKINCOLOR_EMERALD
  52. blendb==(hue-60)/6
  53. if hue%6>=3
  54. blendb==blendb+1
  55. else
  56. colora==SKINCOLOR_ORANGE
  57. colorb==SKINCOLOR_YELLOW
  58. blendb==(hue-30)/3
  59. if hue%3>=2
  60. blendb==blendb+1
  61. else
  62. colora==SKINCOLOR_RED
  63. colorb==SKINCOLOR_ORANGE
  64. blendb==hue/3
  65. if hue%3>=2
  66. blendb==blendb+1
Advertisement
Add Comment
Please, Sign In to add comment