@rlsdk/steam 1.0.1 → 1.0.3
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/README.md +1 -1
- package/classes/AkAudio.ts +2 -13
- package/classes/Core.ts +64 -59
- package/classes/Engine.ts +33 -75
- package/classes/GFxUI.ts +3 -31
- package/classes/IpDrv.ts +10 -20
- package/classes/OnlineSubsystemEOS.ts +60 -164
- package/classes/OnlineSubsystemSteamworks.ts +175 -183
- package/classes/ProjectX.ts +103 -69
- package/classes/TAGame.ts +3239 -2558
- package/classes/WinDrv.ts +1 -8
- package/constants/TAGame.ts +3 -1
- package/enums/Core.ts +54 -0
- package/enums/Engine.ts +2 -72
- package/enums/TAGame.ts +46 -4
- package/offsets/AkAudio.ts +1 -1
- package/offsets/Core.ts +64 -59
- package/offsets/Engine.ts +29 -51
- package/offsets/IpDrv.ts +38 -39
- package/offsets/OnlineSubsystemEOS.ts +94 -136
- package/offsets/OnlineSubsystemSteamworks.ts +212 -213
- package/offsets/ProjectX.ts +82 -46
- package/offsets/TAGame.ts +2977 -2390
- package/offsets/globals.ts +2 -2
- package/package.json +5 -4
- package/parameters/AkAudio.ts +2 -18
- package/parameters/Core.ts +2 -27
- package/parameters/Engine.ts +23 -239
- package/parameters/GFxUI.ts +1 -9
- package/parameters/IpDrv.ts +2 -19
- package/parameters/OnlineSubsystemEOS.ts +8 -231
- package/parameters/ProjectX.ts +335 -282
- package/parameters/TAGame.ts +4082 -2448
- package/structs/Core.ts +1 -7
- package/structs/Engine.ts +0 -12
- package/structs/OnlineSubsystemSteamworks.ts +2 -13
- package/structs/ProjectX.ts +3 -18
- package/structs/TAGame.ts +186 -104
package/README.md
CHANGED
|
@@ -159,7 +159,7 @@ This SDK was generated for a specific version of Rocket League (Steam). Game upd
|
|
|
159
159
|
- Class sizes
|
|
160
160
|
- New/removed properties
|
|
161
161
|
|
|
162
|
-
|
|
162
|
+
When the game updates, use the release that matches your client build.
|
|
163
163
|
|
|
164
164
|
## License
|
|
165
165
|
|
package/classes/AkAudio.ts
CHANGED
|
@@ -17,18 +17,7 @@ import type {
|
|
|
17
17
|
EPinnedAxisType,
|
|
18
18
|
EReflectionSendType,
|
|
19
19
|
} from '../enums/AkAudio';
|
|
20
|
-
import type {
|
|
21
|
-
FActiveSound,
|
|
22
|
-
FAkActorEnvironment,
|
|
23
|
-
FAkEnvironment,
|
|
24
|
-
FAkEventTrackKey,
|
|
25
|
-
FAkParamSet,
|
|
26
|
-
FAkRevSimFrame,
|
|
27
|
-
FAkRevSimUpdateParams,
|
|
28
|
-
FMusicAnalysisInfo,
|
|
29
|
-
FMusicSyncEvent,
|
|
30
|
-
FSoundBankInfo,
|
|
31
|
-
} from '../structs/AkAudio';
|
|
20
|
+
import type { FActiveSound, FAkActorEnvironment, FAkEnvironment, FAkEventTrackKey, FAkParamSet, FAkRevSimFrame, FAkRevSimUpdateParams, FMusicAnalysisInfo, FMusicSyncEvent, FSoundBankInfo } from '../structs/AkAudio';
|
|
32
21
|
import type { FInterpCurveFloat, FLinearColor, FMatrix, FPointer, FRotator, FVector } from '../structs/Core';
|
|
33
22
|
import type { UDebugDrawer, UObject, UStringMap, USubsystem } from './Core';
|
|
34
23
|
import type {
|
|
@@ -84,7 +73,7 @@ export type UAkAmbientSoundActor = UKeypoint & {
|
|
|
84
73
|
|
|
85
74
|
/**
|
|
86
75
|
* Class AkAudio.AkAudioDevice
|
|
87
|
-
* Size:
|
|
76
|
+
* Size: 0x01A8
|
|
88
77
|
* Extends: USubsystem
|
|
89
78
|
*/
|
|
90
79
|
export type UAkAudioDevice = USubsystem & {
|
package/classes/Core.ts
CHANGED
|
@@ -1020,62 +1020,67 @@ export type UFeatureSystem = UObject & {
|
|
|
1020
1020
|
TinyCrowd: boolean; // 0x0070 (0x0004) [bool : 0x80000000]
|
|
1021
1021
|
CrumbTrail: boolean; // 0x0074 (0x0004) [bool : 0x1]
|
|
1022
1022
|
XPGatedPlaylists: boolean; // 0x0074 (0x0004) [bool : 0x4]
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
|
|
1023
|
+
Football: boolean; // 0x0074 (0x0004) [bool : 0x10]
|
|
1024
|
+
RumbleSelection: boolean; // 0x0074 (0x0004) [bool : 0x20]
|
|
1025
|
+
UndersizedParty: boolean; // 0x0074 (0x0004) [bool : 0x40]
|
|
1026
|
+
StreamerSafeAudio: boolean; // 0x0074 (0x0004) [bool : 0x80]
|
|
1027
|
+
FreeplayCommands: boolean; // 0x0074 (0x0004) [bool : 0x100]
|
|
1028
|
+
Rumble_BM: boolean; // 0x0074 (0x0004) [bool : 0x200]
|
|
1029
|
+
PlayerReportingV2: boolean; // 0x0074 (0x0004) [bool : 0x400]
|
|
1030
|
+
EOSVoice: boolean; // 0x0074 (0x0004) [bool : 0x1000]
|
|
1031
|
+
QuickPostMatchRequeue: boolean; // 0x0074 (0x0004) [bool : 0x2000]
|
|
1032
|
+
TrainingNavigation: boolean; // 0x0074 (0x0004) [bool : 0x10000]
|
|
1033
|
+
TrainingManipulation: boolean; // 0x0074 (0x0004) [bool : 0x20000]
|
|
1034
|
+
FilterByColor: boolean; // 0x0074 (0x0004) [bool : 0x80000]
|
|
1035
|
+
Scoreboard: boolean; // 0x0074 (0x0004) [bool : 0x100000]
|
|
1036
|
+
DynamicMapEvents: boolean; // 0x0074 (0x0004) [bool : 0x200000]
|
|
1037
|
+
NameplateBoost: boolean; // 0x0074 (0x0004) [bool : 0x800000]
|
|
1038
|
+
DynamicLogos: boolean; // 0x0074 (0x0004) [bool : 0x1000000]
|
|
1039
|
+
PlayMenuV4: boolean; // 0x0074 (0x0004) [bool : 0x2000000]
|
|
1040
|
+
QuickChatTimeStamp: boolean; // 0x0074 (0x0004) [bool : 0x4000000]
|
|
1041
|
+
SoccarPong: boolean; // 0x0074 (0x0004) [bool : 0x8000000]
|
|
1042
|
+
OnlineFreeplay: boolean; // 0x0074 (0x0004) [bool : 0x10000000]
|
|
1043
|
+
MatchmakingSubRegion: boolean; // 0x0074 (0x0004) [bool : 0x40000000]
|
|
1044
|
+
CrossbarSFX: boolean; // 0x0074 (0x0004) [bool : 0x80000000]
|
|
1045
|
+
RugbyIteration: boolean; // 0x0078 (0x0004) [bool : 0x1]
|
|
1046
|
+
ChallengesV2: boolean; // 0x0078 (0x0004) [bool : 0x4]
|
|
1047
|
+
PossessionExpanded: boolean; // 0x0078 (0x0004) [bool : 0x8]
|
|
1048
|
+
TargetFind: boolean; // 0x0078 (0x0004) [bool : 0x10]
|
|
1049
|
+
KeepUp: boolean; // 0x0078 (0x0004) [bool : 0x40]
|
|
1050
|
+
RocketPassUpgrades: boolean; // 0x0078 (0x0004) [bool : 0x100]
|
|
1051
|
+
PentathlonTournaments: boolean; // 0x0078 (0x0004) [bool : 0x200]
|
|
1052
|
+
DemolishUpdates: boolean; // 0x0078 (0x0004) [bool : 0x400]
|
|
1053
|
+
ViralItem: boolean; // 0x0078 (0x0004) [bool : 0x800]
|
|
1054
|
+
ThankYouMessage: boolean; // 0x0078 (0x0004) [bool : 0x1000]
|
|
1055
|
+
AttackerDemoFX: boolean; // 0x0078 (0x0004) [bool : 0x2000]
|
|
1056
|
+
NewDriverChallengesV2: boolean; // 0x0078 (0x0004) [bool : 0x4000]
|
|
1057
|
+
TextModeration: boolean; // 0x0078 (0x0004) [bool : 0x20000]
|
|
1058
|
+
FilterToggle: boolean; // 0x0078 (0x0004) [bool : 0x40000]
|
|
1059
|
+
DdosPrevention: boolean; // 0x0078 (0x0004) [bool : 0x80000]
|
|
1060
|
+
OunceEnhancements: boolean; // 0x0078 (0x0004) [bool : 0x100000]
|
|
1061
|
+
FastFreeplay: boolean; // 0x0078 (0x0004) [bool : 0x200000]
|
|
1062
|
+
MatchAdminMutator: boolean; // 0x0078 (0x0004) [bool : 0x400000]
|
|
1063
|
+
Thistle: boolean; // 0x0078 (0x0004) [bool : 0x800000]
|
|
1064
|
+
DemoFXMutator: boolean; // 0x0078 (0x0004) [bool : 0x1000000]
|
|
1065
|
+
OffProdHandling: boolean; // 0x0078 (0x0004) [bool : 0x2000000]
|
|
1066
|
+
FlipResetIndicator: boolean; // 0x0078 (0x0004) [bool : 0x8000000]
|
|
1067
|
+
NewsOverhaul: boolean; // 0x0078 (0x0004) [bool : 0x10000000]
|
|
1068
|
+
QueueMenuChanges: boolean; // 0x0078 (0x0004) [bool : 0x20000000]
|
|
1069
|
+
VisibleMMR: boolean; // 0x0078 (0x0004) [bool : 0x40000000]
|
|
1070
|
+
EasyAntiCheat: boolean; // 0x0078 (0x0004) [bool : 0x80000000]
|
|
1071
|
+
OverrideBoostSound: boolean; // 0x007c (0x0004) [bool : 0x1]
|
|
1072
|
+
SettingsExport: boolean; // 0x007c (0x0004) [bool : 0x2]
|
|
1073
|
+
RBActorStatGraphs: boolean; // 0x007c (0x0004) [bool : 0x10]
|
|
1074
|
+
DemoSpawnSelection: boolean; // 0x007c (0x0004) [bool : 0x20]
|
|
1075
|
+
FreeplayTeamColors: boolean; // 0x007c (0x0004) [bool : 0x40]
|
|
1076
|
+
HitboxVisualizer: boolean; // 0x007c (0x0004) [bool : 0x80]
|
|
1077
|
+
StatsAPI: boolean; // 0x007c (0x0004) [bool : 0x100]
|
|
1078
|
+
TrainingAdditions: boolean; // 0x007c (0x0004) [bool : 0x200]
|
|
1079
|
+
ScorerGoalViewToggle: boolean; // 0x007c (0x0004) [bool : 0x400]
|
|
1080
|
+
StreamerSafe: boolean; // 0x007c (0x0004) [bool : 0x800]
|
|
1081
|
+
WorldCup: boolean; // 0x007c (0x0004) [bool : 0x1000]
|
|
1082
|
+
ImprovedPresence: boolean; // 0x007c (0x0004) [bool : 0x8000]
|
|
1083
|
+
AutoSkipGoalReplay: boolean; // 0x007c (0x0004) [bool : 0x10000]
|
|
1079
1084
|
};
|
|
1080
1085
|
|
|
1081
1086
|
/**
|
|
@@ -1182,21 +1187,21 @@ export type UIntProperty = UProperty & {};
|
|
|
1182
1187
|
|
|
1183
1188
|
/**
|
|
1184
1189
|
* Class Core.Linker
|
|
1185
|
-
* Size:
|
|
1190
|
+
* Size: 0x01F0
|
|
1186
1191
|
* Extends: UObject
|
|
1187
1192
|
*/
|
|
1188
1193
|
export type ULinker = UObject & {};
|
|
1189
1194
|
|
|
1190
1195
|
/**
|
|
1191
1196
|
* Class Core.LinkerLoad
|
|
1192
|
-
* Size:
|
|
1197
|
+
* Size: 0x0818
|
|
1193
1198
|
* Extends: ULinker
|
|
1194
1199
|
*/
|
|
1195
1200
|
export type ULinkerLoad = ULinker & {};
|
|
1196
1201
|
|
|
1197
1202
|
/**
|
|
1198
1203
|
* Class Core.LinkerSave
|
|
1199
|
-
* Size:
|
|
1204
|
+
* Size: 0x02B0
|
|
1200
1205
|
* Extends: ULinker
|
|
1201
1206
|
*/
|
|
1202
1207
|
export type ULinkerSave = ULinker & {};
|
package/classes/Engine.ts
CHANGED
|
@@ -77,12 +77,6 @@ import type {
|
|
|
77
77
|
EFocusType,
|
|
78
78
|
EForceMode,
|
|
79
79
|
EFunctionInputType,
|
|
80
|
-
EGameClipsAvailability,
|
|
81
|
-
EGameClipsClipStatus,
|
|
82
|
-
EGameClipsConnection,
|
|
83
|
-
EGameClipsConnectionStatus,
|
|
84
|
-
EGameClipsMaskStatus,
|
|
85
|
-
EGameClipsRecording,
|
|
86
80
|
EGameObjectShaderParameterType,
|
|
87
81
|
EGameShaderParameterType,
|
|
88
82
|
EHeadTrackingAction,
|
|
@@ -410,7 +404,6 @@ import type {
|
|
|
410
404
|
FFunctionExpressionInput,
|
|
411
405
|
FFunctionExpressionOutput,
|
|
412
406
|
FGameClassShortName,
|
|
413
|
-
FGameClipsMaskArea,
|
|
414
407
|
FGameResourceDataProvider,
|
|
415
408
|
FGameSearchCfg,
|
|
416
409
|
FGameSessionInformation,
|
|
@@ -12160,8 +12153,7 @@ export type UMaterialExpressionTextureSampleParameterMeshSubUV = UMaterialExpres
|
|
|
12160
12153
|
* Size: 0x0158
|
|
12161
12154
|
* Extends: UMaterialExpressionTextureSampleParameterMeshSubUV
|
|
12162
12155
|
*/
|
|
12163
|
-
export type UMaterialExpressionTextureSampleParameterMeshSubUVBlend =
|
|
12164
|
-
UMaterialExpressionTextureSampleParameterMeshSubUV & {};
|
|
12156
|
+
export type UMaterialExpressionTextureSampleParameterMeshSubUVBlend = UMaterialExpressionTextureSampleParameterMeshSubUV & {};
|
|
12165
12157
|
|
|
12166
12158
|
/**
|
|
12167
12159
|
* Class Engine.MaterialExpressionTextureSampleParameterMovie
|
|
@@ -14141,41 +14133,6 @@ export type UOnlineFriendsInterface = UInterface & {};
|
|
|
14141
14133
|
// RequestLinkedAccounts(LocalUserNum: number, AccountIds: FUniqueNetId[], Callback: FScriptDelegate): boolean
|
|
14142
14134
|
// OnReceivedLinkedAccount(bSuccess: boolean, LinkedAccountData: FLinkedAccountData[]): void
|
|
14143
14135
|
|
|
14144
|
-
/**
|
|
14145
|
-
* Class Engine.OnlineGameClipsInterface
|
|
14146
|
-
* Size: 0x0060
|
|
14147
|
-
* Extends: UInterface
|
|
14148
|
-
*/
|
|
14149
|
-
export type UOnlineGameClipsInterface = UInterface & {};
|
|
14150
|
-
|
|
14151
|
-
// OnlineGameClipsInterface Functions
|
|
14152
|
-
// NotifyEventClipErrorOccurred(InCallback: FScriptDelegate): void
|
|
14153
|
-
// EventClipErrorOccurred(InEpicAccountId: string, ClipId: number, InErrorType: UErrorType): void
|
|
14154
|
-
// NotifyEventGeneralErrorOccurred(InCallback: FScriptDelegate): void
|
|
14155
|
-
// EventGeneralErrorOccurred(InErrorType: UErrorType): void
|
|
14156
|
-
// NotifyEventMaskStatusChanged(InCallback: FScriptDelegate): void
|
|
14157
|
-
// EventMaskStatusChanged(InMaskAreaHandle: bigint, InMaskArea: FGameClipsMaskArea, InNewMaskStatus: EGameClipsMaskStatus): void
|
|
14158
|
-
// NotifyEventClipStatusChanged(InCallback: FScriptDelegate): void
|
|
14159
|
-
// EventClipStatusChanged(InEpicAccountId: string, InClipId: number, InNewClipStatus: EGameClipsClipStatus): void
|
|
14160
|
-
// NotifyEventConnectionStatusChanged(InCallback: FScriptDelegate): void
|
|
14161
|
-
// EventConnectionStatusChanged(InEpicAccountId: string, InConnection: EGameClipsConnection, InNewConnectionStatus: EGameClipsConnectionStatus): void
|
|
14162
|
-
// NotifyEventRecordingChanged(InCallback: FScriptDelegate): void
|
|
14163
|
-
// EventRecordingChanged(InNewRecording: EGameClipsRecording): void
|
|
14164
|
-
// NotifyEventAvailabilityChanged(InCallback: FScriptDelegate): void
|
|
14165
|
-
// EventAvailabilityChanged(InNewAvailability: EGameClipsAvailability): void
|
|
14166
|
-
// IsAccountLinked(InEpicAccountId: string): boolean
|
|
14167
|
-
// IsUploading(): boolean
|
|
14168
|
-
// IsRecording(): boolean
|
|
14169
|
-
// IsAvailable(): boolean
|
|
14170
|
-
// GetTimeUntilUnthrottled(InEpicAccountId: string): number
|
|
14171
|
-
// IsClipUploadingLimitReached(InEpicAccountId: string): boolean
|
|
14172
|
-
// SetUserMaxClipUploadsPerMinute(InMaxClipUploadsPerMinute: number): void
|
|
14173
|
-
// CreateClip(InEpicAccountId: string, InClipType: string): number
|
|
14174
|
-
// DisableMaskArea(InMaskAreaHandle: bigint): void
|
|
14175
|
-
// EnableMaskArea(InMaskArea: FGameClipsMaskArea): bigint
|
|
14176
|
-
// StopRecording(): void
|
|
14177
|
-
// StartRecording(InClipDuration: bigint): void
|
|
14178
|
-
|
|
14179
14136
|
/**
|
|
14180
14137
|
* Class Engine.OnlineGameDVRInterface
|
|
14181
14138
|
* Size: 0x0060
|
|
@@ -15033,6 +14990,7 @@ export type UOnlineSessionManager = UObject & {
|
|
|
15033
14990
|
};
|
|
15034
14991
|
|
|
15035
14992
|
// OnlineSessionManager Functions
|
|
14993
|
+
// GetExtraMatchDataString(): string
|
|
15036
14994
|
// CanCrossplayTextChat(): boolean
|
|
15037
14995
|
// GetRemoteSessionPlayerIds(): FUniqueNetId[]
|
|
15038
14996
|
// RemovePlayerFromSession(PlayerID: FUniqueNetId): void
|
|
@@ -15167,7 +15125,7 @@ export type UOnlineStatsWrite_TA = UOnlineStatsWrite & {};
|
|
|
15167
15125
|
|
|
15168
15126
|
/**
|
|
15169
15127
|
* Class Engine.OnlineSubsystem
|
|
15170
|
-
* Size:
|
|
15128
|
+
* Size: 0x0368
|
|
15171
15129
|
* Extends: UObject
|
|
15172
15130
|
*/
|
|
15173
15131
|
export type UOnlineSubsystem = UObject & {
|
|
@@ -15195,35 +15153,34 @@ export type UOnlineSubsystem = UObject & {
|
|
|
15195
15153
|
PurchaseInterface: UOnlinePurchaseInterface; // 0x01a8 (0x0010) [UOnlinePurchaseInterface*]
|
|
15196
15154
|
LobbyInterface: UOnlineLobbyInterface; // 0x01b8 (0x0010) [UOnlineLobbyInterface*]
|
|
15197
15155
|
FriendsInterface: UOnlineFriendsInterface; // 0x01c8 (0x0010) [UOnlineFriendsInterface*]
|
|
15198
|
-
|
|
15199
|
-
|
|
15200
|
-
|
|
15201
|
-
|
|
15202
|
-
|
|
15203
|
-
|
|
15204
|
-
|
|
15205
|
-
|
|
15206
|
-
|
|
15207
|
-
|
|
15208
|
-
|
|
15209
|
-
|
|
15210
|
-
|
|
15211
|
-
|
|
15212
|
-
|
|
15213
|
-
|
|
15214
|
-
|
|
15215
|
-
|
|
15216
|
-
|
|
15217
|
-
|
|
15218
|
-
|
|
15219
|
-
|
|
15220
|
-
|
|
15221
|
-
|
|
15222
|
-
|
|
15223
|
-
|
|
15224
|
-
|
|
15225
|
-
|
|
15226
|
-
__OnSystemUserControllerPairingChanged__Delegate: FScriptDelegate; // 0x0360 (0x0018) [FScriptDelegate]
|
|
15156
|
+
SearchClass: UOnlineGameSearch; // 0x01d8 (0x0008) [UOnlineGameSearch*]
|
|
15157
|
+
bSupportsMultiSignin: boolean; // 0x01e0 (0x0004) [bool : 0x1]
|
|
15158
|
+
bSupportsMultiVoice: boolean; // 0x01e0 (0x0004) [bool : 0x2]
|
|
15159
|
+
bShowPrivilegeCheckErrors: boolean; // 0x01e0 (0x0004) [bool : 0x4]
|
|
15160
|
+
AccountSettings: UPlatformAccountSettings[]; // 0x01e8 (0x0010) [TArray<UPlatformAccountSettings*>]
|
|
15161
|
+
BlockListStatuses: UPlatformBlockListStatus[]; // 0x01f8 (0x0010) [TArray<UPlatformBlockListStatus*>]
|
|
15162
|
+
UnsupportedCorrectiveActionURLs: UPlatformURL[]; // 0x0208 (0x0010) [TArray<UPlatformURL*>]
|
|
15163
|
+
SessionManager: UOnlineSessionManager; // 0x0218 (0x0008) [UOnlineSessionManager*]
|
|
15164
|
+
SteamDLC: FSteamDLCInfo[]; // 0x0220 (0x0010) [TArray<FSteamDLCInfo>]
|
|
15165
|
+
PS4DLC: FPS4DLCInfo[]; // 0x0230 (0x0010) [TArray<FPS4DLCInfo>]
|
|
15166
|
+
XboxOneDLC: FXboxOneDLCInfo[]; // 0x0240 (0x0010) [TArray<FXboxOneDLCInfo>]
|
|
15167
|
+
SwitchDLC: FSwitchDLCInfo[]; // 0x0250 (0x0010) [TArray<FSwitchDLCInfo>]
|
|
15168
|
+
EpicDLC: FEpicDLCInfo[]; // 0x0260 (0x0010) [TArray<FEpicDLCInfo>]
|
|
15169
|
+
OnlinePlatformType: OnlinePlatform; // 0x0270 (0x0001) [OnlinePlatform]
|
|
15170
|
+
CurrentConnectionStatus: EOnlineServerConnectionStatus; // 0x0271 (0x0001) [EOnlineServerConnectionStatus]
|
|
15171
|
+
OnlineSubsystemNames: string[]; // 0x0278 (0x0010) [TArray<FString>]
|
|
15172
|
+
NamedInterfaces: FNamedInterface[]; // 0x0288 (0x0010) [TArray<FNamedInterface>]
|
|
15173
|
+
NamedInterfaceDefs: FNamedInterfaceDef[]; // 0x0298 (0x0010) [TArray<FNamedInterfaceDef>]
|
|
15174
|
+
Sessions: FNamedSession[]; // 0x02a8 (0x0010) [TArray<FNamedSession>]
|
|
15175
|
+
IniLocPatcherClassName: string; // 0x02b8 (0x0010) [FString]
|
|
15176
|
+
Patcher: UIniLocPatcher; // 0x02c8 (0x0008) [UIniLocPatcher*]
|
|
15177
|
+
AsyncMinCompletionTime: number; // 0x02d0 (0x0004) [float]
|
|
15178
|
+
__FeaturePrivilegeLevelUpdated__Delegate: FScriptDelegate; // 0x02d8 (0x0018) [FScriptDelegate]
|
|
15179
|
+
__EventPlatformAccountSettingsCreated__Delegate: FScriptDelegate; // 0x02f0 (0x0018) [FScriptDelegate]
|
|
15180
|
+
__EventPlatformBlockListStatusCreated__Delegate: FScriptDelegate; // 0x0308 (0x0018) [FScriptDelegate]
|
|
15181
|
+
__OnDeviceSuspend__Delegate: FScriptDelegate; // 0x0320 (0x0018) [FScriptDelegate]
|
|
15182
|
+
__OnReadOnlineAvatarComplete__Delegate: FScriptDelegate; // 0x0338 (0x0018) [FScriptDelegate]
|
|
15183
|
+
__OnSystemUserControllerPairingChanged__Delegate: FScriptDelegate; // 0x0350 (0x0018) [FScriptDelegate]
|
|
15227
15184
|
};
|
|
15228
15185
|
|
|
15229
15186
|
// OnlineSubsystem Functions
|
|
@@ -15266,6 +15223,7 @@ export type UOnlineSubsystem = UObject & {
|
|
|
15266
15223
|
// SetSessionGameplayMode(GameplayMode: number): void
|
|
15267
15224
|
// PrintDebugInfo(Drawer: UDebugDrawer): void
|
|
15268
15225
|
// static GetOnlinePlatformFromName(PlatformName: string): OnlinePlatform
|
|
15226
|
+
// static GetOSVersionString(): string
|
|
15269
15227
|
// static GetNativePlatformName(): string
|
|
15270
15228
|
// static GetPlatformName(PlatformType: OnlinePlatform): string
|
|
15271
15229
|
// static ReplacePlatformServiceName(ReplString: string): string
|
|
@@ -15302,7 +15260,6 @@ export type UOnlineSubsystem = UObject & {
|
|
|
15302
15260
|
// SetPartyChatInterface(NewInterface: UObject): boolean
|
|
15303
15261
|
// SetNewsInterface(NewInterface: UObject): boolean
|
|
15304
15262
|
// SetStatsInterface(NewInterface: UObject): boolean
|
|
15305
|
-
// SetGameClipsInterface(InGameClipsInterface: UObject): boolean
|
|
15306
15263
|
// SetVoiceInterface(NewInterface: UObject): boolean
|
|
15307
15264
|
// SetContentInterface(NewInterface: UObject): boolean
|
|
15308
15265
|
// SetLobbyInterface(InInterface: UObject): boolean
|
|
@@ -25485,6 +25442,7 @@ export type UWorldInfo = UZoneInfo & {
|
|
|
25485
25442
|
// static IsPlayInPreview(): boolean
|
|
25486
25443
|
// static IsPlayInEditor(): boolean
|
|
25487
25444
|
// static IsWithGFx(): boolean
|
|
25445
|
+
// static IsSteamDeck(): boolean
|
|
25488
25446
|
// static IsEpicGamesStoreBuild(): boolean
|
|
25489
25447
|
// static GetConsoleTypeName(ConsoleType: EConsoleType): string
|
|
25490
25448
|
// static GetConsoleType(): EConsoleType
|
package/classes/GFxUI.ts
CHANGED
|
@@ -5,39 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
import type { FName, FScriptDelegate } from '../types/GameDefines';
|
|
7
7
|
import type { EInputEvent } from '../enums/Core';
|
|
8
|
-
import type {
|
|
9
|
-
EEdition,
|
|
10
|
-
FlashTextureRescale,
|
|
11
|
-
GFxAlign,
|
|
12
|
-
GFxCollectionMode,
|
|
13
|
-
GFxRenderTextureMode,
|
|
14
|
-
GFxScaleMode,
|
|
15
|
-
GFxTimingMode,
|
|
16
|
-
} from '../enums/GFxUI';
|
|
8
|
+
import type { EEdition, FlashTextureRescale, GFxAlign, GFxCollectionMode, GFxRenderTextureMode, GFxScaleMode, GFxTimingMode } from '../enums/GFxUI';
|
|
17
9
|
import type { FMap_Mirror, FMatrix, FPointer } from '../structs/Core';
|
|
18
|
-
import type {
|
|
19
|
-
FASColorTransform,
|
|
20
|
-
FASDisplayInfo,
|
|
21
|
-
FASValue,
|
|
22
|
-
FEventData,
|
|
23
|
-
FExternalTexture,
|
|
24
|
-
FGCReference,
|
|
25
|
-
FGFxWidgetBinding,
|
|
26
|
-
FLoadingMovieMapInfo,
|
|
27
|
-
FSoundThemeBinding,
|
|
28
|
-
} from '../structs/GFxUI';
|
|
10
|
+
import type { FASColorTransform, FASDisplayInfo, FASValue, FEventData, FExternalTexture, FGCReference, FGFxWidgetBinding, FLoadingMovieMapInfo, FSoundThemeBinding } from '../structs/GFxUI';
|
|
29
11
|
import type { UObject } from './Core';
|
|
30
|
-
import type {
|
|
31
|
-
UGameViewportClient,
|
|
32
|
-
UInteraction,
|
|
33
|
-
ULocalPlayer,
|
|
34
|
-
UPlayerController,
|
|
35
|
-
USequenceAction,
|
|
36
|
-
USequenceEvent,
|
|
37
|
-
UTexture,
|
|
38
|
-
UTextureRenderTarget2D,
|
|
39
|
-
UTranslationContext,
|
|
40
|
-
} from './Engine';
|
|
12
|
+
import type { UGameViewportClient, UInteraction, ULocalPlayer, UPlayerController, USequenceAction, USequenceEvent, UTexture, UTextureRenderTarget2D, UTranslationContext } from './Engine';
|
|
41
13
|
|
|
42
14
|
/**
|
|
43
15
|
* Class GFxUI.GFxRawData
|
package/classes/IpDrv.ts
CHANGED
|
@@ -5,17 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
import type { FName, FScriptDelegate } from '../types/GameDefines';
|
|
7
7
|
import type { EImageType } from '../enums/Core';
|
|
8
|
-
import type {
|
|
9
|
-
AvatarSize,
|
|
10
|
-
ELanBeaconState,
|
|
11
|
-
ELobbyDistance,
|
|
12
|
-
ELobbyKickReason,
|
|
13
|
-
ELobbyVisibility,
|
|
14
|
-
EOnlineEnumerationReadState,
|
|
15
|
-
EOnlineFileType,
|
|
16
|
-
EOnlineNewsType,
|
|
17
|
-
EPinGrantResult,
|
|
18
|
-
} from '../enums/Engine';
|
|
8
|
+
import type { AvatarSize, ELanBeaconState, ELobbyDistance, ELobbyKickReason, ELobbyVisibility, EOnlineEnumerationReadState, EOnlineFileType, EOnlineNewsType, EPinGrantResult } from '../enums/Engine';
|
|
19
9
|
import type {
|
|
20
10
|
EEventUploadType,
|
|
21
11
|
ELineMode,
|
|
@@ -1765,18 +1755,18 @@ export type UOnlinePurchaseInterfaceImpl = UObject & {
|
|
|
1765
1755
|
|
|
1766
1756
|
/**
|
|
1767
1757
|
* Class IpDrv.OnlineSubsystemCommonImpl
|
|
1768
|
-
* Size:
|
|
1758
|
+
* Size: 0x03B0
|
|
1769
1759
|
* Extends: UOnlineSubsystem
|
|
1770
1760
|
*/
|
|
1771
1761
|
export type UOnlineSubsystemCommonImpl = UOnlineSubsystem & {
|
|
1772
|
-
VoiceEngine: FPointer; //
|
|
1773
|
-
MaxLocalTalkers: number; //
|
|
1774
|
-
MaxRemoteTalkers: number; //
|
|
1775
|
-
bIsUsingSpeechRecognition: boolean; //
|
|
1776
|
-
GameInterfaceImpl: UOnlineGameInterfaceImpl; //
|
|
1777
|
-
AuthInterfaceImpl: UOnlineAuthInterfaceImpl; //
|
|
1778
|
-
PurchaseInterfaceImpl: UOnlinePurchaseInterfaceImpl; //
|
|
1779
|
-
__OnSanitizeStringComplete__Delegate: FScriptDelegate; //
|
|
1762
|
+
VoiceEngine: FPointer; // 0x0368 (0x0008) [FPointer]
|
|
1763
|
+
MaxLocalTalkers: number; // 0x0370 (0x0004) [int32]
|
|
1764
|
+
MaxRemoteTalkers: number; // 0x0374 (0x0004) [int32]
|
|
1765
|
+
bIsUsingSpeechRecognition: boolean; // 0x0378 (0x0004) [bool : 0x1]
|
|
1766
|
+
GameInterfaceImpl: UOnlineGameInterfaceImpl; // 0x0380 (0x0008) [UOnlineGameInterfaceImpl*]
|
|
1767
|
+
AuthInterfaceImpl: UOnlineAuthInterfaceImpl; // 0x0388 (0x0008) [UOnlineAuthInterfaceImpl*]
|
|
1768
|
+
PurchaseInterfaceImpl: UOnlinePurchaseInterfaceImpl; // 0x0390 (0x0008) [UOnlinePurchaseInterfaceImpl*]
|
|
1769
|
+
__OnSanitizeStringComplete__Delegate: FScriptDelegate; // 0x0398 (0x0018) [FScriptDelegate]
|
|
1780
1770
|
};
|
|
1781
1771
|
|
|
1782
1772
|
// OnlineSubsystemCommonImpl Functions
|