XColor.cs 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. using Newtonsoft.Json;
  2. using UnityEngine;
  3. namespace PublicTools.Unity
  4. {
  5. public struct XColor
  6. {
  7. //
  8. // 摘要:
  9. // Red component of the color.
  10. public float r;
  11. //
  12. // 摘要:
  13. // Green component of the color.
  14. public float g;
  15. //
  16. // 摘要:
  17. // Blue component of the color.
  18. public float b;
  19. //
  20. // 摘要:
  21. // Alpha component of the color (0 is transparent, 1 is opaque).
  22. public float a;
  23. //
  24. // 摘要:
  25. // Constructs a new Color with given r,g,b components and sets a to 1.
  26. //
  27. // 参数:
  28. // r:
  29. // Red component.
  30. //
  31. // g:
  32. // Green component.
  33. //
  34. // b:
  35. // Blue component.
  36. public XColor(float r, float g, float b)
  37. {
  38. this.r = r;
  39. this.g = g;
  40. this.b = b;
  41. this.a = 1;
  42. }
  43. //
  44. // 摘要:
  45. // Constructs a new Color with given r,g,b,a components.
  46. //
  47. // 参数:
  48. // r:
  49. // Red component.
  50. //
  51. // g:
  52. // Green component.
  53. //
  54. // b:
  55. // Blue component.
  56. //
  57. // a:
  58. // Alpha component.
  59. public XColor(float r, float g, float b, float a)
  60. {
  61. this.r = r;
  62. this.g = g;
  63. this.b = b;
  64. this.a = a;
  65. }
  66. public XColor(Color color)
  67. {
  68. this.r = color.r;
  69. this.g = color.g;
  70. this.b = color.b;
  71. this.a = color.a;
  72. }
  73. public Color Trans()
  74. {
  75. Color color = Color.black;
  76. color.r = this.r;
  77. color.g = this.g;
  78. color.b = this.b;
  79. color.a = this.a;
  80. return color;
  81. }
  82. public void Trans(Color color)
  83. {
  84. this.r = color.r;
  85. this.g = color.g;
  86. this.b = color.b;
  87. this.a = color.a;
  88. }
  89. public override string ToString()
  90. {
  91. return JsonConvert.SerializeObject(this);
  92. }
  93. }
  94. }