com.xmobitea.changx.gn-unity 2.0.3 → 2.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.
- package/Editor/GNServerSettingsEditor.cs +16 -300
- package/Runtime/Common/GNArray.cs +387 -302
- package/Runtime/Common/GNArray.cs.meta +11 -11
- package/Runtime/Common/GNData.cs +61 -48
- package/Runtime/Common/GNData.cs.meta +11 -11
- package/Runtime/Common/GNHashtable.cs +404 -241
- package/Runtime/Common/GNHashtable.cs.meta +11 -11
- package/Runtime/Common/IGNData.cs +20 -11
- package/Runtime/Common/IGNData.cs.meta +11 -11
- package/Runtime/Common.meta +8 -8
- package/Runtime/Config/GNServerSettings.cs +136 -92
- package/Runtime/Config/GNServerSettings.cs.meta +11 -11
- package/Runtime/Config.meta +8 -8
- package/Runtime/Constant/Commands.cs +82 -19
- package/Runtime/Constant/Commands.cs.meta +11 -11
- package/Runtime/Constant/EnumType/FriendStatus.cs +12 -12
- package/Runtime/Constant/EnumType/FriendStatus.cs.meta +11 -11
- package/Runtime/Constant/EnumType/GoogleLoginType.cs +5 -5
- package/Runtime/Constant/EnumType/GoogleLoginType.cs.meta +11 -11
- package/Runtime/Constant/EnumType/GroupStatus.cs +7 -7
- package/Runtime/Constant/EnumType/GroupStatus.cs.meta +11 -11
- package/Runtime/Constant/EnumType/InvalidMemberType.cs +23 -23
- package/Runtime/Constant/EnumType/InvalidMemberType.cs.meta +11 -11
- package/Runtime/Constant/EnumType/ItemType.cs +5 -5
- package/Runtime/Constant/EnumType/ItemType.cs.meta +11 -11
- package/Runtime/Constant/EnumType/MatchmakingMemberStatus.cs +6 -6
- package/Runtime/Constant/EnumType/MatchmakingMemberStatus.cs.meta +11 -11
- package/Runtime/Constant/EnumType/MatchmakingTicketStatus.cs +2 -2
- package/Runtime/Constant/EnumType/MatchmakingTicketStatus.cs.meta +11 -11
- package/Runtime/Constant/EnumType/OwnerType.cs +3 -2
- package/Runtime/Constant/EnumType/OwnerType.cs.meta +11 -11
- package/Runtime/Constant/EnumType/PermissionDataItem.cs +10 -10
- package/Runtime/Constant/EnumType/PermissionDataItem.cs.meta +11 -11
- package/Runtime/Constant/EnumType/PushPlatformType.cs +10 -0
- package/Runtime/Constant/EnumType/PushPlatformType.cs.meta +11 -0
- package/Runtime/Constant/EnumType/RequestRole.cs +11 -11
- package/Runtime/Constant/EnumType/RequestRole.cs.meta +7 -7
- package/Runtime/Constant/EnumType/RequestType.cs +20 -19
- package/Runtime/Constant/EnumType/RequestType.cs.meta +11 -11
- package/Runtime/Constant/EnumType/StoreReceiveType.cs +13 -0
- package/Runtime/Constant/EnumType/StoreReceiveType.cs.meta +11 -0
- package/Runtime/Constant/EnumType.meta +8 -8
- package/Runtime/Constant/ErrorCode/GNErrorCode.cs +53 -48
- package/Runtime/Constant/ErrorCode/GNErrorCode.cs.meta +7 -7
- package/Runtime/Constant/ErrorCode.meta +8 -8
- package/Runtime/Constant/EventCode.cs +43 -16
- package/Runtime/Constant/EventCode.cs.meta +11 -11
- package/Runtime/Constant/OperationCode.cs +249 -211
- package/Runtime/Constant/OperationCode.cs.meta +11 -11
- package/Runtime/Constant/ParameterCode/GNParameterCode.cs +614 -466
- package/Runtime/Constant/ParameterCode/GNParameterCode.cs.meta +11 -11
- package/Runtime/Constant/ParameterCode/ParameterCode.cs +12 -12
- package/Runtime/Constant/ParameterCode/ParameterCode.cs.meta +11 -11
- package/Runtime/Constant/ParameterCode.meta +8 -8
- package/Runtime/Constant/ReturnCode.cs +73 -25
- package/Runtime/Constant/ReturnCode.cs.meta +11 -11
- package/Runtime/Constant.meta +8 -8
- package/Runtime/Entity/DataMember.cs +342 -124
- package/Runtime/Entity/DataMember.cs.meta +11 -11
- package/Runtime/Entity/GNMetadata.cs +72 -27
- package/Runtime/Entity/GNMetadata.cs.meta +11 -11
- package/Runtime/Entity/InvalidMember.cs +52 -33
- package/Runtime/Entity/InvalidMember.cs.meta +11 -11
- package/Runtime/Entity/Models/AuthenticateModels.cs +251 -207
- package/Runtime/Entity/Models/AuthenticateModels.cs.meta +11 -11
- package/Runtime/Entity/Models/AuthenticateRequestModels.cs +153 -131
- package/Runtime/Entity/Models/AuthenticateRequestModels.cs.meta +11 -11
- package/Runtime/Entity/Models/AuthenticateResponseModels.cs +61 -51
- package/Runtime/Entity/Models/AuthenticateResponseModels.cs.meta +11 -11
- package/Runtime/Entity/Models/CharacterPlayerModels.cs +985 -849
- package/Runtime/Entity/Models/CharacterPlayerModels.cs.meta +11 -11
- package/Runtime/Entity/Models/CharacterPlayerRequestModels.cs +957 -885
- package/Runtime/Entity/Models/CharacterPlayerRequestModels.cs.meta +11 -11
- package/Runtime/Entity/Models/CharacterPlayerResponseModels.cs +165 -150
- package/Runtime/Entity/Models/CharacterPlayerResponseModels.cs.meta +11 -11
- package/Runtime/Entity/Models/CloudScriptModels.cs +185 -0
- package/Runtime/Entity/Models/CloudScriptModels.cs.meta +11 -0
- package/Runtime/Entity/Models/CloudScriptRequestModels.cs +134 -0
- package/Runtime/Entity/Models/CloudScriptRequestModels.cs.meta +11 -0
- package/Runtime/Entity/Models/CloudScriptResponseModels.cs +34 -0
- package/Runtime/Entity/Models/CloudScriptResponseModels.cs.meta +11 -0
- package/Runtime/Entity/Models/ContentModels.cs +150 -153
- package/Runtime/Entity/Models/ContentModels.cs.meta +11 -11
- package/Runtime/Entity/Models/ContentRequestModels.cs +129 -129
- package/Runtime/Entity/Models/ContentRequestModels.cs.meta +11 -11
- package/Runtime/Entity/Models/ContentResponseModels.cs +24 -24
- package/Runtime/Entity/Models/ContentResponseModels.cs.meta +11 -11
- package/Runtime/Entity/Models/DashboardModels.cs +1684 -1156
- package/Runtime/Entity/Models/DashboardModels.cs.meta +11 -11
- package/Runtime/Entity/Models/DashboardRequestModels.cs +220 -147
- package/Runtime/Entity/Models/DashboardRequestModels.cs.meta +11 -11
- package/Runtime/Entity/Models/DashboardResponseModels.cs +92 -57
- package/Runtime/Entity/Models/DashboardResponseModels.cs.meta +11 -11
- package/Runtime/Entity/Models/GamePlayerModels.cs +1073 -933
- package/Runtime/Entity/Models/GamePlayerModels.cs.meta +11 -11
- package/Runtime/Entity/Models/GamePlayerRequestModels.cs +939 -867
- package/Runtime/Entity/Models/GamePlayerRequestModels.cs.meta +11 -11
- package/Runtime/Entity/Models/GamePlayerResponseModels.cs +162 -147
- package/Runtime/Entity/Models/GamePlayerResponseModels.cs.meta +11 -11
- package/Runtime/Entity/Models/GenericModels.cs +102 -102
- package/Runtime/Entity/Models/GenericModels.cs.meta +11 -11
- package/Runtime/Entity/Models/GroupModels.cs +812 -676
- package/Runtime/Entity/Models/GroupModels.cs.meta +11 -11
- package/Runtime/Entity/Models/GroupRequestModels.cs +741 -669
- package/Runtime/Entity/Models/GroupRequestModels.cs.meta +11 -11
- package/Runtime/Entity/Models/GroupResponseModels.cs +129 -114
- package/Runtime/Entity/Models/GroupResponseModels.cs.meta +11 -11
- package/Runtime/Entity/Models/InventoryModels.cs +667 -558
- package/Runtime/Entity/Models/InventoryModels.cs.meta +11 -11
- package/Runtime/Entity/Models/InventoryRequestModels.cs +626 -579
- package/Runtime/Entity/Models/InventoryRequestModels.cs.meta +11 -11
- package/Runtime/Entity/Models/InventoryResponseModels.cs +109 -99
- package/Runtime/Entity/Models/InventoryResponseModels.cs.meta +11 -11
- package/Runtime/Entity/Models/MasterPlayerModels.cs +1882 -1340
- package/Runtime/Entity/Models/MasterPlayerModels.cs.meta +11 -11
- package/Runtime/Entity/Models/MasterPlayerRequestModels.cs +1643 -1253
- package/Runtime/Entity/Models/MasterPlayerRequestModels.cs.meta +11 -11
- package/Runtime/Entity/Models/MasterPlayerResponseModels.cs +293 -213
- package/Runtime/Entity/Models/MasterPlayerResponseModels.cs.meta +11 -11
- package/Runtime/Entity/Models/MultiplayerModels.cs +293 -223
- package/Runtime/Entity/Models/MultiplayerModels.cs.meta +11 -11
- package/Runtime/Entity/Models/MultiplayerRequestModels.cs +199 -149
- package/Runtime/Entity/Models/MultiplayerRequestModels.cs.meta +11 -11
- package/Runtime/Entity/Models/MultiplayerResponseModels.cs +59 -49
- package/Runtime/Entity/Models/MultiplayerResponseModels.cs.meta +11 -11
- package/Runtime/Entity/Models/StoreInventoryModels.cs +514 -323
- package/Runtime/Entity/Models/StoreInventoryModels.cs.meta +11 -11
- package/Runtime/Entity/Models/StoreInventoryRequestModels.cs +236 -165
- package/Runtime/Entity/Models/StoreInventoryRequestModels.cs.meta +11 -11
- package/Runtime/Entity/Models/StoreInventoryResponseModels.cs +45 -30
- package/Runtime/Entity/Models/StoreInventoryResponseModels.cs.meta +11 -11
- package/Runtime/Entity/Models.meta +8 -8
- package/Runtime/Entity/OperationEvent.cs +111 -75
- package/Runtime/Entity/OperationEvent.cs.meta +11 -11
- package/Runtime/Entity/OperationHelper.cs +51 -35
- package/Runtime/Entity/OperationHelper.cs.meta +11 -11
- package/Runtime/Entity/OperationRequest.cs +142 -99
- package/Runtime/Entity/OperationRequest.cs.meta +11 -11
- package/Runtime/Entity/OperationResponse.cs +111 -63
- package/Runtime/Entity/OperationResponse.cs.meta +11 -11
- package/Runtime/Entity/Request/CustomOperationRequest.cs +112 -61
- package/Runtime/Entity/Request/CustomOperationRequest.cs.meta +11 -11
- package/Runtime/Entity/Request.meta +8 -8
- package/Runtime/Entity/Response/CustomOperationResponse.cs +84 -63
- package/Runtime/Entity/Response/CustomOperationResponse.cs.meta +11 -11
- package/Runtime/Entity/Response.meta +8 -8
- package/Runtime/Entity.meta +8 -8
- package/Runtime/GNNetwork.cs +501 -182
- package/Runtime/GNNetwork.cs.meta +11 -11
- package/Runtime/GNNetworkApi.cs +38 -19
- package/Runtime/GNNetworkApi.cs.meta +11 -11
- package/Runtime/GNNetworkAuthenticateApi.cs +531 -98
- package/Runtime/GNNetworkAuthenticateApi.cs.meta +11 -11
- package/Runtime/GNNetworkCharacterPlayerApi.cs +1587 -762
- package/Runtime/GNNetworkCharacterPlayerApi.cs.meta +11 -11
- package/Runtime/GNNetworkCloudScriptApi.cs +181 -0
- package/Runtime/GNNetworkCloudScriptApi.cs.meta +11 -0
- package/Runtime/GNNetworkContentApi.cs +238 -132
- package/Runtime/GNNetworkContentApi.cs.meta +11 -11
- package/Runtime/GNNetworkDashboardApi.cs +278 -117
- package/Runtime/GNNetworkDashboardApi.cs.meta +11 -11
- package/Runtime/GNNetworkGamePlayerApi.cs +1558 -747
- package/Runtime/GNNetworkGamePlayerApi.cs.meta +11 -11
- package/Runtime/GNNetworkGroupApi.cs +1228 -582
- package/Runtime/GNNetworkGroupApi.cs.meta +11 -11
- package/Runtime/GNNetworkInventoryApi.cs +1048 -507
- package/Runtime/GNNetworkInventoryApi.cs.meta +11 -11
- package/Runtime/GNNetworkMasterPlayerApi.cs +2586 -1067
- package/Runtime/GNNetworkMasterPlayerApi.cs.meta +11 -11
- package/Runtime/GNNetworkMultiplayerApi.cs +328 -147
- package/Runtime/GNNetworkMultiplayerApi.cs.meta +11 -11
- package/Runtime/GNNetworkStoreInventoryApi.cs +388 -162
- package/Runtime/GNNetworkStoreInventoryApi.cs.meta +11 -11
- package/Runtime/Helper/CodeHelper.cs +140 -98
- package/Runtime/Helper/CodeHelper.cs.meta +11 -11
- package/Runtime/Helper/ConverterService.cs +236 -52
- package/Runtime/Helper/ConverterService.cs.meta +11 -11
- package/Runtime/Helper/ParseGNHelper.cs +451 -451
- package/Runtime/Helper/ParseGNHelper.cs.meta +11 -11
- package/Runtime/Helper.meta +8 -8
- package/Runtime/Logger/GNDebug.cs +92 -49
- package/Runtime/Logger/GNDebug.cs.meta +11 -11
- package/Runtime/Logger.meta +8 -8
- package/Runtime/Networking/AuthenticateStatus.cs +57 -35
- package/Runtime/Networking/AuthenticateStatus.cs.meta +11 -11
- package/Runtime/Networking/Handler/IServerEventHandler.cs +25 -25
- package/Runtime/Networking/Handler/IServerEventHandler.cs.meta +11 -11
- package/Runtime/Networking/Handler/OnCharacterPlayerFriendUpdateEventHandler.cs +61 -32
- package/Runtime/Networking/Handler/OnCharacterPlayerFriendUpdateEventHandler.cs.meta +11 -11
- package/Runtime/Networking/Handler/OnCharacterPlayerGroupUpdateEventHandler.cs +54 -33
- package/Runtime/Networking/Handler/OnCharacterPlayerGroupUpdateEventHandler.cs.meta +11 -11
- package/Runtime/Networking/Handler/OnGamePlayerFriendUpdateEventHandler.cs +54 -32
- package/Runtime/Networking/Handler/OnGamePlayerFriendUpdateEventHandler.cs.meta +11 -11
- package/Runtime/Networking/Handler/OnGamePlayerGroupUpdateEventHandler.cs +54 -32
- package/Runtime/Networking/Handler/OnGamePlayerGroupUpdateEventHandler.cs.meta +11 -11
- package/Runtime/Networking/Handler/OnGroupMemberUpdateEventHandler.cs +48 -29
- package/Runtime/Networking/Handler/OnGroupMemberUpdateEventHandler.cs.meta +11 -11
- package/Runtime/Networking/Handler/OnGroupMessageUpdateEventHandler.cs +47 -29
- package/Runtime/Networking/Handler/OnGroupMessageUpdateEventHandler.cs.meta +11 -11
- package/Runtime/Networking/Handler.meta +8 -8
- package/Runtime/Networking/Http/HttpPeer.cs +68 -25
- package/Runtime/Networking/Http/HttpPeer.cs.meta +11 -11
- package/Runtime/Networking/Http/NetworkingHttpPeerBase.cs +65 -25
- package/Runtime/Networking/Http/NetworkingHttpPeerBase.cs.meta +11 -11
- package/Runtime/Networking/Http/NetworkingPeerHttpClientRequest.cs +513 -486
- package/Runtime/Networking/Http/NetworkingPeerHttpClientRequest.cs.meta +11 -11
- package/Runtime/Networking/Http/NetworkingPeerHttpRequest.cs +172 -142
- package/Runtime/Networking/Http/NetworkingPeerHttpRequest.cs.meta +11 -11
- package/Runtime/Networking/Http/NetworkingPeerUnityWebRequest.cs +225 -188
- package/Runtime/Networking/Http/NetworkingPeerUnityWebRequest.cs.meta +11 -11
- package/Runtime/Networking/Http.meta +8 -8
- package/Runtime/Networking/IPeer.cs +41 -19
- package/Runtime/Networking/IPeer.cs.meta +11 -11
- package/Runtime/Networking/NetworkingPeer.cs +198 -144
- package/Runtime/Networking/NetworkingPeer.cs.meta +11 -11
- package/Runtime/Networking/NetworkingPeerAPI.cs +20 -21
- package/Runtime/Networking/NetworkingPeerAPI.cs.meta +11 -11
- package/Runtime/Networking/OperationPending.cs +159 -95
- package/Runtime/Networking/OperationPending.cs.meta +11 -11
- package/Runtime/Networking/PeerBase.cs +305 -242
- package/Runtime/Networking/PeerBase.cs.meta +11 -11
- package/Runtime/Networking/Socket/NetworkingPeerSocketV2.cs +222 -185
- package/Runtime/Networking/Socket/NetworkingPeerSocketV2.cs.meta +11 -11
- package/Runtime/Networking/Socket/NetworkingPeerSocketV3.cs +235 -177
- package/Runtime/Networking/Socket/NetworkingPeerSocketV3.cs.meta +11 -11
- package/Runtime/Networking/Socket/NetworkingSocketPeerBase.cs +165 -23
- package/Runtime/Networking/Socket/NetworkingSocketPeerBase.cs.meta +11 -11
- package/Runtime/Networking/Socket/SocketPeer.cs +242 -197
- package/Runtime/Networking/Socket/SocketPeer.cs.meta +11 -11
- package/Runtime/Networking/Socket.meta +8 -8
- package/Runtime/Networking.meta +8 -8
- package/Runtime/Unity/ServiceCoroutine.cs +10 -0
- package/Runtime/Unity/ServiceCoroutine.cs.meta +11 -0
- package/Runtime/Unity/ServiceUpdate.cs +33 -20
- package/Runtime/Unity/ServiceUpdate.cs.meta +11 -11
- package/Runtime/Unity.meta +8 -8
- package/Runtime/XmobiTea.GN.runtime.asmdef +16 -16
- package/Runtime/XmobiTea.GN.runtime.asmdef.meta +7 -7
- package/package.json +1 -1
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
fileFormatVersion: 2
|
|
2
|
-
guid: e465f60601dc58346b2df5d4aa667347
|
|
3
|
-
MonoImporter:
|
|
4
|
-
externalObjects: {}
|
|
5
|
-
serializedVersion: 2
|
|
6
|
-
defaultReferences: []
|
|
7
|
-
executionOrder: 0
|
|
8
|
-
icon: {instanceID: 0}
|
|
9
|
-
userData:
|
|
10
|
-
assetBundleName:
|
|
11
|
-
assetBundleVariant:
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: e465f60601dc58346b2df5d4aa667347
|
|
3
|
+
MonoImporter:
|
|
4
|
+
externalObjects: {}
|
|
5
|
+
serializedVersion: 2
|
|
6
|
+
defaultReferences: []
|
|
7
|
+
executionOrder: 0
|
|
8
|
+
icon: {instanceID: 0}
|
|
9
|
+
userData:
|
|
10
|
+
assetBundleName:
|
|
11
|
+
assetBundleVariant:
|
|
@@ -1,323 +1,393 @@
|
|
|
1
1
|
namespace XmobiTea.GN.Entity.Models
|
|
2
2
|
{
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
3
|
+
using System.Collections.Generic;
|
|
4
|
+
using XmobiTea.GN.Common;
|
|
5
|
+
using XmobiTea.GN.Constant;
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
7
|
+
public partial class MultiplayerModels
|
|
8
|
+
{
|
|
9
|
+
public class CancelAllMatchmakingTicketRequestData
|
|
10
|
+
{
|
|
11
|
+
[StringDataMember(code = GNParameterCode.QueueName, minLength = 6, maxLength = 32)]
|
|
12
|
+
public string queueName;
|
|
13
13
|
|
|
14
|
-
|
|
14
|
+
}
|
|
15
15
|
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
16
|
+
public class ServerCancelAllMatchmakingTicketRequestData : CancelAllMatchmakingTicketRequestData
|
|
17
|
+
{
|
|
18
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10)]
|
|
19
|
+
public string userId;
|
|
20
20
|
|
|
21
|
-
|
|
21
|
+
}
|
|
22
22
|
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
23
|
+
public class AdminCancelAllMatchmakingTicketRequestData : ServerCancelAllMatchmakingTicketRequestData
|
|
24
|
+
{
|
|
25
|
+
}
|
|
26
26
|
|
|
27
27
|
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
28
|
+
public class CancelMatchmakingTicketRequestData
|
|
29
|
+
{
|
|
30
|
+
[StringDataMember(code = GNParameterCode.TicketId, minLength = 10, maxLength = 10)]
|
|
31
|
+
public string ticketId;
|
|
32
32
|
|
|
33
|
-
|
|
33
|
+
}
|
|
34
34
|
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
35
|
+
public class ServerCancelMatchmakingTicketRequestData : CancelMatchmakingTicketRequestData
|
|
36
|
+
{
|
|
37
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10)]
|
|
38
|
+
public string userId;
|
|
39
39
|
|
|
40
|
-
|
|
40
|
+
}
|
|
41
41
|
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
42
|
+
public class AdminCancelMatchmakingTicketRequestData : ServerCancelMatchmakingTicketRequestData
|
|
43
|
+
{
|
|
44
|
+
}
|
|
45
45
|
|
|
46
46
|
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
47
|
+
public class CreateMatchmakingTicketRequestData
|
|
48
|
+
{
|
|
49
|
+
[NumberDataMember(code = GNParameterCode.GiveUpAfterSeconds, mustInt = true, minValue = 20)]
|
|
50
|
+
public int giveUpAfterSeconds;
|
|
51
51
|
|
|
52
|
-
|
|
53
|
-
|
|
52
|
+
[StringDataMember(code = GNParameterCode.QueueName, minLength = 6, maxLength = 32)]
|
|
53
|
+
public string queueName;
|
|
54
54
|
|
|
55
|
-
|
|
56
|
-
|
|
55
|
+
[GNHashtableDataMember(code = GNParameterCode.Attribute, isOptional = true)]
|
|
56
|
+
public GNHashtable? attribute;
|
|
57
57
|
|
|
58
|
-
|
|
59
|
-
|
|
58
|
+
[GNArrayDataMember(code = GNParameterCode.Members, isOptional = true, elementCls = typeof(string))]
|
|
59
|
+
public List<string>? members;
|
|
60
60
|
|
|
61
|
-
|
|
61
|
+
}
|
|
62
62
|
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
63
|
+
public class ServerCreateMatchmakingTicketRequestData : CreateMatchmakingTicketRequestData
|
|
64
|
+
{
|
|
65
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10)]
|
|
66
|
+
public string userId;
|
|
67
67
|
|
|
68
|
-
|
|
68
|
+
}
|
|
69
69
|
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
70
|
+
public class AdminCreateMatchmakingTicketRequestData : ServerCreateMatchmakingTicketRequestData
|
|
71
|
+
{
|
|
72
|
+
}
|
|
73
73
|
|
|
74
74
|
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
75
|
+
public class GetMatchmakingTicketRequestData
|
|
76
|
+
{
|
|
77
|
+
[StringDataMember(code = GNParameterCode.TicketId, minLength = 10, maxLength = 10)]
|
|
78
|
+
public string ticketId;
|
|
79
79
|
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
80
|
+
[BooleanDataMember(code = GNParameterCode.ReturnMember, isOptional = true, defaultValue = false)]
|
|
81
|
+
public bool? returnMember;
|
|
82
|
+
}
|
|
83
83
|
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
public string userId;
|
|
84
|
+
public class ServerGetMatchmakingTicketRequestData : GetMatchmakingTicketRequestData
|
|
85
|
+
{
|
|
86
|
+
}
|
|
88
87
|
|
|
89
|
-
|
|
88
|
+
public class AdminGetMatchmakingTicketRequestData : ServerGetMatchmakingTicketRequestData
|
|
89
|
+
{
|
|
90
|
+
}
|
|
90
91
|
|
|
91
|
-
public class AdminGetMatchmakingTicketRequestData : ServerGetMatchmakingTicketRequestData
|
|
92
|
-
{
|
|
93
|
-
}
|
|
94
92
|
|
|
93
|
+
public class GetMatchRequestData
|
|
94
|
+
{
|
|
95
|
+
[StringDataMember(code = GNParameterCode.MatchId, minLength = 15, maxLength = 15)]
|
|
96
|
+
public string matchId;
|
|
95
97
|
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
[StringDataMember(code = GNParameterCode.MatchId, minLength = 15, maxLength = 15)]
|
|
99
|
-
public string matchId;
|
|
98
|
+
[BooleanDataMember(code = GNParameterCode.ReturnMember, isOptional = true, defaultValue = false)]
|
|
99
|
+
public bool? returnMember;
|
|
100
100
|
|
|
101
|
-
|
|
102
|
-
public bool? returnMember;
|
|
101
|
+
}
|
|
103
102
|
|
|
104
|
-
|
|
103
|
+
public class ServerGetMatchRequestData : GetMatchRequestData
|
|
104
|
+
{
|
|
105
105
|
|
|
106
|
-
|
|
107
|
-
{
|
|
108
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10)]
|
|
109
|
-
public string userId;
|
|
106
|
+
}
|
|
110
107
|
|
|
111
|
-
|
|
108
|
+
public class AdminGetMatchRequestData : ServerGetMatchRequestData
|
|
109
|
+
{
|
|
110
|
+
}
|
|
112
111
|
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
112
|
+
public class GetAllMatchRequestData
|
|
113
|
+
{
|
|
114
|
+
[BooleanDataMember(code = GNParameterCode.ReturnMember, isOptional = true, defaultValue = false)]
|
|
115
|
+
public bool? returnMember;
|
|
116
116
|
|
|
117
|
+
[NumberDataMember(code = GNParameterCode.Skip, defaultValue = 0, minValue = 0, mustInt = true, isOptional = true)]
|
|
118
|
+
public int? skip;
|
|
117
119
|
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
[StringDataMember(code = GNParameterCode.QueueName, minLength = 6, maxLength = 32)]
|
|
121
|
-
public string queueName;
|
|
120
|
+
[NumberDataMember(code = GNParameterCode.Limit, defaultValue = 10, minValue = 5, maxValue = 100, mustInt = true, isOptional = true)]
|
|
121
|
+
public int? limit;
|
|
122
122
|
|
|
123
|
-
|
|
124
|
-
public int timeInSeconds;
|
|
123
|
+
}
|
|
125
124
|
|
|
126
|
-
|
|
125
|
+
public class ServerGetAllMatchRequestData : GetAllMatchRequestData
|
|
126
|
+
{
|
|
127
|
+
}
|
|
127
128
|
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
public string userId;
|
|
129
|
+
public class AdminGetAllMatchRequestData : ServerGetAllMatchRequestData
|
|
130
|
+
{
|
|
131
|
+
}
|
|
132
132
|
|
|
133
|
-
|
|
133
|
+
public class GetAllMatchmakingTicketRequestData
|
|
134
|
+
{
|
|
135
|
+
[NumberDataMember(code = GNParameterCode.Status, minValue = 1, maxValue = 5, mustInt = true, isOptional = true)]
|
|
136
|
+
public int? status;
|
|
134
137
|
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
}
|
|
138
|
+
[BooleanDataMember(code = GNParameterCode.ReturnMember, isOptional = true, defaultValue = false)]
|
|
139
|
+
public bool? returnMember;
|
|
138
140
|
|
|
141
|
+
[NumberDataMember(code = GNParameterCode.Skip, defaultValue = 0, minValue = 0, mustInt = true, isOptional = true)]
|
|
142
|
+
public int? skip;
|
|
139
143
|
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
[StringDataMember(code = GNParameterCode.TicketId, minLength = 10, maxLength = 10)]
|
|
143
|
-
public string ticketId;
|
|
144
|
+
[NumberDataMember(code = GNParameterCode.Limit, defaultValue = 10, minValue = 5, maxValue = 100, mustInt = true, isOptional = true)]
|
|
145
|
+
public int? limit;
|
|
144
146
|
|
|
145
|
-
|
|
146
|
-
public GNHashtable? attribute;
|
|
147
|
+
}
|
|
147
148
|
|
|
148
|
-
|
|
149
|
+
public class ServerGetAllMatchmakingTicketRequestData : GetAllMatchmakingTicketRequestData
|
|
150
|
+
{
|
|
151
|
+
}
|
|
149
152
|
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
public string userId;
|
|
153
|
+
public class AdminGetAllMatchmakingTicketRequestData : ServerGetAllMatchmakingTicketRequestData
|
|
154
|
+
{
|
|
155
|
+
}
|
|
154
156
|
|
|
155
|
-
}
|
|
156
157
|
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
158
|
+
public class GetQueueStatisticsRequestData
|
|
159
|
+
{
|
|
160
|
+
[StringDataMember(code = GNParameterCode.QueueName, minLength = 6, maxLength = 32)]
|
|
161
|
+
public string queueName;
|
|
160
162
|
|
|
163
|
+
[NumberDataMember(code = GNParameterCode.TimeInSeconds, mustInt = true, minValue = 20)]
|
|
164
|
+
public int timeInSeconds;
|
|
161
165
|
|
|
162
|
-
|
|
163
|
-
{
|
|
164
|
-
[StringDataMember(code = GNParameterCode.QueueName, minLength = 6, maxLength = 32)]
|
|
165
|
-
public string queueName;
|
|
166
|
+
}
|
|
166
167
|
|
|
167
|
-
|
|
168
|
+
public class ServerGetQueueStatisticsRequestData : GetQueueStatisticsRequestData
|
|
169
|
+
{
|
|
168
170
|
|
|
169
|
-
|
|
170
|
-
{
|
|
171
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10)]
|
|
172
|
-
public string userId;
|
|
171
|
+
}
|
|
173
172
|
|
|
174
|
-
|
|
173
|
+
public class AdminGetQueueStatisticsRequestData : ServerGetQueueStatisticsRequestData
|
|
174
|
+
{
|
|
175
|
+
}
|
|
175
176
|
|
|
176
|
-
public class AdminListMatchmakingTicketsForPlayerRequestData : ServerListMatchmakingTicketsForPlayerRequestData
|
|
177
|
-
{
|
|
178
|
-
}
|
|
179
177
|
|
|
178
|
+
public class JoinMatchmakingTicketRequestData
|
|
179
|
+
{
|
|
180
|
+
[StringDataMember(code = GNParameterCode.TicketId, minLength = 10, maxLength = 10)]
|
|
181
|
+
public string ticketId;
|
|
180
182
|
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
[GNArrayDataMember(code = GNParameterCode.TicketIds, elementCls = typeof(string))]
|
|
184
|
-
public List<string> ticketIds;
|
|
183
|
+
[GNHashtableDataMember(code = GNParameterCode.Attribute, isOptional = true)]
|
|
184
|
+
public GNHashtable? attribute;
|
|
185
185
|
|
|
186
|
-
|
|
186
|
+
}
|
|
187
187
|
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
188
|
+
public class ServerJoinMatchmakingTicketRequestData : JoinMatchmakingTicketRequestData
|
|
189
|
+
{
|
|
190
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10)]
|
|
191
|
+
public string userId;
|
|
192
192
|
|
|
193
|
-
|
|
193
|
+
}
|
|
194
194
|
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
public string userId;
|
|
195
|
+
public class AdminJoinMatchmakingTicketRequestData : ServerJoinMatchmakingTicketRequestData
|
|
196
|
+
{
|
|
197
|
+
}
|
|
199
198
|
|
|
200
|
-
[NumberDataMember(code = GNParameterCode.Status, mustInt = true)]
|
|
201
|
-
public int status;
|
|
202
199
|
|
|
203
|
-
|
|
204
|
-
|
|
200
|
+
public class ListMatchmakingTicketsForPlayerRequestData
|
|
201
|
+
{
|
|
202
|
+
[StringDataMember(code = GNParameterCode.QueueName, minLength = 6, maxLength = 32)]
|
|
203
|
+
public string queueName;
|
|
205
204
|
|
|
206
|
-
|
|
205
|
+
}
|
|
207
206
|
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
207
|
+
public class ServerListMatchmakingTicketsForPlayerRequestData : ListMatchmakingTicketsForPlayerRequestData
|
|
208
|
+
{
|
|
209
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10)]
|
|
210
|
+
public string userId;
|
|
212
211
|
|
|
213
|
-
|
|
214
|
-
public string creatorId;
|
|
212
|
+
}
|
|
215
213
|
|
|
216
|
-
|
|
217
|
-
|
|
214
|
+
public class AdminListMatchmakingTicketsForPlayerRequestData : ServerListMatchmakingTicketsForPlayerRequestData
|
|
215
|
+
{
|
|
216
|
+
}
|
|
218
217
|
|
|
219
|
-
[StringDataMember(code = GNParameterCode.QueueName, minLength = 6, maxLength = 32)]
|
|
220
|
-
public string queueName;
|
|
221
218
|
|
|
222
|
-
|
|
223
|
-
|
|
219
|
+
public class CancelAllMatchmakingTicketResponseData
|
|
220
|
+
{
|
|
221
|
+
[GNArrayDataMember(code = GNParameterCode.TicketIds, elementCls = typeof(string))]
|
|
222
|
+
public List<string> ticketIds;
|
|
224
223
|
|
|
225
|
-
|
|
226
|
-
public string? matchId;
|
|
224
|
+
}
|
|
227
225
|
|
|
228
|
-
|
|
229
|
-
|
|
226
|
+
public class CreateMatchmakingTicketResponseData
|
|
227
|
+
{
|
|
228
|
+
[StringDataMember(code = GNParameterCode.TicketId)]
|
|
229
|
+
public string ticketId;
|
|
230
230
|
|
|
231
|
-
|
|
231
|
+
}
|
|
232
232
|
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
}
|
|
233
|
+
public class MatchmakingTicketMember
|
|
234
|
+
{
|
|
235
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10)]
|
|
236
|
+
public string userId;
|
|
238
237
|
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10)]
|
|
242
|
-
public string userId;
|
|
238
|
+
[NumberDataMember(code = GNParameterCode.Status, mustInt = true)]
|
|
239
|
+
public int status;
|
|
243
240
|
|
|
244
|
-
|
|
245
|
-
|
|
241
|
+
[GNHashtableDataMember(code = GNParameterCode.Attribute)]
|
|
242
|
+
public GNHashtable attribute;
|
|
246
243
|
|
|
247
|
-
|
|
248
|
-
public GNHashtable attribute;
|
|
244
|
+
}
|
|
249
245
|
|
|
250
|
-
|
|
246
|
+
public class MatchmakingTicketResponseData
|
|
247
|
+
{
|
|
248
|
+
[NumberDataMember(code = GNParameterCode.TsCreate)]
|
|
249
|
+
public long tsCreate;
|
|
251
250
|
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
[StringDataMember(code = GNParameterCode.Name)]
|
|
255
|
-
public string name;
|
|
251
|
+
[StringDataMember(code = GNParameterCode.CreatorId, minLength = 10, maxLength = 10)]
|
|
252
|
+
public string creatorId;
|
|
256
253
|
|
|
257
|
-
|
|
258
|
-
|
|
254
|
+
[NumberDataMember(code = GNParameterCode.GiveUpAfterSeconds)]
|
|
255
|
+
public int giveUpAfterSeconds;
|
|
259
256
|
|
|
260
|
-
|
|
261
|
-
|
|
257
|
+
[StringDataMember(code = GNParameterCode.QueueName, minLength = 6, maxLength = 32)]
|
|
258
|
+
public string queueName;
|
|
262
259
|
|
|
263
|
-
|
|
264
|
-
|
|
260
|
+
[NumberDataMember(code = GNParameterCode.Status, mustInt = true)]
|
|
261
|
+
public int status;
|
|
265
262
|
|
|
266
|
-
|
|
263
|
+
[StringDataMember(code = GNParameterCode.MatchId, minLength = 15, maxLength = 15, isOptional = true)]
|
|
264
|
+
public string? matchId;
|
|
267
265
|
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
[StringDataMember(code = GNParameterCode.IpV4Address)]
|
|
271
|
-
public string ipV4Address;
|
|
266
|
+
[GNArrayDataMember(code = GNParameterCode.Members, elementCls = typeof(MatchmakingTicketMember), isOptional = true)]
|
|
267
|
+
public List<MatchmakingTicketMember>? members;
|
|
272
268
|
|
|
273
|
-
|
|
274
|
-
public List<PortInfo> ports;
|
|
269
|
+
}
|
|
275
270
|
|
|
276
|
-
|
|
271
|
+
public class MatchmakingTicketWithTicketIdResponseData : MatchmakingTicketResponseData
|
|
272
|
+
{
|
|
273
|
+
[StringDataMember(code = GNParameterCode.TicketId)]
|
|
274
|
+
public string ticketId;
|
|
277
275
|
|
|
278
|
-
|
|
279
|
-
{
|
|
280
|
-
[NumberDataMember(code = GNParameterCode.TsCreate)]
|
|
281
|
-
public long tsCreate;
|
|
276
|
+
}
|
|
282
277
|
|
|
283
|
-
|
|
284
|
-
|
|
278
|
+
public class GetMatchmakingTicketResponseData
|
|
279
|
+
{
|
|
280
|
+
[GNHashtableDataMember(code = GNParameterCode.MatchmakingTicket)]
|
|
281
|
+
public MatchmakingTicketResponseData matchmakingTicket;
|
|
285
282
|
|
|
286
|
-
|
|
287
|
-
public List<MatchMember>? members;
|
|
283
|
+
}
|
|
288
284
|
|
|
289
|
-
|
|
285
|
+
public class MatchMember
|
|
286
|
+
{
|
|
287
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10)]
|
|
288
|
+
public string userId;
|
|
290
289
|
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
[GNHashtableDataMember(code = GNParameterCode.Match)]
|
|
294
|
-
public Match match;
|
|
290
|
+
[StringDataMember(code = GNParameterCode.TeamId)]
|
|
291
|
+
public string teamId;
|
|
295
292
|
|
|
296
|
-
|
|
293
|
+
[GNHashtableDataMember(code = GNParameterCode.Attribute)]
|
|
294
|
+
public GNHashtable attribute;
|
|
297
295
|
|
|
298
|
-
|
|
299
|
-
{
|
|
300
|
-
[NumberDataMember(code = GNParameterCode.PendingMemberCount, mustInt = true)]
|
|
301
|
-
public int pendingMemberCount;
|
|
296
|
+
}
|
|
302
297
|
|
|
303
|
-
|
|
304
|
-
|
|
298
|
+
public class PortInfo
|
|
299
|
+
{
|
|
300
|
+
[StringDataMember(code = GNParameterCode.Name)]
|
|
301
|
+
public string name;
|
|
305
302
|
|
|
306
|
-
|
|
307
|
-
|
|
303
|
+
[NumberDataMember(code = GNParameterCode.PublicPort, mustInt = true, minValue = 0)]
|
|
304
|
+
public ushort publicPort;
|
|
308
305
|
|
|
309
|
-
|
|
306
|
+
[NumberDataMember(code = GNParameterCode.PrivatePort, mustInt = true, minValue = 0)]
|
|
307
|
+
public ushort privatePort;
|
|
310
308
|
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
[GNArrayDataMember(code = GNParameterCode.TicketIds, elementCls = typeof(string))]
|
|
314
|
-
public List<string> ticketIds;
|
|
309
|
+
[NumberDataMember(code = GNParameterCode.Protocol, mustInt = true, minValue = 1, maxValue = 2)]
|
|
310
|
+
public ushort protocol;
|
|
315
311
|
|
|
316
|
-
|
|
312
|
+
}
|
|
317
313
|
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
314
|
+
public class ServerDetail
|
|
315
|
+
{
|
|
316
|
+
[StringDataMember(code = GNParameterCode.IpV4Address)]
|
|
317
|
+
public string ipV4Address;
|
|
321
318
|
|
|
322
|
-
|
|
319
|
+
[GNArrayDataMember(code = GNParameterCode.Ports, elementCls = typeof(PortInfo))]
|
|
320
|
+
public List<PortInfo> ports;
|
|
321
|
+
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
public class MatchResponseData
|
|
325
|
+
{
|
|
326
|
+
[NumberDataMember(code = GNParameterCode.TsCreate)]
|
|
327
|
+
public long tsCreate;
|
|
328
|
+
|
|
329
|
+
[StringDataMember(code = GNParameterCode.QueueName, minLength = 6, maxLength = 32)]
|
|
330
|
+
public string queueName;
|
|
331
|
+
|
|
332
|
+
[GNArrayDataMember(code = GNParameterCode.Members, elementCls = typeof(MatchMember), isOptional = true)]
|
|
333
|
+
public List<MatchMember>? members;
|
|
334
|
+
|
|
335
|
+
[NumberDataMember(code = GNParameterCode.TimeToMatchInSeconds)]
|
|
336
|
+
public long timeToMatchInSeconds;
|
|
337
|
+
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
public class MatchWithMatchIdResponseData : MatchResponseData
|
|
341
|
+
{
|
|
342
|
+
[StringDataMember(code = GNParameterCode.MatchId)]
|
|
343
|
+
public string matchId;
|
|
344
|
+
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
public class GetMatchResponseData
|
|
348
|
+
{
|
|
349
|
+
[GNHashtableDataMember(code = GNParameterCode.Match)]
|
|
350
|
+
public MatchResponseData match;
|
|
351
|
+
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
public class GetQueueStatisticsResponseData
|
|
355
|
+
{
|
|
356
|
+
[NumberDataMember(code = GNParameterCode.PendingMemberCount, mustInt = true)]
|
|
357
|
+
public int pendingMemberCount;
|
|
358
|
+
|
|
359
|
+
[NumberDataMember(code = GNParameterCode.PendingTicketCount, mustInt = true)]
|
|
360
|
+
public int pendingTicketCount;
|
|
361
|
+
|
|
362
|
+
[NumberDataMember(code = GNParameterCode.AverageMatchmakingTimeInSeconds)]
|
|
363
|
+
public float averageMatchmakingTimeInSeconds;
|
|
364
|
+
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
public class ListMatchmakingTicketsForPlayerResponseData
|
|
368
|
+
{
|
|
369
|
+
[GNArrayDataMember(code = GNParameterCode.TicketIds, elementCls = typeof(string))]
|
|
370
|
+
public List<string> ticketIds;
|
|
371
|
+
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
public class GetAllMatchResponseData
|
|
375
|
+
{
|
|
376
|
+
[GNArrayDataMember(code = GNParameterCode.Results, elementCls = typeof(MatchWithMatchIdResponseData), isOptional = true)]
|
|
377
|
+
public List<MatchWithMatchIdResponseData>? results;
|
|
378
|
+
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
public class GetAllMatchmakingTicketResponseData
|
|
382
|
+
{
|
|
383
|
+
[GNArrayDataMember(code = GNParameterCode.Results, elementCls = typeof(MatchmakingTicketWithTicketIdResponseData), isOptional = true)]
|
|
384
|
+
public List<MatchmakingTicketWithTicketIdResponseData>? results;
|
|
385
|
+
|
|
386
|
+
}
|
|
387
|
+
|
|
388
|
+
public class EmptyResponseData
|
|
389
|
+
{
|
|
390
|
+
}
|
|
391
|
+
|
|
392
|
+
}
|
|
323
393
|
}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
fileFormatVersion: 2
|
|
2
|
-
guid: e83a99a7557b0d441aa6716cd4eda37c
|
|
3
|
-
MonoImporter:
|
|
4
|
-
externalObjects: {}
|
|
5
|
-
serializedVersion: 2
|
|
6
|
-
defaultReferences: []
|
|
7
|
-
executionOrder: 0
|
|
8
|
-
icon: {instanceID: 0}
|
|
9
|
-
userData:
|
|
10
|
-
assetBundleName:
|
|
11
|
-
assetBundleVariant:
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: e83a99a7557b0d441aa6716cd4eda37c
|
|
3
|
+
MonoImporter:
|
|
4
|
+
externalObjects: {}
|
|
5
|
+
serializedVersion: 2
|
|
6
|
+
defaultReferences: []
|
|
7
|
+
executionOrder: 0
|
|
8
|
+
icon: {instanceID: 0}
|
|
9
|
+
userData:
|
|
10
|
+
assetBundleName:
|
|
11
|
+
assetBundleVariant:
|