()
| 40 | } |
| 41 | |
| 42 | [Test] |
| 43 | public void TestHexConversion() |
| 44 | { |
| 45 | string hex = Color.Blue.AlphaMultiplied(0.5f).ToHexString(); |
| 46 | Color col1 = Color.FromHex(hex); |
| 47 | Color col2 = Color.FromRGBA(0x0000FF7F); |
| 48 | Assert.AreEqual((Color32)col1, (Color32)col2); |
| 49 | } |
| 50 | } |
| 51 | } |
| 52 | #endif |
nothing calls this directly
no test coverage detected