com.puzzlescapegames.services 1.3.9 → 1.4.0

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.
@@ -11,9 +11,9 @@ namespace PuzzlescapeGames.Services.UITransitionService
11
11
  {
12
12
  private UIInfinityBlank _blank;
13
13
 
14
- private readonly TransitionSettings _settings;
14
+ private readonly UITransitionSettings _settings;
15
15
 
16
- public UITransitionService( TransitionSettings settings )
16
+ public UITransitionService( UITransitionSettings settings )
17
17
  {
18
18
  _settings = settings ?? throw new ArgumentNullException( nameof(settings) );
19
19
  }
@@ -4,7 +4,7 @@ using UnityEngine;
4
4
  namespace PuzzlescapeGames.Services.UITransitionService
5
5
  {
6
6
  [ System.Serializable ]
7
- public sealed class TransitionSettings
7
+ public sealed class UITransitionSettings
8
8
  {
9
9
  [ field: SerializeField ] public List< LoadingSettings > LoadingSettings { get; private set; } = new();
10
10
  [ field: SerializeField ] public UIInfinityBlank InfinityBlankPrefab { get; private set; }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name" : "com.puzzlescapegames.services",
3
3
  "displayName" : "Puzzlescape Games Services",
4
- "version" : "1.3.9",
4
+ "version" : "1.4.0",
5
5
  "author" : "Puzzlescape Games",
6
6
  "description" : "Common services.",
7
7
  "repository": {
@@ -1,17 +0,0 @@
1
- using UnityEngine;
2
- using Zenject;
3
-
4
- namespace PuzzlescapeGames.Services.UITransitionService
5
- {
6
- [ CreateAssetMenu( fileName = "UITransitionServiceInstaller", menuName = "Installers/UITransitionServiceInstaller" ) ]
7
- public sealed class UITransitionServiceInstaller : ScriptableObjectInstaller< UITransitionServiceInstaller >
8
- {
9
- [ SerializeField ] private TransitionSettings _settings;
10
-
11
- public override void InstallBindings()
12
- {
13
- Container.BindInstance( _settings );
14
- Container.Bind< UITransitionService >().AsSingle();
15
- }
16
- }
17
- }
@@ -1,3 +0,0 @@
1
- fileFormatVersion: 2
2
- guid: a434e9a4dd88456db9ca2dcd3a356456
3
- timeCreated: 1727173848