Skip to content
This repository has been archived by the owner on Aug 24, 2024. It is now read-only.

Commit

Permalink
Update Commons dependency for 0.2.56 version
Browse files Browse the repository at this point in the history
  • Loading branch information
Anatoly Brizhan committed Apr 12, 2024
1 parent 24e0d05 commit aef6961
Show file tree
Hide file tree
Showing 20 changed files with 48 additions and 70 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,8 @@
"GUID:55aff1b29c7ad5b46800023cf2103429",
"GUID:ecdd0819e3429eb44b13a432679a1135",
"GUID:1862b35041b066d42ab4d3caf773657b",
"GUID:28da8d3b12e3efa47928e0c9070f853d",
"GUID:19891d5296046644cbc12fcf3702cca3",
"GUID:a59e3daedde9ca94bba45364d4ead25f",
"GUID:af7fffdf1d83bc842b0f6e3a01efda16"
"GUID:af7fffdf1d83bc842b0f6e3a01efda16",
"GUID:8bd4b41f8da90144d9006c4d926c9679"
],
"includePlatforms": [
"Editor"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using System;
using Better.Extensions.Runtime;
using Better.Commons.Runtime.Utility;
using Better.SceneManagement.Runtime;
using UnityEditor;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using System.Linq;
using Better.Extensions.Runtime;
using Better.Commons.Runtime.Extensions;
using Better.SceneManagement.Runtime;
using UnityEditor;
using UnityEngine;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,10 @@
"GUID:01df13aca8d01e24a911bcc3e8277031",
"GUID:1862b35041b066d42ab4d3caf773657b",
"GUID:af7fffdf1d83bc842b0f6e3a01efda16",
"GUID:28da8d3b12e3efa47928e0c9070f853d",
"GUID:a59e3daedde9ca94bba45364d4ead25f",
"GUID:35101f455c979e94c9a0a4793484b7fd",
"GUID:443314a5a4e67c14a88ae223776b6554",
"GUID:1c5574afb40e5fe4ca9e9c156009297b",
"GUID:d103b3c6d6cb0564d8d6543e9d797878"
"GUID:d103b3c6d6cb0564d8d6543e9d797878",
"GUID:8bd4b41f8da90144d9006c4d926c9679"
],
"includePlatforms": [],
"excludePlatforms": [],
Expand All @@ -31,9 +29,9 @@
"define": "BETTER_SERVICES"
},
{
"name": "com.tdw.better.locator",
"name": "com.tdw.better.locators",
"expression": "0.0.7",
"define": "BETTER_LOCATOR"
"define": "BETTER_LOCATORS"
}
],
"noEngineReferences": false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

