@cybermp/client-types 2.1.0 → 2.2.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/out/{enums.d.ts → enums.ts} +14164 -14116
- package/out/game.d.ts +851 -20
- package/out/precomputed/game.d.ts +1 -0
- package/package.json +8 -10
- package/out/{bitfields.d.ts → bitfields.ts} +167 -167
- /package/out/precomputed/{enums.d.ts → enums.ts} +0 -0
package/out/game.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// THIS CODE IS GENERATED, PLEASE DO NOT EDIT THIS
|
|
2
2
|
// THIS CODE IS GENERATED, PLEASE DO NOT EDIT THIS
|
|
3
|
-
import * as CyberEnums from "./enums
|
|
4
|
-
import * as CyberBitfields from "./bitfields
|
|
3
|
+
import * as CyberEnums from "./enums";
|
|
4
|
+
import * as CyberBitfields from "./bitfields";
|
|
5
5
|
|
|
6
6
|
type Handle<T = any> = T;
|
|
7
7
|
type WeakHandle<T = any> = T;
|
|
@@ -18,6 +18,7 @@ interface MpFuncs {
|
|
|
18
18
|
"AcosF"(a: number): number;
|
|
19
19
|
"ActivateTickForTransformAnimator"(entityID: entEntityID, componentName: string, activate: boolean): void;
|
|
20
20
|
"AddFact"(factName: string, factCount?: number): boolean;
|
|
21
|
+
"AddToInventory"(itemID: string, quantity?: number): void;
|
|
21
22
|
"AIInstantiateObject"(): void;
|
|
22
23
|
"AIInstantiatePrototype"(): void;
|
|
23
24
|
"AIReleaseObject"(): void;
|
|
@@ -37,6 +38,22 @@ interface MpFuncs {
|
|
|
37
38
|
"AT_AddATID"(widget: WeakHandle<inkWidget>, atid: ScriptRef<string>): void;
|
|
38
39
|
"AtanF"(a: number, b: number): number;
|
|
39
40
|
"BasicAvailabilityTest"(device: Handle<ScriptableDeviceComponentPS>): boolean;
|
|
41
|
+
"BitSet16"(arg: number, arg: number, arg: boolean): number;
|
|
42
|
+
"BitSet32"(arg: number, arg: number, arg: boolean): number;
|
|
43
|
+
"BitSet64"(arg: number, arg: number, arg: boolean): number;
|
|
44
|
+
"BitSet8"(arg: number, arg: number, arg: boolean): number;
|
|
45
|
+
"BitShiftL16"(arg: number, arg: number): number;
|
|
46
|
+
"BitShiftL32"(arg: number, arg: number): number;
|
|
47
|
+
"BitShiftL64"(arg: number, arg: number): number;
|
|
48
|
+
"BitShiftL8"(arg: number, arg: number): number;
|
|
49
|
+
"BitShiftR16"(arg: number, arg: number): number;
|
|
50
|
+
"BitShiftR32"(arg: number, arg: number): number;
|
|
51
|
+
"BitShiftR64"(arg: number, arg: number): number;
|
|
52
|
+
"BitShiftR8"(arg: number, arg: number): number;
|
|
53
|
+
"BitTest16"(arg: number, arg: number): boolean;
|
|
54
|
+
"BitTest32"(arg: number, arg: number): boolean;
|
|
55
|
+
"BitTest64"(arg: number, arg: number): boolean;
|
|
56
|
+
"BitTest8"(arg: number, arg: number): boolean;
|
|
40
57
|
"BoolToString"(value: boolean): string;
|
|
41
58
|
"BuildWidgetPath"(names: string[]): inkWidgetPath;
|
|
42
59
|
"CalcSeed"(object: Handle<IScriptable>): number;
|
|
@@ -55,9 +72,12 @@ interface MpFuncs {
|
|
|
55
72
|
"CreateForceRagdollEvent"(debugSourceName: string): Handle<entRagdollActivationRequestEvent>;
|
|
56
73
|
"CreateForceRagdollNoPowerPoseEvent"(debugSourceName: string): Handle<entRagdollActivationRequestEvent>;
|
|
57
74
|
"CreateForceRagdollWithCustomFilterDataEvent"(customFilterData: string, debugSourceName: string): Handle<entRagdollActivationRequestEvent>;
|
|
75
|
+
"CreateLocalizationString"(arg: string): string;
|
|
76
|
+
"CreateNodeRef"(arg: ScriptRef<string>): string;
|
|
58
77
|
"CreatePersistentID"(entityID: entEntityID, componentName?: string): gamePersistentID;
|
|
59
78
|
"CreateRagdollActivationRequestEvent"(activationType: CyberEnums.entragdollActivationRequestType, filterDataOverride: string, applyPowerPose: boolean, applyMomentum: boolean, debugSourceName: string): Handle<entRagdollActivationRequestEvent>;
|
|
60
79
|
"CreateRagdollApplyImpulseEvent"(worldPos: Vector4, imuplseVal: Vector4, influenceRadius: number): Handle<entRagdollApplyImpulseEvent>;
|
|
80
|
+
"CRUIDToHash"(arg: string): number;
|
|
61
81
|
"Debug_WeaponSpread_Set"(useCircularDistribution: boolean, useEvenDistribution: boolean, rowCount: number, projectilesPerShot: number): void;
|
|
62
82
|
"DebugBreak"(): void;
|
|
63
83
|
"DebugDevices"(shouldDebug: boolean): void;
|
|
@@ -76,13 +96,17 @@ interface MpFuncs {
|
|
|
76
96
|
"EnumValueToString"(enumStr: ScriptRef<string>, enumValue: number): string;
|
|
77
97
|
"EquipPickableItemOnClient"(itemID: gameItemID, quickSlotID: number): void;
|
|
78
98
|
"ExpF"(a: number): number;
|
|
99
|
+
"ExtractLocalizationString"(arg: string): string;
|
|
79
100
|
"FloatIsEqual"(f: number, to: number): boolean;
|
|
80
101
|
"FloatToString"(value: number): string;
|
|
81
102
|
"FloatToStringPrec"(value: number, precision: number): string;
|
|
82
103
|
"FloorF"(a: number): number;
|
|
104
|
+
"FNV1a32"(arg: ScriptRef<string>, arg?: number): number;
|
|
105
|
+
"FNV1a64"(arg: ScriptRef<string>, arg?: number): number;
|
|
83
106
|
"FTLog"(value: ScriptRef<string>): void;
|
|
84
107
|
"FTLogError"(value: ScriptRef<string>): void;
|
|
85
108
|
"FTLogWarning"(value: ScriptRef<string>): void;
|
|
109
|
+
"GameFileExists"(arg: ScriptRef<string>): boolean;
|
|
86
110
|
"GameTimeIntervalContainsTime"(): void;
|
|
87
111
|
"GetActionAnimationSlideParams"(slideRecord: Handle<gamedataAIActionSlideData_Record>): gameActionAnimationSlideParams;
|
|
88
112
|
"GetAllBlackboardDefs"(): Handle<gamebbAllScriptDefinitions>;
|
|
@@ -127,8 +151,12 @@ interface MpFuncs {
|
|
|
127
151
|
"GetRadioStationCurrentTrackName"(radioReceiverStationName: string): string;
|
|
128
152
|
"GetRadioStationLocalizedName"(radioStation: number): string;
|
|
129
153
|
"GetScreenPosition"(widget: WeakHandle<inkWidget>): RectF;
|
|
154
|
+
"GetStackTrace"(arg?: number, arg?: boolean): StackTraceEntry[];
|
|
130
155
|
"GOGRewardSystemErrorToDisplayString"(error: CyberEnums.gameOnlineSystemErrors): string;
|
|
131
156
|
"HalfPi"(): number;
|
|
157
|
+
"HashToCRUID"(arg: number): string;
|
|
158
|
+
"HashToName"(arg: number): string;
|
|
159
|
+
"HashToNodeRef"(arg: number): string;
|
|
132
160
|
"InitializeScripts"(): void;
|
|
133
161
|
"Int8ToInt"(): void;
|
|
134
162
|
"IntToEPreventionHeatStage"(index: number): CyberEnums.EPreventionHeatStage;
|
|
@@ -172,6 +200,7 @@ interface MpFuncs {
|
|
|
172
200
|
"MinF"(a: number, b: number): number;
|
|
173
201
|
"ModF"(a: number, b: number): number;
|
|
174
202
|
"ModifierTypeToString"(type: CyberEnums.gameStatModifierType): string;
|
|
203
|
+
"ModLog"(arg: string, arg: ScriptRef<string>): void;
|
|
175
204
|
"MP.AddChat"(message: string, senderID: netPeerID): void;
|
|
176
205
|
"MP.Deathmatch.DebugMessageKill"(killerID: netPeerID, victimID: netPeerID): void;
|
|
177
206
|
"MP.Deathmatch.DebugMessageNameChanged"(oldName: string, newName: string): void;
|
|
@@ -185,15 +214,27 @@ interface MpFuncs {
|
|
|
185
214
|
"MPDisplayWarningMessage"(duration: number, message: string, display: boolean): void;
|
|
186
215
|
"MPEquipWeapon"(itemID: gameItemID, QuickslotID: number): void;
|
|
187
216
|
"MPReplicateComboAttack"(position: Vector4, instigator: WeakHandle<gameObject>): void;
|
|
217
|
+
"Murmur3"(arg: ScriptRef<string>, arg?: number): number;
|
|
218
|
+
"NameToHash"(arg: string): number;
|
|
188
219
|
"NameToString"(n: string): string;
|
|
220
|
+
"NodeRefToHash"(arg: string): number;
|
|
189
221
|
"NoScreenMessage"(): gameSimpleScreenMessage;
|
|
190
222
|
"NoTrailZeros"(str: ScriptRef<string>): string;
|
|
223
|
+
"ParseInt16"(arg: string, arg?: number): number;
|
|
224
|
+
"ParseInt32"(arg: string, arg?: number): number;
|
|
225
|
+
"ParseInt64"(arg: string, arg?: number): number;
|
|
226
|
+
"ParseInt8"(arg: string, arg?: number): number;
|
|
191
227
|
"ParseNodeRef"(): void;
|
|
228
|
+
"ParseUint16"(arg: string, arg?: number): number;
|
|
229
|
+
"ParseUint32"(arg: string, arg?: number): number;
|
|
230
|
+
"ParseUint64"(arg: string, arg?: number): number;
|
|
231
|
+
"ParseUint8"(arg: string, arg?: number): number;
|
|
192
232
|
"Pi"(): number;
|
|
193
233
|
"PocketRadioRestrictionCount"(): number;
|
|
194
234
|
"PowF"(a: number, x: number): number;
|
|
195
235
|
"PreloadGameEffectAttackResources"(attackRecord: Handle<gamedataAttack_GameEffect_Record>, effectSystem: Handle<gameEffectSystem>): void;
|
|
196
236
|
"PreviewConfig_DisableTurrets"(): boolean;
|
|
237
|
+
"Print"(arg: ScriptRef<string>): void;
|
|
197
238
|
"ProcessCompare"(comparator: CyberEnums.EComparisonType, valA: number, valB: number): boolean;
|
|
198
239
|
"ProcessCompareInt"(comparator: CyberEnums.EComparisonType, valA: number, valB: number): boolean;
|
|
199
240
|
"ProgressMultipleAchievementsImpl"(achievementId: string, achievementCount: string, baseProgressString: string, intervalString: string): void;
|
|
@@ -274,8 +315,8 @@ interface MpFuncs {
|
|
|
274
315
|
"SwitchPlayerImmortalityMode"(cheat: CyberEnums.gamecheatsystemFlag): void;
|
|
275
316
|
"TanF"(a: number): number;
|
|
276
317
|
"ToInventoryItemData"(owner: WeakHandle<gameObject>, itemID: gameItemID): gameInventoryItemData;
|
|
277
|
-
"ToTelemetryDamage"(
|
|
278
|
-
"ToTelemetryDamageDealt"(evt: Handle<
|
|
318
|
+
"ToTelemetryDamage"(evt: Handle<gameeventsDamageReceivedEvent>): gameTelemetryDamage;
|
|
319
|
+
"ToTelemetryDamageDealt"(evt: Handle<gameeventsTargetDamageEvent>, situation: CyberEnums.gameTelemetryDamageSituation, distance: number, time: number): gameTelemetryDamageDealt;
|
|
279
320
|
"ToTelemetryEnemy"(target: WeakHandle<gameObject>): gameTelemetryEnemy;
|
|
280
321
|
"ToTelemetryInventoryItem"(inventoryItemData: ScriptRef<gameInventoryItemData>): gameTelemetryInventoryItem;
|
|
281
322
|
"Trace"(): void;
|
|
@@ -299,6 +340,12 @@ interface MpFuncs {
|
|
|
299
340
|
"UnicodeStringLessThan"(str: ScriptRef<string>, str2: ScriptRef<string>): boolean;
|
|
300
341
|
"UnicodeStringLessThanEqual"(str: ScriptRef<string>, str2: ScriptRef<string>): boolean;
|
|
301
342
|
"UseProfiler"(): void;
|
|
343
|
+
"UTF8StrLeft"(arg: ScriptRef<string>, arg: number): string;
|
|
344
|
+
"UTF8StrLen"(arg: ScriptRef<string>): number;
|
|
345
|
+
"UTF8StrLower"(arg: ScriptRef<string>): string;
|
|
346
|
+
"UTF8StrMid"(arg: ScriptRef<string>, arg: number, arg: number): string;
|
|
347
|
+
"UTF8StrRight"(arg: ScriptRef<string>, arg: number): string;
|
|
348
|
+
"UTF8StrUpper"(arg: ScriptRef<string>): string;
|
|
302
349
|
"VectorToString"(vec: Vector4): string;
|
|
303
350
|
}
|
|
304
351
|
|
|
@@ -17575,6 +17622,12 @@ export class AwacsAlertNotificationViewData extends gameuiGenericNotificationVie
|
|
|
17575
17622
|
"CanMerge"(data: Handle<gameuiGenericNotificationViewData>): boolean;
|
|
17576
17623
|
}
|
|
17577
17624
|
|
|
17625
|
+
export class AxisInputEvent extends KeyInputEvent {
|
|
17626
|
+
"GetMouseX"(): number;
|
|
17627
|
+
"GetMouseY"(): number;
|
|
17628
|
+
"GetValue"(): number;
|
|
17629
|
+
}
|
|
17630
|
+
|
|
17578
17631
|
export class BackActionCallback extends redEvent {
|
|
17579
17632
|
}
|
|
17580
17633
|
|
|
@@ -20002,6 +20055,32 @@ export class CallActionWidgetController extends DeviceActionWidgetControllerBase
|
|
|
20002
20055
|
"OnHoverOver"(e: Handle<inkPointerEvent>): boolean;
|
|
20003
20056
|
}
|
|
20004
20057
|
|
|
20058
|
+
export class CallbackSystem extends gameIGameSystem {
|
|
20059
|
+
"DispatchEvent"(arg: Handle<CallbackSystemEvent>): void;
|
|
20060
|
+
"DispatchEventAs"(arg: string, arg: Handle<CallbackSystemEvent>): void;
|
|
20061
|
+
"RegisterCallback"(arg: string, arg: Handle<IScriptable>, arg: string, arg?: boolean): Handle<CallbackSystemHandler>;
|
|
20062
|
+
"RegisterEvent"(arg: string, arg?: string): boolean;
|
|
20063
|
+
"RegisterStaticCallback"(arg: string, arg: string, arg: string, arg?: boolean): Handle<CallbackSystemHandler>;
|
|
20064
|
+
"UnregisterCallback"(arg: string, arg: Handle<IScriptable>, arg?: string): void;
|
|
20065
|
+
"UnregisterStaticCallback"(arg: string, arg: string, arg?: string): void;
|
|
20066
|
+
}
|
|
20067
|
+
|
|
20068
|
+
export class CallbackSystemEvent extends IScriptable {
|
|
20069
|
+
"GetEventName"(): string;
|
|
20070
|
+
}
|
|
20071
|
+
|
|
20072
|
+
export class CallbackSystemHandler extends IScriptable {
|
|
20073
|
+
"AddTarget"(arg: Handle<CallbackSystemTarget>): Handle<CallbackSystemHandler>;
|
|
20074
|
+
"IsRegistered"(): boolean;
|
|
20075
|
+
"RemoveTarget"(arg: Handle<CallbackSystemTarget>): Handle<CallbackSystemHandler>;
|
|
20076
|
+
"SetLifetime"(arg: CyberEnums.CallbackLifetime): Handle<CallbackSystemHandler>;
|
|
20077
|
+
"SetRunMode"(arg: CyberEnums.CallbackRunMode): Handle<CallbackSystemHandler>;
|
|
20078
|
+
"Unregister"(): void;
|
|
20079
|
+
}
|
|
20080
|
+
|
|
20081
|
+
export class CallbackSystemTarget extends IScriptable {
|
|
20082
|
+
}
|
|
20083
|
+
|
|
20005
20084
|
export class CallElevator extends ActionBool {
|
|
20006
20085
|
"destination": number;
|
|
20007
20086
|
"CreateActionWidgetPackage"(isElevatorAtThisFloor: boolean): void;
|
|
@@ -23023,6 +23102,7 @@ export class CMaterialInstance extends IMaterial {
|
|
|
23023
23102
|
"audioTag": string;
|
|
23024
23103
|
"baseMaterial": ResRef<IMaterial>;
|
|
23025
23104
|
"enableMask": boolean;
|
|
23105
|
+
"params": MaterialParameterInstance[];
|
|
23026
23106
|
"resourceVersion": number;
|
|
23027
23107
|
}
|
|
23028
23108
|
|
|
@@ -23150,6 +23230,7 @@ export class CMesh extends resStreamedResource {
|
|
|
23150
23230
|
export class CMeshMaterialEntry {
|
|
23151
23231
|
"index": number;
|
|
23152
23232
|
"isLocalInstance": boolean;
|
|
23233
|
+
"material": WeakHandle<IMaterial>;
|
|
23153
23234
|
"name": string;
|
|
23154
23235
|
}
|
|
23155
23236
|
|
|
@@ -23172,6 +23253,11 @@ export class CoderControllerPS extends BasicDistractionDeviceControllerPS {
|
|
|
23172
23253
|
"GetDeviceIconTweakDBID"(): string;
|
|
23173
23254
|
}
|
|
23174
23255
|
|
|
23256
|
+
export class Codeware extends IScriptable {
|
|
23257
|
+
static "Require"(arg: string): boolean;
|
|
23258
|
+
static "Version"(): string;
|
|
23259
|
+
}
|
|
23260
|
+
|
|
23175
23261
|
export class CodexAddRecordRequest extends gameScriptableSystemRequest {
|
|
23176
23262
|
"codexRecordID": string;
|
|
23177
23263
|
}
|
|
@@ -23840,6 +23926,17 @@ export class communityCommunityTemplateData extends ISerializable {
|
|
|
23840
23926
|
"spawnSetReference": string;
|
|
23841
23927
|
}
|
|
23842
23928
|
|
|
23929
|
+
export class CommunityEntryWrapper extends IScriptable {
|
|
23930
|
+
"GetName"(): string;
|
|
23931
|
+
"GetPhases"(): string[];
|
|
23932
|
+
"GetReservedEntityIDs"(): entEntityID[];
|
|
23933
|
+
"GetRestoredEntityIDs"(): entEntityID[];
|
|
23934
|
+
"GetSpawnedEntityIDs"(): entEntityID[];
|
|
23935
|
+
"GetSpawningEntityIDs"(): entEntityID[];
|
|
23936
|
+
"GetTemplateEntryData"(): Handle<communitySpawnEntry>;
|
|
23937
|
+
"IsActive"(): boolean;
|
|
23938
|
+
}
|
|
23939
|
+
|
|
23843
23940
|
export class communityPatrolInitializer extends communitySpawnInitializer {
|
|
23844
23941
|
"patrolRole": Handle<AIPatrolRole>;
|
|
23845
23942
|
}
|
|
@@ -23915,6 +24012,12 @@ export class communityVoiceTagInitializer extends communitySpawnInitializer {
|
|
|
23915
24012
|
"voiceTagName": string;
|
|
23916
24013
|
}
|
|
23917
24014
|
|
|
24015
|
+
export class CommunityWrapper extends IScriptable {
|
|
24016
|
+
"GetActiveEntityIDs"(): entEntityID[];
|
|
24017
|
+
"GetEntries"(): Handle<CommunityEntryWrapper>[];
|
|
24018
|
+
"GetTemplateData"(): Handle<communityCommunityTemplateData>;
|
|
24019
|
+
}
|
|
24020
|
+
|
|
23918
24021
|
export class CompanionHealthBarGameController extends gameuiHUDGameController {
|
|
23919
24022
|
"companionBlackboard": WeakHandle<gameIBlackboard>;
|
|
23920
24023
|
"flatheadListener": Handle<redCallbackObject>;
|
|
@@ -24019,6 +24122,11 @@ export class CompletionOfFirstEquipRequest extends gameScriptableSystemRequest {
|
|
|
24019
24122
|
"weaponID": string;
|
|
24020
24123
|
}
|
|
24021
24124
|
|
|
24125
|
+
export class ComponentTarget extends CallbackSystemTarget {
|
|
24126
|
+
static "ID"(arg: string): Handle<ComponentTarget>;
|
|
24127
|
+
static "Name"(arg: string): Handle<ComponentTarget>;
|
|
24128
|
+
}
|
|
24129
|
+
|
|
24022
24130
|
export class Computer extends Terminal {
|
|
24023
24131
|
"bannerUpdateActive": boolean;
|
|
24024
24132
|
"bannerUpdateID": gameDelayID;
|
|
@@ -26417,6 +26525,7 @@ export class CRenderTextureMaterial extends IDynamicTextureGenerator {
|
|
|
26417
26525
|
|
|
26418
26526
|
export class CResource extends ISerializable {
|
|
26419
26527
|
"cookingPlatform": CyberEnums.ECookingPlatform;
|
|
26528
|
+
"path": redResourceReferenceScriptToken;
|
|
26420
26529
|
}
|
|
26421
26530
|
|
|
26422
26531
|
export class Crosshair extends ModuleInstance {
|
|
@@ -27423,6 +27532,96 @@ export class CursorRootController extends inkWidgetLogicController {
|
|
|
27423
27532
|
"OnInitialize"(): boolean;
|
|
27424
27533
|
}
|
|
27425
27534
|
|
|
27535
|
+
export class CurveDataFloat {
|
|
27536
|
+
static "GetInterpolationType"(self: ScriptRef<CurveDataFloat>): CyberEnums.curveEInterpolationType;
|
|
27537
|
+
static "GetLinkType"(self: ScriptRef<CurveDataFloat>): CyberEnums.curveESegmentsLinkType;
|
|
27538
|
+
static "GetPoint"(self: ScriptRef<CurveDataFloat>, arg: number): CurvePointFloat;
|
|
27539
|
+
static "GetPointValue"(self: ScriptRef<CurveDataFloat>, arg: number, arg: number, arg: number): void;
|
|
27540
|
+
static "GetSize"(self: ScriptRef<CurveDataFloat>): number;
|
|
27541
|
+
static "SetInterpolationType"(self: ScriptRef<CurveDataFloat>, arg: CyberEnums.curveEInterpolationType): void;
|
|
27542
|
+
static "SetLinkType"(self: ScriptRef<CurveDataFloat>, arg: CyberEnums.curveESegmentsLinkType): void;
|
|
27543
|
+
static "SetPoint"(self: ScriptRef<CurveDataFloat>, arg: number, arg: CurvePointFloat): void;
|
|
27544
|
+
static "SetPointValue"(self: ScriptRef<CurveDataFloat>, arg: number, arg: number, arg: number): void;
|
|
27545
|
+
static "SetSize"(self: ScriptRef<CurveDataFloat>, arg: number): void;
|
|
27546
|
+
}
|
|
27547
|
+
|
|
27548
|
+
export class CurveDataHDRColor {
|
|
27549
|
+
static "GetInterpolationType"(self: ScriptRef<CurveDataHDRColor>): CyberEnums.curveEInterpolationType;
|
|
27550
|
+
static "GetLinkType"(self: ScriptRef<CurveDataHDRColor>): CyberEnums.curveESegmentsLinkType;
|
|
27551
|
+
static "GetPoint"(self: ScriptRef<CurveDataHDRColor>, arg: number): CurvePointHDRColor;
|
|
27552
|
+
static "GetPointValue"(self: ScriptRef<CurveDataHDRColor>, arg: number, arg: number, arg: HDRColor): void;
|
|
27553
|
+
static "GetSize"(self: ScriptRef<CurveDataHDRColor>): number;
|
|
27554
|
+
static "SetInterpolationType"(self: ScriptRef<CurveDataHDRColor>, arg: CyberEnums.curveEInterpolationType): void;
|
|
27555
|
+
static "SetLinkType"(self: ScriptRef<CurveDataHDRColor>, arg: CyberEnums.curveESegmentsLinkType): void;
|
|
27556
|
+
static "SetPoint"(self: ScriptRef<CurveDataHDRColor>, arg: number, arg: CurvePointHDRColor): void;
|
|
27557
|
+
static "SetPointValue"(self: ScriptRef<CurveDataHDRColor>, arg: number, arg: number, arg: HDRColor): void;
|
|
27558
|
+
static "SetSize"(self: ScriptRef<CurveDataHDRColor>, arg: number): void;
|
|
27559
|
+
}
|
|
27560
|
+
|
|
27561
|
+
export class CurveDataVector2 {
|
|
27562
|
+
static "GetInterpolationType"(self: ScriptRef<CurveDataVector2>): CyberEnums.curveEInterpolationType;
|
|
27563
|
+
static "GetLinkType"(self: ScriptRef<CurveDataVector2>): CyberEnums.curveESegmentsLinkType;
|
|
27564
|
+
static "GetPoint"(self: ScriptRef<CurveDataVector2>, arg: number): CurvePointVector2;
|
|
27565
|
+
static "GetPointValue"(self: ScriptRef<CurveDataVector2>, arg: number, arg: number, arg: Vector2): void;
|
|
27566
|
+
static "GetSize"(self: ScriptRef<CurveDataVector2>): number;
|
|
27567
|
+
static "SetInterpolationType"(self: ScriptRef<CurveDataVector2>, arg: CyberEnums.curveEInterpolationType): void;
|
|
27568
|
+
static "SetLinkType"(self: ScriptRef<CurveDataVector2>, arg: CyberEnums.curveESegmentsLinkType): void;
|
|
27569
|
+
static "SetPoint"(self: ScriptRef<CurveDataVector2>, arg: number, arg: CurvePointVector2): void;
|
|
27570
|
+
static "SetPointValue"(self: ScriptRef<CurveDataVector2>, arg: number, arg: number, arg: Vector2): void;
|
|
27571
|
+
static "SetSize"(self: ScriptRef<CurveDataVector2>, arg: number): void;
|
|
27572
|
+
}
|
|
27573
|
+
|
|
27574
|
+
export class CurveDataVector3 {
|
|
27575
|
+
static "GetInterpolationType"(self: ScriptRef<CurveDataVector3>): CyberEnums.curveEInterpolationType;
|
|
27576
|
+
static "GetLinkType"(self: ScriptRef<CurveDataVector3>): CyberEnums.curveESegmentsLinkType;
|
|
27577
|
+
static "GetPoint"(self: ScriptRef<CurveDataVector3>, arg: number): CurvePointVector3;
|
|
27578
|
+
static "GetPointValue"(self: ScriptRef<CurveDataVector3>, arg: number, arg: number, arg: Vector3): void;
|
|
27579
|
+
static "GetSize"(self: ScriptRef<CurveDataVector3>): number;
|
|
27580
|
+
static "SetInterpolationType"(self: ScriptRef<CurveDataVector3>, arg: CyberEnums.curveEInterpolationType): void;
|
|
27581
|
+
static "SetLinkType"(self: ScriptRef<CurveDataVector3>, arg: CyberEnums.curveESegmentsLinkType): void;
|
|
27582
|
+
static "SetPoint"(self: ScriptRef<CurveDataVector3>, arg: number, arg: CurvePointVector3): void;
|
|
27583
|
+
static "SetPointValue"(self: ScriptRef<CurveDataVector3>, arg: number, arg: number, arg: Vector3): void;
|
|
27584
|
+
static "SetSize"(self: ScriptRef<CurveDataVector3>, arg: number): void;
|
|
27585
|
+
}
|
|
27586
|
+
|
|
27587
|
+
export class CurveDataVector4 {
|
|
27588
|
+
static "GetInterpolationType"(self: ScriptRef<CurveDataVector4>): CyberEnums.curveEInterpolationType;
|
|
27589
|
+
static "GetLinkType"(self: ScriptRef<CurveDataVector4>): CyberEnums.curveESegmentsLinkType;
|
|
27590
|
+
static "GetPoint"(self: ScriptRef<CurveDataVector4>, arg: number): CurvePointVector4;
|
|
27591
|
+
static "GetPointValue"(self: ScriptRef<CurveDataVector4>, arg: number, arg: number, arg: Vector4): void;
|
|
27592
|
+
static "GetSize"(self: ScriptRef<CurveDataVector4>): number;
|
|
27593
|
+
static "SetInterpolationType"(self: ScriptRef<CurveDataVector4>, arg: CyberEnums.curveEInterpolationType): void;
|
|
27594
|
+
static "SetLinkType"(self: ScriptRef<CurveDataVector4>, arg: CyberEnums.curveESegmentsLinkType): void;
|
|
27595
|
+
static "SetPoint"(self: ScriptRef<CurveDataVector4>, arg: number, arg: CurvePointVector4): void;
|
|
27596
|
+
static "SetPointValue"(self: ScriptRef<CurveDataVector4>, arg: number, arg: number, arg: Vector4): void;
|
|
27597
|
+
static "SetSize"(self: ScriptRef<CurveDataVector4>, arg: number): void;
|
|
27598
|
+
}
|
|
27599
|
+
|
|
27600
|
+
export class CurvePointFloat {
|
|
27601
|
+
"point": number;
|
|
27602
|
+
"value": number;
|
|
27603
|
+
}
|
|
27604
|
+
|
|
27605
|
+
export class CurvePointHDRColor {
|
|
27606
|
+
"point": number;
|
|
27607
|
+
"value": HDRColor;
|
|
27608
|
+
}
|
|
27609
|
+
|
|
27610
|
+
export class CurvePointVector2 {
|
|
27611
|
+
"point": number;
|
|
27612
|
+
"value": Vector2;
|
|
27613
|
+
}
|
|
27614
|
+
|
|
27615
|
+
export class CurvePointVector3 {
|
|
27616
|
+
"point": number;
|
|
27617
|
+
"value": Vector3;
|
|
27618
|
+
}
|
|
27619
|
+
|
|
27620
|
+
export class CurvePointVector4 {
|
|
27621
|
+
"point": number;
|
|
27622
|
+
"value": Vector4;
|
|
27623
|
+
}
|
|
27624
|
+
|
|
27426
27625
|
export class CurveResourceSet extends CResource {
|
|
27427
27626
|
"curveResources": CurveResourceSetEntry[];
|
|
27428
27627
|
}
|
|
@@ -33070,6 +33269,69 @@ export class DurabilityComponent extends gameScriptableComponent {
|
|
|
33070
33269
|
export class DurabilityLimitReach extends redEvent {
|
|
33071
33270
|
}
|
|
33072
33271
|
|
|
33272
|
+
export class DynamicEntityEvent extends IScriptable {
|
|
33273
|
+
"GetEntityID"(): entEntityID;
|
|
33274
|
+
"GetEntityTag"(): string;
|
|
33275
|
+
"GetEventType"(): CyberEnums.DynamicEntityEventType;
|
|
33276
|
+
}
|
|
33277
|
+
|
|
33278
|
+
export class DynamicEntitySpec extends IScriptable {
|
|
33279
|
+
"active": boolean;
|
|
33280
|
+
"alwaysSpawned": boolean;
|
|
33281
|
+
"appearanceName": string;
|
|
33282
|
+
"orientation": Quaternion;
|
|
33283
|
+
"persistSpawn": boolean;
|
|
33284
|
+
"persistState": boolean;
|
|
33285
|
+
"position": Vector4;
|
|
33286
|
+
"recordID": string;
|
|
33287
|
+
"spawnInView": boolean;
|
|
33288
|
+
"tags": string[];
|
|
33289
|
+
"templateHash": number;
|
|
33290
|
+
"templatePath": ResAsyncRef<CResource>;
|
|
33291
|
+
}
|
|
33292
|
+
|
|
33293
|
+
export class DynamicEntityState extends IScriptable {
|
|
33294
|
+
"entityID": entEntityID;
|
|
33295
|
+
"entitySpec": Handle<DynamicEntitySpec>;
|
|
33296
|
+
}
|
|
33297
|
+
|
|
33298
|
+
export class DynamicEntitySystem extends gameIGameSystem {
|
|
33299
|
+
"AssignTag"(arg: entEntityID, arg: string): boolean;
|
|
33300
|
+
"CreateEntity"(arg: Handle<DynamicEntitySpec>): entEntityID;
|
|
33301
|
+
"DeleteEntity"(arg: entEntityID): boolean;
|
|
33302
|
+
"DeleteTagged"(arg: string): void;
|
|
33303
|
+
"DisableEntity"(arg: entEntityID): boolean;
|
|
33304
|
+
"DisableTagged"(arg: string): void;
|
|
33305
|
+
"EnableEntity"(arg: entEntityID): boolean;
|
|
33306
|
+
"EnableTagged"(arg: string): void;
|
|
33307
|
+
"GetEntity"(arg: entEntityID): Handle<entEntity>;
|
|
33308
|
+
"GetTagged"(arg: string): Handle<entEntity>[];
|
|
33309
|
+
"GetTaggedID"(arg: string): entEntityID;
|
|
33310
|
+
"GetTaggedIDs"(arg: string): entEntityID[];
|
|
33311
|
+
"GetTags"(arg: entEntityID): string[];
|
|
33312
|
+
"IsManaged"(arg: entEntityID): boolean;
|
|
33313
|
+
"IsPopulated"(arg: string): boolean;
|
|
33314
|
+
"IsReady"(): boolean;
|
|
33315
|
+
"IsRestored"(): boolean;
|
|
33316
|
+
"IsSpawned"(arg: entEntityID): boolean;
|
|
33317
|
+
"IsSpawning"(arg: entEntityID): boolean;
|
|
33318
|
+
"IsTagged"(arg: entEntityID, arg: string): boolean;
|
|
33319
|
+
"RegisterListener"(arg: string, arg: Handle<IScriptable>, arg: string): void;
|
|
33320
|
+
"UnassignTag"(arg: entEntityID, arg: string): boolean;
|
|
33321
|
+
"UnregisterListener"(arg: string, arg: Handle<IScriptable>, arg: string): void;
|
|
33322
|
+
"UnregisterListeners"(arg: string): void;
|
|
33323
|
+
}
|
|
33324
|
+
|
|
33325
|
+
export class DynamicEntitySystemPS extends gamePersistentState {
|
|
33326
|
+
"entityStates": Handle<DynamicEntityState>[];
|
|
33327
|
+
"names": number[];
|
|
33328
|
+
}
|
|
33329
|
+
|
|
33330
|
+
export class DynamicEntityTarget extends CallbackSystemTarget {
|
|
33331
|
+
static "Tag"(arg: string): Handle<DynamicEntityTarget>;
|
|
33332
|
+
static "Tags"(arg: string[]): Handle<DynamicEntityTarget>;
|
|
33333
|
+
}
|
|
33334
|
+
|
|
33073
33335
|
export class DynamicTexture extends ITexture {
|
|
33074
33336
|
"dataFormat": CyberEnums.DynamicTextureDataFormat;
|
|
33075
33337
|
"generator": Handle<IDynamicTextureGenerator>;
|
|
@@ -34207,10 +34469,13 @@ export class EngineeringSkillCheck extends SkillCheckBase {
|
|
|
34207
34469
|
|
|
34208
34470
|
export class EngineTime {
|
|
34209
34471
|
static "FromFloat"(value: number): EngineTime;
|
|
34472
|
+
static "FromTicks"(arg: number): EngineTime;
|
|
34473
|
+
static "GetFrequency"(): number;
|
|
34210
34474
|
static "IsValid"(self: EngineTime): boolean;
|
|
34211
34475
|
static "ToDouble"(self: EngineTime): number;
|
|
34212
34476
|
static "ToFloat"(self: EngineTime): number;
|
|
34213
34477
|
static "ToString"(self: EngineTime): string;
|
|
34478
|
+
static "ToTicks"(arg: EngineTime): number;
|
|
34214
34479
|
}
|
|
34215
34480
|
|
|
34216
34481
|
export class entAllowVehicleCollisionRagdollInSceneEvent extends redEvent {
|
|
@@ -34854,14 +35119,19 @@ export class entEffectSpawnerComponent extends entIVisualComponent {
|
|
|
34854
35119
|
export class entEntity extends IScriptable {
|
|
34855
35120
|
"customCameraTarget": CyberEnums.ECustomCameraTarget;
|
|
34856
35121
|
"renderSceneLayerMask": CyberBitfields.RenderSceneLayerMask;
|
|
35122
|
+
"AddComponent"(arg: Handle<entIComponent>): void;
|
|
35123
|
+
"ApplyMorphTarget"(arg: string, arg: string, arg: number): boolean;
|
|
34857
35124
|
"CanServiceEvent"(evtName: string): boolean;
|
|
34858
35125
|
"Dispose"(): void;
|
|
34859
35126
|
"FindComponentByName"(componentName: string): Handle<entIComponent>;
|
|
35127
|
+
"FindComponentByType"(arg: string): Handle<entIComponent>;
|
|
35128
|
+
"GetComponents"(): Handle<entIComponent>[];
|
|
34860
35129
|
"GetControllingPeerID"(): number;
|
|
34861
35130
|
"GetCurrentAppearanceName"(): string;
|
|
34862
35131
|
"GetCurrentColorVariantName"(): string;
|
|
34863
35132
|
"GetEntity"(): entEntityGameInterface;
|
|
34864
35133
|
"GetEntityID"(): entEntityID;
|
|
35134
|
+
"GetTemplatePath"(): ResAsyncRef<CResource>;
|
|
34865
35135
|
"GetWorldForward"(): Vector4;
|
|
34866
35136
|
"GetWorldOrientation"(): Quaternion;
|
|
34867
35137
|
"GetWorldPosition"(): Vector4;
|
|
@@ -34882,6 +35152,7 @@ export class entEntity extends IScriptable {
|
|
|
34882
35152
|
"QueueEventForEntityID"(entityID: entEntityID, evt: Handle<redEvent>): boolean;
|
|
34883
35153
|
"QueueEventForNodeID"(nodeID: worldGlobalNodeRef, evt: Handle<redEvent>): boolean;
|
|
34884
35154
|
"ScheduleAppearanceChange"(newAppearanceName: string): void;
|
|
35155
|
+
"SetWorldTransform"(arg: WorldTransform): void;
|
|
34885
35156
|
"OnSetGlitchOnUIEvent"(evt: Handle<SetGlitchOnUIEvent>): boolean;
|
|
34886
35157
|
}
|
|
34887
35158
|
|
|
@@ -34905,12 +35176,14 @@ export class EntityGameInterface extends entEntityGameInterface {
|
|
|
34905
35176
|
|
|
34906
35177
|
export class entEntityID {
|
|
34907
35178
|
"hash": number;
|
|
35179
|
+
static "FromHash"(arg: number): entEntityID;
|
|
34908
35180
|
static "GetHash"(id: entEntityID): number;
|
|
34909
35181
|
static "IsDefined"(id: entEntityID): boolean;
|
|
34910
35182
|
static "IsDynamic"(id: entEntityID): boolean;
|
|
34911
35183
|
static "IsStatic"(id: entEntityID): boolean;
|
|
34912
35184
|
static "ToDebugString"(id: entEntityID): string;
|
|
34913
35185
|
static "ToDebugStringDecimal"(id: entEntityID): string;
|
|
35186
|
+
static "ToHash"(self: ScriptRef<entEntityID>): number;
|
|
34914
35187
|
}
|
|
34915
35188
|
|
|
34916
35189
|
export class EntityID extends entEntityID {
|
|
@@ -35270,16 +35543,23 @@ export class entIBinding extends ISerializable {
|
|
|
35270
35543
|
}
|
|
35271
35544
|
|
|
35272
35545
|
export class entIComponent extends IScriptable {
|
|
35546
|
+
"appearanceName": string;
|
|
35547
|
+
"appearancePath": redResourceReferenceScriptToken;
|
|
35273
35548
|
"id": string;
|
|
35274
35549
|
"isReplicable": boolean;
|
|
35275
35550
|
"name": string;
|
|
35551
|
+
"ChangeAppearance"(arg: string, arg?: boolean): boolean;
|
|
35552
|
+
"ChangeResource"(arg: ResAsyncRef<CResource>, arg?: boolean): boolean;
|
|
35276
35553
|
"FindComponentByName"(componentName: string): WeakHandle<entIComponent>;
|
|
35277
35554
|
"GetAppearanceName"(): string;
|
|
35278
35555
|
"GetEntity"(): WeakHandle<entEntity>;
|
|
35279
35556
|
"GetName"(): string;
|
|
35280
35557
|
"IsEnabled"(): boolean;
|
|
35558
|
+
"LoadAppearance"(arg?: boolean): boolean;
|
|
35281
35559
|
"QueueEntityEvent"(ev: Handle<redEvent>): void;
|
|
35560
|
+
"RefreshAppearance"(): boolean;
|
|
35282
35561
|
"RegisterRenderDebug"(filterName: string, functionName: string): void;
|
|
35562
|
+
"ResetMaterialCache"(): void;
|
|
35283
35563
|
"Toggle"(on: boolean): void;
|
|
35284
35564
|
}
|
|
35285
35565
|
|
|
@@ -35346,6 +35626,7 @@ export class IOrientationProvider extends entIOrientationProvider {
|
|
|
35346
35626
|
export class entIPlacedComponent extends entIComponent {
|
|
35347
35627
|
"localTransform": WorldTransform;
|
|
35348
35628
|
"parentTransform": Handle<entITransformBinding>;
|
|
35629
|
+
"worldTransform": WorldTransform;
|
|
35349
35630
|
"GetInitialOrientation"(): Quaternion;
|
|
35350
35631
|
"GetInitialPosition"(): Vector4;
|
|
35351
35632
|
"GetInitialTransform"(): Matrix;
|
|
@@ -35439,6 +35720,44 @@ export class EntityAttachementRequestEvent extends redEvent {
|
|
|
35439
35720
|
"attachementData": EntityAttachementData;
|
|
35440
35721
|
}
|
|
35441
35722
|
|
|
35723
|
+
export class EntityBuilderAppearanceWrapper extends IScriptable {
|
|
35724
|
+
"AddComponent"(arg: Handle<entIComponent>): void;
|
|
35725
|
+
"GetComponents"(): Handle<entIComponent>[];
|
|
35726
|
+
"GetDefinition"(): Handle<appearanceAppearanceDefinition>;
|
|
35727
|
+
"GetResource"(): Handle<appearanceAppearanceResource>;
|
|
35728
|
+
}
|
|
35729
|
+
|
|
35730
|
+
export class EntityBuilderEvent extends CallbackSystemEvent {
|
|
35731
|
+
"GetEntityBuilder"(): Handle<EntityBuilderWrapper>;
|
|
35732
|
+
}
|
|
35733
|
+
|
|
35734
|
+
export class EntityBuilderTemplateWrapper extends IScriptable {
|
|
35735
|
+
"AddComponent"(arg: Handle<entIComponent>): void;
|
|
35736
|
+
"GetAppearanceName"(): string;
|
|
35737
|
+
"GetComponents"(): Handle<entIComponent>[];
|
|
35738
|
+
"GetEntity"(): Handle<entEntity>;
|
|
35739
|
+
"GetResource"(): Handle<entEntityTemplate>;
|
|
35740
|
+
}
|
|
35741
|
+
|
|
35742
|
+
export class EntityBuilderWrapper extends IScriptable {
|
|
35743
|
+
"GetAppearance"(): Handle<EntityBuilderAppearanceWrapper>;
|
|
35744
|
+
"GetAppearanceName"(): string;
|
|
35745
|
+
"GetCustomAppearances"(): Handle<EntityBuilderAppearanceWrapper>[];
|
|
35746
|
+
"GetEntityID"(): entEntityID;
|
|
35747
|
+
"GetEntityParams"(): Handle<entEntityParametersStorage>;
|
|
35748
|
+
"GetEntityType"(): string;
|
|
35749
|
+
"GetRecordID"(): string;
|
|
35750
|
+
"GetTemplate"(): Handle<EntityBuilderTemplateWrapper>;
|
|
35751
|
+
"GetTemplatePath"(): ResAsyncRef<CResource>;
|
|
35752
|
+
"HasAppearance"(): boolean;
|
|
35753
|
+
"HasCustomAppearances"(): boolean;
|
|
35754
|
+
"HasEntity"(): boolean;
|
|
35755
|
+
}
|
|
35756
|
+
|
|
35757
|
+
export class EntityComponentEvent extends EntityLifecycleEvent {
|
|
35758
|
+
"GetComponent"(): WeakHandle<entIComponent>;
|
|
35759
|
+
}
|
|
35760
|
+
|
|
35442
35761
|
export class EntityHasVisualTag extends gameIScriptablePrereq {
|
|
35443
35762
|
"hasTag": boolean;
|
|
35444
35763
|
"visualTag": string;
|
|
@@ -35470,6 +35789,10 @@ export class EntityHealthStatListener extends gameScriptStatPoolsListener {
|
|
|
35470
35789
|
"OnStatPoolValueChanged"(oldValue: number, newValue: number, percToPoints: number): void;
|
|
35471
35790
|
}
|
|
35472
35791
|
|
|
35792
|
+
export class EntityLifecycleEvent extends CallbackSystemEvent {
|
|
35793
|
+
"GetEntity"(): WeakHandle<entEntity>;
|
|
35794
|
+
}
|
|
35795
|
+
|
|
35473
35796
|
export class EntityNoticedPlayerPrereq extends gameIScriptablePrereq {
|
|
35474
35797
|
"isPlayerNoticed": boolean;
|
|
35475
35798
|
"valueToListen": number;
|
|
@@ -35490,6 +35813,15 @@ export class EntityNoticedPlayerPrereqState extends gamePrereqState {
|
|
|
35490
35813
|
export class EntityStubComponent extends gameComponent {
|
|
35491
35814
|
}
|
|
35492
35815
|
|
|
35816
|
+
export class EntityTarget extends CallbackSystemTarget {
|
|
35817
|
+
static "Appearance"(arg: string): Handle<EntityTarget>;
|
|
35818
|
+
static "Definition"(arg: ResAsyncRef<CResource>, arg?: string): Handle<EntityTarget>;
|
|
35819
|
+
static "ID"(arg: entEntityID): Handle<EntityTarget>;
|
|
35820
|
+
static "RecordID"(arg: string): Handle<EntityTarget>;
|
|
35821
|
+
static "Template"(arg: ResAsyncRef<CResource>): Handle<EntityTarget>;
|
|
35822
|
+
static "Type"(arg: string): Handle<EntityTarget>;
|
|
35823
|
+
}
|
|
35824
|
+
|
|
35493
35825
|
export class entIVelocityProvider extends IScriptable {
|
|
35494
35826
|
"CalculateVelocity"(): void;
|
|
35495
35827
|
}
|
|
@@ -35697,6 +36029,7 @@ export class entMeshComponent extends entIVisualComponent {
|
|
|
35697
36029
|
"LODMode": CyberEnums.entMeshComponentLODMode;
|
|
35698
36030
|
"mesh": ResAsyncRef<CMesh>;
|
|
35699
36031
|
"meshAppearance": string;
|
|
36032
|
+
"meshResource": Handle<CMesh>;
|
|
35700
36033
|
"motionBlurScale": number;
|
|
35701
36034
|
"navigationImpact": NavGenNavigationSetting;
|
|
35702
36035
|
"numInstances": number;
|
|
@@ -36430,6 +36763,7 @@ export class entVisualControllerComponent extends entIComponent {
|
|
|
36430
36763
|
"cookedAppearanceData": ResAsyncRef<appearanceCookedAppearanceData>;
|
|
36431
36764
|
"forcedLodDistance": CyberEnums.entForcedLodDistance;
|
|
36432
36765
|
"meshProxy": ResRef<CMesh>;
|
|
36766
|
+
"LoadAppearanceDependencies"(arg?: boolean): boolean;
|
|
36433
36767
|
}
|
|
36434
36768
|
|
|
36435
36769
|
export class entVisualControllerDependency {
|
|
@@ -37167,6 +37501,12 @@ export class ExecuteVisualCustomizationWithDelay extends redEvent {
|
|
|
37167
37501
|
"template": VehicleVisualCustomizationTemplate;
|
|
37168
37502
|
}
|
|
37169
37503
|
|
|
37504
|
+
export class exEntitySpawner extends gameIGameSystem {
|
|
37505
|
+
static "Despawn"(entity: Handle<entEntity>): void;
|
|
37506
|
+
static "Spawn"(entityPath: ResAsyncRef<CResource>, worldTransform: WorldTransform, appearance?: string, recordID?: string): entEntityID;
|
|
37507
|
+
static "SpawnRecord"(recordID: string, worldTransform: WorldTransform, appearance?: string): entEntityID;
|
|
37508
|
+
}
|
|
37509
|
+
|
|
37170
37510
|
export class ExhaustedDecisions extends StaminaTransition {
|
|
37171
37511
|
"staminaRatioEnterCondition": number;
|
|
37172
37512
|
"EnterCondition"(stateContext: Handle<gamestateMachineStateContextScript>, scriptInterface: Handle<gamestateMachineGameScriptInterface>): boolean;
|
|
@@ -53309,6 +53649,7 @@ export class TankWeapon_Record extends gamedataTankWeapon_Record {
|
|
|
53309
53649
|
export class gamedataTDBIDHelper {
|
|
53310
53650
|
static "Append"(toAppend: string): void;
|
|
53311
53651
|
static "Create"(str: string): string;
|
|
53652
|
+
static "FromNumber"(arg: number): string;
|
|
53312
53653
|
static "IsValid"(tdbID: string): boolean;
|
|
53313
53654
|
static "None"(): string;
|
|
53314
53655
|
static "OpenRecordInVSCode"(tdbID: string): boolean;
|
|
@@ -62829,6 +63170,7 @@ export class gameJournalManager extends gameIJournalManager {
|
|
|
62829
63170
|
"GetConversations"(contactEntry: WeakHandle<gameJournalEntry>): void;
|
|
62830
63171
|
"GetDistanceToNearestMappin"(entry: WeakHandle<gameJournalQuestObjective>, filter?: gameJournalRequestStateFilter): number;
|
|
62831
63172
|
"GetDistrict"(entry: WeakHandle<gameJournalEntry>): WeakHandle<gamedataDistrict_Record>;
|
|
63173
|
+
"GetEntries"(arg: ScriptRef<gameJournalRequestContext>): WeakHandle<gameJournalEntry>[];
|
|
62832
63174
|
"GetEntry"(hash: number): WeakHandle<gameJournalEntry>;
|
|
62833
63175
|
"GetEntryByString"(uniquePath: string, className: string): WeakHandle<gameJournalEntry>;
|
|
62834
63176
|
"GetEntryHash"(entry: WeakHandle<gameJournalEntry>): number;
|
|
@@ -63717,6 +64059,7 @@ export class MappinScriptData extends gamemappinsMappinScriptData {
|
|
|
63717
64059
|
export class gamemappinsMappinSystem extends gamemappinsIMappinSystem {
|
|
63718
64060
|
"ChangeMappinVariant"(id: gameNewMappinID, newVariant: CyberEnums.gamedataMappinVariant): void;
|
|
63719
64061
|
"DebugDiscoverAllPoiMappins"(): void;
|
|
64062
|
+
"GetAllMappins"(): Handle<gamemappinsIMappin>[];
|
|
63720
64063
|
"GetDelamainTrackedMappinID"(): gameNewMappinID;
|
|
63721
64064
|
"GetManuallyTrackedMappinID"(): gameNewMappinID;
|
|
63722
64065
|
"GetMappin"(mappinId: gameNewMappinID): Handle<gamemappinsIMappin>;
|
|
@@ -64860,6 +65203,7 @@ export class gameObject extends entGameEntity {
|
|
|
64860
65203
|
"targetShootComponent": Handle<gameTargetShootComponent>;
|
|
64861
65204
|
static "AddListener"(obj: Handle<gameObject>, listener: Handle<GameObjectListener>): void;
|
|
64862
65205
|
static "AddStatusEffectTriggerListener"(target: Handle<gameObject>, listener: Handle<StatusEffectTriggerListener>): void;
|
|
65206
|
+
"AddTag"(arg: string): void;
|
|
64863
65207
|
static "ApplyModifierGroup"(self: Handle<gameObject>, modifierGroupID: number): void;
|
|
64864
65208
|
static "AudioParameter"(self: Handle<gameObject>, parameterName: string, parameterValue: number, emitterName?: string): void;
|
|
64865
65209
|
static "AudioSwitch"(self: Handle<gameObject>, switchName: string, switchValue: string, emitterName?: string): void;
|
|
@@ -64929,8 +65273,8 @@ export class gameObject extends entGameEntity {
|
|
|
64929
65273
|
"GetLootQuality"(): CyberEnums.gamedataQuality;
|
|
64930
65274
|
"GetName"(): string;
|
|
64931
65275
|
"GetNetworkBeamEndpoint"(): Vector4;
|
|
64932
|
-
"GetNetworkLinkSlotName"(): [string, WorldTransform];
|
|
64933
65276
|
"GetNetworkLinkSlotName"(): string;
|
|
65277
|
+
"GetNetworkLinkSlotName"(): [string, WorldTransform];
|
|
64934
65278
|
"GetNPCsAroundObject"(range?: number): Handle<NPCPuppet>[];
|
|
64935
65279
|
"GetNumberOfWorkpotsForAIAction"(aiAction: CyberEnums.gamedataWorkspotActionType): number;
|
|
64936
65280
|
"GetObjectToForwardHighlight"(): WeakHandle<gameObject>[];
|
|
@@ -64976,8 +65320,8 @@ export class gameObject extends entGameEntity {
|
|
|
64976
65320
|
"HasDirectActionsActive"(): boolean;
|
|
64977
65321
|
"HasFinisherAvailable"(): boolean;
|
|
64978
65322
|
"HasFreeWorkspotForInvestigation"(): boolean;
|
|
64979
|
-
"HasHighlight"(highlightType: CyberEnums.EFocusForcedHighlightType, outlineType: CyberEnums.EFocusOutlineType, sourceID: entEntityID): boolean;
|
|
64980
65323
|
"HasHighlight"(highlightType: CyberEnums.EFocusForcedHighlightType, outlineType: CyberEnums.EFocusOutlineType, sourceID: entEntityID, sourceName: string): boolean;
|
|
65324
|
+
"HasHighlight"(highlightType: CyberEnums.EFocusForcedHighlightType, outlineType: CyberEnums.EFocusOutlineType, sourceID: entEntityID): boolean;
|
|
64981
65325
|
"HasHighlight"(highlightType: CyberEnums.EFocusForcedHighlightType, outlineType: CyberEnums.EFocusOutlineType): boolean;
|
|
64982
65326
|
"HasImportantInteraction"(): boolean;
|
|
64983
65327
|
"HasOutlineOrFill"(highlightType: CyberEnums.EFocusForcedHighlightType, outlineType: CyberEnums.EFocusOutlineType): boolean;
|
|
@@ -65476,6 +65820,8 @@ export class gamePersistentID {
|
|
|
65476
65820
|
"componentName": string;
|
|
65477
65821
|
"entityHash": number;
|
|
65478
65822
|
static "ExtractEntityID"(id: gamePersistentID): entEntityID;
|
|
65823
|
+
static "ForComponent"(arg: entEntityID, arg: string): gamePersistentID;
|
|
65824
|
+
static "ForEntity"(arg: entEntityID): gamePersistentID;
|
|
65479
65825
|
static "GetComponentName"(id: gamePersistentID): string;
|
|
65480
65826
|
static "IsComponent"(id: gamePersistentID): boolean;
|
|
65481
65827
|
static "IsDefined"(id: gamePersistentID): boolean;
|
|
@@ -65483,6 +65829,7 @@ export class gamePersistentID {
|
|
|
65483
65829
|
static "IsEntity"(id: gamePersistentID): boolean;
|
|
65484
65830
|
static "IsStatic"(id: gamePersistentID): boolean;
|
|
65485
65831
|
static "ToDebugString"(id: gamePersistentID): string;
|
|
65832
|
+
static "ToHash"(self: ScriptRef<gamePersistentID>): number;
|
|
65486
65833
|
}
|
|
65487
65834
|
|
|
65488
65835
|
export class PersistentID extends gamePersistentID {
|
|
@@ -67933,6 +68280,11 @@ export class GameSessionDataSystem extends gameScriptableSystem {
|
|
|
67933
68280
|
"Uninitialize"(): void;
|
|
67934
68281
|
}
|
|
67935
68282
|
|
|
68283
|
+
export class GameSessionEvent extends CallbackSystemEvent {
|
|
68284
|
+
"IsPreGame"(): boolean;
|
|
68285
|
+
"IsRestored"(): boolean;
|
|
68286
|
+
}
|
|
68287
|
+
|
|
67936
68288
|
export class gameSetAggressiveMask extends redEvent {
|
|
67937
68289
|
"isAggressive": boolean;
|
|
67938
68290
|
}
|
|
@@ -71611,7 +71963,7 @@ export class gameuiBaseMinimapMappinController extends gameuiMappinBaseControlle
|
|
|
71611
71963
|
export class BaseMinimapMappinController extends gameuiBaseMinimapMappinController {
|
|
71612
71964
|
}
|
|
71613
71965
|
|
|
71614
|
-
export class gameuiBaseUIData {
|
|
71966
|
+
export class gameuiBaseUIData extends ISerializable {
|
|
71615
71967
|
"id": number;
|
|
71616
71968
|
}
|
|
71617
71969
|
|
|
@@ -77485,6 +77837,7 @@ export class gameVehicleSystem extends gameIVehicleSystem {
|
|
|
77485
77837
|
"SetSuicideSpeedChancePercentage"(value: number): void;
|
|
77486
77838
|
"SpawnActivePlayerVehicle"(vehicleType?: CyberEnums.gamedataVehicleType): boolean;
|
|
77487
77839
|
"SpawnPlayerVehicle"(vehicleType?: CyberEnums.gamedataVehicleType, vehicleID?: string, spawnOnlyOnValidRoad?: boolean): boolean;
|
|
77840
|
+
"ToggleGarageVehicle"(arg: vehicleGarageVehicleID, arg: boolean): boolean;
|
|
77488
77841
|
"TogglePlayerActiveVehicle"(vehicleID: vehicleGarageVehicleID, vehicleType: CyberEnums.gamedataVehicleType, enable: boolean): void;
|
|
77489
77842
|
"TogglePlayerFavoriteVehicle"(vehicleID: vehicleGarageVehicleID): boolean;
|
|
77490
77843
|
"ToggleSummonMode"(): void;
|
|
@@ -77692,6 +78045,7 @@ export class gameVisualTagsAppearanceNamesPreset_TagsAppearances extends ISerial
|
|
|
77692
78045
|
|
|
77693
78046
|
export class gameWardrobeSystem extends gameIWardrobeSystem {
|
|
77694
78047
|
"DeleteClothingSet"(setIndex: CyberEnums.gameWardrobeClothingSetIndex): void;
|
|
78048
|
+
"ForgetItemID"(arg: gameItemID): boolean;
|
|
77695
78049
|
"GetActiveClothingSet"(): Handle<gameClothingSet>;
|
|
77696
78050
|
"GetActiveClothingSetIndex"(): CyberEnums.gameWardrobeClothingSetIndex;
|
|
77697
78051
|
"GetClothingSets"(): Handle<gameClothingSet>[];
|
|
@@ -78183,6 +78537,7 @@ export class gameWorkspotGameSystem extends gameIWorkspotGameSystem {
|
|
|
78183
78537
|
"GetDeviceUser"(deviceID: entEntityID): Handle<gameObject>;
|
|
78184
78538
|
"GetExtendedInfo"(actor: Handle<gameObject>): Handle<gameExtendedWorkspotInfo>;
|
|
78185
78539
|
"GetIdOfExitAnim"(actor: Handle<gameObject>, animName: string): number;
|
|
78540
|
+
"GetWorkspotInstance"(arg: entEntityID): Handle<workWorkspotInstance>;
|
|
78186
78541
|
"HardResetPlaybackToStart"(actor: Handle<gameObject>): void;
|
|
78187
78542
|
"HasExitNodes"(actor: Handle<gameObject>, fastExit: boolean, slowExit: boolean, performNavmeshChecks?: boolean): boolean;
|
|
78188
78543
|
"IsActorInWorkspot"(actor: Handle<gameObject>): boolean;
|
|
@@ -79115,6 +79470,7 @@ export class graphGraphResource extends CResource {
|
|
|
79115
79470
|
export class graphGraphSocketDefinition extends graphIGraphObjectDefinition {
|
|
79116
79471
|
"connections": Handle<graphGraphConnectionDefinition>[];
|
|
79117
79472
|
"name": string;
|
|
79473
|
+
"owner": WeakHandle<graphGraphNodeDefinition>;
|
|
79118
79474
|
}
|
|
79119
79475
|
|
|
79120
79476
|
export class graphIGraphNodeCondition extends ISerializable {
|
|
@@ -83307,6 +83663,7 @@ export class inkCensorshipEffect extends inkGlitchEffect {
|
|
|
83307
83663
|
}
|
|
83308
83664
|
|
|
83309
83665
|
export class inkCharacterEvent extends inkInputEvent {
|
|
83666
|
+
"GetAction"(): CyberEnums.EInputAction;
|
|
83310
83667
|
"GetCharacter"(): number;
|
|
83311
83668
|
"GetType"(): void;
|
|
83312
83669
|
}
|
|
@@ -83376,6 +83733,11 @@ export class inkComboBoxObjectController extends inkWidgetLogicController {
|
|
|
83376
83733
|
export class inkComboBoxVisibleChangedCallback extends inkCallbackBase {
|
|
83377
83734
|
}
|
|
83378
83735
|
|
|
83736
|
+
export class inkComponent extends inkWidgetLogicController {
|
|
83737
|
+
"IsAttached"(): boolean;
|
|
83738
|
+
"OnConstruct"(): void;
|
|
83739
|
+
}
|
|
83740
|
+
|
|
83379
83741
|
export class inkCompositionInterpolator {
|
|
83380
83742
|
"duration": number;
|
|
83381
83743
|
"interpolationMode": CyberEnums.inkanimInterpolationMode;
|
|
@@ -84475,6 +84837,13 @@ export class inkKeyBindingEvent extends redEvent {
|
|
|
84475
84837
|
export class KeyBindingEvent extends inkKeyBindingEvent {
|
|
84476
84838
|
}
|
|
84477
84839
|
|
|
84840
|
+
export class inkKeyInputEvent extends inkInputEvent {
|
|
84841
|
+
"GetAction"(): CyberEnums.EInputAction;
|
|
84842
|
+
"GetCharacter"(): string;
|
|
84843
|
+
"GetKey"(): CyberEnums.EInputKey;
|
|
84844
|
+
"IsCharacter"(): boolean;
|
|
84845
|
+
}
|
|
84846
|
+
|
|
84478
84847
|
export class inkLanguageDefinition {
|
|
84479
84848
|
"fonts": inkLanguageFont[];
|
|
84480
84849
|
"isoScriptCode": string;
|
|
@@ -84606,6 +84975,13 @@ export class inkLayerSystemConnection {
|
|
|
84606
84975
|
"system": Handle<inkILayerSystemData>;
|
|
84607
84976
|
}
|
|
84608
84977
|
|
|
84978
|
+
export class inkLayerWrapper extends IScriptable {
|
|
84979
|
+
"GetGameController"(): WeakHandle<inkIWidgetController>;
|
|
84980
|
+
"GetGameControllers"(): WeakHandle<inkIWidgetController>[];
|
|
84981
|
+
"GetLayerName"(): string;
|
|
84982
|
+
"GetVirtualWindow"(): WeakHandle<inkVirtualWindow>;
|
|
84983
|
+
}
|
|
84984
|
+
|
|
84609
84985
|
export class inkLeafWidget extends inkWidget {
|
|
84610
84986
|
}
|
|
84611
84987
|
|
|
@@ -85833,6 +86209,14 @@ export class inkStyleThemeDescriptor {
|
|
|
85833
86209
|
export class inkSubtitlesLanguageOverride extends inkUserData {
|
|
85834
86210
|
}
|
|
85835
86211
|
|
|
86212
|
+
export class inkSystem extends gameIGameSystem {
|
|
86213
|
+
"GetClipboardText"(): string;
|
|
86214
|
+
"GetLayer"(arg: string): Handle<inkLayerWrapper>;
|
|
86215
|
+
"GetLayers"(): Handle<inkLayerWrapper>[];
|
|
86216
|
+
"GetWorldWidgets"(): WeakHandle<inkIWidgetController>[];
|
|
86217
|
+
"SetClipboardText"(arg: string): void;
|
|
86218
|
+
}
|
|
86219
|
+
|
|
85836
86220
|
export class inkSystemNotificationEvt extends redEvent {
|
|
85837
86221
|
}
|
|
85838
86222
|
|
|
@@ -86492,6 +86876,7 @@ export class inkWidget extends IScriptable {
|
|
|
86492
86876
|
"tintColor": HDRColor;
|
|
86493
86877
|
"userData": Handle<inkUserData>[];
|
|
86494
86878
|
"visible": boolean;
|
|
86879
|
+
"AttachController"(arg: Handle<inkWidgetLogicController>, arg?: boolean): void;
|
|
86495
86880
|
"BindProperty"(propertyName: string, stylePath: string): boolean;
|
|
86496
86881
|
"CallCustomCallback"(eventName: string): void;
|
|
86497
86882
|
"ChangeTranslation"(translationVector: Vector2): void;
|
|
@@ -86670,6 +87055,7 @@ export class inkWidgetLibraryResourceWrapper {
|
|
|
86670
87055
|
static "GetHash"(self: inkWidgetLibraryResourceWrapper): number;
|
|
86671
87056
|
static "GetPath"(self: inkWidgetLibraryResourceWrapper): redResourceReferenceScriptToken;
|
|
86672
87057
|
static "IsValid"(self: inkWidgetLibraryResourceWrapper): boolean;
|
|
87058
|
+
static "SetPath"(self: ScriptRef<inkWidgetLibraryResourceWrapper>, arg: ResAsyncRef<inkWidgetLibraryResource>): void;
|
|
86673
87059
|
}
|
|
86674
87060
|
|
|
86675
87061
|
export class inkWidgetLibraryUnpackedView extends ISerializable {
|
|
@@ -86796,6 +87182,7 @@ export class inkWidgetReference {
|
|
|
86796
87182
|
static "PlayAnimationWithOptions"(self: inkWidgetReference, animationDefinition: Handle<inkanimDefinition>, playbackOptions: inkanimPlaybackOptions): Handle<inkanimProxy>;
|
|
86797
87183
|
static "RegisterToCallback"(self: inkWidgetReference, eventName: string, object: Handle<IScriptable>, functionName: string): void;
|
|
86798
87184
|
static "Reparent"(self: inkWidgetReference, newParent: WeakHandle<inkCompoundWidget>, index?: number): void;
|
|
87185
|
+
static "Set"(self: ScriptRef<inkWidgetReference>, arg: Handle<inkWidget>): void;
|
|
86799
87186
|
static "SetAnchor"(self: inkWidgetReference, anchor: CyberEnums.inkEAnchor): void;
|
|
86800
87187
|
static "SetAnchorPoint"(self: inkWidgetReference, anchorPoint: Vector2): void;
|
|
86801
87188
|
static "SetAnchorPoint"(self: inkWidgetReference, x: number, y: number): void;
|
|
@@ -86847,6 +87234,12 @@ export class inkWidgetSlotAttachmentParams {
|
|
|
86847
87234
|
export class inkWidgetSlotController extends inkIWidgetSlotController {
|
|
86848
87235
|
}
|
|
86849
87236
|
|
|
87237
|
+
export class inkWidgetSpawnEvent extends CallbackSystemEvent {
|
|
87238
|
+
"GetItemInstance"(): Handle<inkWidgetLibraryItemInstance>;
|
|
87239
|
+
"GetItemName"(): string;
|
|
87240
|
+
"GetLibraryPath"(): redResourceReferenceScriptToken;
|
|
87241
|
+
}
|
|
87242
|
+
|
|
86850
87243
|
export class inkWidgetsSet extends IScriptable {
|
|
86851
87244
|
"FromSet"(other: Handle<inkWidgetsSet>): Handle<inkWidgetsSet>;
|
|
86852
87245
|
"Get"(): WeakHandle<inkWidget>[];
|
|
@@ -86860,6 +87253,11 @@ export class inkWidgetStateAnimatedTransition {
|
|
|
86860
87253
|
"startState": string;
|
|
86861
87254
|
}
|
|
86862
87255
|
|
|
87256
|
+
export class inkWidgetTarget extends CallbackSystemTarget {
|
|
87257
|
+
static "Controller"(arg: string): Handle<inkWidgetTarget>;
|
|
87258
|
+
static "Library"(arg: redResourceReferenceScriptToken, arg?: string): Handle<inkWidgetTarget>;
|
|
87259
|
+
}
|
|
87260
|
+
|
|
86863
87261
|
export class inkWidgetUtils {
|
|
86864
87262
|
static "GlobalToLocal"(widget: Handle<inkWidget>, globalPosition: Vector2): Vector2;
|
|
86865
87263
|
static "LocalToGlobal"(widget: Handle<inkWidget>, localOffset?: Vector2): Vector2;
|
|
@@ -86905,6 +87303,7 @@ export class inkWorldWidgetComponentUserData extends inkUserData {
|
|
|
86905
87303
|
}
|
|
86906
87304
|
|
|
86907
87305
|
export class inkWorldWidgetInfos extends inkUserData {
|
|
87306
|
+
"GetComponent"(): Handle<entIComponent>;
|
|
86908
87307
|
}
|
|
86909
87308
|
|
|
86910
87309
|
export class InnerAdminPanelScreenGameController extends BaseInnerBunkerComputerGameController {
|
|
@@ -87181,6 +87580,11 @@ export class InputSettingsVarListener extends userSettingsVarListener {
|
|
|
87181
87580
|
"RegisterController"(ctrl: Handle<gameuiControllerSettingsGameController>): void;
|
|
87182
87581
|
}
|
|
87183
87582
|
|
|
87583
|
+
export class InputTarget extends CallbackSystemTarget {
|
|
87584
|
+
static "Axis"(arg: CyberEnums.EInputKey, arg?: number): Handle<InputTarget>;
|
|
87585
|
+
static "Key"(arg: CyberEnums.EInputKey, arg?: CyberEnums.EInputAction): Handle<InputTarget>;
|
|
87586
|
+
}
|
|
87587
|
+
|
|
87184
87588
|
export class InRelaxedHighLevelState extends AINPCHighLevelStateCheck {
|
|
87185
87589
|
"GetStateToCheck"(): CyberEnums.gamedataNPCHighLevelState;
|
|
87186
87590
|
}
|
|
@@ -89994,6 +90398,7 @@ export class IsCoverDevice extends gameEffectObjectSingleFilter_Scripted {
|
|
|
89994
90398
|
}
|
|
89995
90399
|
|
|
89996
90400
|
export class IScriptable extends ISerializable {
|
|
90401
|
+
"Clone"(): Handle<IScriptable>;
|
|
89997
90402
|
static "DetectScriptableCycles"(): void;
|
|
89998
90403
|
"GetClassName"(): string;
|
|
89999
90404
|
"IsA"(className: string): boolean;
|
|
@@ -90026,6 +90431,11 @@ export class IsDriverActive extends AIVehicleConditionAbstract {
|
|
|
90026
90431
|
}
|
|
90027
90432
|
|
|
90028
90433
|
export class ISerializable {
|
|
90434
|
+
"Clone"(): Handle<ISerializable>;
|
|
90435
|
+
"GetClassName"(): string;
|
|
90436
|
+
"IsA"(arg: string): boolean;
|
|
90437
|
+
"IsExactlyA"(arg: string): boolean;
|
|
90438
|
+
"ProcessPostLoad"(arg?: boolean): void;
|
|
90029
90439
|
}
|
|
90030
90440
|
|
|
90031
90441
|
export class IsFacingTowardsSource extends gameEffectObjectSingleFilter_Scripted {
|
|
@@ -92410,6 +92820,14 @@ export class KeyboardHoldIndicatorGameController extends gameuiHoldIndicatorGame
|
|
|
92410
92820
|
"HoldStop"(): void;
|
|
92411
92821
|
}
|
|
92412
92822
|
|
|
92823
|
+
export class KeyInputEvent extends CallbackSystemEvent {
|
|
92824
|
+
"GetAction"(): CyberEnums.EInputAction;
|
|
92825
|
+
"GetKey"(): CyberEnums.EInputKey;
|
|
92826
|
+
"IsAltDown"(): boolean;
|
|
92827
|
+
"IsControlDown"(): boolean;
|
|
92828
|
+
"IsShiftDown"(): boolean;
|
|
92829
|
+
}
|
|
92830
|
+
|
|
92413
92831
|
export class KeypadButtonSpawnData extends IScriptable {
|
|
92414
92832
|
"isActionButton": boolean;
|
|
92415
92833
|
"locKey": string;
|
|
@@ -96621,6 +97039,8 @@ export class meshMeshAppearance extends ISerializable {
|
|
|
96621
97039
|
"chunkMaterials": string[];
|
|
96622
97040
|
"name": string;
|
|
96623
97041
|
"tags": string[];
|
|
97042
|
+
static "ResetMaterialCache"(arg: Handle<meshMeshAppearance>): void;
|
|
97043
|
+
static "SetMesh"(arg: Handle<meshMeshAppearance>, arg: Handle<CMesh>): void;
|
|
96624
97044
|
}
|
|
96625
97045
|
|
|
96626
97046
|
export class meshMeshImportedSnapPoint extends ISerializable {
|
|
@@ -101242,9 +101662,6 @@ export class NormalizeAndSaveSwayEvent extends redEvent {
|
|
|
101242
101662
|
"sway": Vector2;
|
|
101243
101663
|
}
|
|
101244
101664
|
|
|
101245
|
-
export class Nothing {
|
|
101246
|
-
}
|
|
101247
|
-
|
|
101248
101665
|
export class NotifiedSecSysAboutCombat extends redEvent {
|
|
101249
101666
|
}
|
|
101250
101667
|
|
|
@@ -102813,6 +103230,22 @@ export class OpenWardrobeUI extends ActionBool {
|
|
|
102813
103230
|
"SetProperties"(): void;
|
|
102814
103231
|
}
|
|
102815
103232
|
|
|
103233
|
+
export class OpenWorldActivityRequest {
|
|
103234
|
+
"cooldown": number;
|
|
103235
|
+
"districts": CyberEnums.gamedataDistrict[];
|
|
103236
|
+
"force": boolean;
|
|
103237
|
+
"kind": string;
|
|
103238
|
+
}
|
|
103239
|
+
|
|
103240
|
+
export class OpenWorldActivityState {
|
|
103241
|
+
"completed": boolean;
|
|
103242
|
+
"discovered": boolean;
|
|
103243
|
+
"district": CyberEnums.gamedataDistrict;
|
|
103244
|
+
"kind": string;
|
|
103245
|
+
"name": string;
|
|
103246
|
+
"timestamp": number;
|
|
103247
|
+
}
|
|
103248
|
+
|
|
102816
103249
|
export class OpenWorldMapDeviceAction extends ActionBool {
|
|
102817
103250
|
"fastTravelPointData": Handle<gameFastTravelPointData>;
|
|
102818
103251
|
"GetTweakDBChoiceRecord"(): string;
|
|
@@ -102829,6 +103262,16 @@ export class OpenWorldMapNotificationAction extends GenericNotificationBaseActio
|
|
|
102829
103262
|
"ShowWorldMap"(): void;
|
|
102830
103263
|
}
|
|
102831
103264
|
|
|
103265
|
+
export class OpenWorldSystem extends gameIGameSystem {
|
|
103266
|
+
"DumpActivities"(): void;
|
|
103267
|
+
"GetActivities"(): OpenWorldActivityState[];
|
|
103268
|
+
"GetActivity"(arg: string): OpenWorldActivityState;
|
|
103269
|
+
"IsReady"(): boolean;
|
|
103270
|
+
"PrintActivities"(arg?: OpenWorldActivityRequest): void;
|
|
103271
|
+
"StartActivities"(arg?: OpenWorldActivityRequest): number;
|
|
103272
|
+
"StartActivity"(arg: string, arg?: boolean): CyberEnums.OpenWorldActivityResult;
|
|
103273
|
+
}
|
|
103274
|
+
|
|
102832
103275
|
export class OperationExecutionData extends IScriptable {
|
|
102833
103276
|
"delay": number;
|
|
102834
103277
|
"delayID": gameDelayID;
|
|
@@ -105525,6 +105968,8 @@ export class physicsTraceResult {
|
|
|
105525
105968
|
"material": string;
|
|
105526
105969
|
"normal": Vector3;
|
|
105527
105970
|
"position": Vector3;
|
|
105971
|
+
static "GetHitEntity"(self: ScriptRef<physicsTraceResult>): Handle<entEntity>;
|
|
105972
|
+
static "GetHitObject"(self: ScriptRef<physicsTraceResult>): Handle<ISerializable>;
|
|
105528
105973
|
static "IsValid"(self: physicsTraceResult): boolean;
|
|
105529
105974
|
}
|
|
105530
105975
|
|
|
@@ -107885,6 +108330,18 @@ export class populationModifier extends ISerializable {
|
|
|
107885
108330
|
export class populationPopulationSpawnParameter extends gameObjectSpawnParameter {
|
|
107886
108331
|
}
|
|
107887
108332
|
|
|
108333
|
+
export class PopulationSpawnerWrapper extends IScriptable {
|
|
108334
|
+
"GetActiveEntityIDs"(): entEntityID[];
|
|
108335
|
+
"GetAppearanceName"(): string;
|
|
108336
|
+
"GetRecordID"(): string;
|
|
108337
|
+
"GetReservedEntityIDs"(): entEntityID[];
|
|
108338
|
+
"GetRestoredEntityIDs"(): entEntityID[];
|
|
108339
|
+
"GetSpawnedEntityIDs"(): entEntityID[];
|
|
108340
|
+
"GetTransform"(): WorldTransform;
|
|
108341
|
+
"IsActive"(): boolean;
|
|
108342
|
+
"IsInitialized"(): boolean;
|
|
108343
|
+
}
|
|
108344
|
+
|
|
107888
108345
|
export class populationSpawnModifier extends populationModifier {
|
|
107889
108346
|
"spawnParameter": Handle<gameObjectSpawnParameter>;
|
|
107890
108347
|
}
|
|
@@ -113539,6 +113996,7 @@ export class questQuestsHelper extends questIQuestsHelper {
|
|
|
113539
113996
|
}
|
|
113540
113997
|
|
|
113541
113998
|
export class questQuestsSystem extends questIQuestsSystem {
|
|
113999
|
+
"ExecuteNode"(arg: Handle<questNodeDefinition>, arg?: string): void;
|
|
113542
114000
|
"GetFact"(factName: string): number;
|
|
113543
114001
|
"GetFactStr"(factName: string): number;
|
|
113544
114002
|
"GetGameplayTimerData"(): void;
|
|
@@ -117579,7 +118037,10 @@ export class redResourceReferenceScriptToken {
|
|
|
117579
118037
|
static "FromHash"(hash: number): redResourceReferenceScriptToken;
|
|
117580
118038
|
static "FromName"(path: string): redResourceReferenceScriptToken;
|
|
117581
118039
|
static "FromString"(path: string): redResourceReferenceScriptToken;
|
|
118040
|
+
static "GetHash"(arg: string): number;
|
|
118041
|
+
static "GetHash"(arg: redResourceReferenceScriptToken): number;
|
|
117582
118042
|
static "IsValid"(path: redResourceReferenceScriptToken): boolean;
|
|
118043
|
+
static "ToString"(arg: redResourceReferenceScriptToken): string;
|
|
117583
118044
|
}
|
|
117584
118045
|
|
|
117585
118046
|
export class ResRef extends redResourceReferenceScriptToken {
|
|
@@ -117594,6 +118055,17 @@ export class redStageMessage {
|
|
|
117594
118055
|
|
|
117595
118056
|
export class redTagList {
|
|
117596
118057
|
"tags": string[];
|
|
118058
|
+
static "AddTag"(self: ScriptRef<redTagList>, arg: string): void;
|
|
118059
|
+
static "AddTags"(self: ScriptRef<redTagList>, arg: string[]): void;
|
|
118060
|
+
static "Clear"(self: ScriptRef<redTagList>): void;
|
|
118061
|
+
static "HasTag"(self: ScriptRef<redTagList>, arg: string): boolean;
|
|
118062
|
+
static "HasTags"(self: ScriptRef<redTagList>, arg: string[]): boolean;
|
|
118063
|
+
static "IsEmpty"(self: ScriptRef<redTagList>): boolean;
|
|
118064
|
+
static "RemoveTag"(self: ScriptRef<redTagList>, arg: string): void;
|
|
118065
|
+
static "RemoveTags"(self: ScriptRef<redTagList>, arg: string[]): void;
|
|
118066
|
+
}
|
|
118067
|
+
|
|
118068
|
+
export class TagList extends redTagList {
|
|
117597
118069
|
}
|
|
117598
118070
|
|
|
117599
118071
|
export class redTagSystem {
|
|
@@ -117663,6 +118135,85 @@ export class ReevaluatePresetEvent extends redEvent {
|
|
|
117663
118135
|
export class ReevaluateTargetsEvent extends redEvent {
|
|
117664
118136
|
}
|
|
117665
118137
|
|
|
118138
|
+
export class Reflection {
|
|
118139
|
+
static "GetBitfield"(arg: string): Handle<ReflectionBitfield>;
|
|
118140
|
+
static "GetBitfields"(): Handle<ReflectionBitfield>[];
|
|
118141
|
+
static "GetClass"(arg: string): Handle<ReflectionClass>;
|
|
118142
|
+
static "GetClasses"(): Handle<ReflectionClass>[];
|
|
118143
|
+
static "GetClassOf"(arg: any, arg?: boolean): Handle<ReflectionClass>;
|
|
118144
|
+
static "GetDerivedClasses"(arg: string): Handle<ReflectionClass>[];
|
|
118145
|
+
static "GetEnum"(arg: string): Handle<ReflectionEnum>;
|
|
118146
|
+
static "GetEnums"(): Handle<ReflectionEnum>[];
|
|
118147
|
+
static "GetGlobalFunction"(arg: string): Handle<ReflectionStaticFunc>;
|
|
118148
|
+
static "GetGlobalFunctions"(): Handle<ReflectionStaticFunc>[];
|
|
118149
|
+
static "GetType"(arg: string): Handle<ReflectionType>;
|
|
118150
|
+
static "GetTypeOf"(arg: any): Handle<ReflectionType>;
|
|
118151
|
+
static "GetTypes"(): Handle<ReflectionType>[];
|
|
118152
|
+
}
|
|
118153
|
+
|
|
118154
|
+
export class ReflectionBitfield extends ReflectionType {
|
|
118155
|
+
"GetConstants"(): Handle<ReflectionConst>[];
|
|
118156
|
+
"IsNative"(): boolean;
|
|
118157
|
+
}
|
|
118158
|
+
|
|
118159
|
+
export class ReflectionClass extends ReflectionType {
|
|
118160
|
+
"GetAlias"(): string;
|
|
118161
|
+
"GetFunction"(arg: string): Handle<ReflectionMemberFunc>;
|
|
118162
|
+
"GetFunctions"(): Handle<ReflectionMemberFunc>[];
|
|
118163
|
+
"GetParent"(): Handle<ReflectionClass>;
|
|
118164
|
+
"GetProperties"(): Handle<ReflectionProp>[];
|
|
118165
|
+
"GetProperty"(arg: string): Handle<ReflectionProp>;
|
|
118166
|
+
"GetStaticFunction"(arg: string): Handle<ReflectionStaticFunc>;
|
|
118167
|
+
"GetStaticFunctions"(): Handle<ReflectionStaticFunc>[];
|
|
118168
|
+
"IsA"(arg: string): boolean;
|
|
118169
|
+
"IsAbstract"(): boolean;
|
|
118170
|
+
"IsNative"(): boolean;
|
|
118171
|
+
"MakeHandle"(): Handle<ISerializable>;
|
|
118172
|
+
}
|
|
118173
|
+
|
|
118174
|
+
export class ReflectionConst extends IScriptable {
|
|
118175
|
+
"GetName"(): string;
|
|
118176
|
+
"GetValue"(): number;
|
|
118177
|
+
}
|
|
118178
|
+
|
|
118179
|
+
export class ReflectionEnum extends ReflectionType {
|
|
118180
|
+
"AddConstant"(arg: string, arg: number): void;
|
|
118181
|
+
"GetConstants"(): Handle<ReflectionConst>[];
|
|
118182
|
+
"IsNative"(): boolean;
|
|
118183
|
+
}
|
|
118184
|
+
|
|
118185
|
+
export class ReflectionFunc extends IScriptable {
|
|
118186
|
+
"GetFullName"(): string;
|
|
118187
|
+
"GetName"(): string;
|
|
118188
|
+
"GetParameters"(): Handle<ReflectionProp>[];
|
|
118189
|
+
"GetReturnType"(): Handle<ReflectionType>;
|
|
118190
|
+
"IsNative"(): boolean;
|
|
118191
|
+
"IsStatic"(): boolean;
|
|
118192
|
+
}
|
|
118193
|
+
|
|
118194
|
+
export class ReflectionMemberFunc extends ReflectionFunc {
|
|
118195
|
+
"Call"(arg: Handle<IScriptable>, arg?: any[], arg?: ScriptRef<boolean>): any;
|
|
118196
|
+
}
|
|
118197
|
+
|
|
118198
|
+
export class ReflectionProp extends IScriptable {
|
|
118199
|
+
"GetName"(): string;
|
|
118200
|
+
"GetType"(): Handle<ReflectionType>;
|
|
118201
|
+
"GetValue"(arg: any): any;
|
|
118202
|
+
"IsNative"(): boolean;
|
|
118203
|
+
"SetValue"(arg: any, arg: any): void;
|
|
118204
|
+
}
|
|
118205
|
+
|
|
118206
|
+
export class ReflectionStaticFunc extends ReflectionFunc {
|
|
118207
|
+
"Call"(arg?: any[], arg?: ScriptRef<boolean>): any;
|
|
118208
|
+
}
|
|
118209
|
+
|
|
118210
|
+
export class ReflectionType extends IScriptable {
|
|
118211
|
+
"GetInnerType"(): Handle<ReflectionType>;
|
|
118212
|
+
"GetMetaType"(): CyberEnums.ERTTIType;
|
|
118213
|
+
"GetName"(): string;
|
|
118214
|
+
"MakeInstance"(): any;
|
|
118215
|
+
}
|
|
118216
|
+
|
|
117666
118217
|
export class Reflector extends BlindingLight {
|
|
117667
118218
|
"GetDevicePS"(): Handle<ReflectorControllerPS>;
|
|
117668
118219
|
"OnDistraction"(evt: Handle<Distraction>): boolean;
|
|
@@ -119084,6 +119635,9 @@ export class ResetScannerPreset extends redEvent {
|
|
|
119084
119635
|
"GetFriendlyDescription"(): string;
|
|
119085
119636
|
}
|
|
119086
119637
|
|
|
119638
|
+
export class ResetSecuritySystemNetwork extends redEvent {
|
|
119639
|
+
}
|
|
119640
|
+
|
|
119087
119641
|
export class ResetSignal extends redEvent {
|
|
119088
119642
|
"signalName": string;
|
|
119089
119643
|
"signalTable": Handle<gameBoolSignalTable>;
|
|
@@ -119131,11 +119685,67 @@ export class ResolveSensorDeviceBehaviour extends redEvent {
|
|
|
119131
119685
|
export class ResolveSkillchecksEvent extends redEvent {
|
|
119132
119686
|
}
|
|
119133
119687
|
|
|
119688
|
+
export class ResourceAsyncRef {
|
|
119689
|
+
static "GetHash"(self: ScriptRef<ResourceAsyncRef>): number;
|
|
119690
|
+
static "GetPath"(self: ScriptRef<ResourceAsyncRef>): redResourceReferenceScriptToken;
|
|
119691
|
+
static "IsEmpty"(self: ScriptRef<ResourceAsyncRef>): boolean;
|
|
119692
|
+
static "SetPath"(self: ScriptRef<ResourceAsyncRef>, arg: redResourceReferenceScriptToken): void;
|
|
119693
|
+
}
|
|
119694
|
+
|
|
119695
|
+
export class ResourceDepot extends IScriptable {
|
|
119696
|
+
"ArchiveExists"(arg: string): boolean;
|
|
119697
|
+
"LoadReference"(arg: ResRef<CResource>): Handle<ResourceToken>;
|
|
119698
|
+
"LoadResource"(arg: ResAsyncRef<CResource>): Handle<ResourceToken>;
|
|
119699
|
+
"RemoveResourceFromCache"(arg: ResAsyncRef<CResource>): void;
|
|
119700
|
+
"ResourceExists"(arg: ResAsyncRef<CResource>): boolean;
|
|
119701
|
+
}
|
|
119702
|
+
|
|
119703
|
+
export class ResourceEvent extends CallbackSystemEvent {
|
|
119704
|
+
"GetPath"(): ResAsyncRef<CResource>;
|
|
119705
|
+
"GetResource"(): Handle<CResource>;
|
|
119706
|
+
}
|
|
119707
|
+
|
|
119708
|
+
export class ResourceHelper {
|
|
119709
|
+
static "GetReferencePath"(arg: Handle<ISerializable>, arg: string): redResourceReferenceScriptToken;
|
|
119710
|
+
static "GetReferenceResource"(arg: Handle<ISerializable>, arg: string): Handle<CResource>;
|
|
119711
|
+
static "IsReferenceLoaded"(arg: Handle<ISerializable>, arg: string): boolean;
|
|
119712
|
+
static "LoadReferenceResource"(arg: Handle<ISerializable>, arg: string, arg: ResAsyncRef<CResource>, arg?: boolean): boolean;
|
|
119713
|
+
}
|
|
119714
|
+
|
|
119134
119715
|
export class ResourceLibraryComponent extends gameScriptableComponent {
|
|
119135
119716
|
"resources": FxResourceMapData[];
|
|
119136
119717
|
"GetResource"(key: string): gameFxResource;
|
|
119137
119718
|
}
|
|
119138
119719
|
|
|
119720
|
+
export class ResourceRef {
|
|
119721
|
+
static "FromVariant"(arg: any): ResourceRef;
|
|
119722
|
+
static "GetHash"(self: ScriptRef<ResourceRef>): number;
|
|
119723
|
+
static "GetPath"(self: ScriptRef<ResourceRef>): redResourceReferenceScriptToken;
|
|
119724
|
+
static "GetResource"(self: ScriptRef<ResourceRef>): Handle<CResource>;
|
|
119725
|
+
static "GetToken"(self: ScriptRef<ResourceRef>): Handle<ResourceToken>;
|
|
119726
|
+
static "IsEmpty"(self: ScriptRef<ResourceRef>): boolean;
|
|
119727
|
+
static "IsFailed"(self: ScriptRef<ResourceRef>): boolean;
|
|
119728
|
+
static "IsLoaded"(self: ScriptRef<ResourceRef>): boolean;
|
|
119729
|
+
static "LoadPath"(self: ScriptRef<ResourceRef>, arg: redResourceReferenceScriptToken): void;
|
|
119730
|
+
static "ToVariant"(self: ScriptRef<ResourceRef>, arg: string): any;
|
|
119731
|
+
}
|
|
119732
|
+
|
|
119733
|
+
export class ResourceTarget extends CallbackSystemTarget {
|
|
119734
|
+
static "Path"(arg: ResAsyncRef<CResource>): Handle<ResourceTarget>;
|
|
119735
|
+
static "Type"(arg: string): Handle<ResourceTarget>;
|
|
119736
|
+
}
|
|
119737
|
+
|
|
119738
|
+
export class ResourceToken extends IScriptable {
|
|
119739
|
+
static "FromResRef"(arg: ResRef<CResource>): Handle<ResourceToken>;
|
|
119740
|
+
"GetHash"(): number;
|
|
119741
|
+
"GetPath"(): ResAsyncRef<CResource>;
|
|
119742
|
+
"GetResource"(): Handle<CResource>;
|
|
119743
|
+
"IsFailed"(): boolean;
|
|
119744
|
+
"IsFinished"(): boolean;
|
|
119745
|
+
"IsLoaded"(): boolean;
|
|
119746
|
+
"RegisterCallback"(arg: Handle<IScriptable>, arg: string): void;
|
|
119747
|
+
}
|
|
119748
|
+
|
|
119139
119749
|
export class RespawnHealthConsumable extends redEvent {
|
|
119140
119750
|
}
|
|
119141
119751
|
|
|
@@ -122967,7 +123577,7 @@ export class scnChangeIdleAnimEvent extends scnPlayAnimEvent {
|
|
|
122967
123577
|
"isEnabled": boolean;
|
|
122968
123578
|
}
|
|
122969
123579
|
|
|
122970
|
-
export class scnChatter {
|
|
123580
|
+
export class scnChatter extends ISerializable {
|
|
122971
123581
|
"id": number;
|
|
122972
123582
|
"voicesetComponent": WeakHandle<scnVoicesetComponent>;
|
|
122973
123583
|
}
|
|
@@ -125691,6 +126301,17 @@ export class ScriptableDeviceComponentPS extends SharedGameplayPS {
|
|
|
125691
126301
|
"UpdateQuickHackableState"(isQuickHackable: boolean): void;
|
|
125692
126302
|
}
|
|
125693
126303
|
|
|
126304
|
+
export class ScriptableService extends IScriptable {
|
|
126305
|
+
}
|
|
126306
|
+
|
|
126307
|
+
export class ScriptableServiceContainer extends gameIGameSystem {
|
|
126308
|
+
"GetService"(arg: string): Handle<ScriptableService>;
|
|
126309
|
+
}
|
|
126310
|
+
|
|
126311
|
+
export class ScriptableServiceContainerState extends IScriptable {
|
|
126312
|
+
"services": Handle<ScriptableService>[];
|
|
126313
|
+
}
|
|
126314
|
+
|
|
125694
126315
|
export class ScriptableVirtualCameraViewComponent extends entVirtualCameraViewComponent {
|
|
125695
126316
|
"OnFeedChange"(evt: Handle<FeedEvent>): boolean;
|
|
125696
126317
|
}
|
|
@@ -126365,6 +126986,7 @@ export class ScriptGameInstance {
|
|
|
126365
126986
|
static "GetAudioSystem"(): Handle<gameGameAudioSystem>;
|
|
126366
126987
|
static "GetAutoSaveSystem"(): Handle<gameAutoSaveSystem>;
|
|
126367
126988
|
static "GetBlackboardSystem"(): Handle<gameBlackboardSystem>;
|
|
126989
|
+
static "GetCallbackSystem"(): Handle<CallbackSystem>;
|
|
126368
126990
|
static "GetCameraSystem"(): Handle<gameCameraSystem>;
|
|
126369
126991
|
static "GetCharacterCustomizationSystem"(): Handle<gameuiICharacterCustomizationSystem>;
|
|
126370
126992
|
static "GetCombatQueriesSystem"(): Handle<gameICombatQueriesSystem>;
|
|
@@ -126380,6 +127002,7 @@ export class ScriptGameInstance {
|
|
|
126380
127002
|
static "GetDebugVisualizerSystem"(): Handle<gameDebugVisualizerSystem>;
|
|
126381
127003
|
static "GetDelaySystem"(): Handle<gameDelaySystem>;
|
|
126382
127004
|
static "GetDeviceSystem"(): Handle<gameDeviceSystem>;
|
|
127005
|
+
static "GetDynamicEntitySystem"(): Handle<DynamicEntitySystem>;
|
|
126383
127006
|
static "GetDynamicSpawnSystem"(): Handle<gameDynamicSpawnSystem>;
|
|
126384
127007
|
static "GetEffectorSystem"(): Handle<gameEffectorSystem>;
|
|
126385
127008
|
static "GetEngineTime"(): EngineTime;
|
|
@@ -126397,6 +127020,7 @@ export class ScriptGameInstance {
|
|
|
126397
127020
|
static "GetGlobalTVSystem"(): Handle<gameuiGlobalTvSystem>;
|
|
126398
127021
|
static "GetGodModeSystem"(): Handle<gameGodModeSystem>;
|
|
126399
127022
|
static "GetInfluenceMapSystem"(): Handle<gameinfluenceSystem>;
|
|
127023
|
+
static "GetInkSystem"(): Handle<inkSystem>;
|
|
126400
127024
|
static "GetInteractionManager"(): Handle<gameinteractionsCManager>;
|
|
126401
127025
|
static "GetInventoryManager"(): Handle<gameInventoryManager>;
|
|
126402
127026
|
static "GetJournalManager"(): Handle<gameJournalManager>;
|
|
@@ -126410,6 +127034,7 @@ export class ScriptGameInstance {
|
|
|
126410
127034
|
static "GetNodeTransform"(nodeRef: worldGlobalNodeRef): [boolean, Transform];
|
|
126411
127035
|
static "GetObjectPoolSystem"(): Handle<gameObjectPoolSystem>;
|
|
126412
127036
|
static "GetOnlineSystem"(): Handle<gameIOnlineSystem>;
|
|
127037
|
+
static "GetOpenWorldSystem"(): Handle<OpenWorldSystem>;
|
|
126413
127038
|
static "GetPersistencySystem"(): Handle<gamePersistencySystem>;
|
|
126414
127039
|
static "GetPhoneManager"(): Handle<questPhoneManager>;
|
|
126415
127040
|
static "GetPhotoModeSystem"(): Handle<gamePhotoModeSystem>;
|
|
@@ -126426,16 +127051,19 @@ export class ScriptGameInstance {
|
|
|
126426
127051
|
static "GetRacingSystem"(): Handle<vehicleRacingSystem>;
|
|
126427
127052
|
static "GetRazerChromaEffectsSystem"(): Handle<gameRazerChromaEffectsSystem>;
|
|
126428
127053
|
static "GetReactionSystem"(): Handle<AIReactionSystem>;
|
|
127054
|
+
static "GetResourceDepot"(): Handle<ResourceDepot>;
|
|
126429
127055
|
static "GetRestrictMovementAreaManager"(): Handle<AIGuardAreaManager>;
|
|
126430
127056
|
static "GetRuntimeInfo"(): Handle<worldRuntimeInfo>;
|
|
126431
127057
|
static "GetSafeAreaManager"(): Handle<AISafeAreaManager>;
|
|
126432
127058
|
static "GetSceneSystem"(): Handle<scnISceneSystem>;
|
|
127059
|
+
static "GetScriptableServiceContainer"(): Handle<ScriptableServiceContainer>;
|
|
126433
127060
|
static "GetScriptableSystemsContainer"(): Handle<gameScriptableSystemsContainer>;
|
|
126434
127061
|
static "GetScriptsDebugOverlaySystem"(): Handle<gameScriptsDebugOverlaySystem>;
|
|
126435
127062
|
static "GetSenseManager"(): Handle<senseCSenseManager>;
|
|
126436
127063
|
static "GetSettingsSystem"(): Handle<userSettingsUserSettings>;
|
|
126437
127064
|
static "GetSimTime"(): EngineTime;
|
|
126438
127065
|
static "GetSpatialQueriesSystem"(): Handle<gameSpatialQueriesSystem>;
|
|
127066
|
+
static "GetStaticEntitySystem"(): Handle<StaticEntitySystem>;
|
|
126439
127067
|
static "GetStatPoolsSystem"(): Handle<gameStatPoolsSystem>;
|
|
126440
127068
|
static "GetStatsDataSystem"(): Handle<gameStatsDataSystem>;
|
|
126441
127069
|
static "GetStatsSystem"(): Handle<gameStatsSystem>;
|
|
@@ -126457,6 +127085,7 @@ export class ScriptGameInstance {
|
|
|
126457
127085
|
static "GetWatchdogSystem"(): Handle<gameIWatchdogSystem>;
|
|
126458
127086
|
static "GetWeatherSystem"(): Handle<worldWeatherScriptInterface>;
|
|
126459
127087
|
static "GetWorkspotSystem"(): Handle<gameWorkspotGameSystem>;
|
|
127088
|
+
static "GetWorldStateSystem"(): Handle<WorldStateSystem>;
|
|
126460
127089
|
static "IsRestoringState"(): boolean;
|
|
126461
127090
|
static "IsSavingLocked"(): [boolean, gameSaveLock[]];
|
|
126462
127091
|
static "IsTweakContentTagActive"(): void;
|
|
@@ -131770,6 +132399,16 @@ export class SortOut_Contagion extends gameEffectObjectGroupFilter_Scripted {
|
|
|
131770
132399
|
"SortTargetsByStatusEffect"(targets: ScriptRef<Handle<ScriptedPuppet>[]>): Handle<ScriptedPuppet>[];
|
|
131771
132400
|
}
|
|
131772
132401
|
|
|
132402
|
+
export class SoundBankEntry {
|
|
132403
|
+
"isResident": boolean;
|
|
132404
|
+
"name": string;
|
|
132405
|
+
"resourcePath": redResourceReferenceScriptToken;
|
|
132406
|
+
}
|
|
132407
|
+
|
|
132408
|
+
export class SoundBanksJson extends CResource {
|
|
132409
|
+
"soundBanks": SoundBankEntry[];
|
|
132410
|
+
}
|
|
132411
|
+
|
|
131773
132412
|
export class SoundFxFactsSet extends BunkerSystemsFactsSet {
|
|
131774
132413
|
}
|
|
131775
132414
|
|
|
@@ -132441,6 +133080,12 @@ export class StackRelaxedState extends StackChangeHighLevelStateAbstract {
|
|
|
132441
133080
|
"GetDesiredHighLevelState"(context: AIbehaviorScriptExecutionContext): CyberEnums.gamedataNPCHighLevelState;
|
|
132442
133081
|
}
|
|
132443
133082
|
|
|
133083
|
+
export class StackTraceEntry {
|
|
133084
|
+
"class": string;
|
|
133085
|
+
"function": string;
|
|
133086
|
+
"object": WeakHandle<IScriptable>;
|
|
133087
|
+
}
|
|
133088
|
+
|
|
132444
133089
|
export class Stagger extends ReactionTransition {
|
|
132445
133090
|
"textLayerId": number;
|
|
132446
133091
|
"OnEnter"(stateContext: Handle<gamestateMachineStateContextScript>, scriptInterface: Handle<gamestateMachineGameScriptInterface>): void;
|
|
@@ -132760,6 +133405,43 @@ export class StatHitPrereqCondition extends BaseHitPrereqCondition {
|
|
|
132760
133405
|
"CompareValues"(hitEvent: Handle<gameeventsHitEvent>): boolean;
|
|
132761
133406
|
}
|
|
132762
133407
|
|
|
133408
|
+
export class StaticEntitySpec extends IScriptable {
|
|
133409
|
+
"appearanceName": string;
|
|
133410
|
+
"attached": boolean;
|
|
133411
|
+
"orientation": Quaternion;
|
|
133412
|
+
"position": Vector4;
|
|
133413
|
+
"tags": string[];
|
|
133414
|
+
"templatePath": ResAsyncRef<CResource>;
|
|
133415
|
+
}
|
|
133416
|
+
|
|
133417
|
+
export class StaticEntitySystem extends gameIGameSystem {
|
|
133418
|
+
"AssignTag"(arg: entEntityID, arg: string): boolean;
|
|
133419
|
+
"AttachEntity"(arg: entEntityID): boolean;
|
|
133420
|
+
"AttachTagged"(arg: string): void;
|
|
133421
|
+
"DespawnEntity"(arg: entEntityID): boolean;
|
|
133422
|
+
"DespawnTagged"(arg: string): void;
|
|
133423
|
+
"DetachEntity"(arg: entEntityID): boolean;
|
|
133424
|
+
"DetachTagged"(arg: string): void;
|
|
133425
|
+
"GetEntity"(arg: entEntityID): Handle<entEntity>;
|
|
133426
|
+
"GetTagged"(arg: string): Handle<entEntity>[];
|
|
133427
|
+
"GetTaggedID"(arg: string): entEntityID;
|
|
133428
|
+
"GetTaggedIDs"(arg: string): entEntityID[];
|
|
133429
|
+
"GetTags"(arg: entEntityID): string[];
|
|
133430
|
+
"IsManaged"(arg: entEntityID): boolean;
|
|
133431
|
+
"IsPopulated"(arg: string): boolean;
|
|
133432
|
+
"IsReady"(): boolean;
|
|
133433
|
+
"IsSpawned"(arg: entEntityID): boolean;
|
|
133434
|
+
"IsSpawning"(arg: entEntityID): boolean;
|
|
133435
|
+
"IsTagged"(arg: entEntityID, arg: string): boolean;
|
|
133436
|
+
"SpawnEntity"(arg: Handle<StaticEntitySpec>): entEntityID;
|
|
133437
|
+
"UnassignTag"(arg: entEntityID, arg: string): boolean;
|
|
133438
|
+
}
|
|
133439
|
+
|
|
133440
|
+
export class StaticEntityTarget extends CallbackSystemTarget {
|
|
133441
|
+
static "Tag"(arg: string): Handle<StaticEntityTarget>;
|
|
133442
|
+
static "Tags"(arg: string[]): Handle<StaticEntityTarget>;
|
|
133443
|
+
}
|
|
133444
|
+
|
|
132763
133445
|
export class StaticPlatform extends InteractiveDevice {
|
|
132764
133446
|
"componentsToToggle": Handle<entIComponent>[];
|
|
132765
133447
|
"componentsToToggleNames": string[];
|
|
@@ -140497,7 +141179,6 @@ export class userSettingsVar extends IScriptable {
|
|
|
140497
141179
|
"GetOrder"(): number;
|
|
140498
141180
|
"GetType"(): CyberEnums.InGameConfigVarType;
|
|
140499
141181
|
"GetUpdatePolicy"(): CyberEnums.InGameConfigVarUpdatePolicy;
|
|
140500
|
-
"GetValue"(): boolean;
|
|
140501
141182
|
"GetWarning"(): string;
|
|
140502
141183
|
"HasRequestedValue"(): boolean;
|
|
140503
141184
|
"IsDisabled"(): boolean;
|
|
@@ -140511,7 +141192,6 @@ export class userSettingsVar extends IScriptable {
|
|
|
140511
141192
|
"ListHasDisplayValues"(): boolean;
|
|
140512
141193
|
"RestoreDefault"(): boolean;
|
|
140513
141194
|
"SetEnabled"(isEnabled: boolean): void;
|
|
140514
|
-
"SetValue"(value: boolean): void;
|
|
140515
141195
|
"SetVisible"(isVisible: boolean): void;
|
|
140516
141196
|
"WasModifiedSinceLastSave"(): boolean;
|
|
140517
141197
|
}
|
|
@@ -140957,7 +141637,12 @@ export class AVObject extends vehicleAVBaseObject {
|
|
|
140957
141637
|
}
|
|
140958
141638
|
|
|
140959
141639
|
export class vehicleBaseObject extends gameObject {
|
|
141640
|
+
"acceleration": number;
|
|
140960
141641
|
"archetype": ResRef<AIArchetype>;
|
|
141642
|
+
"burnout": number;
|
|
141643
|
+
"deceleration": number;
|
|
141644
|
+
"isOnGround": boolean;
|
|
141645
|
+
"isReversing": boolean;
|
|
140961
141646
|
"isVehicleOnStateLocked": boolean;
|
|
140962
141647
|
"crowdMemberComponent": Handle<CrowdMemberBaseComponent>;
|
|
140963
141648
|
"abandoned": boolean;
|
|
@@ -143202,6 +143887,11 @@ export class vehicleLightComponent extends gameLightComponent {
|
|
|
143202
143887
|
"lightType": CyberEnums.vehicleELightType;
|
|
143203
143888
|
}
|
|
143204
143889
|
|
|
143890
|
+
export class VehicleLightControlEvent extends EntityLifecycleEvent {
|
|
143891
|
+
"IsEnabled"(): boolean;
|
|
143892
|
+
"IsLightType"(arg: CyberEnums.vehicleELightType): boolean;
|
|
143893
|
+
}
|
|
143894
|
+
|
|
143205
143895
|
export class VehicleLightQuestChangeColorEvent extends redEvent {
|
|
143206
143896
|
"color": Color;
|
|
143207
143897
|
"forceOverrideEmissiveColor": boolean;
|
|
@@ -145661,9 +146351,6 @@ export class VoiceOverQuickHackFeedbackEvent extends redEvent {
|
|
|
145661
146351
|
"voName": string;
|
|
145662
146352
|
}
|
|
145663
146353
|
|
|
145664
|
-
export class Void {
|
|
145665
|
-
}
|
|
145666
|
-
|
|
145667
146354
|
export class VolCloudsCustomData extends ICameraStorageCustomData {
|
|
145668
146355
|
}
|
|
145669
146356
|
|
|
@@ -147289,6 +147976,11 @@ export class workWorkspotGlobalProp {
|
|
|
147289
147976
|
}
|
|
147290
147977
|
|
|
147291
147978
|
export class workWorkspotInstance extends ISerializable {
|
|
147979
|
+
"animName": string;
|
|
147980
|
+
"entryId": workWorkEntryId;
|
|
147981
|
+
"idleAnim": string;
|
|
147982
|
+
"resource": Handle<workWorkspotResource>;
|
|
147983
|
+
"tree": Handle<workWorkspotTree>;
|
|
147292
147984
|
}
|
|
147293
147985
|
|
|
147294
147986
|
export class workWorkspotItemOverride {
|
|
@@ -148413,9 +149105,11 @@ export class worldForbiddenAreaNotifierInstance extends worldITriggerAreaNotifer
|
|
|
148413
149105
|
}
|
|
148414
149106
|
|
|
148415
149107
|
export class WorldFunctionalTests extends IScriptable {
|
|
148416
|
-
"DespawnEntity"(): void;
|
|
149108
|
+
static "DespawnEntity"(entity: Handle<entEntity>): void;
|
|
148417
149109
|
"GetCurrentLightColor"(): void;
|
|
148418
|
-
"
|
|
149110
|
+
"Internal_DespawnEntity"(entity: Handle<entEntity>): void;
|
|
149111
|
+
"Internal_SpawnEntity"(entityPath: string, worldTransform: WorldTransform, unknown: string): void;
|
|
149112
|
+
static "SpawnEntity"(entityPath: string, worldTransform: WorldTransform, unknown: string): entEntityID;
|
|
148419
149113
|
"TogglePrefabVariant"(): void;
|
|
148420
149114
|
}
|
|
148421
149115
|
|
|
@@ -148617,6 +149311,12 @@ export class worldIMarker extends ISerializable {
|
|
|
148617
149311
|
}
|
|
148618
149312
|
|
|
148619
149313
|
export class worldINodeInstance extends ISerializable {
|
|
149314
|
+
"GetGlobalNodeID"(): worldGlobalNodeID;
|
|
149315
|
+
"GetNode"(): Handle<worldNode>;
|
|
149316
|
+
"GetProxyNodeID"(): worldGlobalNodeID;
|
|
149317
|
+
"GetScale"(): Vector3;
|
|
149318
|
+
"GetStreamingDistance"(): number;
|
|
149319
|
+
"GetTransform"(): Transform;
|
|
148620
149320
|
}
|
|
148621
149321
|
|
|
148622
149322
|
export class worldINodeInstanceRegistry extends worldIRuntimeSystem {
|
|
@@ -149135,6 +149835,34 @@ export class worldNodeEditorData extends ISerializable {
|
|
|
149135
149835
|
export class worldNodeInstanceRegistry extends worldINodeInstanceRegistry {
|
|
149136
149836
|
}
|
|
149137
149837
|
|
|
149838
|
+
export class WorldNodeSetupWrapper extends IScriptable {
|
|
149839
|
+
"GetGlobalNodeID"(): worldGlobalNodeID;
|
|
149840
|
+
"GetNode"(): Handle<worldNode>;
|
|
149841
|
+
"GetNodeIndex"(): number;
|
|
149842
|
+
"GetNodeRef"(): string;
|
|
149843
|
+
"GetOrientation"(): Quaternion;
|
|
149844
|
+
"GetPosition"(): Vector4;
|
|
149845
|
+
"GetProxyNodeID"(): worldGlobalNodeID;
|
|
149846
|
+
"GetScale"(): Vector3;
|
|
149847
|
+
"GetSecondaryRefPointDistance"(): number;
|
|
149848
|
+
"GetSecondaryRefPointPosition"(): Vector3;
|
|
149849
|
+
"GetStreamingDistance"(): number;
|
|
149850
|
+
"GetStreamingPosition"(): Vector3;
|
|
149851
|
+
"GetTransform"(): Transform;
|
|
149852
|
+
"SetGlobalNodeID"(arg: worldGlobalNodeID): void;
|
|
149853
|
+
"SetNodeIndex"(arg: number): void;
|
|
149854
|
+
"SetNodeRef"(arg: string): void;
|
|
149855
|
+
"SetOrientation"(arg: Quaternion): void;
|
|
149856
|
+
"SetPosition"(arg: Vector4): void;
|
|
149857
|
+
"SetProxyNodeID"(arg: worldGlobalNodeID): void;
|
|
149858
|
+
"SetScale"(arg: Vector3): void;
|
|
149859
|
+
"SetSecondaryRefPointDistance"(arg: number): void;
|
|
149860
|
+
"SetSecondaryRefPointPosition"(arg: Vector3): void;
|
|
149861
|
+
"SetStreamingDistance"(arg: number): void;
|
|
149862
|
+
"SetStreamingPosition"(arg: Vector3): void;
|
|
149863
|
+
"SetTransform"(arg: Transform): void;
|
|
149864
|
+
}
|
|
149865
|
+
|
|
149138
149866
|
export class worldNodesGroup extends ISerializable {
|
|
149139
149867
|
"customPivotOffset": Transform;
|
|
149140
149868
|
"groupUniqueId": string;
|
|
@@ -149891,6 +150619,22 @@ export class worldSplineNode extends worldSocketNode {
|
|
|
149891
150619
|
export class worldSplineNodeInstance extends worldSocketNodeInstance {
|
|
149892
150620
|
}
|
|
149893
150621
|
|
|
150622
|
+
export class WorldStateSystem extends gameIGameSystem {
|
|
150623
|
+
"ActivateCommunity"(arg: string, arg?: string): void;
|
|
150624
|
+
"ActivatePopulationSpawner"(arg: string): void;
|
|
150625
|
+
"DeactivateCommunity"(arg: string, arg?: string): void;
|
|
150626
|
+
"DeactivatePopulationSpawner"(arg: string): void;
|
|
150627
|
+
"GetCommunity"(arg: string): Handle<CommunityWrapper>;
|
|
150628
|
+
"GetPopulationSpawner"(arg: string): Handle<PopulationSpawnerWrapper>;
|
|
150629
|
+
"GetStreamingWorld"(): Handle<worldStreamingWorld>;
|
|
150630
|
+
"IsReady"(): boolean;
|
|
150631
|
+
"ResetCommunity"(arg: string): void;
|
|
150632
|
+
"ResetPopulationSpawner"(arg: string): void;
|
|
150633
|
+
"SetCommunityPhase"(arg: string, arg: string, arg: string): void;
|
|
150634
|
+
"ToggleNode"(arg: string, arg: boolean): void;
|
|
150635
|
+
"ToggleVariant"(arg: string, arg: string, arg: boolean): void;
|
|
150636
|
+
}
|
|
150637
|
+
|
|
149894
150638
|
export class worldStaticCollisionShapeCategories_CollisionNode {
|
|
149895
150639
|
"arr": any;
|
|
149896
150640
|
}
|
|
@@ -150124,6 +150868,14 @@ export class worldStreamingSector extends CResource {
|
|
|
150124
150868
|
"externInplaceResource": ResAsyncRef<worldStreamingSectorInplaceContent>;
|
|
150125
150869
|
"level": number;
|
|
150126
150870
|
"localInplaceResource": ResRef<CResource>[];
|
|
150871
|
+
"GetNode"(arg: number): Handle<worldNode>;
|
|
150872
|
+
"GetNodeCount"(): number;
|
|
150873
|
+
"GetNodeRef"(arg: number): string;
|
|
150874
|
+
"GetNodeRefCount"(): number;
|
|
150875
|
+
"GetNodeRefs"(): string[];
|
|
150876
|
+
"GetNodes"(): Handle<worldNode>[];
|
|
150877
|
+
"GetNodeSetup"(arg: number): Handle<WorldNodeSetupWrapper>;
|
|
150878
|
+
"GetNodeSetupCount"(): number;
|
|
150127
150879
|
}
|
|
150128
150880
|
|
|
150129
150881
|
export class worldStreamingSectorDescriptor {
|
|
@@ -150638,11 +151390,15 @@ export class worldWeatherAreaNotifierInstance extends worldITriggerAreaNotiferIn
|
|
|
150638
151390
|
}
|
|
150639
151391
|
|
|
150640
151392
|
export class worldWeatherScriptInterface extends IScriptable {
|
|
151393
|
+
"GetEnvironmentDefinition"(): Handle<worldEnvironmentDefinition>;
|
|
150641
151394
|
"GetRainIntensity"(): number;
|
|
150642
151395
|
"GetRainIntensityType"(): CyberEnums.worldRainIntensity;
|
|
150643
151396
|
"GetRainMoisture"(): number;
|
|
150644
151397
|
"GetRainPuddles"(): number;
|
|
151398
|
+
"GetWeatherState"(): Handle<worldWeatherState>;
|
|
150645
151399
|
"RegisterWeatherListener"(callback: Handle<worldWeatherScriptListener>): number;
|
|
151400
|
+
"ResetWeather"(arg?: boolean, arg?: number): boolean;
|
|
151401
|
+
"SetWeather"(arg: string, arg?: number, arg?: number): boolean;
|
|
150646
151402
|
"UnregisterWeatherListener"(callbackId: number): void;
|
|
150647
151403
|
}
|
|
150648
151404
|
|
|
@@ -153411,6 +154167,7 @@ export interface MpClasses {
|
|
|
153411
154167
|
AvStartDescentSFXBehaviour: typeof AvStartDescentSFXBehaviour;
|
|
153412
154168
|
AwacsAlertNotification: typeof AwacsAlertNotification;
|
|
153413
154169
|
AwacsAlertNotificationViewData: typeof AwacsAlertNotificationViewData;
|
|
154170
|
+
AxisInputEvent: typeof AxisInputEvent;
|
|
153414
154171
|
BackActionCallback: typeof BackActionCallback;
|
|
153415
154172
|
BackdoorDataStreamController: typeof BackdoorDataStreamController;
|
|
153416
154173
|
BackDoorDeviceBlackboardDef: typeof BackDoorDeviceBlackboardDef;
|
|
@@ -153624,6 +154381,10 @@ export interface MpClasses {
|
|
|
153624
154381
|
CActionScriptProxy: typeof CActionScriptProxy;
|
|
153625
154382
|
CallAction: typeof CallAction;
|
|
153626
154383
|
CallActionWidgetController: typeof CallActionWidgetController;
|
|
154384
|
+
CallbackSystem: CallbackSystem;
|
|
154385
|
+
CallbackSystemEvent: typeof CallbackSystemEvent;
|
|
154386
|
+
CallbackSystemHandler: typeof CallbackSystemHandler;
|
|
154387
|
+
CallbackSystemTarget: typeof CallbackSystemTarget;
|
|
153627
154388
|
CallElevator: typeof CallElevator;
|
|
153628
154389
|
CallOffReactionAction: typeof CallOffReactionAction;
|
|
153629
154390
|
CallPolice: typeof CallPolice;
|
|
@@ -153979,6 +154740,7 @@ export interface MpClasses {
|
|
|
153979
154740
|
Coder: typeof Coder;
|
|
153980
154741
|
CoderController: typeof CoderController;
|
|
153981
154742
|
CoderControllerPS: typeof CoderControllerPS;
|
|
154743
|
+
Codeware: typeof Codeware;
|
|
153982
154744
|
CodexAddRecordRequest: typeof CodexAddRecordRequest;
|
|
153983
154745
|
CodexBaseGameController: typeof CodexBaseGameController;
|
|
153984
154746
|
CodexEntryData: typeof CodexEntryData;
|
|
@@ -154060,6 +154822,7 @@ export interface MpClasses {
|
|
|
154060
154822
|
communityCommunitySpawnSetTemplate: typeof communityCommunitySpawnSetTemplate;
|
|
154061
154823
|
communityCommunityTemplate: typeof communityCommunityTemplate;
|
|
154062
154824
|
communityCommunityTemplateData: typeof communityCommunityTemplateData;
|
|
154825
|
+
CommunityEntryWrapper: typeof CommunityEntryWrapper;
|
|
154063
154826
|
communityPatrolInitializer: typeof communityPatrolInitializer;
|
|
154064
154827
|
communityPhaseTimePeriod: typeof communityPhaseTimePeriod;
|
|
154065
154828
|
CommunityProxyPS: typeof CommunityProxyPS;
|
|
@@ -154071,6 +154834,7 @@ export interface MpClasses {
|
|
|
154071
154834
|
communitySquadInitializerEntry: typeof communitySquadInitializerEntry;
|
|
154072
154835
|
communityTimePeriod: typeof communityTimePeriod;
|
|
154073
154836
|
communityVoiceTagInitializer: typeof communityVoiceTagInitializer;
|
|
154837
|
+
CommunityWrapper: typeof CommunityWrapper;
|
|
154074
154838
|
CompanionHealthBarGameController: typeof CompanionHealthBarGameController;
|
|
154075
154839
|
CompanionHealthStatListener: typeof CompanionHealthStatListener;
|
|
154076
154840
|
CompareArguments: typeof CompareArguments;
|
|
@@ -154085,6 +154849,7 @@ export interface MpClasses {
|
|
|
154085
154849
|
CompassController: typeof CompassController;
|
|
154086
154850
|
CompleteCommand: typeof CompleteCommand;
|
|
154087
154851
|
CompletionOfFirstEquipRequest: typeof CompletionOfFirstEquipRequest;
|
|
154852
|
+
ComponentTarget: typeof ComponentTarget;
|
|
154088
154853
|
Computer: typeof Computer;
|
|
154089
154854
|
ComputerBannerWidgetController: typeof ComputerBannerWidgetController;
|
|
154090
154855
|
ComputerController: typeof ComputerController;
|
|
@@ -154371,6 +155136,16 @@ export interface MpClasses {
|
|
|
154371
155136
|
cursorDeviceGameController: typeof cursorDeviceGameController;
|
|
154372
155137
|
CursorGameController: typeof CursorGameController;
|
|
154373
155138
|
CursorRootController: typeof CursorRootController;
|
|
155139
|
+
CurveDataFloat: typeof CurveDataFloat;
|
|
155140
|
+
CurveDataHDRColor: typeof CurveDataHDRColor;
|
|
155141
|
+
CurveDataVector2: typeof CurveDataVector2;
|
|
155142
|
+
CurveDataVector3: typeof CurveDataVector3;
|
|
155143
|
+
CurveDataVector4: typeof CurveDataVector4;
|
|
155144
|
+
CurvePointFloat: typeof CurvePointFloat;
|
|
155145
|
+
CurvePointHDRColor: typeof CurvePointHDRColor;
|
|
155146
|
+
CurvePointVector2: typeof CurvePointVector2;
|
|
155147
|
+
CurvePointVector3: typeof CurvePointVector3;
|
|
155148
|
+
CurvePointVector4: typeof CurvePointVector4;
|
|
154374
155149
|
CurveResourceSet: typeof CurveResourceSet;
|
|
154375
155150
|
CurveResourceSetEntry: typeof CurveResourceSetEntry;
|
|
154376
155151
|
CurveSet: typeof CurveSet;
|
|
@@ -154835,6 +155610,12 @@ export interface MpClasses {
|
|
|
154835
155610
|
DumpBodyWorkspotDelayEvent: typeof DumpBodyWorkspotDelayEvent;
|
|
154836
155611
|
DurabilityComponent: typeof DurabilityComponent;
|
|
154837
155612
|
DurabilityLimitReach: typeof DurabilityLimitReach;
|
|
155613
|
+
DynamicEntityEvent: typeof DynamicEntityEvent;
|
|
155614
|
+
DynamicEntitySpec: typeof DynamicEntitySpec;
|
|
155615
|
+
DynamicEntityState: typeof DynamicEntityState;
|
|
155616
|
+
DynamicEntitySystem: DynamicEntitySystem;
|
|
155617
|
+
DynamicEntitySystemPS: typeof DynamicEntitySystemPS;
|
|
155618
|
+
DynamicEntityTarget: typeof DynamicEntityTarget;
|
|
154838
155619
|
DynamicTexture: typeof DynamicTexture;
|
|
154839
155620
|
E3EndMenuGameController: typeof E3EndMenuGameController;
|
|
154840
155621
|
E3Hack_QuestPlayAnimationKillNPC: typeof E3Hack_QuestPlayAnimationKillNPC;
|
|
@@ -155228,13 +156009,20 @@ export interface MpClasses {
|
|
|
155228
156009
|
EntityAttachementComponentPS: typeof EntityAttachementComponentPS;
|
|
155229
156010
|
EntityAttachementData: typeof EntityAttachementData;
|
|
155230
156011
|
EntityAttachementRequestEvent: typeof EntityAttachementRequestEvent;
|
|
156012
|
+
EntityBuilderAppearanceWrapper: typeof EntityBuilderAppearanceWrapper;
|
|
156013
|
+
EntityBuilderEvent: typeof EntityBuilderEvent;
|
|
156014
|
+
EntityBuilderTemplateWrapper: typeof EntityBuilderTemplateWrapper;
|
|
156015
|
+
EntityBuilderWrapper: typeof EntityBuilderWrapper;
|
|
156016
|
+
EntityComponentEvent: typeof EntityComponentEvent;
|
|
155231
156017
|
EntityHasVisualTag: typeof EntityHasVisualTag;
|
|
155232
156018
|
EntityHasVisualTagPrereqState: typeof EntityHasVisualTagPrereqState;
|
|
155233
156019
|
EntityHealthBarGameController: typeof EntityHealthBarGameController;
|
|
155234
156020
|
EntityHealthStatListener: typeof EntityHealthStatListener;
|
|
156021
|
+
EntityLifecycleEvent: typeof EntityLifecycleEvent;
|
|
155235
156022
|
EntityNoticedPlayerPrereq: typeof EntityNoticedPlayerPrereq;
|
|
155236
156023
|
EntityNoticedPlayerPrereqState: typeof EntityNoticedPlayerPrereqState;
|
|
155237
156024
|
EntityStubComponent: typeof EntityStubComponent;
|
|
156025
|
+
EntityTarget: typeof EntityTarget;
|
|
155238
156026
|
entIVelocityProvider: typeof entIVelocityProvider;
|
|
155239
156027
|
IVelocityProvider: typeof IVelocityProvider;
|
|
155240
156028
|
entIVisualComponent: typeof entIVisualComponent;
|
|
@@ -155457,6 +156245,7 @@ export interface MpClasses {
|
|
|
155457
156245
|
ExecutePuppetActionEvent: typeof ExecutePuppetActionEvent;
|
|
155458
156246
|
ExecuteVehicleVisualCustomizationEvent: typeof ExecuteVehicleVisualCustomizationEvent;
|
|
155459
156247
|
ExecuteVisualCustomizationWithDelay: typeof ExecuteVisualCustomizationWithDelay;
|
|
156248
|
+
exEntitySpawner: exEntitySpawner;
|
|
155460
156249
|
ExhaustedDecisions: typeof ExhaustedDecisions;
|
|
155461
156250
|
ExhaustedEvents: typeof ExhaustedEvents;
|
|
155462
156251
|
ExitCombatOnOpticalCamoActivatedEvent: typeof ExitCombatOnOpticalCamoActivatedEvent;
|
|
@@ -160081,6 +160870,7 @@ export interface MpClasses {
|
|
|
160081
160870
|
ServerBlackboardUpdateProxy: ServerBlackboardUpdateProxy;
|
|
160082
160871
|
GameSessionDataModule: typeof GameSessionDataModule;
|
|
160083
160872
|
GameSessionDataSystem: typeof GameSessionDataSystem;
|
|
160873
|
+
GameSessionEvent: typeof GameSessionEvent;
|
|
160084
160874
|
gameSetAggressiveMask: typeof gameSetAggressiveMask;
|
|
160085
160875
|
SetAggressiveMask: typeof SetAggressiveMask;
|
|
160086
160876
|
gameSetAsQuestImportantEvent: typeof gameSetAsQuestImportantEvent;
|
|
@@ -162124,6 +162914,7 @@ export interface MpClasses {
|
|
|
162124
162914
|
inkComboBoxController: typeof inkComboBoxController;
|
|
162125
162915
|
inkComboBoxObjectController: typeof inkComboBoxObjectController;
|
|
162126
162916
|
inkComboBoxVisibleChangedCallback: typeof inkComboBoxVisibleChangedCallback;
|
|
162917
|
+
inkComponent: typeof inkComponent;
|
|
162127
162918
|
inkCompositionInterpolator: typeof inkCompositionInterpolator;
|
|
162128
162919
|
inkCompositionPreset: typeof inkCompositionPreset;
|
|
162129
162920
|
inkCompositionPreviewSettings: typeof inkCompositionPreviewSettings;
|
|
@@ -162297,6 +163088,7 @@ export interface MpClasses {
|
|
|
162297
163088
|
inkIWorldWidgetComponentWrapper: typeof inkIWorldWidgetComponentWrapper;
|
|
162298
163089
|
inkKeyBindingEvent: typeof inkKeyBindingEvent;
|
|
162299
163090
|
KeyBindingEvent: typeof KeyBindingEvent;
|
|
163091
|
+
inkKeyInputEvent: typeof inkKeyInputEvent;
|
|
162300
163092
|
inkLanguageDefinition: typeof inkLanguageDefinition;
|
|
162301
163093
|
inkLanguageFont: typeof inkLanguageFont;
|
|
162302
163094
|
inkLanguageFontMapper: typeof inkLanguageFontMapper;
|
|
@@ -162318,6 +163110,7 @@ export interface MpClasses {
|
|
|
162318
163110
|
inkLayerProxy: typeof inkLayerProxy;
|
|
162319
163111
|
inkLayersResource: typeof inkLayersResource;
|
|
162320
163112
|
inkLayerSystemConnection: typeof inkLayerSystemConnection;
|
|
163113
|
+
inkLayerWrapper: typeof inkLayerWrapper;
|
|
162321
163114
|
inkLeafWidget: typeof inkLeafWidget;
|
|
162322
163115
|
inkLeafWidgetReference: typeof inkLeafWidgetReference;
|
|
162323
163116
|
inkLeafRef: typeof inkLeafRef;
|
|
@@ -162509,6 +163302,7 @@ export interface MpClasses {
|
|
|
162509
163302
|
inkStyleTheme: typeof inkStyleTheme;
|
|
162510
163303
|
inkStyleThemeDescriptor: typeof inkStyleThemeDescriptor;
|
|
162511
163304
|
inkSubtitlesLanguageOverride: typeof inkSubtitlesLanguageOverride;
|
|
163305
|
+
inkSystem: inkSystem;
|
|
162512
163306
|
inkSystemNotificationEvt: typeof inkSystemNotificationEvt;
|
|
162513
163307
|
inkSystemNotificationsLayer: typeof inkSystemNotificationsLayer;
|
|
162514
163308
|
inkSystemNotificationsLayerDefinition: typeof inkSystemNotificationsLayerDefinition;
|
|
@@ -162631,8 +163425,10 @@ export interface MpClasses {
|
|
|
162631
163425
|
inkWidgetRef: typeof inkWidgetRef;
|
|
162632
163426
|
inkWidgetSlotAttachmentParams: typeof inkWidgetSlotAttachmentParams;
|
|
162633
163427
|
inkWidgetSlotController: typeof inkWidgetSlotController;
|
|
163428
|
+
inkWidgetSpawnEvent: typeof inkWidgetSpawnEvent;
|
|
162634
163429
|
inkWidgetsSet: typeof inkWidgetsSet;
|
|
162635
163430
|
inkWidgetStateAnimatedTransition: typeof inkWidgetStateAnimatedTransition;
|
|
163431
|
+
inkWidgetTarget: typeof inkWidgetTarget;
|
|
162636
163432
|
inkWidgetUtils: typeof inkWidgetUtils;
|
|
162637
163433
|
WidgetUtils: typeof WidgetUtils;
|
|
162638
163434
|
inkWindow: typeof inkWindow;
|
|
@@ -162664,6 +163460,7 @@ export interface MpClasses {
|
|
|
162664
163460
|
InputProgressView: typeof InputProgressView;
|
|
162665
163461
|
InputSchemesDef: typeof InputSchemesDef;
|
|
162666
163462
|
InputSettingsVarListener: typeof InputSettingsVarListener;
|
|
163463
|
+
InputTarget: typeof InputTarget;
|
|
162667
163464
|
InRelaxedHighLevelState: typeof InRelaxedHighLevelState;
|
|
162668
163465
|
InReloadUpperBodyState: typeof InReloadUpperBodyState;
|
|
162669
163466
|
InShootUpperBodyState: typeof InShootUpperBodyState;
|
|
@@ -163072,6 +163869,7 @@ export interface MpClasses {
|
|
|
163072
163869
|
keyboardHintGameController: typeof keyboardHintGameController;
|
|
163073
163870
|
KeyboardHintItemController: typeof KeyboardHintItemController;
|
|
163074
163871
|
KeyboardHoldIndicatorGameController: typeof KeyboardHoldIndicatorGameController;
|
|
163872
|
+
KeyInputEvent: typeof KeyInputEvent;
|
|
163075
163873
|
KeypadButtonSpawnData: typeof KeypadButtonSpawnData;
|
|
163076
163874
|
KeypadDeviceController: typeof KeypadDeviceController;
|
|
163077
163875
|
KillEntity: typeof KillEntity;
|
|
@@ -163926,7 +164724,6 @@ export interface MpClasses {
|
|
|
163926
164724
|
NoReactionPerformedRequest: typeof NoReactionPerformedRequest;
|
|
163927
164725
|
NormalDeathTask: typeof NormalDeathTask;
|
|
163928
164726
|
NormalizeAndSaveSwayEvent: typeof NormalizeAndSaveSwayEvent;
|
|
163929
|
-
Nothing: typeof Nothing;
|
|
163930
164727
|
NotifiedSecSysAboutCombat: typeof NotifiedSecSysAboutCombat;
|
|
163931
164728
|
NotifyHighlightedDevice: typeof NotifyHighlightedDevice;
|
|
163932
164729
|
NotifyNearbyAboutCombatEvent: typeof NotifyNearbyAboutCombatEvent;
|
|
@@ -164091,8 +164888,11 @@ export interface MpClasses {
|
|
|
164091
164888
|
OpenTarotCollectionNotificationAction: typeof OpenTarotCollectionNotificationAction;
|
|
164092
164889
|
OpenVendorUI: typeof OpenVendorUI;
|
|
164093
164890
|
OpenWardrobeUI: typeof OpenWardrobeUI;
|
|
164891
|
+
OpenWorldActivityRequest: typeof OpenWorldActivityRequest;
|
|
164892
|
+
OpenWorldActivityState: typeof OpenWorldActivityState;
|
|
164094
164893
|
OpenWorldMapDeviceAction: typeof OpenWorldMapDeviceAction;
|
|
164095
164894
|
OpenWorldMapNotificationAction: typeof OpenWorldMapNotificationAction;
|
|
164895
|
+
OpenWorldSystem: OpenWorldSystem;
|
|
164096
164896
|
OperationExecutionData: typeof OperationExecutionData;
|
|
164097
164897
|
OpticalCamoChargeStatListener: typeof OpticalCamoChargeStatListener;
|
|
164098
164898
|
OpticalCamoListener: typeof OpticalCamoListener;
|
|
@@ -164490,6 +165290,7 @@ export interface MpClasses {
|
|
|
164490
165290
|
PonrRewardsGameController: typeof PonrRewardsGameController;
|
|
164491
165291
|
populationModifier: typeof populationModifier;
|
|
164492
165292
|
populationPopulationSpawnParameter: typeof populationPopulationSpawnParameter;
|
|
165293
|
+
PopulationSpawnerWrapper: typeof PopulationSpawnerWrapper;
|
|
164493
165294
|
populationSpawnModifier: typeof populationSpawnModifier;
|
|
164494
165295
|
PopupStateUtils: typeof PopupStateUtils;
|
|
164495
165296
|
Portal: typeof Portal;
|
|
@@ -165811,6 +166612,7 @@ export interface MpClasses {
|
|
|
165811
166612
|
ResRef: typeof ResRef;
|
|
165812
166613
|
redStageMessage: typeof redStageMessage;
|
|
165813
166614
|
redTagList: typeof redTagList;
|
|
166615
|
+
TagList: typeof TagList;
|
|
165814
166616
|
redTagSystem: typeof redTagSystem;
|
|
165815
166617
|
redTaskNameMessage: typeof redTaskNameMessage;
|
|
165816
166618
|
redTaskProgressMessage: typeof redTaskProgressMessage;
|
|
@@ -165829,6 +166631,16 @@ export interface MpClasses {
|
|
|
165829
166631
|
ReevaluateOxygenEvent: typeof ReevaluateOxygenEvent;
|
|
165830
166632
|
ReevaluatePresetEvent: typeof ReevaluatePresetEvent;
|
|
165831
166633
|
ReevaluateTargetsEvent: typeof ReevaluateTargetsEvent;
|
|
166634
|
+
Reflection: typeof Reflection;
|
|
166635
|
+
ReflectionBitfield: typeof ReflectionBitfield;
|
|
166636
|
+
ReflectionClass: typeof ReflectionClass;
|
|
166637
|
+
ReflectionConst: typeof ReflectionConst;
|
|
166638
|
+
ReflectionEnum: typeof ReflectionEnum;
|
|
166639
|
+
ReflectionFunc: typeof ReflectionFunc;
|
|
166640
|
+
ReflectionMemberFunc: typeof ReflectionMemberFunc;
|
|
166641
|
+
ReflectionProp: typeof ReflectionProp;
|
|
166642
|
+
ReflectionStaticFunc: typeof ReflectionStaticFunc;
|
|
166643
|
+
ReflectionType: typeof ReflectionType;
|
|
165832
166644
|
Reflector: typeof Reflector;
|
|
165833
166645
|
ReflectorController: typeof ReflectorController;
|
|
165834
166646
|
ReflectorControllerPS: typeof ReflectorControllerPS;
|
|
@@ -166085,6 +166897,7 @@ export interface MpClasses {
|
|
|
166085
166897
|
ResetReactionEvent: typeof ResetReactionEvent;
|
|
166086
166898
|
ResetReprimandEscalation: typeof ResetReprimandEscalation;
|
|
166087
166899
|
ResetScannerPreset: typeof ResetScannerPreset;
|
|
166900
|
+
ResetSecuritySystemNetwork: typeof ResetSecuritySystemNetwork;
|
|
166088
166901
|
ResetSignal: typeof ResetSignal;
|
|
166089
166902
|
ResetStrongHitsReceivedRequest: typeof ResetStrongHitsReceivedRequest;
|
|
166090
166903
|
ResetTickEvent: typeof ResetTickEvent;
|
|
@@ -166098,7 +166911,14 @@ export interface MpClasses {
|
|
|
166098
166911
|
ResolveQuickHackRadialRequest: typeof ResolveQuickHackRadialRequest;
|
|
166099
166912
|
ResolveSensorDeviceBehaviour: typeof ResolveSensorDeviceBehaviour;
|
|
166100
166913
|
ResolveSkillchecksEvent: typeof ResolveSkillchecksEvent;
|
|
166914
|
+
ResourceAsyncRef: typeof ResourceAsyncRef;
|
|
166915
|
+
ResourceDepot: typeof ResourceDepot;
|
|
166916
|
+
ResourceEvent: typeof ResourceEvent;
|
|
166917
|
+
ResourceHelper: typeof ResourceHelper;
|
|
166101
166918
|
ResourceLibraryComponent: typeof ResourceLibraryComponent;
|
|
166919
|
+
ResourceRef: typeof ResourceRef;
|
|
166920
|
+
ResourceTarget: typeof ResourceTarget;
|
|
166921
|
+
ResourceToken: typeof ResourceToken;
|
|
166102
166922
|
RespawnHealthConsumable: typeof RespawnHealthConsumable;
|
|
166103
166923
|
ResponseEvent: typeof ResponseEvent;
|
|
166104
166924
|
resResourceMetricsReportGenerator: typeof resResourceMetricsReportGenerator;
|
|
@@ -166773,6 +167593,9 @@ export interface MpClasses {
|
|
|
166773
167593
|
ScriptableDeviceAction: typeof ScriptableDeviceAction;
|
|
166774
167594
|
ScriptableDeviceComponent: typeof ScriptableDeviceComponent;
|
|
166775
167595
|
ScriptableDeviceComponentPS: typeof ScriptableDeviceComponentPS;
|
|
167596
|
+
ScriptableService: typeof ScriptableService;
|
|
167597
|
+
ScriptableServiceContainer: ScriptableServiceContainer;
|
|
167598
|
+
ScriptableServiceContainerState: typeof ScriptableServiceContainerState;
|
|
166776
167599
|
ScriptableVirtualCameraViewComponent: typeof ScriptableVirtualCameraViewComponent;
|
|
166777
167600
|
ScriptConditionTypeBase: typeof ScriptConditionTypeBase;
|
|
166778
167601
|
ScriptedPuppet: typeof ScriptedPuppet;
|
|
@@ -167333,6 +168156,8 @@ export interface MpClasses {
|
|
|
167333
168156
|
SortComparatorTemplate: typeof SortComparatorTemplate;
|
|
167334
168157
|
SortingDropdownData: typeof SortingDropdownData;
|
|
167335
168158
|
SortOut_Contagion: typeof SortOut_Contagion;
|
|
168159
|
+
SoundBankEntry: typeof SoundBankEntry;
|
|
168160
|
+
SoundBanksJson: typeof SoundBanksJson;
|
|
167336
168161
|
SoundFxFactsSet: typeof SoundFxFactsSet;
|
|
167337
168162
|
SoundSystem: typeof SoundSystem;
|
|
167338
168163
|
SoundSystemController: typeof SoundSystemController;
|
|
@@ -167425,6 +168250,7 @@ export interface MpClasses {
|
|
|
167425
168250
|
StackChangeHighLevelStateAbstract: typeof StackChangeHighLevelStateAbstract;
|
|
167426
168251
|
StackClearCombatTarget: typeof StackClearCombatTarget;
|
|
167427
168252
|
StackRelaxedState: typeof StackRelaxedState;
|
|
168253
|
+
StackTraceEntry: typeof StackTraceEntry;
|
|
167428
168254
|
Stagger: typeof Stagger;
|
|
167429
168255
|
StaggerDecisions: typeof StaggerDecisions;
|
|
167430
168256
|
StaggerReactionTask: typeof StaggerReactionTask;
|
|
@@ -167460,6 +168286,9 @@ export interface MpClasses {
|
|
|
167460
168286
|
StatCheckPrereqState: typeof StatCheckPrereqState;
|
|
167461
168287
|
State: typeof State;
|
|
167462
168288
|
StatHitPrereqCondition: typeof StatHitPrereqCondition;
|
|
168289
|
+
StaticEntitySpec: typeof StaticEntitySpec;
|
|
168290
|
+
StaticEntitySystem: StaticEntitySystem;
|
|
168291
|
+
StaticEntityTarget: typeof StaticEntityTarget;
|
|
167463
168292
|
StaticPlatform: typeof StaticPlatform;
|
|
167464
168293
|
StaticPlatformController: typeof StaticPlatformController;
|
|
167465
168294
|
StaticPlatformControllerPS: typeof StaticPlatformControllerPS;
|
|
@@ -168582,6 +169411,7 @@ export interface MpClasses {
|
|
|
168582
169411
|
vehicleJoinTrafficVehicleEvent: typeof vehicleJoinTrafficVehicleEvent;
|
|
168583
169412
|
JoinTrafficVehicleEvent: typeof JoinTrafficVehicleEvent;
|
|
168584
169413
|
vehicleLightComponent: typeof vehicleLightComponent;
|
|
169414
|
+
VehicleLightControlEvent: typeof VehicleLightControlEvent;
|
|
168585
169415
|
VehicleLightQuestChangeColorEvent: typeof VehicleLightQuestChangeColorEvent;
|
|
168586
169416
|
VehicleLightQuestToggleEvent: typeof VehicleLightQuestToggleEvent;
|
|
168587
169417
|
VehicleLightSetupEvent: typeof VehicleLightSetupEvent;
|
|
@@ -168878,7 +169708,6 @@ export interface MpClasses {
|
|
|
168878
169708
|
VisualTagsPrereq: typeof VisualTagsPrereq;
|
|
168879
169709
|
VisualTooltipController: typeof VisualTooltipController;
|
|
168880
169710
|
VoiceOverQuickHackFeedbackEvent: typeof VoiceOverQuickHackFeedbackEvent;
|
|
168881
|
-
Void: typeof Void;
|
|
168882
169711
|
VolCloudsCustomData: typeof VolCloudsCustomData;
|
|
168883
169712
|
VolFogCustomData: typeof VolFogCustomData;
|
|
168884
169713
|
VolumetricFogAreaSettings: typeof VolumetricFogAreaSettings;
|
|
@@ -169384,6 +170213,7 @@ export interface MpClasses {
|
|
|
169384
170213
|
worldNode: typeof worldNode;
|
|
169385
170214
|
worldNodeEditorData: typeof worldNodeEditorData;
|
|
169386
170215
|
worldNodeInstanceRegistry: typeof worldNodeInstanceRegistry;
|
|
170216
|
+
WorldNodeSetupWrapper: typeof WorldNodeSetupWrapper;
|
|
169387
170217
|
worldNodesGroup: typeof worldNodesGroup;
|
|
169388
170218
|
worldNodesGroupPath: typeof worldNodesGroupPath;
|
|
169389
170219
|
worldNodeTransform: typeof worldNodeTransform;
|
|
@@ -169528,6 +170358,7 @@ export interface MpClasses {
|
|
|
169528
170358
|
worldSpeedSplineNodeSpeedRestriction: typeof worldSpeedSplineNodeSpeedRestriction;
|
|
169529
170359
|
worldSplineNode: typeof worldSplineNode;
|
|
169530
170360
|
worldSplineNodeInstance: typeof worldSplineNodeInstance;
|
|
170361
|
+
WorldStateSystem: WorldStateSystem;
|
|
169531
170362
|
worldStaticCollisionShapeCategories_CollisionNode: typeof worldStaticCollisionShapeCategories_CollisionNode;
|
|
169532
170363
|
worldStaticDecalNode: typeof worldStaticDecalNode;
|
|
169533
170364
|
worldStaticDecalNodeInstance: typeof worldStaticDecalNodeInstance;
|