Last change
on this file since 455 was 455, checked in by alloc, 16 months ago |
25_30_44
- Got rid (mostly) of custom JSON serialization
- Some code cleanup
|
File size:
234 bytes
|
Rev | Line | |
---|
[325] | 1 | using UnityEngine;
|
---|
[253] | 2 |
|
---|
[325] | 3 | namespace AllocsFixes {
|
---|
[253] | 4 | public static class AllocsUtils {
|
---|
[325] | 5 | public static string ColorToHex (Color _color) {
|
---|
[455] | 6 | return $"{(int)(_color.r * 255):X02}{(int)(_color.g * 255):X02}{(int)(_color.b * 255):X02}";
|
---|
[253] | 7 | }
|
---|
| 8 | }
|
---|
[325] | 9 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.