@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/offsets/globals.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rlsdk/steam",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "TypeScript SDK for RocketLeague (Steam) - Auto-generated type definitions",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.ts",
|
|
@@ -107,12 +107,13 @@
|
|
|
107
107
|
"license": "MIT",
|
|
108
108
|
"repository": {
|
|
109
109
|
"type": "git",
|
|
110
|
-
"url": "git+https://github.com/ObscuritySRL/rlsdk
|
|
110
|
+
"url": "git+https://github.com/ObscuritySRL/rlsdk.git",
|
|
111
|
+
"directory": "packages/steam"
|
|
111
112
|
},
|
|
112
113
|
"bugs": {
|
|
113
|
-
"url": "https://github.com/ObscuritySRL/rlsdk
|
|
114
|
+
"url": "https://github.com/ObscuritySRL/rlsdk/issues"
|
|
114
115
|
},
|
|
115
|
-
"homepage": "https://github.com/ObscuritySRL/rlsdk
|
|
116
|
+
"homepage": "https://github.com/ObscuritySRL/rlsdk/tree/main/packages/steam#readme",
|
|
116
117
|
"engines": {
|
|
117
118
|
"bun": ">=1.0.0"
|
|
118
119
|
},
|
package/parameters/AkAudio.ts
CHANGED
|
@@ -4,26 +4,10 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import type { FName, FScriptDelegate } from '../types/GameDefines';
|
|
7
|
-
import type {
|
|
8
|
-
UAkEnvironments,
|
|
9
|
-
UAkMusicAnalysis,
|
|
10
|
-
UAkRevPhysicsSimulation,
|
|
11
|
-
UAkSoundBanksInfo,
|
|
12
|
-
UAkSoundCue,
|
|
13
|
-
UAkSoundSource,
|
|
14
|
-
USeqEvent_AkMusicCue,
|
|
15
|
-
} from '../classes/AkAudio';
|
|
7
|
+
import type { UAkEnvironments, UAkMusicAnalysis, UAkRevPhysicsSimulation, UAkSoundBanksInfo, UAkSoundCue, UAkSoundSource, USeqEvent_AkMusicCue } from '../classes/AkAudio';
|
|
16
8
|
import type { UDebugDrawer, UObject } from '../classes/Core';
|
|
17
9
|
import type { UActor, ULocalPlayer, USeqAct_Toggle, UWorldInfo } from '../classes/Engine';
|
|
18
|
-
import type {
|
|
19
|
-
EAkDynamicRangeType,
|
|
20
|
-
EAkEnvironmentType,
|
|
21
|
-
EAkListenerSpacialization,
|
|
22
|
-
EAkOutputType,
|
|
23
|
-
EAttenuationType,
|
|
24
|
-
EBusEmitterType,
|
|
25
|
-
EPinnedAxisType,
|
|
26
|
-
} from '../enums/AkAudio';
|
|
10
|
+
import type { EAkDynamicRangeType, EAkEnvironmentType, EAkListenerSpacialization, EAkOutputType, EAttenuationType, EBusEmitterType, EPinnedAxisType } from '../enums/AkAudio';
|
|
27
11
|
import type { FAkEnvironment, FAkRevSimFrame, FAkRevSimUpdateParams, FMusicAnalysisInfo } from '../structs/AkAudio';
|
|
28
12
|
import type { FLinearColor, FRotator, FVector } from '../structs/Core';
|
|
29
13
|
|
package/parameters/Core.ts
CHANGED
|
@@ -4,34 +4,9 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import type { FName, FScriptDelegate } from '../types/GameDefines';
|
|
7
|
-
import type {
|
|
8
|
-
UAsyncTask,
|
|
9
|
-
UDebugDrawer,
|
|
10
|
-
UError,
|
|
11
|
-
UErrorType,
|
|
12
|
-
UInterface,
|
|
13
|
-
UObject,
|
|
14
|
-
UObjectProvider,
|
|
15
|
-
UStringMap,
|
|
16
|
-
USubscription,
|
|
17
|
-
U__AsyncTask__All_0x1,
|
|
18
|
-
} from '../classes/Core';
|
|
7
|
+
import type { UAsyncTask, UDebugDrawer, UError, UErrorType, UInterface, UObject, UObjectProvider, UStringMap, USubscription, U__AsyncTask__All_0x1 } from '../classes/Core';
|
|
19
8
|
import type { EAxis, EDebugBreakType } from '../enums/Core';
|
|
20
|
-
import type {
|
|
21
|
-
FColor,
|
|
22
|
-
FGuid,
|
|
23
|
-
FInterpCurveFloat,
|
|
24
|
-
FInterpCurveVector,
|
|
25
|
-
FInterpCurveVector2D,
|
|
26
|
-
FLinearColor,
|
|
27
|
-
FMatrix,
|
|
28
|
-
FQuat,
|
|
29
|
-
FRotator,
|
|
30
|
-
FRotatorDegrees,
|
|
31
|
-
FRotatorRadians,
|
|
32
|
-
FVector,
|
|
33
|
-
FVector2D,
|
|
34
|
-
} from '../structs/Core';
|
|
9
|
+
import type { FColor, FGuid, FInterpCurveFloat, FInterpCurveVector, FInterpCurveVector2D, FLinearColor, FMatrix, FQuat, FRotator, FRotatorDegrees, FRotatorRadians, FVector, FVector2D } from '../structs/Core';
|
|
35
10
|
|
|
36
11
|
/**
|
|
37
12
|
* Function Core.__AsyncTask__All_0x1.__AsyncTask__All_0x1
|
package/parameters/Engine.ts
CHANGED
|
@@ -4,17 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import type { FName, FScriptDelegate } from '../types/GameDefines';
|
|
7
|
-
import type {
|
|
8
|
-
UAsyncTask,
|
|
9
|
-
UComponent,
|
|
10
|
-
UDebugDrawer,
|
|
11
|
-
UError,
|
|
12
|
-
UErrorType,
|
|
13
|
-
UFeatureSystem,
|
|
14
|
-
UInterface,
|
|
15
|
-
UObject,
|
|
16
|
-
UProperty,
|
|
17
|
-
} from '../classes/Core';
|
|
7
|
+
import type { UAsyncTask, UComponent, UDebugDrawer, UError, UFeatureSystem, UInterface, UObject, UProperty } from '../classes/Core';
|
|
18
8
|
import type {
|
|
19
9
|
UAIController,
|
|
20
10
|
UActor,
|
|
@@ -317,12 +307,6 @@ import type {
|
|
|
317
307
|
EFeaturePrivilegeLevel,
|
|
318
308
|
EFireLinkID,
|
|
319
309
|
EForceMode,
|
|
320
|
-
EGameClipsAvailability,
|
|
321
|
-
EGameClipsClipStatus,
|
|
322
|
-
EGameClipsConnection,
|
|
323
|
-
EGameClipsConnectionStatus,
|
|
324
|
-
EGameClipsMaskStatus,
|
|
325
|
-
EGameClipsRecording,
|
|
326
310
|
EHighContrastRenderingID,
|
|
327
311
|
EHostMigrationProgress,
|
|
328
312
|
EInputPlatformType,
|
|
@@ -378,25 +362,7 @@ import type {
|
|
|
378
362
|
ParticleSystemLODMethod,
|
|
379
363
|
SaveDataVersionSupport,
|
|
380
364
|
} from '../enums/Engine';
|
|
381
|
-
import type {
|
|
382
|
-
FBoneAtom,
|
|
383
|
-
FBox,
|
|
384
|
-
FColor,
|
|
385
|
-
FCylinder,
|
|
386
|
-
FGuid,
|
|
387
|
-
FInterpCurveFloat,
|
|
388
|
-
FInterpCurveLinearColor,
|
|
389
|
-
FInterpCurveVector,
|
|
390
|
-
FIpAddr,
|
|
391
|
-
FLinearColor,
|
|
392
|
-
FMatrix,
|
|
393
|
-
FQuat,
|
|
394
|
-
FRotator,
|
|
395
|
-
FTPOV,
|
|
396
|
-
FUniqueNetId,
|
|
397
|
-
FVector,
|
|
398
|
-
FVector2D,
|
|
399
|
-
} from '../structs/Core';
|
|
365
|
+
import type { FBoneAtom, FBox, FColor, FCylinder, FGuid, FInterpCurveFloat, FInterpCurveLinearColor, FInterpCurveVector, FIpAddr, FLinearColor, FMatrix, FQuat, FRotator, FTPOV, FUniqueNetId, FVector, FVector2D } from '../structs/Core';
|
|
400
366
|
import type {
|
|
401
367
|
FAchievementDetails,
|
|
402
368
|
FActiveDecalInfo,
|
|
@@ -429,7 +395,6 @@ import type {
|
|
|
429
395
|
FFragmentGroup,
|
|
430
396
|
FFriendHistoryKey,
|
|
431
397
|
FFriendsQuery,
|
|
432
|
-
FGameClipsMaskArea,
|
|
433
398
|
FGameTypePrefix,
|
|
434
399
|
FGetSaveDataCallbackStruct,
|
|
435
400
|
FIdToStringMapping,
|
|
@@ -18410,200 +18375,6 @@ export type OnlineFriendsInterface_RequestLinkedAccounts_Params = {
|
|
|
18410
18375
|
ReturnValue: boolean; // 0x0030 (0x0004) [bool : 0x1] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
|
|
18411
18376
|
};
|
|
18412
18377
|
|
|
18413
|
-
/**
|
|
18414
|
-
* Function Engine.OnlineGameClipsInterface.CreateClip
|
|
18415
|
-
*/
|
|
18416
|
-
export type OnlineGameClipsInterface_CreateClip_Params = {
|
|
18417
|
-
InEpicAccountId: string; // 0x0000 (0x0010) [FString] [CPF_Parm]
|
|
18418
|
-
InClipType: string; // 0x0010 (0x0010) [FString] [CPF_Parm]
|
|
18419
|
-
ReturnValue: number; // 0x0020 (0x0004) [int32] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
|
|
18420
|
-
};
|
|
18421
|
-
|
|
18422
|
-
/**
|
|
18423
|
-
* Function Engine.OnlineGameClipsInterface.DisableMaskArea
|
|
18424
|
-
*/
|
|
18425
|
-
export type OnlineGameClipsInterface_DisableMaskArea_Params = {
|
|
18426
|
-
InMaskAreaHandle: bigint; // 0x0000 (0x0008) [uint64] [CPF_Parm]
|
|
18427
|
-
};
|
|
18428
|
-
|
|
18429
|
-
/**
|
|
18430
|
-
* Function Engine.OnlineGameClipsInterface.EnableMaskArea
|
|
18431
|
-
*/
|
|
18432
|
-
export type OnlineGameClipsInterface_EnableMaskArea_Params = {
|
|
18433
|
-
InMaskArea: FGameClipsMaskArea; // 0x0000 (0x0018) [FGameClipsMaskArea] [CPF_Parm | CPF_OutParm]
|
|
18434
|
-
ReturnValue: bigint; // 0x0018 (0x0008) [uint64] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
|
|
18435
|
-
};
|
|
18436
|
-
|
|
18437
|
-
/**
|
|
18438
|
-
* Function Engine.OnlineGameClipsInterface.EventAvailabilityChanged
|
|
18439
|
-
*/
|
|
18440
|
-
export type OnlineGameClipsInterface_EventAvailabilityChanged_Params = {
|
|
18441
|
-
InNewAvailability: EGameClipsAvailability; // 0x0000 (0x0001) [EGameClipsAvailability] [CPF_Parm]
|
|
18442
|
-
};
|
|
18443
|
-
|
|
18444
|
-
/**
|
|
18445
|
-
* Function Engine.OnlineGameClipsInterface.EventClipErrorOccurred
|
|
18446
|
-
*/
|
|
18447
|
-
export type OnlineGameClipsInterface_EventClipErrorOccurred_Params = {
|
|
18448
|
-
InEpicAccountId: string; // 0x0000 (0x0010) [FString] [CPF_Parm]
|
|
18449
|
-
ClipId: number; // 0x0010 (0x0004) [int32] [CPF_Parm]
|
|
18450
|
-
InErrorType: UErrorType; // 0x0018 (0x0008) [UErrorType*] [CPF_Parm]
|
|
18451
|
-
};
|
|
18452
|
-
|
|
18453
|
-
/**
|
|
18454
|
-
* Function Engine.OnlineGameClipsInterface.EventClipStatusChanged
|
|
18455
|
-
*/
|
|
18456
|
-
export type OnlineGameClipsInterface_EventClipStatusChanged_Params = {
|
|
18457
|
-
InEpicAccountId: string; // 0x0000 (0x0010) [FString] [CPF_Parm]
|
|
18458
|
-
InClipId: number; // 0x0010 (0x0004) [int32] [CPF_Parm]
|
|
18459
|
-
InNewClipStatus: EGameClipsClipStatus; // 0x0014 (0x0001) [EGameClipsClipStatus] [CPF_Parm]
|
|
18460
|
-
};
|
|
18461
|
-
|
|
18462
|
-
/**
|
|
18463
|
-
* Function Engine.OnlineGameClipsInterface.EventConnectionStatusChanged
|
|
18464
|
-
*/
|
|
18465
|
-
export type OnlineGameClipsInterface_EventConnectionStatusChanged_Params = {
|
|
18466
|
-
InEpicAccountId: string; // 0x0000 (0x0010) [FString] [CPF_Parm]
|
|
18467
|
-
InConnection: EGameClipsConnection; // 0x0010 (0x0001) [EGameClipsConnection] [CPF_Parm]
|
|
18468
|
-
InNewConnectionStatus: EGameClipsConnectionStatus; // 0x0011 (0x0001) [EGameClipsConnectionStatus] [CPF_Parm]
|
|
18469
|
-
};
|
|
18470
|
-
|
|
18471
|
-
/**
|
|
18472
|
-
* Function Engine.OnlineGameClipsInterface.EventGeneralErrorOccurred
|
|
18473
|
-
*/
|
|
18474
|
-
export type OnlineGameClipsInterface_EventGeneralErrorOccurred_Params = {
|
|
18475
|
-
InErrorType: UErrorType; // 0x0000 (0x0008) [UErrorType*] [CPF_Parm]
|
|
18476
|
-
};
|
|
18477
|
-
|
|
18478
|
-
/**
|
|
18479
|
-
* Function Engine.OnlineGameClipsInterface.EventMaskStatusChanged
|
|
18480
|
-
*/
|
|
18481
|
-
export type OnlineGameClipsInterface_EventMaskStatusChanged_Params = {
|
|
18482
|
-
InMaskAreaHandle: bigint; // 0x0000 (0x0008) [uint64] [CPF_Parm]
|
|
18483
|
-
InMaskArea: FGameClipsMaskArea; // 0x0008 (0x0018) [FGameClipsMaskArea] [CPF_Parm]
|
|
18484
|
-
InNewMaskStatus: EGameClipsMaskStatus; // 0x0020 (0x0001) [EGameClipsMaskStatus] [CPF_Parm]
|
|
18485
|
-
};
|
|
18486
|
-
|
|
18487
|
-
/**
|
|
18488
|
-
* Function Engine.OnlineGameClipsInterface.EventRecordingChanged
|
|
18489
|
-
*/
|
|
18490
|
-
export type OnlineGameClipsInterface_EventRecordingChanged_Params = {
|
|
18491
|
-
InNewRecording: EGameClipsRecording; // 0x0000 (0x0001) [EGameClipsRecording] [CPF_Parm]
|
|
18492
|
-
};
|
|
18493
|
-
|
|
18494
|
-
/**
|
|
18495
|
-
* Function Engine.OnlineGameClipsInterface.GetTimeUntilUnthrottled
|
|
18496
|
-
*/
|
|
18497
|
-
export type OnlineGameClipsInterface_GetTimeUntilUnthrottled_Params = {
|
|
18498
|
-
InEpicAccountId: string; // 0x0000 (0x0010) [FString] [CPF_Parm]
|
|
18499
|
-
ReturnValue: number; // 0x0010 (0x0004) [float] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
|
|
18500
|
-
};
|
|
18501
|
-
|
|
18502
|
-
/**
|
|
18503
|
-
* Function Engine.OnlineGameClipsInterface.IsAccountLinked
|
|
18504
|
-
*/
|
|
18505
|
-
export type OnlineGameClipsInterface_IsAccountLinked_Params = {
|
|
18506
|
-
InEpicAccountId: string; // 0x0000 (0x0010) [FString] [CPF_Parm]
|
|
18507
|
-
ReturnValue: boolean; // 0x0010 (0x0004) [bool : 0x1] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
|
|
18508
|
-
};
|
|
18509
|
-
|
|
18510
|
-
/**
|
|
18511
|
-
* Function Engine.OnlineGameClipsInterface.IsAvailable
|
|
18512
|
-
*/
|
|
18513
|
-
export type OnlineGameClipsInterface_IsAvailable_Params = {
|
|
18514
|
-
ReturnValue: boolean; // 0x0000 (0x0004) [bool : 0x1] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
|
|
18515
|
-
};
|
|
18516
|
-
|
|
18517
|
-
/**
|
|
18518
|
-
* Function Engine.OnlineGameClipsInterface.IsClipUploadingLimitReached
|
|
18519
|
-
*/
|
|
18520
|
-
export type OnlineGameClipsInterface_IsClipUploadingLimitReached_Params = {
|
|
18521
|
-
InEpicAccountId: string; // 0x0000 (0x0010) [FString] [CPF_Parm]
|
|
18522
|
-
ReturnValue: boolean; // 0x0010 (0x0004) [bool : 0x1] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
|
|
18523
|
-
};
|
|
18524
|
-
|
|
18525
|
-
/**
|
|
18526
|
-
* Function Engine.OnlineGameClipsInterface.IsRecording
|
|
18527
|
-
*/
|
|
18528
|
-
export type OnlineGameClipsInterface_IsRecording_Params = {
|
|
18529
|
-
ReturnValue: boolean; // 0x0000 (0x0004) [bool : 0x1] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
|
|
18530
|
-
};
|
|
18531
|
-
|
|
18532
|
-
/**
|
|
18533
|
-
* Function Engine.OnlineGameClipsInterface.IsUploading
|
|
18534
|
-
*/
|
|
18535
|
-
export type OnlineGameClipsInterface_IsUploading_Params = {
|
|
18536
|
-
ReturnValue: boolean; // 0x0000 (0x0004) [bool : 0x1] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
|
|
18537
|
-
};
|
|
18538
|
-
|
|
18539
|
-
/**
|
|
18540
|
-
* Function Engine.OnlineGameClipsInterface.NotifyEventAvailabilityChanged
|
|
18541
|
-
*/
|
|
18542
|
-
export type OnlineGameClipsInterface_NotifyEventAvailabilityChanged_Params = {
|
|
18543
|
-
InCallback: FScriptDelegate; // 0x0000 (0x0018) [FScriptDelegate] [CPF_Parm]
|
|
18544
|
-
};
|
|
18545
|
-
|
|
18546
|
-
/**
|
|
18547
|
-
* Function Engine.OnlineGameClipsInterface.NotifyEventClipErrorOccurred
|
|
18548
|
-
*/
|
|
18549
|
-
export type OnlineGameClipsInterface_NotifyEventClipErrorOccurred_Params = {
|
|
18550
|
-
InCallback: FScriptDelegate; // 0x0000 (0x0018) [FScriptDelegate] [CPF_Parm]
|
|
18551
|
-
};
|
|
18552
|
-
|
|
18553
|
-
/**
|
|
18554
|
-
* Function Engine.OnlineGameClipsInterface.NotifyEventClipStatusChanged
|
|
18555
|
-
*/
|
|
18556
|
-
export type OnlineGameClipsInterface_NotifyEventClipStatusChanged_Params = {
|
|
18557
|
-
InCallback: FScriptDelegate; // 0x0000 (0x0018) [FScriptDelegate] [CPF_Parm]
|
|
18558
|
-
};
|
|
18559
|
-
|
|
18560
|
-
/**
|
|
18561
|
-
* Function Engine.OnlineGameClipsInterface.NotifyEventConnectionStatusChanged
|
|
18562
|
-
*/
|
|
18563
|
-
export type OnlineGameClipsInterface_NotifyEventConnectionStatusChanged_Params = {
|
|
18564
|
-
InCallback: FScriptDelegate; // 0x0000 (0x0018) [FScriptDelegate] [CPF_Parm]
|
|
18565
|
-
};
|
|
18566
|
-
|
|
18567
|
-
/**
|
|
18568
|
-
* Function Engine.OnlineGameClipsInterface.NotifyEventGeneralErrorOccurred
|
|
18569
|
-
*/
|
|
18570
|
-
export type OnlineGameClipsInterface_NotifyEventGeneralErrorOccurred_Params = {
|
|
18571
|
-
InCallback: FScriptDelegate; // 0x0000 (0x0018) [FScriptDelegate] [CPF_Parm]
|
|
18572
|
-
};
|
|
18573
|
-
|
|
18574
|
-
/**
|
|
18575
|
-
* Function Engine.OnlineGameClipsInterface.NotifyEventMaskStatusChanged
|
|
18576
|
-
*/
|
|
18577
|
-
export type OnlineGameClipsInterface_NotifyEventMaskStatusChanged_Params = {
|
|
18578
|
-
InCallback: FScriptDelegate; // 0x0000 (0x0018) [FScriptDelegate] [CPF_Parm]
|
|
18579
|
-
};
|
|
18580
|
-
|
|
18581
|
-
/**
|
|
18582
|
-
* Function Engine.OnlineGameClipsInterface.NotifyEventRecordingChanged
|
|
18583
|
-
*/
|
|
18584
|
-
export type OnlineGameClipsInterface_NotifyEventRecordingChanged_Params = {
|
|
18585
|
-
InCallback: FScriptDelegate; // 0x0000 (0x0018) [FScriptDelegate] [CPF_Parm]
|
|
18586
|
-
};
|
|
18587
|
-
|
|
18588
|
-
/**
|
|
18589
|
-
* Function Engine.OnlineGameClipsInterface.SetUserMaxClipUploadsPerMinute
|
|
18590
|
-
*/
|
|
18591
|
-
export type OnlineGameClipsInterface_SetUserMaxClipUploadsPerMinute_Params = {
|
|
18592
|
-
InMaxClipUploadsPerMinute: number; // 0x0000 (0x0004) [int32] [CPF_Parm]
|
|
18593
|
-
};
|
|
18594
|
-
|
|
18595
|
-
/**
|
|
18596
|
-
* Function Engine.OnlineGameClipsInterface.StartRecording
|
|
18597
|
-
*/
|
|
18598
|
-
export type OnlineGameClipsInterface_StartRecording_Params = {
|
|
18599
|
-
InClipDuration: bigint; // 0x0000 (0x0008) [uint64] [CPF_Parm]
|
|
18600
|
-
};
|
|
18601
|
-
|
|
18602
|
-
/**
|
|
18603
|
-
* Function Engine.OnlineGameClipsInterface.StopRecording
|
|
18604
|
-
*/
|
|
18605
|
-
export type OnlineGameClipsInterface_StopRecording_Params = {};
|
|
18606
|
-
|
|
18607
18378
|
/**
|
|
18608
18379
|
* Function Engine.OnlineGameDVRInterface.AddReadRecordedClipsCompleteDelegate
|
|
18609
18380
|
*/
|
|
@@ -22898,6 +22669,13 @@ export type OnlineSessionManager_CanCrossplayTextChat_Params = {
|
|
|
22898
22669
|
ReturnValue: boolean; // 0x0000 (0x0004) [bool : 0x1] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
|
|
22899
22670
|
};
|
|
22900
22671
|
|
|
22672
|
+
/**
|
|
22673
|
+
* Function Engine.OnlineSessionManager.GetExtraMatchDataString
|
|
22674
|
+
*/
|
|
22675
|
+
export type OnlineSessionManager_GetExtraMatchDataString_Params = {
|
|
22676
|
+
ReturnValue: string; // 0x0000 (0x0010) [FString] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
|
|
22677
|
+
};
|
|
22678
|
+
|
|
22901
22679
|
/**
|
|
22902
22680
|
* Function Engine.OnlineSessionManager.GetRemoteSessionPlayerIds
|
|
22903
22681
|
*/
|
|
@@ -23592,6 +23370,13 @@ export type OnlineSubsystem_GetOnlinePlatformFromName_Params = {
|
|
|
23592
23370
|
Index: number; // 0x0014 (0x0004) [int32]
|
|
23593
23371
|
};
|
|
23594
23372
|
|
|
23373
|
+
/**
|
|
23374
|
+
* Function Engine.OnlineSubsystem.GetOSVersionString
|
|
23375
|
+
*/
|
|
23376
|
+
export type OnlineSubsystem_GetOSVersionString_Params = {
|
|
23377
|
+
ReturnValue: string; // 0x0000 (0x0010) [FString] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
|
|
23378
|
+
};
|
|
23379
|
+
|
|
23595
23380
|
/**
|
|
23596
23381
|
* Function Engine.OnlineSubsystem.GetPlatformName
|
|
23597
23382
|
*/
|
|
@@ -23829,14 +23614,6 @@ export type OnlineSubsystem_SetFriendsInterface_Params = {
|
|
|
23829
23614
|
ReturnValue: boolean; // 0x0008 (0x0004) [bool : 0x1] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
|
|
23830
23615
|
};
|
|
23831
23616
|
|
|
23832
|
-
/**
|
|
23833
|
-
* Function Engine.OnlineSubsystem.SetGameClipsInterface
|
|
23834
|
-
*/
|
|
23835
|
-
export type OnlineSubsystem_SetGameClipsInterface_Params = {
|
|
23836
|
-
InGameClipsInterface: UObject; // 0x0000 (0x0008) [UObject*] [CPF_Parm]
|
|
23837
|
-
ReturnValue: boolean; // 0x0008 (0x0004) [bool : 0x1] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
|
|
23838
|
-
};
|
|
23839
|
-
|
|
23840
23617
|
/**
|
|
23841
23618
|
* Function Engine.OnlineSubsystem.SetGameDVRInterface
|
|
23842
23619
|
*/
|
|
@@ -37771,6 +37548,13 @@ export type WorldInfo_IsRecordingDemo_Params = {
|
|
|
37771
37548
|
ReturnValue: boolean; // 0x0000 (0x0004) [bool : 0x1] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
|
|
37772
37549
|
};
|
|
37773
37550
|
|
|
37551
|
+
/**
|
|
37552
|
+
* Function Engine.WorldInfo.IsSteamDeck
|
|
37553
|
+
*/
|
|
37554
|
+
export type WorldInfo_IsSteamDeck_Params = {
|
|
37555
|
+
ReturnValue: boolean; // 0x0000 (0x0004) [bool : 0x1] [CPF_Parm | CPF_OutParm | CPF_ReturnParm]
|
|
37556
|
+
};
|
|
37557
|
+
|
|
37774
37558
|
/**
|
|
37775
37559
|
* Function Engine.WorldInfo.IsWithGFx
|
|
37776
37560
|
*/
|
package/parameters/GFxUI.ts
CHANGED
|
@@ -5,15 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
import type { FName, FScriptDelegate } from '../types/GameDefines';
|
|
7
7
|
import type { UObject } from '../classes/Core';
|
|
8
|
-
import type {
|
|
9
|
-
UEngine,
|
|
10
|
-
UGameViewportClient,
|
|
11
|
-
ULocalPlayer,
|
|
12
|
-
UPlayerController,
|
|
13
|
-
UTexture,
|
|
14
|
-
UTranslationContext,
|
|
15
|
-
UUISoundTheme,
|
|
16
|
-
} from '../classes/Engine';
|
|
8
|
+
import type { UEngine, UGameViewportClient, ULocalPlayer, UPlayerController, UTexture, UTranslationContext, UUISoundTheme } from '../classes/Engine';
|
|
17
9
|
import type { UGFxEvent_FSCommand, UGFxMoviePlayer, UGFxObject, USwfMovie } from '../classes/GFxUI';
|
|
18
10
|
import type { EInputEvent } from '../enums/Core';
|
|
19
11
|
import type { GFxAlign, GFxCollectionMode, GFxScaleMode, GFxTimingMode } from '../enums/GFxUI';
|
package/parameters/IpDrv.ts
CHANGED
|
@@ -43,25 +43,8 @@ import type {
|
|
|
43
43
|
UWebResponse,
|
|
44
44
|
} from '../classes/IpDrv';
|
|
45
45
|
import type { EImageType } from '../enums/Core';
|
|
46
|
-
import type {
|
|
47
|
-
|
|
48
|
-
ELobbyDistance,
|
|
49
|
-
ELobbyKickReason,
|
|
50
|
-
ELobbyVisibility,
|
|
51
|
-
EOnlineEnumerationReadState,
|
|
52
|
-
EOnlineFileType,
|
|
53
|
-
EOnlineNewsType,
|
|
54
|
-
EPinGrantResult,
|
|
55
|
-
} from '../enums/Engine';
|
|
56
|
-
import type {
|
|
57
|
-
EMcpFileCompressionType,
|
|
58
|
-
EMcpGroupAcceptState,
|
|
59
|
-
EMcpMessageCompressionType,
|
|
60
|
-
EMeshBeaconBandwidthTestResult,
|
|
61
|
-
EMeshBeaconBandwidthTestType,
|
|
62
|
-
EMeshBeaconConnectionResult,
|
|
63
|
-
EPartyReservationResult,
|
|
64
|
-
} from '../enums/IpDrv';
|
|
46
|
+
import type { AvatarSize, ELobbyDistance, ELobbyKickReason, ELobbyVisibility, EOnlineEnumerationReadState, EOnlineFileType, EOnlineNewsType, EPinGrantResult } from '../enums/Engine';
|
|
47
|
+
import type { EMcpFileCompressionType, EMcpGroupAcceptState, EMcpMessageCompressionType, EMeshBeaconBandwidthTestResult, EMeshBeaconBandwidthTestType, EMeshBeaconConnectionResult, EPartyReservationResult } from '../enums/IpDrv';
|
|
65
48
|
import type { FIpAddr, FUniqueNetId } from '../structs/Core';
|
|
66
49
|
import type {
|
|
67
50
|
FActiveLobbyInfo,
|