Skip to content

Commit e531c7f

Browse files
Merge pull request #533 from AzureBubble/master
Fix Unitask HandleBaseExtensions Add underline
2 parents 713a9dd + 1e75865 commit e531c7f

3 files changed

Lines changed: 7 additions & 5 deletions

File tree

UnityProject/Assets/Samples/YooAsset/2.3.16/UniTask Sample/UniTask/Runtime/External/YooAsset/OperationHandleBaseExtensions.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -94,19 +94,19 @@ public static IUniTaskSource Create(HandleBase handle, PlayerLoopTiming timing,
9494
switch (handle)
9595
{
9696
case AssetHandle asset_handle:
97-
asset_handle.Completed += result.continuationAction;
97+
asset_handle.Completed += result._continuationAction;
9898
break;
9999
case SceneHandle scene_handle:
100-
scene_handle.Completed += result.continuationAction;
100+
scene_handle.Completed += result._continuationAction;
101101
break;
102102
case SubAssetsHandle sub_asset_handle:
103-
sub_asset_handle.Completed += result.continuationAction;
103+
sub_asset_handle.Completed += result._continuationAction;
104104
break;
105105
case RawFileHandle raw_file_handle:
106-
raw_file_handle.Completed += result.continuationAction;
106+
raw_file_handle.Completed += result._continuationAction;
107107
break;
108108
case AllAssetsHandle all_assets_handle:
109-
all_assets_handle.Completed += result.continuationAction;
109+
all_assets_handle.Completed += result._continuationAction;
110110
break;
111111
}
112112
#endif

UnityProject/Packages/com.jasonxudeveloper.jengine.core/Editor/CustomEditor/EditorUIUtils.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
// THE SOFTWARE.
2525

2626
using UnityEditor;
27+
using UnityEditor.UIElements;
2728
using UnityEngine;
2829
using UnityEngine.UIElements;
2930

UnityProject/Packages/com.jasonxudeveloper.jengine.core/Editor/CustomEditor/SettingsUIBuilder.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
using JEngine.Core.Encrypt;
2929
using UnityEditor;
3030
using UnityEditor.Search;
31+
using UnityEditor.UIElements;
3132
using UnityEngine;
3233
using UnityEngine.UIElements;
3334

0 commit comments

Comments
 (0)