No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

TileSize.cs 410B

123456789101112131415161718
  1. namespace UnityEngine.Rendering.Universal
  2. {
  3. internal enum TileSize
  4. {
  5. _8 = 8,
  6. _16 = 16,
  7. _32 = 32,
  8. _64 = 64
  9. }
  10. static class TileSizeExtensions
  11. {
  12. public static bool IsValid(this TileSize tileSize)
  13. {
  14. return tileSize == TileSize._8 || tileSize == TileSize._16 || tileSize == TileSize._32 || tileSize == TileSize._64;
  15. }
  16. }
  17. }