Skip to content

Commit 1964265

Browse files
committed
[v0.1.10-pre.1] Update dependencies
1 parent 6c8397c commit 1964265

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

Runtime/Depra.Loading.Unity.asmdef

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
"Depra.Assets.dll",
1111
"Depra.Loading.dll",
1212
"Depra.Reactive.dll",
13+
"Depra.Threading.dll",
1314
"Depra.Expectation.dll"
1415
],
1516
"autoReferenced": true,

Runtime/OverlayLoadingCurtain.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
// SPDX-License-Identifier: Apache-2.0
2-
// © 2023-2024 Nikolay Melnikov <[email protected]>
2+
// © 2023-2025 Nikolay Melnikov <[email protected]>
33

44
using System;
55
using System.Collections.Generic;
66
using System.Threading;
77
using System.Threading.Tasks;
8-
using Depra.Assets.Files;
8+
using Depra.Assets;
99
using Depra.Expectation;
1010
using Depra.Loading.Curtain;
1111
using Depra.Loading.Operations;
@@ -32,7 +32,7 @@ public async Task Load(Queue<ILoadingOperation> operations, CancellationToken to
3232
_operationIndex = 0;
3333
_operationsCount = operations.Count;
3434

35-
_original ??= await _assetFile.LoadAsync(cancellationToken: token);
35+
_original ??= await _assetFile.LoadAsync(cancellation: token);
3636
_viewModel = new LoadingCurtainViewModel();
3737
_view = Object.Instantiate(_original);
3838

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "com.depra.loading.unity",
3-
"version": "0.1.9",
3+
"version": "0.1.10-pre.1",
44
"displayName": "Depra.Loading",
55
"description": "",
66
"unity": "2022.3",

0 commit comments

Comments
 (0)