暫無描述
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.

ObsoleteSupport.cs 407B

12345678910111213141516
  1. using System;
  2. using System.Linq;
  3. using UnityEditor.Sprites;
  4. using UnityEngine;
  5. namespace UnityEditor.U2D.Sprites.Obsolete
  6. {
  7. public static class ObsoleteSupport
  8. {
  9. [Obsolete("Sprite Packer is no longer supported. Consider switching to the new Sprite Altas System")]
  10. public static void ShowSpritePacker()
  11. {
  12. EditorWindow.GetWindow<PackerWindow>();
  13. }
  14. }
  15. }