namespace Better.SceneManagement.Runtime
{
public class SavesService : PocoService, ISceneSystem
public class SceneService : PocoService, ISceneSystem
{
private ISceneSystem _internalSystem;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System;
using System.IO;
using Better.Extensions.Runtime;
using UnityEngine;
using Better.Commons.Runtime.Extensions;
using UnityEngine.SceneManagement;

namespace Better.SceneManagement.Runtime
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#if UNITY_EDITOR
using Better.Extensions.Runtime;
using Better.Commons.Runtime.Extensions;
using UnityEditor;
using UnityEngine;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System;
using System.Threading.Tasks;
using Better.Extensions.Runtime;
using Better.Commons.Runtime.Extensions;
using UnityEngine.SceneManagement;

namespace Better.SceneManagement.Runtime.Sequences
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
using System;
using System.Linq;
using System.Threading.Tasks;
using Better.Extensions.Runtime;
using Better.Commons.Runtime.Extensions;
using Better.Commons.Runtime.Utility;
using UnityEngine;
using UnityEngine.SceneManagement;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System;
using System.Threading.Tasks;
using Better.Extensions.Runtime;
using Better.Commons.Runtime.Extensions;
using UnityEngine.SceneManagement;

namespace Better.SceneManagement.Runtime.Sequences
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using Better.Extensions.Runtime;
using Better.Commons.Runtime.Extensions;
using UnityEngine.SceneManagement;

namespace Better.SceneManagement.Runtime.Sequences
Expand Down
3 changes: 2 additions & 1 deletion Assets/BetterSceneManagement/Runtime/Sequences/Sequence.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
using System;
using System.Linq;
using System.Threading.Tasks;
using Better.Extensions.Runtime;
using Better.Commons.Runtime.Extensions;
using Better.Commons.Runtime.Utility;
using UnityEngine.SceneManagement;
using UnitySceneManager = UnityEngine.SceneManagement.SceneManager;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Better.Extensions.Runtime;
using Better.Commons.Runtime.Extensions;
using Better.Commons.Runtime.Utility;
using Better.SceneManagement.Runtime.Interfaces;
using Better.SceneManagement.Runtime.Sequences;
using UnitySceneManager = UnityEngine.SceneManagement.SceneManager;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
using System;
using System.Threading.Tasks;
using Better.Extensions.Runtime;
using Better.Commons.Runtime.Extensions;
using Better.Commons.Runtime.Utility;
using Better.SceneManagement.Runtime.Interfaces;
using Better.SceneManagement.Runtime.Sequences;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using System;
using Better.Extensions.Runtime;
using Better.Commons.Runtime.Utility;
using Better.SceneManagement.Runtime.Sequences;

namespace Better.SceneManagement.Runtime.Transitions
Expand Down
8 changes: 4 additions & 4 deletions Assets/BetterSceneManagement/Runtime/Utility/SceneUtility.cs
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using Better.Extensions.Runtime;
using Better.Commons.Runtime.Extensions;
using Better.SceneManagement.Runtime.Interfaces;

namespace Better.SceneManagement.Runtime.Utility
{
public static class SceneUtility
{
#if BETTER_SERVICES && BETTER_LOCATOR
private static readonly Locators.Runtime.ServiceProperty<SavesService> _serviceProperty = new();
#if BETTER_SERVICES && BETTER_LOCATORS
private static readonly Locators.Runtime.ServiceProperty<SceneService> _serviceProperty = new();
#endif

public static ISceneSystem GetSystem()
{
#if BETTER_SERVICES && BETTER_LOCATOR
#if BETTER_SERVICES && BETTER_LOCATORS
if (_serviceProperty.IsRegistered)
{
return _serviceProperty.CachedService;
Expand Down
4 changes: 2 additions & 2 deletions Assets/BetterSceneManagement/package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "com.uurha.betterscenemanagement",
"displayName": "Better Scene Management",
"version": "0.2.55",
"version": "0.2.56",
"unity": "2020.3",
"description": "Scene loader with ability to load and serialize SceneAssets",
"dependencies": {
"com.tdw.better.internal.core": "0.0.2",
"com.tdw.better.projectsettings": "0.0.2",
"com.uurha.bettereditortools": "1.5.25",
"com.tdw.better.commons": "0.0.2",
"com.uurha.betterattributes": "3.0.13"
},
"author": {
Expand Down
6 changes: 2 additions & 4 deletions Packages/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"dependencies": {
"com.tdw.better.internal.core": "0.0.2",
"com.tdw.better.projectsettings": "0.0.1",
"com.tdw.better.projectsettings": "0.1.1",
"com.unity.collab-proxy": "2.0.1",
"com.unity.ide.rider": "3.0.18",
"com.unity.ide.visualstudio": "2.0.17",
Expand All @@ -10,9 +10,7 @@
"com.unity.textmeshpro": "3.0.6",
"com.unity.timeline": "1.6.4",
"com.unity.ugui": "1.0.0",
"com.uurha.betterattributes": "3.0.11",
"com.uurha.bettereditortools": "1.5.21",
"com.uurha.betterextensions": "1.1.5",
"com.uurha.betterattributes": "3.1.0",
"com.unity.modules.ai": "1.0.0",
"com.unity.modules.androidjni": "1.0.0",
"com.unity.modules.animation": "1.0.0",
Expand Down
54 changes: 17 additions & 37 deletions Packages/packages-lock.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
{
"dependencies": {
"com.tdw.better.commons": {
"version": "0.0.2",
"depth": 1,
"source": "registry",
"dependencies": {
"com.tdw.better.internal.core": "0.0.2"
},
"url": "https://package.openupm.com"
},
"com.tdw.better.internal.core": {
"version": "0.0.2",
"depth": 0,
Expand All @@ -8,22 +17,22 @@
"url": "https://package.openupm.com"
},
"com.tdw.better.projectsettings": {
"version": "0.0.1",
"version": "0.1.1",
"depth": 0,
"source": "registry",
"dependencies": {
"com.tdw.better.singletons": "0.0.7",
"com.uurha.betterextensions": "1.5.3",
"com.tdw.better.internal.core": "0.0.2"
"com.tdw.better.singletons": "0.1.0",
"com.tdw.better.internal.core": "0.0.2",
"com.tdw.better.commons": "0.0.2"
},
"url": "https://package.openupm.com"
},
"com.tdw.better.singletons": {
"version": "0.0.7",
"version": "0.1.0",
"depth": 1,
"source": "registry",
"dependencies": {
"com.uurha.betterextensions": "1.5.2",
"com.tdw.better.commons": "0.0.2",
"com.tdw.better.internal.core": "0.0.2"
},
"url": "https://package.openupm.com"
Expand Down Expand Up @@ -109,40 +118,11 @@
}
},
"com.uurha.betterattributes": {
"version": "3.0.11",
"version": "3.1.0",
"depth": 0,
"source": "registry",
"dependencies": {
"com.uurha.bettereditortools": "1.5.23",
"com.tdw.better.internal.core": "0.0.2"
},
"url": "https://package.openupm.com"
},
"com.uurha.betterdatastructures": {
"version": "0.1.7",
"depth": 1,
"source": "registry",
"dependencies": {
"com.tdw.better.internal.core": "0.0.2"
},
"url": "https://package.openupm.com"
},
"com.uurha.bettereditortools": {
"version": "1.5.23",
"depth": 1,
"source": "registry",
"dependencies": {
"com.uurha.betterdatastructures": "0.1.7",
"com.uurha.betterextensions": "1.5.94",
"com.tdw.better.internal.core": "0.0.2"
},
"url": "https://package.openupm.com"
},
"com.uurha.betterextensions": {
"version": "1.5.94",
"depth": 2,
"source": "registry",
"dependencies": {
"com.tdw.better.commons": "0.0.2",
"com.tdw.better.internal.core": "0.0.2"
},
"url": "https://package.openupm.com"
Expand Down

0 comments on commit aef6961

Please sign in to comment.