brs-js 3.0.1 → 3.1.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/dist/dist.js +5 -5
- package/dist/dist.js.map +1 -1
- package/dist/dist.mjs +6521 -297
- package/dist/dist.mjs.map +1 -1
- package/dist/dist.node.js +5 -5
- package/dist/dist.node.js.map +1 -1
- package/dist/dist.web.js +5 -5
- package/dist/dist.web.js.map +1 -1
- package/dist/src/brdb/catalog.d.ts +410 -0
- package/dist/src/brdb/catalog.d.ts.map +1 -1
- package/dist/src/brdb/componentDb.d.ts +3036 -0
- package/dist/src/brdb/componentDb.d.ts.map +1 -1
- package/dist/src/brdb/componentTypes.d.ts +1591 -0
- package/dist/src/brdb/componentTypes.d.ts.map +1 -0
- package/dist/src/brdb/index.d.ts +4 -1
- package/dist/src/brdb/index.d.ts.map +1 -1
- package/dist/src/brdb/schema.d.ts +4 -2
- package/dist/src/brdb/schema.d.ts.map +1 -1
- package/dist/src/brdb/world.d.ts +19 -6
- package/dist/src/brdb/world.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,1591 @@
|
|
|
1
|
+
import type { BrdbVariant } from './schema';
|
|
2
|
+
export type BrickComponentData_AudioEmitter = {
|
|
3
|
+
bEnabled: boolean;
|
|
4
|
+
AudioDescriptor: number | null;
|
|
5
|
+
VolumeMultiplier: number;
|
|
6
|
+
PitchMultiplier: number;
|
|
7
|
+
InnerRadius: number;
|
|
8
|
+
MaxDistance: number;
|
|
9
|
+
bSpatialization: boolean;
|
|
10
|
+
FocusAzimuth: number;
|
|
11
|
+
NonFocusAzimuth: number;
|
|
12
|
+
NonFocusVolumeAttenuation: number;
|
|
13
|
+
};
|
|
14
|
+
export type BrickComponentData_Bearing = {
|
|
15
|
+
bLimitAngle: boolean;
|
|
16
|
+
LimitAngle: number;
|
|
17
|
+
bAnglesArePercentages: boolean;
|
|
18
|
+
bReversed: boolean;
|
|
19
|
+
Damping: number;
|
|
20
|
+
};
|
|
21
|
+
export type BrickComponentData_Button = {
|
|
22
|
+
PressSound: number | null;
|
|
23
|
+
ReleaseSound: number | null;
|
|
24
|
+
bAllowNearbyInteraction: boolean;
|
|
25
|
+
bHiddenInteraction: boolean;
|
|
26
|
+
PromptCustomLabel: string;
|
|
27
|
+
};
|
|
28
|
+
export type BrickComponentData_CheckPoint = {
|
|
29
|
+
bRotatePlayerGravityOnSpawn: boolean;
|
|
30
|
+
};
|
|
31
|
+
export type BrickComponentData_Damage = {
|
|
32
|
+
Damage: number;
|
|
33
|
+
RepeatDelay: number;
|
|
34
|
+
Message: string;
|
|
35
|
+
ConsoleTag: string;
|
|
36
|
+
};
|
|
37
|
+
export type BrickComponentData_Interact = {
|
|
38
|
+
InteractSound: number | null;
|
|
39
|
+
Message: string;
|
|
40
|
+
ConsoleTag: string;
|
|
41
|
+
bAllowNearbyInteraction: boolean;
|
|
42
|
+
bHiddenInteraction: boolean;
|
|
43
|
+
PromptCustomLabel: string;
|
|
44
|
+
};
|
|
45
|
+
export type BrickComponentData_Internal_AttachedZone = {
|
|
46
|
+
ZoneStartDistance: number;
|
|
47
|
+
ZoneEndDistance: number;
|
|
48
|
+
bIsBuildingZone: boolean;
|
|
49
|
+
bIsLooseZone: boolean;
|
|
50
|
+
bIsShareZone: boolean;
|
|
51
|
+
bDetectPlayers: boolean;
|
|
52
|
+
bDetectPlayers1: boolean;
|
|
53
|
+
bDetectPlayers2: boolean;
|
|
54
|
+
bDetectPlayers3: boolean;
|
|
55
|
+
bDetectEntities: boolean;
|
|
56
|
+
bDetectProjectiles: boolean;
|
|
57
|
+
TagFilter: string;
|
|
58
|
+
};
|
|
59
|
+
export type BrickComponentData_Internal_CharacterZoneEvent = {
|
|
60
|
+
bCollisionEnabled_Player: boolean;
|
|
61
|
+
bCollisionEnabled_Player1: boolean;
|
|
62
|
+
bCollisionEnabled_Player2: boolean;
|
|
63
|
+
bCollisionEnabled_Player3: boolean;
|
|
64
|
+
};
|
|
65
|
+
export type BrickComponentData_Internal_EntityZoneEvent = {};
|
|
66
|
+
export type BrickComponentData_Internal_InputSplitter_V2 = {};
|
|
67
|
+
export type BrickComponentData_Internal_Microchip = {};
|
|
68
|
+
export type BrickComponentData_Internal_MicrochipInput = {
|
|
69
|
+
PortLabel: string;
|
|
70
|
+
};
|
|
71
|
+
export type BrickComponentData_Internal_MicrochipOutput = {
|
|
72
|
+
PortLabel: string;
|
|
73
|
+
};
|
|
74
|
+
export type BrickComponentData_Internal_ProjectileZoneEvent = {};
|
|
75
|
+
export type BrickComponentData_Internal_ReadBrickGrid = {};
|
|
76
|
+
export type BrickComponentData_Internal_ZoneEvent = {};
|
|
77
|
+
export type BrickComponentData_Motor = {
|
|
78
|
+
bEnabled: boolean;
|
|
79
|
+
Speed: number;
|
|
80
|
+
Power: number;
|
|
81
|
+
bLimitAngle: boolean;
|
|
82
|
+
LimitAngle: number;
|
|
83
|
+
bAnglesArePercentages: boolean;
|
|
84
|
+
bReversed: boolean;
|
|
85
|
+
Damping: number;
|
|
86
|
+
};
|
|
87
|
+
export type BrickComponentData_MotorSlider = {
|
|
88
|
+
bEnabled: boolean;
|
|
89
|
+
Speed: number;
|
|
90
|
+
Power: number;
|
|
91
|
+
bPositionsArePercentages: boolean;
|
|
92
|
+
bReversed: boolean;
|
|
93
|
+
Damping: number;
|
|
94
|
+
};
|
|
95
|
+
export type BrickComponentData_OneShotAudioEmitter = {
|
|
96
|
+
AudioDescriptor: number | null;
|
|
97
|
+
VolumeMultiplier: number;
|
|
98
|
+
PitchMultiplier: number;
|
|
99
|
+
InnerRadius: number;
|
|
100
|
+
MaxDistance: number;
|
|
101
|
+
bSpatialization: boolean;
|
|
102
|
+
bEnableRepeat: boolean;
|
|
103
|
+
RepeatTime: number;
|
|
104
|
+
RepeatVariance: number;
|
|
105
|
+
RepeatCount: number;
|
|
106
|
+
};
|
|
107
|
+
export type BrickComponentData_ProjectileSpawner = {
|
|
108
|
+
ProjectileClass: number | null;
|
|
109
|
+
FireSound: number | null;
|
|
110
|
+
Direction: number;
|
|
111
|
+
SpawnLocation: number;
|
|
112
|
+
SpawnMargin: number;
|
|
113
|
+
bEnabled: boolean;
|
|
114
|
+
NumberOfShots: number;
|
|
115
|
+
SpreadConeAngle: number;
|
|
116
|
+
bSpreadBiasedTowardsCenter: boolean;
|
|
117
|
+
FireRate: number;
|
|
118
|
+
DamageMultiplier: number;
|
|
119
|
+
SpeedMultiplier: number;
|
|
120
|
+
ScaleMultiplier: number;
|
|
121
|
+
};
|
|
122
|
+
export type BrickComponentData_Rerouter = {};
|
|
123
|
+
export type BrickComponentData_RigidBearing = {
|
|
124
|
+
TargetAngle: number;
|
|
125
|
+
bAnglesArePercentages: boolean;
|
|
126
|
+
bReversed: boolean;
|
|
127
|
+
InterpMode: number;
|
|
128
|
+
SmoothTime: number;
|
|
129
|
+
TopSpeed: number;
|
|
130
|
+
};
|
|
131
|
+
export type BrickComponentData_RigidSlider = {
|
|
132
|
+
TargetPosition: number;
|
|
133
|
+
bPositionsArePercentages: boolean;
|
|
134
|
+
bReversed: boolean;
|
|
135
|
+
InterpMode: number;
|
|
136
|
+
SmoothTime: number;
|
|
137
|
+
TopSpeed: number;
|
|
138
|
+
};
|
|
139
|
+
export type BrickComponentData_Servo = {
|
|
140
|
+
bEnabled: boolean;
|
|
141
|
+
TargetAngle: number;
|
|
142
|
+
Power: number;
|
|
143
|
+
ActiveDamping: number;
|
|
144
|
+
ForceLimit: number;
|
|
145
|
+
bLimitAngle: boolean;
|
|
146
|
+
LimitAngle: number;
|
|
147
|
+
bAnglesArePercentages: boolean;
|
|
148
|
+
bReversed: boolean;
|
|
149
|
+
Damping: number;
|
|
150
|
+
};
|
|
151
|
+
export type BrickComponentData_ServoSlider = {
|
|
152
|
+
bEnabled: boolean;
|
|
153
|
+
TargetPosition: number;
|
|
154
|
+
Power: number;
|
|
155
|
+
TopSpeed: number;
|
|
156
|
+
Exponent: number;
|
|
157
|
+
bPositionsArePercentages: boolean;
|
|
158
|
+
bReversed: boolean;
|
|
159
|
+
Damping: number;
|
|
160
|
+
};
|
|
161
|
+
export type BrickComponentData_Slider = {
|
|
162
|
+
bPositionsArePercentages: boolean;
|
|
163
|
+
bReversed: boolean;
|
|
164
|
+
Damping: number;
|
|
165
|
+
};
|
|
166
|
+
export type BrickComponentData_SpawnPoint = {
|
|
167
|
+
bRotatePlayerGravityOnSpawn: boolean;
|
|
168
|
+
bEnable: boolean;
|
|
169
|
+
};
|
|
170
|
+
export type BrickComponentData_Switch = {
|
|
171
|
+
bEnabled: boolean;
|
|
172
|
+
InteractSound: number | null;
|
|
173
|
+
bAllowNearbyInteraction: boolean;
|
|
174
|
+
bHiddenInteraction: boolean;
|
|
175
|
+
PromptCustomLabel: string;
|
|
176
|
+
};
|
|
177
|
+
export type BrickComponentData_Target = {
|
|
178
|
+
OnTime: number;
|
|
179
|
+
};
|
|
180
|
+
export type BrickComponentData_TeleportDestination = {};
|
|
181
|
+
export type BrickComponentData_Thruster = {
|
|
182
|
+
bEnabled: boolean;
|
|
183
|
+
Force: number;
|
|
184
|
+
Throttle: number;
|
|
185
|
+
Pitch: number;
|
|
186
|
+
Yaw: number;
|
|
187
|
+
bSpawnLight: boolean;
|
|
188
|
+
};
|
|
189
|
+
export type BrickComponentData_Touch = {
|
|
190
|
+
BeginTouchSound: number | null;
|
|
191
|
+
EndTouchSound: number | null;
|
|
192
|
+
bCollisionEnabled_Player: boolean;
|
|
193
|
+
bCollisionEnabled_Player1: boolean;
|
|
194
|
+
bCollisionEnabled_Player2: boolean;
|
|
195
|
+
bCollisionEnabled_Player3: boolean;
|
|
196
|
+
};
|
|
197
|
+
export type BrickComponentData_WireGraph_AudioReference = {
|
|
198
|
+
Asset: number | null;
|
|
199
|
+
};
|
|
200
|
+
export type BrickComponentData_WireGraph_BrickAssetReference = {
|
|
201
|
+
Asset: number | null;
|
|
202
|
+
};
|
|
203
|
+
export type BrickComponentData_WireGraph_DeltaTime = {};
|
|
204
|
+
export type BrickComponentData_WireGraph_EntityTypeReference = {
|
|
205
|
+
Asset: number | null;
|
|
206
|
+
};
|
|
207
|
+
export type BrickComponentData_WireGraph_Exec_ArrayVar_Average = {
|
|
208
|
+
Value: BrdbVariant;
|
|
209
|
+
};
|
|
210
|
+
export type BrickComponentData_WireGraph_Exec_ArrayVar_Base = {};
|
|
211
|
+
export type BrickComponentData_WireGraph_Exec_ArrayVar_DualRef = {};
|
|
212
|
+
export type BrickComponentData_WireGraph_Exec_ArrayVar_ElementOp = {
|
|
213
|
+
Index: number;
|
|
214
|
+
Value: BrdbVariant;
|
|
215
|
+
};
|
|
216
|
+
export type BrickComponentData_WireGraph_Exec_ArrayVar_Find = {
|
|
217
|
+
Value: BrdbVariant;
|
|
218
|
+
};
|
|
219
|
+
export type BrickComponentData_WireGraph_Exec_ArrayVar_Get = {
|
|
220
|
+
Index: number;
|
|
221
|
+
Value: BrdbVariant;
|
|
222
|
+
};
|
|
223
|
+
export type BrickComponentData_WireGraph_Exec_ArrayVar_GetLength = {};
|
|
224
|
+
export type BrickComponentData_WireGraph_Exec_ArrayVar_Insert = {
|
|
225
|
+
Index: number;
|
|
226
|
+
Value: BrdbVariant;
|
|
227
|
+
};
|
|
228
|
+
export type BrickComponentData_WireGraph_Exec_ArrayVar_MinMax = {
|
|
229
|
+
Value: BrdbVariant;
|
|
230
|
+
};
|
|
231
|
+
export type BrickComponentData_WireGraph_Exec_ArrayVar_Pop = {
|
|
232
|
+
Value: BrdbVariant;
|
|
233
|
+
};
|
|
234
|
+
export type BrickComponentData_WireGraph_Exec_ArrayVar_Push = {
|
|
235
|
+
Value: BrdbVariant;
|
|
236
|
+
};
|
|
237
|
+
export type BrickComponentData_WireGraph_Exec_ArrayVar_RemoveAtIndex = {
|
|
238
|
+
Index: number;
|
|
239
|
+
};
|
|
240
|
+
export type BrickComponentData_WireGraph_Exec_ArrayVar_Resize = {
|
|
241
|
+
Size: number;
|
|
242
|
+
Value: BrdbVariant;
|
|
243
|
+
};
|
|
244
|
+
export type BrickComponentData_WireGraph_Exec_ArrayVar_Slice = {
|
|
245
|
+
Start: number;
|
|
246
|
+
Count: number;
|
|
247
|
+
};
|
|
248
|
+
export type BrickComponentData_WireGraph_Exec_ArrayVar_Sort = {
|
|
249
|
+
bDescending: boolean;
|
|
250
|
+
};
|
|
251
|
+
export type BrickComponentData_WireGraph_Exec_ArrayVar_Sum = {
|
|
252
|
+
Value: BrdbVariant;
|
|
253
|
+
};
|
|
254
|
+
export type BrickComponentData_WireGraph_Exec_ArrayVar_Swap = {
|
|
255
|
+
IndexA: number;
|
|
256
|
+
IndexB: number;
|
|
257
|
+
};
|
|
258
|
+
export type BrickComponentData_WireGraph_Exec_Character_AddInventoryEntity = {};
|
|
259
|
+
export type BrickComponentData_WireGraph_Exec_Character_AddInventoryItem = {};
|
|
260
|
+
export type BrickComponentData_WireGraph_Exec_Character_GetAim = {};
|
|
261
|
+
export type BrickComponentData_WireGraph_Exec_Character_GetDamage = {};
|
|
262
|
+
export type BrickComponentData_WireGraph_Exec_Character_GetFromController = {};
|
|
263
|
+
export type BrickComponentData_WireGraph_Exec_Character_IncDamage = {
|
|
264
|
+
Amount: number;
|
|
265
|
+
};
|
|
266
|
+
export type BrickComponentData_WireGraph_Exec_Character_SetDamage = {
|
|
267
|
+
Damage: number;
|
|
268
|
+
};
|
|
269
|
+
export type BrickComponentData_WireGraph_Exec_Character_SetInventoryEntity = {
|
|
270
|
+
Slot: number;
|
|
271
|
+
};
|
|
272
|
+
export type BrickComponentData_WireGraph_Exec_Character_SetInventoryItem = {
|
|
273
|
+
Slot: number;
|
|
274
|
+
};
|
|
275
|
+
export type BrickComponentData_WireGraph_Exec_Character_SetTempPermission = {
|
|
276
|
+
PermissionTagStr: string;
|
|
277
|
+
bPermissionEnable: boolean;
|
|
278
|
+
};
|
|
279
|
+
export type BrickComponentData_WireGraph_Exec_Character_ShowHint = {
|
|
280
|
+
HintTitle: string;
|
|
281
|
+
HintText: string;
|
|
282
|
+
};
|
|
283
|
+
export type BrickComponentData_WireGraph_Exec_ChatCommand = {
|
|
284
|
+
CommandName: string;
|
|
285
|
+
HelpText: string;
|
|
286
|
+
};
|
|
287
|
+
export type BrickComponentData_WireGraph_Exec_Controller_GetDisplayName = {};
|
|
288
|
+
export type BrickComponentData_WireGraph_Exec_Controller_GetFromEntity = {};
|
|
289
|
+
export type BrickComponentData_WireGraph_Exec_Controller_GetUserId = {};
|
|
290
|
+
export type BrickComponentData_WireGraph_Exec_Controller_GetUserName = {};
|
|
291
|
+
export type BrickComponentData_WireGraph_Exec_Controller_HasPermission = {
|
|
292
|
+
PermissionName: string;
|
|
293
|
+
};
|
|
294
|
+
export type BrickComponentData_WireGraph_Exec_Controller_HasRole = {
|
|
295
|
+
RoleName: string;
|
|
296
|
+
};
|
|
297
|
+
export type BrickComponentData_WireGraph_Exec_Controller_IsTrustedByBrickOwner = {};
|
|
298
|
+
export type BrickComponentData_WireGraph_Exec_Controller_SetCanRespawn = {
|
|
299
|
+
bCanRespawn: boolean;
|
|
300
|
+
};
|
|
301
|
+
export type BrickComponentData_WireGraph_Exec_Controller_ShowChatMessage = {
|
|
302
|
+
Message: string;
|
|
303
|
+
};
|
|
304
|
+
export type BrickComponentData_WireGraph_Exec_Controller_ShowStatusMessage = {};
|
|
305
|
+
export type BrickComponentData_WireGraph_Exec_Cycle = {
|
|
306
|
+
Count: number;
|
|
307
|
+
Value: number;
|
|
308
|
+
};
|
|
309
|
+
export type BrickComponentData_WireGraph_Exec_Entity_GetAngularVelocity = {};
|
|
310
|
+
export type BrickComponentData_WireGraph_Exec_Entity_GetLinearVelocity = {};
|
|
311
|
+
export type BrickComponentData_WireGraph_Exec_Entity_GetLocation = {};
|
|
312
|
+
export type BrickComponentData_WireGraph_Exec_Entity_GetLocationRotation = {};
|
|
313
|
+
export type BrickComponentData_WireGraph_Exec_Entity_GetRotation = {};
|
|
314
|
+
export type BrickComponentData_WireGraph_Exec_Entity_GetTag = {};
|
|
315
|
+
export type BrickComponentData_WireGraph_Exec_Entity_GetVelocity = {};
|
|
316
|
+
export type BrickComponentData_WireGraph_Exec_Entity_PlayAudioAt = {
|
|
317
|
+
AudioDescriptor: number | null;
|
|
318
|
+
VolumeMultiplier: number;
|
|
319
|
+
PitchMultiplier: number;
|
|
320
|
+
InnerRadius: number;
|
|
321
|
+
MaxDistance: number;
|
|
322
|
+
bSpatialization: boolean;
|
|
323
|
+
};
|
|
324
|
+
export type BrickComponentData_WireGraph_Exec_Entity_SetFrozen = {
|
|
325
|
+
bFrozen: boolean;
|
|
326
|
+
};
|
|
327
|
+
export type BrickComponentData_WireGraph_Exec_Entity_SetTag = {
|
|
328
|
+
Tag: string;
|
|
329
|
+
};
|
|
330
|
+
export type BrickComponentData_WireGraph_Exec_Gamemode_BroadcastChatMessage = {
|
|
331
|
+
Message: string;
|
|
332
|
+
};
|
|
333
|
+
export type BrickComponentData_WireGraph_Exec_Gamemode_BroadcastStatusMessage = {
|
|
334
|
+
Message: string;
|
|
335
|
+
bFlashIfUnchanged: boolean;
|
|
336
|
+
};
|
|
337
|
+
export type BrickComponentData_WireGraph_Exec_Gamemode_FillArrayFromTeamMembers = {};
|
|
338
|
+
export type BrickComponentData_WireGraph_Exec_Gamemode_GetCurrentRound = {};
|
|
339
|
+
export type BrickComponentData_WireGraph_Exec_Gamemode_GetLeaderboardValue = {
|
|
340
|
+
Key: string;
|
|
341
|
+
};
|
|
342
|
+
export type BrickComponentData_WireGraph_Exec_Gamemode_GetTeam = {};
|
|
343
|
+
export type BrickComponentData_WireGraph_Exec_Gamemode_GetTeamByName = {
|
|
344
|
+
TeamName: string;
|
|
345
|
+
};
|
|
346
|
+
export type BrickComponentData_WireGraph_Exec_Gamemode_GetTeamLeaderboardValue = {
|
|
347
|
+
Key: string;
|
|
348
|
+
};
|
|
349
|
+
export type BrickComponentData_WireGraph_Exec_Gamemode_GetTeamName = {};
|
|
350
|
+
export type BrickComponentData_WireGraph_Exec_Gamemode_LeaderboardValue = {
|
|
351
|
+
Key: string;
|
|
352
|
+
Value: number;
|
|
353
|
+
};
|
|
354
|
+
export type BrickComponentData_WireGraph_Exec_Gamemode_PlayerWins = {
|
|
355
|
+
bTeamWinsInstead: boolean;
|
|
356
|
+
};
|
|
357
|
+
export type BrickComponentData_WireGraph_Exec_Gamemode_SetTeam = {
|
|
358
|
+
bPinPlayerToTeam: boolean;
|
|
359
|
+
};
|
|
360
|
+
export type BrickComponentData_WireGraph_Exec_Gamemode_SetTeamPinned = {
|
|
361
|
+
bPinned: boolean;
|
|
362
|
+
};
|
|
363
|
+
export type BrickComponentData_WireGraph_Exec_Gamemode_TeamLeaderboardValue = {
|
|
364
|
+
Key: string;
|
|
365
|
+
Value: number;
|
|
366
|
+
};
|
|
367
|
+
export type BrickComponentData_WireGraph_Exec_Gamemode_TeamWins = {};
|
|
368
|
+
export type BrickComponentData_WireGraph_Exec_PlayGlobalAudio = {
|
|
369
|
+
AudioDescriptor: number | null;
|
|
370
|
+
VolumeMultiplier: number;
|
|
371
|
+
PitchMultiplier: number;
|
|
372
|
+
};
|
|
373
|
+
export type BrickComponentData_WireGraph_Exec_PrintToConsole = {
|
|
374
|
+
Text: string;
|
|
375
|
+
};
|
|
376
|
+
export type BrickComponentData_WireGraph_Exec_Random = {
|
|
377
|
+
Min: BrdbVariant;
|
|
378
|
+
Max: BrdbVariant;
|
|
379
|
+
};
|
|
380
|
+
export type BrickComponentData_WireGraph_Exec_Toggle = {
|
|
381
|
+
Value: boolean;
|
|
382
|
+
};
|
|
383
|
+
export type BrickComponentData_WireGraph_Exec_Var_EditOrGet = {
|
|
384
|
+
Value: BrdbVariant;
|
|
385
|
+
};
|
|
386
|
+
export type BrickComponentData_WireGraph_Exec_Var_Get = {
|
|
387
|
+
Value: BrdbVariant;
|
|
388
|
+
};
|
|
389
|
+
export type BrickComponentData_WireGraph_ExecBranch = {
|
|
390
|
+
bCond: boolean;
|
|
391
|
+
};
|
|
392
|
+
export type BrickComponentData_WireGraph_ExecUnion = {};
|
|
393
|
+
export type BrickComponentData_WireGraph_Expr_Bool_Bool = {
|
|
394
|
+
bInput: boolean;
|
|
395
|
+
};
|
|
396
|
+
export type BrickComponentData_WireGraph_Expr_BoolBool_Bool = {
|
|
397
|
+
bInputA: boolean;
|
|
398
|
+
bInputB: boolean;
|
|
399
|
+
};
|
|
400
|
+
export type BrickComponentData_WireGraph_Expr_Compare = {
|
|
401
|
+
InputA: BrdbVariant;
|
|
402
|
+
InputB: BrdbVariant;
|
|
403
|
+
};
|
|
404
|
+
export type BrickComponentData_WireGraph_Expr_Convert = {
|
|
405
|
+
TargetType: BrdbVariant;
|
|
406
|
+
};
|
|
407
|
+
export type BrickComponentData_WireGraph_Expr_EdgeDetector = {
|
|
408
|
+
Input: number;
|
|
409
|
+
bPulseOnRisingEdge: boolean;
|
|
410
|
+
bPulseOnFallingEdge: boolean;
|
|
411
|
+
};
|
|
412
|
+
export type BrickComponentData_WireGraph_Expr_Float_Float = {
|
|
413
|
+
Input: number;
|
|
414
|
+
};
|
|
415
|
+
export type BrickComponentData_WireGraph_Expr_Int_Int = {
|
|
416
|
+
Input: number;
|
|
417
|
+
};
|
|
418
|
+
export type BrickComponentData_WireGraph_Expr_IntInt_Int = {
|
|
419
|
+
InputA: number;
|
|
420
|
+
InputB: number;
|
|
421
|
+
};
|
|
422
|
+
export type BrickComponentData_WireGraph_Expr_MakeColor = {
|
|
423
|
+
R: number;
|
|
424
|
+
G: number;
|
|
425
|
+
B: number;
|
|
426
|
+
A: number;
|
|
427
|
+
};
|
|
428
|
+
export type BrickComponentData_WireGraph_Expr_MakeColorHex = {
|
|
429
|
+
Hex: string;
|
|
430
|
+
};
|
|
431
|
+
export type BrickComponentData_WireGraph_Expr_MakeColorSRGB = {
|
|
432
|
+
R: number;
|
|
433
|
+
G: number;
|
|
434
|
+
B: number;
|
|
435
|
+
A: number;
|
|
436
|
+
};
|
|
437
|
+
export type BrickComponentData_WireGraph_Expr_MakeQuaternion = {
|
|
438
|
+
X: number;
|
|
439
|
+
Y: number;
|
|
440
|
+
Z: number;
|
|
441
|
+
W: number;
|
|
442
|
+
};
|
|
443
|
+
export type BrickComponentData_WireGraph_Expr_MakeRotation = {
|
|
444
|
+
Pitch: number;
|
|
445
|
+
Yaw: number;
|
|
446
|
+
Roll: number;
|
|
447
|
+
};
|
|
448
|
+
export type BrickComponentData_WireGraph_Expr_MakeVector = {
|
|
449
|
+
X: number;
|
|
450
|
+
Y: number;
|
|
451
|
+
Z: number;
|
|
452
|
+
};
|
|
453
|
+
export type BrickComponentData_WireGraph_Expr_MathAtan2 = {
|
|
454
|
+
Y: number;
|
|
455
|
+
X: number;
|
|
456
|
+
};
|
|
457
|
+
export type BrickComponentData_WireGraph_Expr_MathBlend = {
|
|
458
|
+
Blend: number;
|
|
459
|
+
bClampAlpha: boolean;
|
|
460
|
+
InputA: BrdbVariant;
|
|
461
|
+
InputB: BrdbVariant;
|
|
462
|
+
};
|
|
463
|
+
export type BrickComponentData_WireGraph_Expr_MathClamp = {
|
|
464
|
+
Min: BrdbVariant;
|
|
465
|
+
Max: BrdbVariant;
|
|
466
|
+
Input: BrdbVariant;
|
|
467
|
+
};
|
|
468
|
+
export type BrickComponentData_WireGraph_Expr_MathCompare = {
|
|
469
|
+
InputA: BrdbVariant;
|
|
470
|
+
InputB: BrdbVariant;
|
|
471
|
+
};
|
|
472
|
+
export type BrickComponentData_WireGraph_Expr_MathEasing = {
|
|
473
|
+
Blend: number;
|
|
474
|
+
Function: number;
|
|
475
|
+
Direction: number;
|
|
476
|
+
InputA: BrdbVariant;
|
|
477
|
+
InputB: BrdbVariant;
|
|
478
|
+
};
|
|
479
|
+
export type BrickComponentData_WireGraph_Expr_MathLogBase = {
|
|
480
|
+
Input: number;
|
|
481
|
+
Base: number;
|
|
482
|
+
};
|
|
483
|
+
export type BrickComponentData_WireGraph_Expr_MathPow = {
|
|
484
|
+
Input: number;
|
|
485
|
+
Exponent: number;
|
|
486
|
+
};
|
|
487
|
+
export type BrickComponentData_WireGraph_Expr_NearlyEqual = {
|
|
488
|
+
InputA: BrdbVariant;
|
|
489
|
+
InputB: BrdbVariant;
|
|
490
|
+
Tolerance: number;
|
|
491
|
+
};
|
|
492
|
+
export type BrickComponentData_WireGraph_Expr_PrimMathVariant_PrimMathVariant = {
|
|
493
|
+
Input: BrdbVariant;
|
|
494
|
+
};
|
|
495
|
+
export type BrickComponentData_WireGraph_Expr_PrimMathVariantPrimMathVariant_PrimMathVariant = {
|
|
496
|
+
InputA: BrdbVariant;
|
|
497
|
+
InputB: BrdbVariant;
|
|
498
|
+
};
|
|
499
|
+
export type BrickComponentData_WireGraph_Expr_Select = {
|
|
500
|
+
bSelectB: boolean;
|
|
501
|
+
InputA: BrdbVariant;
|
|
502
|
+
InputB: BrdbVariant;
|
|
503
|
+
};
|
|
504
|
+
export type BrickComponentData_WireGraph_Expr_String_Concatenate = {
|
|
505
|
+
InputA: string;
|
|
506
|
+
InputB: string;
|
|
507
|
+
Separator: string;
|
|
508
|
+
};
|
|
509
|
+
export type BrickComponentData_WireGraph_Expr_String_Contains = {
|
|
510
|
+
Input: string;
|
|
511
|
+
Search: string;
|
|
512
|
+
bCaseSensitive: boolean;
|
|
513
|
+
};
|
|
514
|
+
export type BrickComponentData_WireGraph_Expr_String_EndsWith = {
|
|
515
|
+
Input: string;
|
|
516
|
+
Suffix: string;
|
|
517
|
+
bCaseSensitive: boolean;
|
|
518
|
+
};
|
|
519
|
+
export type BrickComponentData_WireGraph_Expr_String_Find = {
|
|
520
|
+
Input: string;
|
|
521
|
+
Search: string;
|
|
522
|
+
bCaseSensitive: boolean;
|
|
523
|
+
};
|
|
524
|
+
export type BrickComponentData_WireGraph_Expr_String_FormatText = {
|
|
525
|
+
FormatString: string;
|
|
526
|
+
InputA: BrdbVariant;
|
|
527
|
+
InputB: BrdbVariant;
|
|
528
|
+
InputC: BrdbVariant;
|
|
529
|
+
InputD: BrdbVariant;
|
|
530
|
+
InputE: BrdbVariant;
|
|
531
|
+
InputF: BrdbVariant;
|
|
532
|
+
InputG: BrdbVariant;
|
|
533
|
+
};
|
|
534
|
+
export type BrickComponentData_WireGraph_Expr_String_Length = {
|
|
535
|
+
Input: string;
|
|
536
|
+
};
|
|
537
|
+
export type BrickComponentData_WireGraph_Expr_String_ParseInt = {
|
|
538
|
+
Input: string;
|
|
539
|
+
};
|
|
540
|
+
export type BrickComponentData_WireGraph_Expr_String_ParseNumber = {
|
|
541
|
+
Input: string;
|
|
542
|
+
};
|
|
543
|
+
export type BrickComponentData_WireGraph_Expr_String_Replace = {
|
|
544
|
+
Input: string;
|
|
545
|
+
Search: string;
|
|
546
|
+
Replacement: string;
|
|
547
|
+
bCaseSensitive: boolean;
|
|
548
|
+
};
|
|
549
|
+
export type BrickComponentData_WireGraph_Expr_String_Split = {
|
|
550
|
+
Input: string;
|
|
551
|
+
Delimiter: string;
|
|
552
|
+
bCaseSensitive: boolean;
|
|
553
|
+
};
|
|
554
|
+
export type BrickComponentData_WireGraph_Expr_String_StartsWith = {
|
|
555
|
+
Input: string;
|
|
556
|
+
Prefix: string;
|
|
557
|
+
bCaseSensitive: boolean;
|
|
558
|
+
};
|
|
559
|
+
export type BrickComponentData_WireGraph_Expr_String_Substring = {
|
|
560
|
+
Input: string;
|
|
561
|
+
Start: number;
|
|
562
|
+
Length: number;
|
|
563
|
+
};
|
|
564
|
+
export type BrickComponentData_WireGraph_Expr_String_ToLower = {
|
|
565
|
+
Input: string;
|
|
566
|
+
};
|
|
567
|
+
export type BrickComponentData_WireGraph_Expr_String_ToUpper = {
|
|
568
|
+
Input: string;
|
|
569
|
+
};
|
|
570
|
+
export type BrickComponentData_WireGraph_Expr_String_Trim = {
|
|
571
|
+
Input: string;
|
|
572
|
+
};
|
|
573
|
+
export type BrickComponentData_WireGraph_Expr_Swap = {
|
|
574
|
+
bSwap: boolean;
|
|
575
|
+
InputA: BrdbVariant;
|
|
576
|
+
InputB: BrdbVariant;
|
|
577
|
+
};
|
|
578
|
+
export type BrickComponentData_WireGraph_Expr_Variant_Variant = {
|
|
579
|
+
Input: BrdbVariant;
|
|
580
|
+
};
|
|
581
|
+
export type BrickComponentData_WireGraph_Fake_CharacterDamageEvent = {};
|
|
582
|
+
export type BrickComponentData_WireGraph_Fake_CharacterDeathEvent = {};
|
|
583
|
+
export type BrickComponentData_WireGraph_Fake_CharacterEvent = {};
|
|
584
|
+
export type BrickComponentData_WireGraph_Fake_ControllerEvent = {};
|
|
585
|
+
export type BrickComponentData_WireGraph_Fake_RoundEvent = {
|
|
586
|
+
RoundNumber: number;
|
|
587
|
+
};
|
|
588
|
+
export type BrickComponentData_WireGraph_FindPlayer = {
|
|
589
|
+
Query: string;
|
|
590
|
+
};
|
|
591
|
+
export type BrickComponentData_WireGraph_FontReference = {
|
|
592
|
+
Asset: number | null;
|
|
593
|
+
};
|
|
594
|
+
export type BrickComponentData_WireGraph_ItemReference = {
|
|
595
|
+
Asset: number | null;
|
|
596
|
+
};
|
|
597
|
+
export type BrickComponentData_WireGraph_OneShotAudioReference = {
|
|
598
|
+
Asset: number | null;
|
|
599
|
+
};
|
|
600
|
+
export type BrickComponentData_WireGraph_ParticleReference = {
|
|
601
|
+
Asset: number | null;
|
|
602
|
+
};
|
|
603
|
+
export type BrickComponentData_WireGraph_PickupReference = {
|
|
604
|
+
Asset: number | null;
|
|
605
|
+
};
|
|
606
|
+
export type BrickComponentData_WireGraph_ProjectileReference = {
|
|
607
|
+
Asset: number | null;
|
|
608
|
+
};
|
|
609
|
+
export type BrickComponentData_WireGraph_ServerUptime = {};
|
|
610
|
+
export type BrickComponentData_WireGraph_WheelEngineAudioReference = {
|
|
611
|
+
Asset: number | null;
|
|
612
|
+
};
|
|
613
|
+
export type BrickComponentData_WireGraphPseudo_ArrayVar = {
|
|
614
|
+
Value: BrdbVariant;
|
|
615
|
+
};
|
|
616
|
+
export type BrickComponentData_WireGraphPseudo_BufferSeconds = {
|
|
617
|
+
SecondsToWait: number;
|
|
618
|
+
ZeroSecondsToWait: number;
|
|
619
|
+
CurrentTime: number;
|
|
620
|
+
Input: BrdbVariant;
|
|
621
|
+
Output: BrdbVariant;
|
|
622
|
+
Buffered: BrdbVariant;
|
|
623
|
+
bHasQueued: boolean;
|
|
624
|
+
bIsOffTimer: boolean;
|
|
625
|
+
};
|
|
626
|
+
export type BrickComponentData_WireGraphPseudo_BufferTicks = {
|
|
627
|
+
TicksToWait: number;
|
|
628
|
+
ZeroTicksToWait: number;
|
|
629
|
+
CurrentTicks: number;
|
|
630
|
+
Input: BrdbVariant;
|
|
631
|
+
Output: BrdbVariant;
|
|
632
|
+
Buffered: BrdbVariant;
|
|
633
|
+
bHasQueued: boolean;
|
|
634
|
+
bIsOffTimer: boolean;
|
|
635
|
+
};
|
|
636
|
+
export type BrickComponentData_WireGraphPseudo_Timer = {
|
|
637
|
+
Limit: number;
|
|
638
|
+
Time: number;
|
|
639
|
+
bRunning: boolean;
|
|
640
|
+
};
|
|
641
|
+
export type BrickComponentData_WireGraphPseudo_Tween = {
|
|
642
|
+
Target: BrdbVariant;
|
|
643
|
+
Value: BrdbVariant;
|
|
644
|
+
StartValue: BrdbVariant;
|
|
645
|
+
Duration: number;
|
|
646
|
+
Elapsed: number;
|
|
647
|
+
Function: number;
|
|
648
|
+
Direction: number;
|
|
649
|
+
};
|
|
650
|
+
export type BrickComponentData_WireGraphPseudo_Var = {
|
|
651
|
+
Value: BrdbVariant;
|
|
652
|
+
};
|
|
653
|
+
export type BrickComponentWireControl_DriveAndSteer = {};
|
|
654
|
+
export type BrickComponentWirePortControl_TeleportDestination = {};
|
|
655
|
+
export type BRInventoryEntryVariant = {};
|
|
656
|
+
export type BRQueueSecondsEntry = {
|
|
657
|
+
Data: BrdbVariant[];
|
|
658
|
+
RemainingTime: number;
|
|
659
|
+
};
|
|
660
|
+
export type BRQueueTicksEntry = {
|
|
661
|
+
Data: BrdbVariant[];
|
|
662
|
+
RemainingTicks: number;
|
|
663
|
+
};
|
|
664
|
+
export type BRSavedBrickComponentTypeCounter = {
|
|
665
|
+
TypeIndex: number;
|
|
666
|
+
NumInstances: number;
|
|
667
|
+
};
|
|
668
|
+
export type Color = {
|
|
669
|
+
B: number;
|
|
670
|
+
G: number;
|
|
671
|
+
R: number;
|
|
672
|
+
A: number;
|
|
673
|
+
};
|
|
674
|
+
export type IntVector = {
|
|
675
|
+
X: number;
|
|
676
|
+
Y: number;
|
|
677
|
+
Z: number;
|
|
678
|
+
};
|
|
679
|
+
export type LinearColor = {
|
|
680
|
+
R: number;
|
|
681
|
+
G: number;
|
|
682
|
+
B: number;
|
|
683
|
+
A: number;
|
|
684
|
+
};
|
|
685
|
+
export type Quat = {
|
|
686
|
+
X: number;
|
|
687
|
+
Y: number;
|
|
688
|
+
Z: number;
|
|
689
|
+
W: number;
|
|
690
|
+
};
|
|
691
|
+
export type Quat4f = {
|
|
692
|
+
X: number;
|
|
693
|
+
Y: number;
|
|
694
|
+
Z: number;
|
|
695
|
+
W: number;
|
|
696
|
+
};
|
|
697
|
+
export type Rotator = {
|
|
698
|
+
Pitch: number;
|
|
699
|
+
Yaw: number;
|
|
700
|
+
Roll: number;
|
|
701
|
+
};
|
|
702
|
+
export type Rotator3f = {
|
|
703
|
+
Pitch: number;
|
|
704
|
+
Yaw: number;
|
|
705
|
+
Roll: number;
|
|
706
|
+
};
|
|
707
|
+
export type Vector = {
|
|
708
|
+
X: number;
|
|
709
|
+
Y: number;
|
|
710
|
+
Z: number;
|
|
711
|
+
};
|
|
712
|
+
export type Vector2f = {
|
|
713
|
+
X: number;
|
|
714
|
+
Y: number;
|
|
715
|
+
};
|
|
716
|
+
export type Vector3f = {
|
|
717
|
+
X: number;
|
|
718
|
+
Y: number;
|
|
719
|
+
Z: number;
|
|
720
|
+
};
|
|
721
|
+
export type Vector4 = {
|
|
722
|
+
X: number;
|
|
723
|
+
Y: number;
|
|
724
|
+
Z: number;
|
|
725
|
+
W: number;
|
|
726
|
+
};
|
|
727
|
+
export type WireGraphBoolArray = {
|
|
728
|
+
Values: boolean[];
|
|
729
|
+
};
|
|
730
|
+
export type WireGraphDoubleArray = {
|
|
731
|
+
Values: number[];
|
|
732
|
+
};
|
|
733
|
+
export type WireGraphEnumArray_EBRColorSpace = {
|
|
734
|
+
Values: number[];
|
|
735
|
+
};
|
|
736
|
+
export type WireGraphEnumArray_EBRDisplayTextEasing = {
|
|
737
|
+
Values: number[];
|
|
738
|
+
};
|
|
739
|
+
export type WireGraphEnumArray_EBRDisplayTextJustification = {
|
|
740
|
+
Values: number[];
|
|
741
|
+
};
|
|
742
|
+
export type WireGraphEnumArray_EBREasingDirection = {
|
|
743
|
+
Values: number[];
|
|
744
|
+
};
|
|
745
|
+
export type WireGraphEnumArray_EBREasingFunction = {
|
|
746
|
+
Values: number[];
|
|
747
|
+
};
|
|
748
|
+
export type WireGraphEnumArray_EBrickAxis = {
|
|
749
|
+
Values: number[];
|
|
750
|
+
};
|
|
751
|
+
export type WireGraphEnumArray_EBrickDirection = {
|
|
752
|
+
Values: number[];
|
|
753
|
+
};
|
|
754
|
+
export type WireGraphEnumArray_EBrickMaterial = {
|
|
755
|
+
Values: number[];
|
|
756
|
+
};
|
|
757
|
+
export type WireGraphEnumArray_EBrickRigidJointInterpMode = {
|
|
758
|
+
Values: number[];
|
|
759
|
+
};
|
|
760
|
+
export type WireGraphEnumArray_EBRPawnCollisionChannel = {
|
|
761
|
+
Values: number[];
|
|
762
|
+
};
|
|
763
|
+
export type WireGraphEnumArray_EBRTextFacing = {
|
|
764
|
+
Values: number[];
|
|
765
|
+
};
|
|
766
|
+
export type WireGraphEnumArray_EBRTextMaterial = {
|
|
767
|
+
Values: number[];
|
|
768
|
+
};
|
|
769
|
+
export type WireGraphEnumArray_EBRTextOutline = {
|
|
770
|
+
Values: number[];
|
|
771
|
+
};
|
|
772
|
+
export type WireGraphEnumArray_EBRTextShading = {
|
|
773
|
+
Values: number[];
|
|
774
|
+
};
|
|
775
|
+
export type WireGraphEnumArray_EBRTextTypeface = {
|
|
776
|
+
Values: number[];
|
|
777
|
+
};
|
|
778
|
+
export type WireGraphEnumArray_EProjectileSpawnLocation = {
|
|
779
|
+
Values: number[];
|
|
780
|
+
};
|
|
781
|
+
export type WireGraphEnumArrayWrapper = {
|
|
782
|
+
Enum: BrdbVariant;
|
|
783
|
+
};
|
|
784
|
+
export type WireGraphEnumWrapper = {
|
|
785
|
+
Enum: BrdbVariant;
|
|
786
|
+
};
|
|
787
|
+
export type WireGraphExec = {};
|
|
788
|
+
export type WireGraphInt64Array = {
|
|
789
|
+
Values: number[];
|
|
790
|
+
};
|
|
791
|
+
export type WireGraphObjectArray = {
|
|
792
|
+
Values: (number | null)[];
|
|
793
|
+
};
|
|
794
|
+
export type WireGraphStringArray = {
|
|
795
|
+
Values: string[];
|
|
796
|
+
};
|
|
797
|
+
export type BrickComponentData_BrickPropertyChanger = {
|
|
798
|
+
bVisibility: boolean;
|
|
799
|
+
bCollisionEnabled: boolean;
|
|
800
|
+
bCollisionEnabled_Player: boolean;
|
|
801
|
+
bCollisionEnabled_Player1: boolean;
|
|
802
|
+
bCollisionEnabled_Player2: boolean;
|
|
803
|
+
bCollisionEnabled_Player3: boolean;
|
|
804
|
+
bCollisionEnabled_Weapon: boolean;
|
|
805
|
+
bCollisionEnabled_Interaction: boolean;
|
|
806
|
+
bCollisionEnabled_Physics: boolean;
|
|
807
|
+
Color: Color;
|
|
808
|
+
MaterialAlpha: number;
|
|
809
|
+
Material: number;
|
|
810
|
+
};
|
|
811
|
+
export type BrickComponentData_Gyroscope = {
|
|
812
|
+
bEnabled: boolean;
|
|
813
|
+
Strength: number;
|
|
814
|
+
Damping: number;
|
|
815
|
+
MaxForce: number;
|
|
816
|
+
TargetAxis: Vector;
|
|
817
|
+
};
|
|
818
|
+
export type BrickComponentData_ItemSpawn = {
|
|
819
|
+
PickupClass: number | null;
|
|
820
|
+
bPickupEnabled: boolean;
|
|
821
|
+
bPickupRespawnOnMinigameReset: boolean;
|
|
822
|
+
PickupMinigameResetRespawnDelay: number;
|
|
823
|
+
bPickupAutoDisableOnPickup: boolean;
|
|
824
|
+
PickupRespawnTime: number;
|
|
825
|
+
bRenderTranslucentWhenDisabled: boolean;
|
|
826
|
+
DamageMultiplier: number;
|
|
827
|
+
WeaponSpeedMultiplier: number;
|
|
828
|
+
ItemNameOverride: string;
|
|
829
|
+
ProjectileOverride: number | null;
|
|
830
|
+
PickupOffsetDirection: number;
|
|
831
|
+
PickupOffsetDistance: number;
|
|
832
|
+
PickupRotation: Rotator3f;
|
|
833
|
+
PickupScale: number;
|
|
834
|
+
bOverridePickupColors: boolean;
|
|
835
|
+
PickupMeshColors: Color[];
|
|
836
|
+
bPickupAnimationEnabled: boolean;
|
|
837
|
+
PickupAnimationAxis: number;
|
|
838
|
+
bPickupAnimationAxisLocal: boolean;
|
|
839
|
+
PickupSpinSpeed: number;
|
|
840
|
+
PickupBobSpeed: number;
|
|
841
|
+
PickupBobHeight: number;
|
|
842
|
+
PickupAnimationPhase: number;
|
|
843
|
+
};
|
|
844
|
+
export type BrickComponentData_Joint_Wheel = {
|
|
845
|
+
Control_DriveAndSteer: BrickComponentWireControl_DriveAndSteer;
|
|
846
|
+
bEnabled: boolean;
|
|
847
|
+
DriveSpeed: number;
|
|
848
|
+
DrivePower: number;
|
|
849
|
+
bSteerEnabled: boolean;
|
|
850
|
+
Steer: number;
|
|
851
|
+
SteerLimitDegree: number;
|
|
852
|
+
SteerPower: number;
|
|
853
|
+
bSuspensionEnabled: boolean;
|
|
854
|
+
SuspensionStiffness: number;
|
|
855
|
+
SuspensionDamping: number;
|
|
856
|
+
JointDistance: number;
|
|
857
|
+
bDriveWhenNotAttachedToEngine: boolean;
|
|
858
|
+
bCanBrake: boolean;
|
|
859
|
+
bAllowEngineSteerCorrect: boolean;
|
|
860
|
+
bReversed: boolean;
|
|
861
|
+
Damping: number;
|
|
862
|
+
};
|
|
863
|
+
export type BrickComponentData_Joint_Wheel_Suspension = {
|
|
864
|
+
Control_DriveAndSteer: BrickComponentWireControl_DriveAndSteer;
|
|
865
|
+
bEnabled: boolean;
|
|
866
|
+
DriveSpeed: number;
|
|
867
|
+
DrivePower: number;
|
|
868
|
+
bSteerEnabled: boolean;
|
|
869
|
+
Steer: number;
|
|
870
|
+
SteerLimitDegree: number;
|
|
871
|
+
SteerPower: number;
|
|
872
|
+
bSuspensionEnabled: boolean;
|
|
873
|
+
SuspensionStiffness: number;
|
|
874
|
+
SuspensionDamping: number;
|
|
875
|
+
SuspensionOffset: number;
|
|
876
|
+
SuspensionLength: number;
|
|
877
|
+
JointDistance: number;
|
|
878
|
+
bDriveWhenNotAttachedToEngine: boolean;
|
|
879
|
+
bCanBrake: boolean;
|
|
880
|
+
bAllowEngineSteerCorrect: boolean;
|
|
881
|
+
bReversed: boolean;
|
|
882
|
+
Damping: number;
|
|
883
|
+
};
|
|
884
|
+
export type BrickComponentData_PointLight = {
|
|
885
|
+
bMatchBrickShape: boolean;
|
|
886
|
+
bEnabled: boolean;
|
|
887
|
+
Brightness: number;
|
|
888
|
+
Radius: number;
|
|
889
|
+
Color: Color;
|
|
890
|
+
bUseBrickColor: boolean;
|
|
891
|
+
bCastShadows: boolean;
|
|
892
|
+
};
|
|
893
|
+
export type BrickComponentData_PrefabSpawn = {
|
|
894
|
+
Prefab: string;
|
|
895
|
+
SpawnOffset: Vector;
|
|
896
|
+
SpawnOffsetRotation: Rotator;
|
|
897
|
+
SpawnVelocity: Vector;
|
|
898
|
+
bSpawnEnable: boolean;
|
|
899
|
+
RespawnTime: number;
|
|
900
|
+
SpawnedEntityIds: number[];
|
|
901
|
+
};
|
|
902
|
+
export type BrickComponentData_Seat_V2 = {
|
|
903
|
+
bIsOccupied: boolean;
|
|
904
|
+
ExitOffset: IntVector;
|
|
905
|
+
bRollCameraInThirdPerson: boolean;
|
|
906
|
+
bAllowNearbyInteraction: boolean;
|
|
907
|
+
bHiddenInteraction: boolean;
|
|
908
|
+
PromptCustomLabel: string;
|
|
909
|
+
};
|
|
910
|
+
export type BrickComponentData_SpotLight = {
|
|
911
|
+
Rotation: Rotator3f;
|
|
912
|
+
InnerConeAngle: number;
|
|
913
|
+
OuterConeAngle: number;
|
|
914
|
+
bEnabled: boolean;
|
|
915
|
+
Brightness: number;
|
|
916
|
+
Radius: number;
|
|
917
|
+
Color: Color;
|
|
918
|
+
bUseBrickColor: boolean;
|
|
919
|
+
bCastShadows: boolean;
|
|
920
|
+
};
|
|
921
|
+
export type BrickComponentData_TextDisplay = {
|
|
922
|
+
Text: string;
|
|
923
|
+
Font: number | null;
|
|
924
|
+
Rotation: number;
|
|
925
|
+
Skew: number;
|
|
926
|
+
Kerning: number;
|
|
927
|
+
LineHeight: number;
|
|
928
|
+
LineOffset: number;
|
|
929
|
+
Anchor: Vector2f;
|
|
930
|
+
Offset: Vector3f;
|
|
931
|
+
Color: Color;
|
|
932
|
+
MaterialSlider: number;
|
|
933
|
+
ShadingWidth: number;
|
|
934
|
+
OutlineColor: Color;
|
|
935
|
+
OutlineWidth: number;
|
|
936
|
+
ScuffWidth: number;
|
|
937
|
+
GraffitiDepthLimit: number;
|
|
938
|
+
GraffitiAngleLimit: number;
|
|
939
|
+
GraffitiLayer: number;
|
|
940
|
+
bEnabled: boolean;
|
|
941
|
+
Face: number;
|
|
942
|
+
bAlignToWedge: boolean;
|
|
943
|
+
bOverrideColor: boolean;
|
|
944
|
+
Typeface: number;
|
|
945
|
+
Billboard: number;
|
|
946
|
+
Material: number;
|
|
947
|
+
Shading: number;
|
|
948
|
+
bFlipShading: boolean;
|
|
949
|
+
Outline: number;
|
|
950
|
+
bSharpCorners: boolean;
|
|
951
|
+
bSharpOutlines: boolean;
|
|
952
|
+
bOverrideOutlineColor: boolean;
|
|
953
|
+
bForeground: boolean;
|
|
954
|
+
};
|
|
955
|
+
export type BrickComponentData_WeightBrick = {
|
|
956
|
+
Mass: number;
|
|
957
|
+
MassSize: IntVector;
|
|
958
|
+
MassOffset: IntVector;
|
|
959
|
+
};
|
|
960
|
+
export type BrickComponentData_WheelEngine_V2 = {
|
|
961
|
+
bEnabled: boolean;
|
|
962
|
+
bEnableManualControl: boolean;
|
|
963
|
+
ManualInput_Drive: number;
|
|
964
|
+
ManualInput_Steer: number;
|
|
965
|
+
bManualInput_Brake: boolean;
|
|
966
|
+
Control_DriveAndSteer: BrickComponentWireControl_DriveAndSteer;
|
|
967
|
+
CustomMass: number;
|
|
968
|
+
CustomMassVerticalOffset: number;
|
|
969
|
+
DriveInterpSpeed: number;
|
|
970
|
+
DriveSpeed: number;
|
|
971
|
+
DriveAcceleratingPowerMultiplier: number;
|
|
972
|
+
DriveBrakingPowerMultiplier: number;
|
|
973
|
+
DriveDampingMultiplier: number;
|
|
974
|
+
SteerPowerMultiplier: number;
|
|
975
|
+
WheelFrictionMultiplier: number;
|
|
976
|
+
SteerInterpSpeed: number;
|
|
977
|
+
SteerLimitSpeedFalloff: number;
|
|
978
|
+
SteerLimitDegree: number;
|
|
979
|
+
CenterOfSteering: number;
|
|
980
|
+
bTankSteering: boolean;
|
|
981
|
+
TankSteerSpeedMultiplier: number;
|
|
982
|
+
bAutoRight: boolean;
|
|
983
|
+
WaterDriveForce: number;
|
|
984
|
+
WaterSteeringForce: number;
|
|
985
|
+
AudioDescriptor: number | null;
|
|
986
|
+
};
|
|
987
|
+
export type BrickComponentData_WireGraph_Exec_Character_AddInventoryBrick = {
|
|
988
|
+
ProceduralSize: Vector;
|
|
989
|
+
};
|
|
990
|
+
export type BrickComponentData_WireGraph_Exec_Character_SetInventoryBrick = {
|
|
991
|
+
Slot: number;
|
|
992
|
+
ProceduralSize: Vector;
|
|
993
|
+
};
|
|
994
|
+
export type BrickComponentData_WireGraph_Exec_Controller_DisplayText = {
|
|
995
|
+
Text: string;
|
|
996
|
+
AnchorX: number;
|
|
997
|
+
AnchorY: number;
|
|
998
|
+
PositionX: number;
|
|
999
|
+
PositionY: number;
|
|
1000
|
+
Angle: number;
|
|
1001
|
+
ScaleX: number;
|
|
1002
|
+
ScaleY: number;
|
|
1003
|
+
FontSize: number;
|
|
1004
|
+
FontColor: Color;
|
|
1005
|
+
OutlineSize: number;
|
|
1006
|
+
OutlineColor: Color;
|
|
1007
|
+
Justification: number;
|
|
1008
|
+
Transition: number;
|
|
1009
|
+
Easing: number;
|
|
1010
|
+
Lifetime: number;
|
|
1011
|
+
TextId: number;
|
|
1012
|
+
};
|
|
1013
|
+
export type BrickComponentData_WireGraph_Exec_Entity_AddLocationRotation = {
|
|
1014
|
+
Vector: Vector;
|
|
1015
|
+
Rotation: Rotator;
|
|
1016
|
+
};
|
|
1017
|
+
export type BrickComponentData_WireGraph_Exec_Entity_AddVelocity = {
|
|
1018
|
+
Vector: Vector;
|
|
1019
|
+
Rotation: Vector;
|
|
1020
|
+
};
|
|
1021
|
+
export type BrickComponentData_WireGraph_Exec_Entity_RelativeTeleport = {
|
|
1022
|
+
Source: BrickComponentWirePortControl_TeleportDestination;
|
|
1023
|
+
Destination: BrickComponentWirePortControl_TeleportDestination;
|
|
1024
|
+
};
|
|
1025
|
+
export type BrickComponentData_WireGraph_Exec_Entity_SetAngularVelocity = {
|
|
1026
|
+
AngularVelocity: Vector;
|
|
1027
|
+
};
|
|
1028
|
+
export type BrickComponentData_WireGraph_Exec_Entity_SetGravityDirection = {
|
|
1029
|
+
Rotation: Rotator;
|
|
1030
|
+
};
|
|
1031
|
+
export type BrickComponentData_WireGraph_Exec_Entity_SetLinearVelocity = {
|
|
1032
|
+
LinearVelocity: Vector;
|
|
1033
|
+
};
|
|
1034
|
+
export type BrickComponentData_WireGraph_Exec_Entity_SetLocation = {
|
|
1035
|
+
Vector: Vector;
|
|
1036
|
+
};
|
|
1037
|
+
export type BrickComponentData_WireGraph_Exec_Entity_SetLocationRotation = {
|
|
1038
|
+
Vector: Vector;
|
|
1039
|
+
Rotation: Rotator;
|
|
1040
|
+
};
|
|
1041
|
+
export type BrickComponentData_WireGraph_Exec_Entity_SetRotation = {
|
|
1042
|
+
Rotation: Rotator;
|
|
1043
|
+
};
|
|
1044
|
+
export type BrickComponentData_WireGraph_Exec_Entity_SetVelocity = {
|
|
1045
|
+
Vector: Vector;
|
|
1046
|
+
Rotation: Vector;
|
|
1047
|
+
};
|
|
1048
|
+
export type BrickComponentData_WireGraph_Exec_Entity_Teleport = {
|
|
1049
|
+
Destination: BrickComponentWirePortControl_TeleportDestination;
|
|
1050
|
+
};
|
|
1051
|
+
export type BrickComponentData_WireGraph_Exec_PrefabSpawner = {
|
|
1052
|
+
Prefab: string;
|
|
1053
|
+
SpawnOffset: Vector;
|
|
1054
|
+
SpawnOffsetRotation: Rotator;
|
|
1055
|
+
SpawnVelocity: Vector;
|
|
1056
|
+
Lifetime: number;
|
|
1057
|
+
Limit: number;
|
|
1058
|
+
SpawnedEntityIds: number[];
|
|
1059
|
+
};
|
|
1060
|
+
export type BrickComponentData_WireGraph_Exec_Sweep = {
|
|
1061
|
+
Origin: Vector;
|
|
1062
|
+
Direction: Vector;
|
|
1063
|
+
Distance: number;
|
|
1064
|
+
Radius: number;
|
|
1065
|
+
bDetectBricks: boolean;
|
|
1066
|
+
bDetectPlayers1: boolean;
|
|
1067
|
+
bDetectPlayers2: boolean;
|
|
1068
|
+
bDetectPlayers3: boolean;
|
|
1069
|
+
bDetectPlayers4: boolean;
|
|
1070
|
+
bDetectPhysics: boolean;
|
|
1071
|
+
bDetectMap: boolean;
|
|
1072
|
+
bRelative: boolean;
|
|
1073
|
+
bIgnoreOwningGrid: boolean;
|
|
1074
|
+
};
|
|
1075
|
+
export type BrickComponentData_WireGraph_Expr_ColorBlend = {
|
|
1076
|
+
ColorA: LinearColor;
|
|
1077
|
+
ColorB: LinearColor;
|
|
1078
|
+
Alpha: number;
|
|
1079
|
+
BlendSpace: number;
|
|
1080
|
+
bClampAlpha: boolean;
|
|
1081
|
+
};
|
|
1082
|
+
export type BrickComponentData_WireGraph_Expr_ColorConvert = {
|
|
1083
|
+
Input: LinearColor;
|
|
1084
|
+
FromSpace: number;
|
|
1085
|
+
ToSpace: number;
|
|
1086
|
+
};
|
|
1087
|
+
export type BrickComponentData_WireGraph_Expr_ColorToHex = {
|
|
1088
|
+
Input: LinearColor;
|
|
1089
|
+
};
|
|
1090
|
+
export type BrickComponentData_WireGraph_Expr_DirectionToRotation = {
|
|
1091
|
+
Direction: Vector;
|
|
1092
|
+
};
|
|
1093
|
+
export type BrickComponentData_WireGraph_Expr_InvertRotation = {
|
|
1094
|
+
Input: Quat;
|
|
1095
|
+
};
|
|
1096
|
+
export type BrickComponentData_WireGraph_Expr_QuatAngleBetween = {
|
|
1097
|
+
InputA: Quat;
|
|
1098
|
+
InputB: Quat;
|
|
1099
|
+
};
|
|
1100
|
+
export type BrickComponentData_WireGraph_Expr_QuatBetween = {
|
|
1101
|
+
From: Vector;
|
|
1102
|
+
To: Vector;
|
|
1103
|
+
};
|
|
1104
|
+
export type BrickComponentData_WireGraph_Expr_QuatDotProduct = {
|
|
1105
|
+
InputA: Quat;
|
|
1106
|
+
InputB: Quat;
|
|
1107
|
+
};
|
|
1108
|
+
export type BrickComponentData_WireGraph_Expr_QuatFromAxisAngle = {
|
|
1109
|
+
Axis: Vector;
|
|
1110
|
+
Angle: number;
|
|
1111
|
+
};
|
|
1112
|
+
export type BrickComponentData_WireGraph_Expr_QuatSlerp = {
|
|
1113
|
+
InputA: Quat;
|
|
1114
|
+
InputB: Quat;
|
|
1115
|
+
Alpha: number;
|
|
1116
|
+
bShortestPath: boolean;
|
|
1117
|
+
bClampAlpha: boolean;
|
|
1118
|
+
};
|
|
1119
|
+
export type BrickComponentData_WireGraph_Expr_QuatToAxisAngle = {
|
|
1120
|
+
Input: Quat;
|
|
1121
|
+
};
|
|
1122
|
+
export type BrickComponentData_WireGraph_Expr_RotateVector = {
|
|
1123
|
+
Rotation: Quat;
|
|
1124
|
+
Vector: Vector;
|
|
1125
|
+
};
|
|
1126
|
+
export type BrickComponentData_WireGraph_Expr_RotationToDirection = {
|
|
1127
|
+
Rotation: Quat;
|
|
1128
|
+
};
|
|
1129
|
+
export type BrickComponentData_WireGraph_Expr_SplitColor = {
|
|
1130
|
+
Input: LinearColor;
|
|
1131
|
+
};
|
|
1132
|
+
export type BrickComponentData_WireGraph_Expr_SplitColorSRGB = {
|
|
1133
|
+
Input: LinearColor;
|
|
1134
|
+
};
|
|
1135
|
+
export type BrickComponentData_WireGraph_Expr_SplitQuaternion = {
|
|
1136
|
+
Input: Quat;
|
|
1137
|
+
};
|
|
1138
|
+
export type BrickComponentData_WireGraph_Expr_SplitRotation = {
|
|
1139
|
+
Input: Rotator;
|
|
1140
|
+
};
|
|
1141
|
+
export type BrickComponentData_WireGraph_Expr_SplitVector = {
|
|
1142
|
+
Input: Vector;
|
|
1143
|
+
};
|
|
1144
|
+
export type BrickComponentData_WireGraph_Expr_Vec_Float = {
|
|
1145
|
+
Input: Vector;
|
|
1146
|
+
};
|
|
1147
|
+
export type BrickComponentData_WireGraph_Expr_Vec_Vec = {
|
|
1148
|
+
Input: Vector;
|
|
1149
|
+
};
|
|
1150
|
+
export type BrickComponentData_WireGraph_Expr_VecFloat_Vec = {
|
|
1151
|
+
Input: Vector;
|
|
1152
|
+
Scalar: number;
|
|
1153
|
+
};
|
|
1154
|
+
export type BrickComponentData_WireGraph_Expr_VecVec_Float = {
|
|
1155
|
+
InputA: Vector;
|
|
1156
|
+
InputB: Vector;
|
|
1157
|
+
};
|
|
1158
|
+
export type BrickComponentData_WireGraph_Expr_VecVec_Vec = {
|
|
1159
|
+
InputA: Vector;
|
|
1160
|
+
InputB: Vector;
|
|
1161
|
+
};
|
|
1162
|
+
export type BrickComponentData_WireGraphPseudo_Dampen = {
|
|
1163
|
+
Target: BrdbVariant;
|
|
1164
|
+
Value: BrdbVariant;
|
|
1165
|
+
SmoothTime: number;
|
|
1166
|
+
Velocity: Vector4;
|
|
1167
|
+
};
|
|
1168
|
+
export type BrickComponentData_WireGraphPseudo_QueueSeconds = {
|
|
1169
|
+
SecondsToWait: number;
|
|
1170
|
+
Entries: BRQueueSecondsEntry[];
|
|
1171
|
+
DataIn1: BrdbVariant;
|
|
1172
|
+
DataIn2: BrdbVariant;
|
|
1173
|
+
DataIn3: BrdbVariant;
|
|
1174
|
+
DataIn4: BrdbVariant;
|
|
1175
|
+
DataIn5: BrdbVariant;
|
|
1176
|
+
DataIn6: BrdbVariant;
|
|
1177
|
+
DataIn7: BrdbVariant;
|
|
1178
|
+
DataIn8: BrdbVariant;
|
|
1179
|
+
DataOut1: BrdbVariant;
|
|
1180
|
+
DataOut2: BrdbVariant;
|
|
1181
|
+
DataOut3: BrdbVariant;
|
|
1182
|
+
DataOut4: BrdbVariant;
|
|
1183
|
+
DataOut5: BrdbVariant;
|
|
1184
|
+
DataOut6: BrdbVariant;
|
|
1185
|
+
DataOut7: BrdbVariant;
|
|
1186
|
+
DataOut8: BrdbVariant;
|
|
1187
|
+
};
|
|
1188
|
+
export type BrickComponentData_WireGraphPseudo_QueueTicks = {
|
|
1189
|
+
TicksToWait: number;
|
|
1190
|
+
Entries: BRQueueTicksEntry[];
|
|
1191
|
+
DataIn1: BrdbVariant;
|
|
1192
|
+
DataIn2: BrdbVariant;
|
|
1193
|
+
DataIn3: BrdbVariant;
|
|
1194
|
+
DataIn4: BrdbVariant;
|
|
1195
|
+
DataIn5: BrdbVariant;
|
|
1196
|
+
DataIn6: BrdbVariant;
|
|
1197
|
+
DataIn7: BrdbVariant;
|
|
1198
|
+
DataIn8: BrdbVariant;
|
|
1199
|
+
DataOut1: BrdbVariant;
|
|
1200
|
+
DataOut2: BrdbVariant;
|
|
1201
|
+
DataOut3: BrdbVariant;
|
|
1202
|
+
DataOut4: BrdbVariant;
|
|
1203
|
+
DataOut5: BrdbVariant;
|
|
1204
|
+
DataOut6: BrdbVariant;
|
|
1205
|
+
DataOut7: BrdbVariant;
|
|
1206
|
+
DataOut8: BrdbVariant;
|
|
1207
|
+
};
|
|
1208
|
+
export type BrickTypeNetWrapper = {
|
|
1209
|
+
BrickAsset: number | null;
|
|
1210
|
+
ProceduralSize: IntVector;
|
|
1211
|
+
};
|
|
1212
|
+
export type BRInventoryEntryConfig = {
|
|
1213
|
+
Item: BRInventoryEntryVariant;
|
|
1214
|
+
};
|
|
1215
|
+
export type BRPlayerPartCustomizationV3 = {
|
|
1216
|
+
PartDescriptor: number | null;
|
|
1217
|
+
DecalDescriptor: number | null;
|
|
1218
|
+
SocketName: string;
|
|
1219
|
+
Colors: Color[];
|
|
1220
|
+
};
|
|
1221
|
+
export type BRSavedComponentChunkSoA = {
|
|
1222
|
+
ComponentTypeCounters: BRSavedBrickComponentTypeCounter[];
|
|
1223
|
+
ComponentBrickIndices: number[];
|
|
1224
|
+
JointBrickIndices: number[];
|
|
1225
|
+
JointEntityReferences: number[];
|
|
1226
|
+
JointInitialRelativeOffsets: Vector3f[];
|
|
1227
|
+
JointInitialRelativeRotations: Quat4f[];
|
|
1228
|
+
MicrochipBrickIndices: number[];
|
|
1229
|
+
MicrochipBrickGridReferences: number[];
|
|
1230
|
+
};
|
|
1231
|
+
export type WireGraphLinearColorArray = {
|
|
1232
|
+
Values: LinearColor[];
|
|
1233
|
+
};
|
|
1234
|
+
export type WireGraphQuatArray = {
|
|
1235
|
+
Values: Quat[];
|
|
1236
|
+
};
|
|
1237
|
+
export type WireGraphRotatorArray = {
|
|
1238
|
+
Values: Rotator[];
|
|
1239
|
+
};
|
|
1240
|
+
export type WireGraphVectorArray = {
|
|
1241
|
+
Values: Vector[];
|
|
1242
|
+
};
|
|
1243
|
+
export type BrickComponentData_WireGraph_Exec_Character_AddInventoryEntry = {
|
|
1244
|
+
Entry: BRInventoryEntryConfig;
|
|
1245
|
+
};
|
|
1246
|
+
export type BRInventoryEntryPlan = {
|
|
1247
|
+
Type: number;
|
|
1248
|
+
BrickTypeIfBrick: BrickTypeNetWrapper;
|
|
1249
|
+
EntityTypeIfEntity: number | null;
|
|
1250
|
+
ItemTypeIfItem: number | null;
|
|
1251
|
+
};
|
|
1252
|
+
export type BRPlayerAvatarCustomizationV3 = {
|
|
1253
|
+
Parts: BRPlayerPartCustomizationV3[];
|
|
1254
|
+
};
|
|
1255
|
+
export type BrickComponentData_BotSpawn = {
|
|
1256
|
+
RespawnTime: number;
|
|
1257
|
+
CorpseTimeout: number;
|
|
1258
|
+
GunSkill: number;
|
|
1259
|
+
Agression: number;
|
|
1260
|
+
ReactionTime: number;
|
|
1261
|
+
MovementRandomness: number;
|
|
1262
|
+
RunSpeed: number;
|
|
1263
|
+
HealthMultiplier: number;
|
|
1264
|
+
Jumpyness: number;
|
|
1265
|
+
MovementAmount: number;
|
|
1266
|
+
AttackMovementAmount: number;
|
|
1267
|
+
AggroRange: number;
|
|
1268
|
+
AttackDamageMultiplier: number;
|
|
1269
|
+
bCanJump: boolean;
|
|
1270
|
+
bBackVision: boolean;
|
|
1271
|
+
bVisionRaycasting: boolean;
|
|
1272
|
+
bCanTargetPlayers: boolean;
|
|
1273
|
+
bCanTargetBots: boolean;
|
|
1274
|
+
bActiveBot: boolean;
|
|
1275
|
+
bSpawnEnable: boolean;
|
|
1276
|
+
bDeleteBot: boolean;
|
|
1277
|
+
MoveTarget: Vector;
|
|
1278
|
+
MovementGoalDummy: BrickComponentWirePortControl_TeleportDestination;
|
|
1279
|
+
BotName: string;
|
|
1280
|
+
Skin: BRPlayerAvatarCustomizationV3;
|
|
1281
|
+
bColorsAreLinear: boolean;
|
|
1282
|
+
TeamCollisionChannel: number;
|
|
1283
|
+
bTeamCollision: boolean;
|
|
1284
|
+
bTeamCollision1: boolean;
|
|
1285
|
+
bTeamCollision2: boolean;
|
|
1286
|
+
bTeamCollision3: boolean;
|
|
1287
|
+
BotWeapon: number | null;
|
|
1288
|
+
};
|
|
1289
|
+
export type BrickComponentData_WireGraph_Exec_Character_SetInventoryEntry = {
|
|
1290
|
+
Slot: number;
|
|
1291
|
+
Entry: BRInventoryEntryConfig;
|
|
1292
|
+
EntryPlan: BRInventoryEntryPlan;
|
|
1293
|
+
};
|
|
1294
|
+
/** Component type name -> data struct shape, for editor completion. */
|
|
1295
|
+
export type ComponentTypeDataMap = {
|
|
1296
|
+
BrickComponentType_Internal_CharacterZoneEvent_Entered: BrickComponentData_Internal_CharacterZoneEvent;
|
|
1297
|
+
BrickComponentType_Internal_CharacterZoneEvent_Left: BrickComponentData_Internal_CharacterZoneEvent;
|
|
1298
|
+
BrickComponentType_Internal_EntityZoneEvent_Entered: BrickComponentData_Internal_EntityZoneEvent;
|
|
1299
|
+
BrickComponentType_Internal_EntityZoneEvent_Left: BrickComponentData_Internal_EntityZoneEvent;
|
|
1300
|
+
BrickComponentType_Internal_MicrochipInput: BrickComponentData_Internal_MicrochipInput;
|
|
1301
|
+
BrickComponentType_Internal_MicrochipOutput: BrickComponentData_Internal_MicrochipOutput;
|
|
1302
|
+
BrickComponentType_Internal_ProjectileZoneEvent_Entered: BrickComponentData_Internal_ProjectileZoneEvent;
|
|
1303
|
+
BrickComponentType_Internal_ProjectileZoneEvent_Left: BrickComponentData_Internal_ProjectileZoneEvent;
|
|
1304
|
+
BrickComponentType_Internal_ReadBrickGrid: BrickComponentData_Internal_ReadBrickGrid;
|
|
1305
|
+
BrickComponentType_Internal_TeleportDestination: BrickComponentData_TeleportDestination;
|
|
1306
|
+
BrickComponentType_Internal_ZoneEvent_BrickChanged: BrickComponentData_Internal_ZoneEvent;
|
|
1307
|
+
BrickComponentType_Internal_ZoneEvent_BrickRemoved: BrickComponentData_Internal_ZoneEvent;
|
|
1308
|
+
BrickComponentType_PrefabSpawn: BrickComponentData_PrefabSpawn;
|
|
1309
|
+
BrickComponentType_WireGraphPseudo_ArrayVar: BrickComponentData_WireGraphPseudo_ArrayVar;
|
|
1310
|
+
BrickComponentType_WireGraphPseudo_BufferSeconds: BrickComponentData_WireGraphPseudo_BufferSeconds;
|
|
1311
|
+
BrickComponentType_WireGraphPseudo_BufferTicks: BrickComponentData_WireGraphPseudo_BufferTicks;
|
|
1312
|
+
BrickComponentType_WireGraphPseudo_Dampen: BrickComponentData_WireGraphPseudo_Dampen;
|
|
1313
|
+
BrickComponentType_WireGraphPseudo_QueueSeconds: BrickComponentData_WireGraphPseudo_QueueSeconds;
|
|
1314
|
+
BrickComponentType_WireGraphPseudo_QueueTicks: BrickComponentData_WireGraphPseudo_QueueTicks;
|
|
1315
|
+
BrickComponentType_WireGraphPseudo_Timer: BrickComponentData_WireGraphPseudo_Timer;
|
|
1316
|
+
BrickComponentType_WireGraphPseudo_Tween: BrickComponentData_WireGraphPseudo_Tween;
|
|
1317
|
+
BrickComponentType_WireGraphPseudo_Var: BrickComponentData_WireGraphPseudo_Var;
|
|
1318
|
+
BrickComponentType_WireGraph_AudioReference: BrickComponentData_WireGraph_AudioReference;
|
|
1319
|
+
BrickComponentType_WireGraph_BrickAssetReference: BrickComponentData_WireGraph_BrickAssetReference;
|
|
1320
|
+
BrickComponentType_WireGraph_DeltaTime: BrickComponentData_WireGraph_DeltaTime;
|
|
1321
|
+
BrickComponentType_WireGraph_EntityTypeReference: BrickComponentData_WireGraph_EntityTypeReference;
|
|
1322
|
+
BrickComponentType_WireGraph_Exec_ArrayVar_Append: BrickComponentData_WireGraph_Exec_ArrayVar_DualRef;
|
|
1323
|
+
BrickComponentType_WireGraph_Exec_ArrayVar_Average: BrickComponentData_WireGraph_Exec_ArrayVar_Average;
|
|
1324
|
+
BrickComponentType_WireGraph_Exec_ArrayVar_Clear: BrickComponentData_WireGraph_Exec_ArrayVar_Base;
|
|
1325
|
+
BrickComponentType_WireGraph_Exec_ArrayVar_CopyFrom: BrickComponentData_WireGraph_Exec_ArrayVar_DualRef;
|
|
1326
|
+
BrickComponentType_WireGraph_Exec_ArrayVar_Fill: BrickComponentData_WireGraph_Exec_ArrayVar_Push;
|
|
1327
|
+
BrickComponentType_WireGraph_Exec_ArrayVar_Find: BrickComponentData_WireGraph_Exec_ArrayVar_Find;
|
|
1328
|
+
BrickComponentType_WireGraph_Exec_ArrayVar_Get: BrickComponentData_WireGraph_Exec_ArrayVar_Get;
|
|
1329
|
+
BrickComponentType_WireGraph_Exec_ArrayVar_GetLength: BrickComponentData_WireGraph_Exec_ArrayVar_GetLength;
|
|
1330
|
+
BrickComponentType_WireGraph_Exec_ArrayVar_Insert: BrickComponentData_WireGraph_Exec_ArrayVar_Insert;
|
|
1331
|
+
BrickComponentType_WireGraph_Exec_ArrayVar_Max: BrickComponentData_WireGraph_Exec_ArrayVar_MinMax;
|
|
1332
|
+
BrickComponentType_WireGraph_Exec_ArrayVar_Min: BrickComponentData_WireGraph_Exec_ArrayVar_MinMax;
|
|
1333
|
+
BrickComponentType_WireGraph_Exec_ArrayVar_Pop: BrickComponentData_WireGraph_Exec_ArrayVar_Pop;
|
|
1334
|
+
BrickComponentType_WireGraph_Exec_ArrayVar_Push: BrickComponentData_WireGraph_Exec_ArrayVar_Push;
|
|
1335
|
+
BrickComponentType_WireGraph_Exec_ArrayVar_RemoveAtIndex: BrickComponentData_WireGraph_Exec_ArrayVar_RemoveAtIndex;
|
|
1336
|
+
BrickComponentType_WireGraph_Exec_ArrayVar_Resize: BrickComponentData_WireGraph_Exec_ArrayVar_Resize;
|
|
1337
|
+
BrickComponentType_WireGraph_Exec_ArrayVar_Reverse: BrickComponentData_WireGraph_Exec_ArrayVar_Base;
|
|
1338
|
+
BrickComponentType_WireGraph_Exec_ArrayVar_SetAtIndex: BrickComponentData_WireGraph_Exec_ArrayVar_ElementOp;
|
|
1339
|
+
BrickComponentType_WireGraph_Exec_ArrayVar_Shuffle: BrickComponentData_WireGraph_Exec_ArrayVar_Base;
|
|
1340
|
+
BrickComponentType_WireGraph_Exec_ArrayVar_Slice: BrickComponentData_WireGraph_Exec_ArrayVar_Slice;
|
|
1341
|
+
BrickComponentType_WireGraph_Exec_ArrayVar_Sort: BrickComponentData_WireGraph_Exec_ArrayVar_Sort;
|
|
1342
|
+
BrickComponentType_WireGraph_Exec_ArrayVar_Sum: BrickComponentData_WireGraph_Exec_ArrayVar_Sum;
|
|
1343
|
+
BrickComponentType_WireGraph_Exec_ArrayVar_Swap: BrickComponentData_WireGraph_Exec_ArrayVar_Swap;
|
|
1344
|
+
BrickComponentType_WireGraph_Exec_Branch: BrickComponentData_WireGraph_ExecBranch;
|
|
1345
|
+
BrickComponentType_WireGraph_Exec_Character_AddInventoryBrick: BrickComponentData_WireGraph_Exec_Character_AddInventoryBrick;
|
|
1346
|
+
BrickComponentType_WireGraph_Exec_Character_AddInventoryEntity: BrickComponentData_WireGraph_Exec_Character_AddInventoryEntity;
|
|
1347
|
+
BrickComponentType_WireGraph_Exec_Character_AddInventoryEntry: BrickComponentData_WireGraph_Exec_Character_AddInventoryEntry;
|
|
1348
|
+
BrickComponentType_WireGraph_Exec_Character_AddInventoryItem: BrickComponentData_WireGraph_Exec_Character_AddInventoryItem;
|
|
1349
|
+
BrickComponentType_WireGraph_Exec_Character_GetAim: BrickComponentData_WireGraph_Exec_Character_GetAim;
|
|
1350
|
+
BrickComponentType_WireGraph_Exec_Character_GetDamage: BrickComponentData_WireGraph_Exec_Character_GetDamage;
|
|
1351
|
+
BrickComponentType_WireGraph_Exec_Character_GetFromController: BrickComponentData_WireGraph_Exec_Character_GetFromController;
|
|
1352
|
+
BrickComponentType_WireGraph_Exec_Character_IncDamage: BrickComponentData_WireGraph_Exec_Character_IncDamage;
|
|
1353
|
+
BrickComponentType_WireGraph_Exec_Character_SetDamage: BrickComponentData_WireGraph_Exec_Character_SetDamage;
|
|
1354
|
+
BrickComponentType_WireGraph_Exec_Character_SetInventoryBrick: BrickComponentData_WireGraph_Exec_Character_SetInventoryBrick;
|
|
1355
|
+
BrickComponentType_WireGraph_Exec_Character_SetInventoryEntity: BrickComponentData_WireGraph_Exec_Character_SetInventoryEntity;
|
|
1356
|
+
BrickComponentType_WireGraph_Exec_Character_SetInventoryEntry: BrickComponentData_WireGraph_Exec_Character_SetInventoryEntry;
|
|
1357
|
+
BrickComponentType_WireGraph_Exec_Character_SetInventoryItem: BrickComponentData_WireGraph_Exec_Character_SetInventoryItem;
|
|
1358
|
+
BrickComponentType_WireGraph_Exec_Character_SetTempPermission: BrickComponentData_WireGraph_Exec_Character_SetTempPermission;
|
|
1359
|
+
BrickComponentType_WireGraph_Exec_Character_ShowHint: BrickComponentData_WireGraph_Exec_Character_ShowHint;
|
|
1360
|
+
BrickComponentType_WireGraph_Exec_ChatCommand: BrickComponentData_WireGraph_Exec_ChatCommand;
|
|
1361
|
+
BrickComponentType_WireGraph_Exec_Controller_DisplayText: BrickComponentData_WireGraph_Exec_Controller_DisplayText;
|
|
1362
|
+
BrickComponentType_WireGraph_Exec_Controller_GetDisplayName: BrickComponentData_WireGraph_Exec_Controller_GetDisplayName;
|
|
1363
|
+
BrickComponentType_WireGraph_Exec_Controller_GetFromEntity: BrickComponentData_WireGraph_Exec_Controller_GetFromEntity;
|
|
1364
|
+
BrickComponentType_WireGraph_Exec_Controller_GetUserId: BrickComponentData_WireGraph_Exec_Controller_GetUserId;
|
|
1365
|
+
BrickComponentType_WireGraph_Exec_Controller_GetUserName: BrickComponentData_WireGraph_Exec_Controller_GetUserName;
|
|
1366
|
+
BrickComponentType_WireGraph_Exec_Controller_HasPermission: BrickComponentData_WireGraph_Exec_Controller_HasPermission;
|
|
1367
|
+
BrickComponentType_WireGraph_Exec_Controller_HasRole: BrickComponentData_WireGraph_Exec_Controller_HasRole;
|
|
1368
|
+
BrickComponentType_WireGraph_Exec_Controller_IsTrustedByBrickOwner: BrickComponentData_WireGraph_Exec_Controller_IsTrustedByBrickOwner;
|
|
1369
|
+
BrickComponentType_WireGraph_Exec_Controller_SetCanRespawn: BrickComponentData_WireGraph_Exec_Controller_SetCanRespawn;
|
|
1370
|
+
BrickComponentType_WireGraph_Exec_Controller_ShowChatMessage: BrickComponentData_WireGraph_Exec_Controller_ShowChatMessage;
|
|
1371
|
+
BrickComponentType_WireGraph_Exec_Controller_ShowStatusMessage: BrickComponentData_WireGraph_Exec_Controller_ShowStatusMessage;
|
|
1372
|
+
BrickComponentType_WireGraph_Exec_Cycle: BrickComponentData_WireGraph_Exec_Cycle;
|
|
1373
|
+
BrickComponentType_WireGraph_Exec_Entity_AddLocationRotation: BrickComponentData_WireGraph_Exec_Entity_AddLocationRotation;
|
|
1374
|
+
BrickComponentType_WireGraph_Exec_Entity_AddVelocity: BrickComponentData_WireGraph_Exec_Entity_AddVelocity;
|
|
1375
|
+
BrickComponentType_WireGraph_Exec_Entity_GetAngularVelocity: BrickComponentData_WireGraph_Exec_Entity_GetAngularVelocity;
|
|
1376
|
+
BrickComponentType_WireGraph_Exec_Entity_GetLinearVelocity: BrickComponentData_WireGraph_Exec_Entity_GetLinearVelocity;
|
|
1377
|
+
BrickComponentType_WireGraph_Exec_Entity_GetLocation: BrickComponentData_WireGraph_Exec_Entity_GetLocation;
|
|
1378
|
+
BrickComponentType_WireGraph_Exec_Entity_GetLocationRotation: BrickComponentData_WireGraph_Exec_Entity_GetLocationRotation;
|
|
1379
|
+
BrickComponentType_WireGraph_Exec_Entity_GetRotation: BrickComponentData_WireGraph_Exec_Entity_GetRotation;
|
|
1380
|
+
BrickComponentType_WireGraph_Exec_Entity_GetTag: BrickComponentData_WireGraph_Exec_Entity_GetTag;
|
|
1381
|
+
BrickComponentType_WireGraph_Exec_Entity_GetVelocity: BrickComponentData_WireGraph_Exec_Entity_GetVelocity;
|
|
1382
|
+
BrickComponentType_WireGraph_Exec_Entity_RelativeTeleport: BrickComponentData_WireGraph_Exec_Entity_RelativeTeleport;
|
|
1383
|
+
BrickComponentType_WireGraph_Exec_Entity_SetAngularVelocity: BrickComponentData_WireGraph_Exec_Entity_SetAngularVelocity;
|
|
1384
|
+
BrickComponentType_WireGraph_Exec_Entity_SetFrozen: BrickComponentData_WireGraph_Exec_Entity_SetFrozen;
|
|
1385
|
+
BrickComponentType_WireGraph_Exec_Entity_SetGravityDirection: BrickComponentData_WireGraph_Exec_Entity_SetGravityDirection;
|
|
1386
|
+
BrickComponentType_WireGraph_Exec_Entity_SetLinearVelocity: BrickComponentData_WireGraph_Exec_Entity_SetLinearVelocity;
|
|
1387
|
+
BrickComponentType_WireGraph_Exec_Entity_SetLocation: BrickComponentData_WireGraph_Exec_Entity_SetLocation;
|
|
1388
|
+
BrickComponentType_WireGraph_Exec_Entity_SetLocationRotation: BrickComponentData_WireGraph_Exec_Entity_SetLocationRotation;
|
|
1389
|
+
BrickComponentType_WireGraph_Exec_Entity_SetRotation: BrickComponentData_WireGraph_Exec_Entity_SetRotation;
|
|
1390
|
+
BrickComponentType_WireGraph_Exec_Entity_SetTag: BrickComponentData_WireGraph_Exec_Entity_SetTag;
|
|
1391
|
+
BrickComponentType_WireGraph_Exec_Entity_SetVelocity: BrickComponentData_WireGraph_Exec_Entity_SetVelocity;
|
|
1392
|
+
BrickComponentType_WireGraph_Exec_Entity_Teleport: BrickComponentData_WireGraph_Exec_Entity_Teleport;
|
|
1393
|
+
BrickComponentType_WireGraph_Exec_Gamemode_BroadcastChatMessage: BrickComponentData_WireGraph_Exec_Gamemode_BroadcastChatMessage;
|
|
1394
|
+
BrickComponentType_WireGraph_Exec_Gamemode_BroadcastStatusMessage: BrickComponentData_WireGraph_Exec_Gamemode_BroadcastStatusMessage;
|
|
1395
|
+
BrickComponentType_WireGraph_Exec_Gamemode_FillArrayFromPlayers: BrickComponentData_WireGraph_Exec_ArrayVar_Base;
|
|
1396
|
+
BrickComponentType_WireGraph_Exec_Gamemode_FillArrayFromTeamMembers: BrickComponentData_WireGraph_Exec_Gamemode_FillArrayFromTeamMembers;
|
|
1397
|
+
BrickComponentType_WireGraph_Exec_Gamemode_GetCurrentRound: BrickComponentData_WireGraph_Exec_Gamemode_GetCurrentRound;
|
|
1398
|
+
BrickComponentType_WireGraph_Exec_Gamemode_GetLeaderboardValue: BrickComponentData_WireGraph_Exec_Gamemode_GetLeaderboardValue;
|
|
1399
|
+
BrickComponentType_WireGraph_Exec_Gamemode_GetTeam: BrickComponentData_WireGraph_Exec_Gamemode_GetTeam;
|
|
1400
|
+
BrickComponentType_WireGraph_Exec_Gamemode_GetTeamByName: BrickComponentData_WireGraph_Exec_Gamemode_GetTeamByName;
|
|
1401
|
+
BrickComponentType_WireGraph_Exec_Gamemode_GetTeamLeaderboardValue: BrickComponentData_WireGraph_Exec_Gamemode_GetTeamLeaderboardValue;
|
|
1402
|
+
BrickComponentType_WireGraph_Exec_Gamemode_GetTeamName: BrickComponentData_WireGraph_Exec_Gamemode_GetTeamName;
|
|
1403
|
+
BrickComponentType_WireGraph_Exec_Gamemode_IncrementLeaderboardValue: BrickComponentData_WireGraph_Exec_Gamemode_LeaderboardValue;
|
|
1404
|
+
BrickComponentType_WireGraph_Exec_Gamemode_IncrementTeamLeaderboardValue: BrickComponentData_WireGraph_Exec_Gamemode_TeamLeaderboardValue;
|
|
1405
|
+
BrickComponentType_WireGraph_Exec_Gamemode_PlayerWins: BrickComponentData_WireGraph_Exec_Gamemode_PlayerWins;
|
|
1406
|
+
BrickComponentType_WireGraph_Exec_Gamemode_SetLeaderboardValue: BrickComponentData_WireGraph_Exec_Gamemode_LeaderboardValue;
|
|
1407
|
+
BrickComponentType_WireGraph_Exec_Gamemode_SetTeam: BrickComponentData_WireGraph_Exec_Gamemode_SetTeam;
|
|
1408
|
+
BrickComponentType_WireGraph_Exec_Gamemode_SetTeamLeaderboardValue: BrickComponentData_WireGraph_Exec_Gamemode_TeamLeaderboardValue;
|
|
1409
|
+
BrickComponentType_WireGraph_Exec_Gamemode_SetTeamPinned: BrickComponentData_WireGraph_Exec_Gamemode_SetTeamPinned;
|
|
1410
|
+
BrickComponentType_WireGraph_Exec_Gamemode_TeamWins: BrickComponentData_WireGraph_Exec_Gamemode_TeamWins;
|
|
1411
|
+
BrickComponentType_WireGraph_Exec_PlayGlobalAudio: BrickComponentData_WireGraph_Exec_PlayGlobalAudio;
|
|
1412
|
+
BrickComponentType_WireGraph_Exec_PrefabSpawner: BrickComponentData_WireGraph_Exec_PrefabSpawner;
|
|
1413
|
+
BrickComponentType_WireGraph_Exec_PrintToConsole: BrickComponentData_WireGraph_Exec_PrintToConsole;
|
|
1414
|
+
BrickComponentType_WireGraph_Exec_Random: BrickComponentData_WireGraph_Exec_Random;
|
|
1415
|
+
BrickComponentType_WireGraph_Exec_Sweep: BrickComponentData_WireGraph_Exec_Sweep;
|
|
1416
|
+
BrickComponentType_WireGraph_Exec_Toggle: BrickComponentData_WireGraph_Exec_Toggle;
|
|
1417
|
+
BrickComponentType_WireGraph_Exec_Union: BrickComponentData_WireGraph_ExecUnion;
|
|
1418
|
+
BrickComponentType_WireGraph_Exec_Var_Get: BrickComponentData_WireGraph_Exec_Var_Get;
|
|
1419
|
+
BrickComponentType_WireGraph_Exec_Var_Increment: BrickComponentData_WireGraph_Exec_Var_EditOrGet;
|
|
1420
|
+
BrickComponentType_WireGraph_Exec_Var_Set: BrickComponentData_WireGraph_Exec_Var_EditOrGet;
|
|
1421
|
+
BrickComponentType_WireGraph_Expr_BitwiseAND: BrickComponentData_WireGraph_Expr_IntInt_Int;
|
|
1422
|
+
BrickComponentType_WireGraph_Expr_BitwiseBitCount: BrickComponentData_WireGraph_Expr_Int_Int;
|
|
1423
|
+
BrickComponentType_WireGraph_Expr_BitwiseNAND: BrickComponentData_WireGraph_Expr_IntInt_Int;
|
|
1424
|
+
BrickComponentType_WireGraph_Expr_BitwiseNOR: BrickComponentData_WireGraph_Expr_IntInt_Int;
|
|
1425
|
+
BrickComponentType_WireGraph_Expr_BitwiseNOT: BrickComponentData_WireGraph_Expr_Int_Int;
|
|
1426
|
+
BrickComponentType_WireGraph_Expr_BitwiseOR: BrickComponentData_WireGraph_Expr_IntInt_Int;
|
|
1427
|
+
BrickComponentType_WireGraph_Expr_BitwiseShiftLeft: BrickComponentData_WireGraph_Expr_IntInt_Int;
|
|
1428
|
+
BrickComponentType_WireGraph_Expr_BitwiseShiftRight: BrickComponentData_WireGraph_Expr_IntInt_Int;
|
|
1429
|
+
BrickComponentType_WireGraph_Expr_BitwiseXOR: BrickComponentData_WireGraph_Expr_IntInt_Int;
|
|
1430
|
+
BrickComponentType_WireGraph_Expr_Ceil: BrickComponentData_WireGraph_Expr_Float_Float;
|
|
1431
|
+
BrickComponentType_WireGraph_Expr_ColorBlend: BrickComponentData_WireGraph_Expr_ColorBlend;
|
|
1432
|
+
BrickComponentType_WireGraph_Expr_ColorConvert: BrickComponentData_WireGraph_Expr_ColorConvert;
|
|
1433
|
+
BrickComponentType_WireGraph_Expr_ColorToHex: BrickComponentData_WireGraph_Expr_ColorToHex;
|
|
1434
|
+
BrickComponentType_WireGraph_Expr_CompareEqual: BrickComponentData_WireGraph_Expr_Compare;
|
|
1435
|
+
BrickComponentType_WireGraph_Expr_CompareGreater: BrickComponentData_WireGraph_Expr_MathCompare;
|
|
1436
|
+
BrickComponentType_WireGraph_Expr_CompareGreaterOrEqual: BrickComponentData_WireGraph_Expr_MathCompare;
|
|
1437
|
+
BrickComponentType_WireGraph_Expr_CompareLess: BrickComponentData_WireGraph_Expr_MathCompare;
|
|
1438
|
+
BrickComponentType_WireGraph_Expr_CompareLessOrEqual: BrickComponentData_WireGraph_Expr_MathCompare;
|
|
1439
|
+
BrickComponentType_WireGraph_Expr_CompareNotEqual: BrickComponentData_WireGraph_Expr_Compare;
|
|
1440
|
+
BrickComponentType_WireGraph_Expr_Convert: BrickComponentData_WireGraph_Expr_Convert;
|
|
1441
|
+
BrickComponentType_WireGraph_Expr_DirectionToRotation: BrickComponentData_WireGraph_Expr_DirectionToRotation;
|
|
1442
|
+
BrickComponentType_WireGraph_Expr_EdgeDetector: BrickComponentData_WireGraph_Expr_EdgeDetector;
|
|
1443
|
+
BrickComponentType_WireGraph_Expr_Floor: BrickComponentData_WireGraph_Expr_Float_Float;
|
|
1444
|
+
BrickComponentType_WireGraph_Expr_InvertRotation: BrickComponentData_WireGraph_Expr_InvertRotation;
|
|
1445
|
+
BrickComponentType_WireGraph_Expr_LogicalAND: BrickComponentData_WireGraph_Expr_BoolBool_Bool;
|
|
1446
|
+
BrickComponentType_WireGraph_Expr_LogicalNAND: BrickComponentData_WireGraph_Expr_BoolBool_Bool;
|
|
1447
|
+
BrickComponentType_WireGraph_Expr_LogicalNOR: BrickComponentData_WireGraph_Expr_BoolBool_Bool;
|
|
1448
|
+
BrickComponentType_WireGraph_Expr_LogicalNOT: BrickComponentData_WireGraph_Expr_Bool_Bool;
|
|
1449
|
+
BrickComponentType_WireGraph_Expr_LogicalOR: BrickComponentData_WireGraph_Expr_BoolBool_Bool;
|
|
1450
|
+
BrickComponentType_WireGraph_Expr_LogicalXOR: BrickComponentData_WireGraph_Expr_BoolBool_Bool;
|
|
1451
|
+
BrickComponentType_WireGraph_Expr_MakeColor: BrickComponentData_WireGraph_Expr_MakeColor;
|
|
1452
|
+
BrickComponentType_WireGraph_Expr_MakeColorHex: BrickComponentData_WireGraph_Expr_MakeColorHex;
|
|
1453
|
+
BrickComponentType_WireGraph_Expr_MakeColorSRGB: BrickComponentData_WireGraph_Expr_MakeColorSRGB;
|
|
1454
|
+
BrickComponentType_WireGraph_Expr_MakeQuaternion: BrickComponentData_WireGraph_Expr_MakeQuaternion;
|
|
1455
|
+
BrickComponentType_WireGraph_Expr_MakeRotation: BrickComponentData_WireGraph_Expr_MakeRotation;
|
|
1456
|
+
BrickComponentType_WireGraph_Expr_MakeVector: BrickComponentData_WireGraph_Expr_MakeVector;
|
|
1457
|
+
BrickComponentType_WireGraph_Expr_MathAbs: BrickComponentData_WireGraph_Expr_PrimMathVariant_PrimMathVariant;
|
|
1458
|
+
BrickComponentType_WireGraph_Expr_MathAcos: BrickComponentData_WireGraph_Expr_Float_Float;
|
|
1459
|
+
BrickComponentType_WireGraph_Expr_MathAcosh: BrickComponentData_WireGraph_Expr_Float_Float;
|
|
1460
|
+
BrickComponentType_WireGraph_Expr_MathAdd: BrickComponentData_WireGraph_Expr_PrimMathVariantPrimMathVariant_PrimMathVariant;
|
|
1461
|
+
BrickComponentType_WireGraph_Expr_MathAsin: BrickComponentData_WireGraph_Expr_Float_Float;
|
|
1462
|
+
BrickComponentType_WireGraph_Expr_MathAsinh: BrickComponentData_WireGraph_Expr_Float_Float;
|
|
1463
|
+
BrickComponentType_WireGraph_Expr_MathAtan: BrickComponentData_WireGraph_Expr_Float_Float;
|
|
1464
|
+
BrickComponentType_WireGraph_Expr_MathAtan2: BrickComponentData_WireGraph_Expr_MathAtan2;
|
|
1465
|
+
BrickComponentType_WireGraph_Expr_MathAtanh: BrickComponentData_WireGraph_Expr_Float_Float;
|
|
1466
|
+
BrickComponentType_WireGraph_Expr_MathBlend: BrickComponentData_WireGraph_Expr_MathBlend;
|
|
1467
|
+
BrickComponentType_WireGraph_Expr_MathClamp: BrickComponentData_WireGraph_Expr_MathClamp;
|
|
1468
|
+
BrickComponentType_WireGraph_Expr_MathCos: BrickComponentData_WireGraph_Expr_Float_Float;
|
|
1469
|
+
BrickComponentType_WireGraph_Expr_MathCosh: BrickComponentData_WireGraph_Expr_Float_Float;
|
|
1470
|
+
BrickComponentType_WireGraph_Expr_MathDegreesToRadians: BrickComponentData_WireGraph_Expr_Float_Float;
|
|
1471
|
+
BrickComponentType_WireGraph_Expr_MathDivide: BrickComponentData_WireGraph_Expr_PrimMathVariantPrimMathVariant_PrimMathVariant;
|
|
1472
|
+
BrickComponentType_WireGraph_Expr_MathEasing: BrickComponentData_WireGraph_Expr_MathEasing;
|
|
1473
|
+
BrickComponentType_WireGraph_Expr_MathExp: BrickComponentData_WireGraph_Expr_Float_Float;
|
|
1474
|
+
BrickComponentType_WireGraph_Expr_MathLn: BrickComponentData_WireGraph_Expr_Float_Float;
|
|
1475
|
+
BrickComponentType_WireGraph_Expr_MathLogBase: BrickComponentData_WireGraph_Expr_MathLogBase;
|
|
1476
|
+
BrickComponentType_WireGraph_Expr_MathMax: BrickComponentData_WireGraph_Expr_PrimMathVariantPrimMathVariant_PrimMathVariant;
|
|
1477
|
+
BrickComponentType_WireGraph_Expr_MathMin: BrickComponentData_WireGraph_Expr_PrimMathVariantPrimMathVariant_PrimMathVariant;
|
|
1478
|
+
BrickComponentType_WireGraph_Expr_MathModulo: BrickComponentData_WireGraph_Expr_PrimMathVariantPrimMathVariant_PrimMathVariant;
|
|
1479
|
+
BrickComponentType_WireGraph_Expr_MathModuloFloored: BrickComponentData_WireGraph_Expr_PrimMathVariantPrimMathVariant_PrimMathVariant;
|
|
1480
|
+
BrickComponentType_WireGraph_Expr_MathMultiply: BrickComponentData_WireGraph_Expr_PrimMathVariantPrimMathVariant_PrimMathVariant;
|
|
1481
|
+
BrickComponentType_WireGraph_Expr_MathNegate: BrickComponentData_WireGraph_Expr_Variant_Variant;
|
|
1482
|
+
BrickComponentType_WireGraph_Expr_MathPow: BrickComponentData_WireGraph_Expr_MathPow;
|
|
1483
|
+
BrickComponentType_WireGraph_Expr_MathRadiansToDegrees: BrickComponentData_WireGraph_Expr_Float_Float;
|
|
1484
|
+
BrickComponentType_WireGraph_Expr_MathSign: BrickComponentData_WireGraph_Expr_PrimMathVariant_PrimMathVariant;
|
|
1485
|
+
BrickComponentType_WireGraph_Expr_MathSin: BrickComponentData_WireGraph_Expr_Float_Float;
|
|
1486
|
+
BrickComponentType_WireGraph_Expr_MathSinh: BrickComponentData_WireGraph_Expr_Float_Float;
|
|
1487
|
+
BrickComponentType_WireGraph_Expr_MathSqrt: BrickComponentData_WireGraph_Expr_Float_Float;
|
|
1488
|
+
BrickComponentType_WireGraph_Expr_MathSubtract: BrickComponentData_WireGraph_Expr_PrimMathVariantPrimMathVariant_PrimMathVariant;
|
|
1489
|
+
BrickComponentType_WireGraph_Expr_MathTan: BrickComponentData_WireGraph_Expr_Float_Float;
|
|
1490
|
+
BrickComponentType_WireGraph_Expr_MathTanh: BrickComponentData_WireGraph_Expr_Float_Float;
|
|
1491
|
+
BrickComponentType_WireGraph_Expr_NearlyEqual: BrickComponentData_WireGraph_Expr_NearlyEqual;
|
|
1492
|
+
BrickComponentType_WireGraph_Expr_QuatAngleBetween: BrickComponentData_WireGraph_Expr_QuatAngleBetween;
|
|
1493
|
+
BrickComponentType_WireGraph_Expr_QuatBetween: BrickComponentData_WireGraph_Expr_QuatBetween;
|
|
1494
|
+
BrickComponentType_WireGraph_Expr_QuatDotProduct: BrickComponentData_WireGraph_Expr_QuatDotProduct;
|
|
1495
|
+
BrickComponentType_WireGraph_Expr_QuatFromAxisAngle: BrickComponentData_WireGraph_Expr_QuatFromAxisAngle;
|
|
1496
|
+
BrickComponentType_WireGraph_Expr_QuatSlerp: BrickComponentData_WireGraph_Expr_QuatSlerp;
|
|
1497
|
+
BrickComponentType_WireGraph_Expr_QuatToAxisAngle: BrickComponentData_WireGraph_Expr_QuatToAxisAngle;
|
|
1498
|
+
BrickComponentType_WireGraph_Expr_RotateVector: BrickComponentData_WireGraph_Expr_RotateVector;
|
|
1499
|
+
BrickComponentType_WireGraph_Expr_RotationToDirection: BrickComponentData_WireGraph_Expr_RotationToDirection;
|
|
1500
|
+
BrickComponentType_WireGraph_Expr_Round: BrickComponentData_WireGraph_Expr_Float_Float;
|
|
1501
|
+
BrickComponentType_WireGraph_Expr_Select: BrickComponentData_WireGraph_Expr_Select;
|
|
1502
|
+
BrickComponentType_WireGraph_Expr_SplitColor: BrickComponentData_WireGraph_Expr_SplitColor;
|
|
1503
|
+
BrickComponentType_WireGraph_Expr_SplitColorSRGB: BrickComponentData_WireGraph_Expr_SplitColorSRGB;
|
|
1504
|
+
BrickComponentType_WireGraph_Expr_SplitQuaternion: BrickComponentData_WireGraph_Expr_SplitQuaternion;
|
|
1505
|
+
BrickComponentType_WireGraph_Expr_SplitRotation: BrickComponentData_WireGraph_Expr_SplitRotation;
|
|
1506
|
+
BrickComponentType_WireGraph_Expr_SplitVector: BrickComponentData_WireGraph_Expr_SplitVector;
|
|
1507
|
+
BrickComponentType_WireGraph_Expr_String_Concatenate: BrickComponentData_WireGraph_Expr_String_Concatenate;
|
|
1508
|
+
BrickComponentType_WireGraph_Expr_String_Contains: BrickComponentData_WireGraph_Expr_String_Contains;
|
|
1509
|
+
BrickComponentType_WireGraph_Expr_String_EndsWith: BrickComponentData_WireGraph_Expr_String_EndsWith;
|
|
1510
|
+
BrickComponentType_WireGraph_Expr_String_Find: BrickComponentData_WireGraph_Expr_String_Find;
|
|
1511
|
+
BrickComponentType_WireGraph_Expr_String_FormatText: BrickComponentData_WireGraph_Expr_String_FormatText;
|
|
1512
|
+
BrickComponentType_WireGraph_Expr_String_Length: BrickComponentData_WireGraph_Expr_String_Length;
|
|
1513
|
+
BrickComponentType_WireGraph_Expr_String_ParseInt: BrickComponentData_WireGraph_Expr_String_ParseInt;
|
|
1514
|
+
BrickComponentType_WireGraph_Expr_String_ParseNumber: BrickComponentData_WireGraph_Expr_String_ParseNumber;
|
|
1515
|
+
BrickComponentType_WireGraph_Expr_String_Replace: BrickComponentData_WireGraph_Expr_String_Replace;
|
|
1516
|
+
BrickComponentType_WireGraph_Expr_String_Split: BrickComponentData_WireGraph_Expr_String_Split;
|
|
1517
|
+
BrickComponentType_WireGraph_Expr_String_StartsWith: BrickComponentData_WireGraph_Expr_String_StartsWith;
|
|
1518
|
+
BrickComponentType_WireGraph_Expr_String_Substring: BrickComponentData_WireGraph_Expr_String_Substring;
|
|
1519
|
+
BrickComponentType_WireGraph_Expr_String_ToLower: BrickComponentData_WireGraph_Expr_String_ToLower;
|
|
1520
|
+
BrickComponentType_WireGraph_Expr_String_ToUpper: BrickComponentData_WireGraph_Expr_String_ToUpper;
|
|
1521
|
+
BrickComponentType_WireGraph_Expr_String_Trim: BrickComponentData_WireGraph_Expr_String_Trim;
|
|
1522
|
+
BrickComponentType_WireGraph_Expr_Swap: BrickComponentData_WireGraph_Expr_Swap;
|
|
1523
|
+
BrickComponentType_WireGraph_Expr_VecCrossProduct: BrickComponentData_WireGraph_Expr_VecVec_Vec;
|
|
1524
|
+
BrickComponentType_WireGraph_Expr_VecDistance: BrickComponentData_WireGraph_Expr_VecVec_Float;
|
|
1525
|
+
BrickComponentType_WireGraph_Expr_VecDistanceSquared: BrickComponentData_WireGraph_Expr_VecVec_Float;
|
|
1526
|
+
BrickComponentType_WireGraph_Expr_VecDotProduct: BrickComponentData_WireGraph_Expr_VecVec_Float;
|
|
1527
|
+
BrickComponentType_WireGraph_Expr_VecMagnitude: BrickComponentData_WireGraph_Expr_Vec_Float;
|
|
1528
|
+
BrickComponentType_WireGraph_Expr_VecMagnitudeSquared: BrickComponentData_WireGraph_Expr_Vec_Float;
|
|
1529
|
+
BrickComponentType_WireGraph_Expr_VecNormalize: BrickComponentData_WireGraph_Expr_Vec_Vec;
|
|
1530
|
+
BrickComponentType_WireGraph_Expr_VecScale: BrickComponentData_WireGraph_Expr_VecFloat_Vec;
|
|
1531
|
+
BrickComponentType_WireGraph_Fake_Gamemode_CharacterDamagedEvent: BrickComponentData_WireGraph_Fake_CharacterDamageEvent;
|
|
1532
|
+
BrickComponentType_WireGraph_Fake_Gamemode_CharacterDiedEvent: BrickComponentData_WireGraph_Fake_CharacterDeathEvent;
|
|
1533
|
+
BrickComponentType_WireGraph_Fake_Gamemode_CharacterSpawnedEvent: BrickComponentData_WireGraph_Fake_CharacterEvent;
|
|
1534
|
+
BrickComponentType_WireGraph_Fake_Gamemode_ControllerJoinedEvent: BrickComponentData_WireGraph_Fake_ControllerEvent;
|
|
1535
|
+
BrickComponentType_WireGraph_Fake_Gamemode_ControllerLeftEvent: BrickComponentData_WireGraph_Fake_ControllerEvent;
|
|
1536
|
+
BrickComponentType_WireGraph_Fake_Gamemode_RoundEndEvent: BrickComponentData_WireGraph_Fake_RoundEvent;
|
|
1537
|
+
BrickComponentType_WireGraph_Fake_Gamemode_RoundStartEvent: BrickComponentData_WireGraph_Fake_RoundEvent;
|
|
1538
|
+
BrickComponentType_WireGraph_FindPlayer: BrickComponentData_WireGraph_FindPlayer;
|
|
1539
|
+
BrickComponentType_WireGraph_FontReference: BrickComponentData_WireGraph_FontReference;
|
|
1540
|
+
BrickComponentType_WireGraph_ItemReference: BrickComponentData_WireGraph_ItemReference;
|
|
1541
|
+
BrickComponentType_WireGraph_OneShotAudioReference: BrickComponentData_WireGraph_OneShotAudioReference;
|
|
1542
|
+
BrickComponentType_WireGraph_ParticleReference: BrickComponentData_WireGraph_ParticleReference;
|
|
1543
|
+
BrickComponentType_WireGraph_PickupReference: BrickComponentData_WireGraph_PickupReference;
|
|
1544
|
+
BrickComponentType_WireGraph_ProjectileReference: BrickComponentData_WireGraph_ProjectileReference;
|
|
1545
|
+
BrickComponentType_WireGraph_ServerUptime: BrickComponentData_WireGraph_ServerUptime;
|
|
1546
|
+
BrickComponentType_WireGraph_WheelEngineAudioReference: BrickComponentData_WireGraph_WheelEngineAudioReference;
|
|
1547
|
+
Component_AudioEmitter: BrickComponentData_AudioEmitter;
|
|
1548
|
+
Component_BotSpawn: BrickComponentData_BotSpawn;
|
|
1549
|
+
Component_BrickPropertyChanger: BrickComponentData_BrickPropertyChanger;
|
|
1550
|
+
Component_Button: BrickComponentData_Button;
|
|
1551
|
+
Component_CheckPoint: BrickComponentData_CheckPoint;
|
|
1552
|
+
Component_Damage: BrickComponentData_Damage;
|
|
1553
|
+
Component_Interact: BrickComponentData_Interact;
|
|
1554
|
+
Component_Internal_AnimatedButton: BrickComponentData_Button;
|
|
1555
|
+
Component_Internal_AnimatedPressurePlate: BrickComponentData_Touch;
|
|
1556
|
+
Component_Internal_AnimatedSwitch: BrickComponentData_Switch;
|
|
1557
|
+
Component_Internal_AttachedZone: BrickComponentData_Internal_AttachedZone;
|
|
1558
|
+
Component_Internal_Bearing: BrickComponentData_Bearing;
|
|
1559
|
+
Component_Internal_Gyroscope: BrickComponentData_Gyroscope;
|
|
1560
|
+
Component_Internal_InputSplitter: BrickComponentData_Internal_InputSplitter_V2;
|
|
1561
|
+
Component_Internal_Joint_Wheel: BrickComponentData_Joint_Wheel;
|
|
1562
|
+
Component_Internal_Joint_Wheel_Suspension: BrickComponentData_Joint_Wheel_Suspension;
|
|
1563
|
+
Component_Internal_Microchip: BrickComponentData_Internal_Microchip;
|
|
1564
|
+
Component_Internal_Motor: BrickComponentData_Motor;
|
|
1565
|
+
Component_Internal_MotorSlider: BrickComponentData_MotorSlider;
|
|
1566
|
+
Component_Internal_ProjectileSpawner_Cannon: BrickComponentData_ProjectileSpawner;
|
|
1567
|
+
Component_Internal_Rerouter: BrickComponentData_Rerouter;
|
|
1568
|
+
Component_Internal_RigidBearing: BrickComponentData_RigidBearing;
|
|
1569
|
+
Component_Internal_RigidSlider: BrickComponentData_RigidSlider;
|
|
1570
|
+
Component_Internal_Seat: BrickComponentData_Seat_V2;
|
|
1571
|
+
Component_Internal_Servo: BrickComponentData_Servo;
|
|
1572
|
+
Component_Internal_ServoSlider: BrickComponentData_ServoSlider;
|
|
1573
|
+
Component_Internal_Slider: BrickComponentData_Slider;
|
|
1574
|
+
Component_Internal_Thruster: BrickComponentData_Thruster;
|
|
1575
|
+
Component_Internal_WeightBrick: BrickComponentData_WeightBrick;
|
|
1576
|
+
Component_Internal_WheelEngine: BrickComponentData_WheelEngine_V2;
|
|
1577
|
+
Component_ItemSpawn: BrickComponentData_ItemSpawn;
|
|
1578
|
+
Component_OneShotAudioEmitter: BrickComponentData_OneShotAudioEmitter;
|
|
1579
|
+
Component_PointLight: BrickComponentData_PointLight;
|
|
1580
|
+
Component_ProjectileSpawner: BrickComponentData_ProjectileSpawner;
|
|
1581
|
+
Component_SpawnPoint: BrickComponentData_SpawnPoint;
|
|
1582
|
+
Component_SpotLight: BrickComponentData_SpotLight;
|
|
1583
|
+
Component_Switch: BrickComponentData_Switch;
|
|
1584
|
+
Component_Target: BrickComponentData_Target;
|
|
1585
|
+
Component_TextDisplay: BrickComponentData_TextDisplay;
|
|
1586
|
+
Component_Touch: BrickComponentData_Touch;
|
|
1587
|
+
Component_WireGraph_PlayAudioAt: BrickComponentData_WireGraph_Exec_Entity_PlayAudioAt;
|
|
1588
|
+
};
|
|
1589
|
+
/** Every known component type name. */
|
|
1590
|
+
export type BrdbComponentTypeName = keyof ComponentTypeDataMap;
|
|
1591
|
+
//# sourceMappingURL=componentTypes.d.ts.map
|