com.wallstop-studios.unity-helpers 2.0.0-rc73.13 → 2.0.0-rc73.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (36) hide show
  1. package/Editor/AnimationEventEditor.cs +4 -5
  2. package/Editor/CustomEditors/MatchColliderToSpriteEditor.cs +1 -1
  3. package/Editor/CustomEditors/PersistentDirectoryGUI.cs +590 -0
  4. package/Editor/CustomEditors/PersistentDirectoryGUI.cs.meta +3 -0
  5. package/Editor/CustomEditors/SourceFolderEntryDrawer.cs +298 -0
  6. package/Editor/CustomEditors/SourceFolderEntryDrawer.cs.meta +3 -0
  7. package/Editor/FitTextureSizeWindow.cs +5 -44
  8. package/Editor/PersistentDirectorySettings.cs +248 -0
  9. package/Editor/PersistentDirectorySettings.cs.meta +3 -0
  10. package/Editor/PrefabChecker.cs +1 -2
  11. package/Editor/{AnimationCopier.cs → Sprites/AnimationCopier.cs} +33 -166
  12. package/Editor/{AnimationCreator.cs → Sprites/AnimationCreator.cs} +9 -80
  13. package/Editor/Sprites/ScriptableSpriteAtlas.cs +95 -0
  14. package/Editor/Sprites/ScriptableSpriteAtlas.cs.meta +3 -0
  15. package/Editor/Sprites/ScriptableSpriteAtlasEditor.cs +938 -0
  16. package/Editor/Sprites/ScriptableSpriteAtlasEditor.cs.meta +3 -0
  17. package/Editor/{SpriteCropper.cs → Sprites/SpriteCropper.cs} +68 -66
  18. package/Editor/{SpriteSettingsApplier.cs → Sprites/SpriteSettingsApplier.cs} +9 -76
  19. package/Editor/{TextureResizerWizard.cs → Sprites/TextureResizerWizard.cs} +1 -1
  20. package/Editor/{TextureSettingsApplier.cs → Sprites/TextureSettingsApplier.cs} +1 -1
  21. package/Editor/Sprites.meta +3 -0
  22. package/Editor/Utils/DxReadOnlyPropertyDrawer.cs +1 -1
  23. package/Runtime/Core/Helper/DirectoryHelper.cs +64 -0
  24. package/package.json +3 -1
  25. package/Editor/SpriteAtlasGenerator.cs +0 -895
  26. package/Editor/SpriteAtlasGenerator.cs.meta +0 -3
  27. package/Editor/Utils/GUIHorizontalScope.cs +0 -20
  28. package/Editor/Utils/GUIHorizontalScope.cs.meta +0 -3
  29. package/Editor/Utils/GUIIndentScope.cs +0 -20
  30. package/Editor/Utils/GUIIndentScope.cs.meta +0 -3
  31. /package/Editor/{AnimationCopier.cs.meta → Sprites/AnimationCopier.cs.meta} +0 -0
  32. /package/Editor/{AnimationCreator.cs.meta → Sprites/AnimationCreator.cs.meta} +0 -0
  33. /package/Editor/{SpriteCropper.cs.meta → Sprites/SpriteCropper.cs.meta} +0 -0
  34. /package/Editor/{SpriteSettingsApplier.cs.meta → Sprites/SpriteSettingsApplier.cs.meta} +0 -0
  35. /package/Editor/{TextureResizerWizard.cs.meta → Sprites/TextureResizerWizard.cs.meta} +0 -0
  36. /package/Editor/{TextureSettingsApplier.cs.meta → Sprites/TextureSettingsApplier.cs.meta} +0 -0
@@ -1,3 +0,0 @@
1
- fileFormatVersion: 2
2
- guid: b0dd60e3c1f24e7eb4afc773157cb996
3
- timeCreated: 1746461513
@@ -1,20 +0,0 @@
1
- namespace WallstopStudios.UnityHelpers.Editor.Utils
2
- {
3
- #if UNITY_EDITOR
4
- using System;
5
- using UnityEditor;
6
-
7
- public sealed class GUIHorizontalScope : IDisposable
8
- {
9
- public GUIHorizontalScope()
10
- {
11
- EditorGUILayout.BeginHorizontal();
12
- }
13
-
14
- public void Dispose()
15
- {
16
- EditorGUILayout.EndHorizontal();
17
- }
18
- }
19
- #endif
20
- }
@@ -1,3 +0,0 @@
1
- fileFormatVersion: 2
2
- guid: 91a6cb913d1847ae9e2a82b1f59660a7
3
- timeCreated: 1746644886
@@ -1,20 +0,0 @@
1
- namespace WallstopStudios.UnityHelpers.Editor.Utils
2
- {
3
- #if UNITY_EDITOR
4
- using System;
5
- using UnityEditor;
6
-
7
- public sealed class GUIIndentScope : IDisposable
8
- {
9
- public GUIIndentScope()
10
- {
11
- EditorGUI.indentLevel++;
12
- }
13
-
14
- public void Dispose()
15
- {
16
- EditorGUI.indentLevel--;
17
- }
18
- }
19
- #endif
20
- }
@@ -1,3 +0,0 @@
1
- fileFormatVersion: 2
2
- guid: ba7be1ee2025494c963d393c9b5e5c2f
3
- timeCreated: 1746811930