@rbxts/types 1.0.847 → 1.0.849
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/include/generated/None.d.ts +609 -58
- package/include/generated/PluginSecurity.d.ts +85 -19
- package/include/generated/enums.d.ts +571 -17
- package/package.json +1 -1
|
@@ -3178,11 +3178,20 @@ declare namespace Enum {
|
|
|
3178
3178
|
EnumType: typeof globalThis.Enum.AudioFilterType;
|
|
3179
3179
|
}
|
|
3180
3180
|
export const Notch: Notch;
|
|
3181
|
+
/**
|
|
3182
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AudioFilterType#Lowpass6dB)
|
|
3183
|
+
*/
|
|
3184
|
+
export interface Lowpass6dB extends globalThis.EnumItem {
|
|
3185
|
+
Name: "Lowpass6dB";
|
|
3186
|
+
Value: 11;
|
|
3187
|
+
EnumType: typeof globalThis.Enum.AudioFilterType;
|
|
3188
|
+
}
|
|
3189
|
+
export const Lowpass6dB: Lowpass6dB;
|
|
3181
3190
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AudioFilterType>;
|
|
3182
3191
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AudioFilterType | undefined;
|
|
3183
3192
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AudioFilterType | undefined;
|
|
3184
3193
|
}
|
|
3185
|
-
export type AudioFilterType = AudioFilterType.Peak | AudioFilterType.LowShelf | AudioFilterType.HighShelf | AudioFilterType.Lowpass12dB | AudioFilterType.Lowpass24dB | AudioFilterType.Lowpass48dB | AudioFilterType.Highpass12dB | AudioFilterType.Highpass24dB | AudioFilterType.Highpass48dB | AudioFilterType.Bandpass | AudioFilterType.Notch;
|
|
3194
|
+
export type AudioFilterType = AudioFilterType.Peak | AudioFilterType.LowShelf | AudioFilterType.HighShelf | AudioFilterType.Lowpass12dB | AudioFilterType.Lowpass24dB | AudioFilterType.Lowpass48dB | AudioFilterType.Highpass12dB | AudioFilterType.Highpass24dB | AudioFilterType.Highpass48dB | AudioFilterType.Bandpass | AudioFilterType.Notch | AudioFilterType.Lowpass6dB;
|
|
3186
3195
|
/**
|
|
3187
3196
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AudioSimulationFidelity)
|
|
3188
3197
|
*/
|
|
@@ -10297,6 +10306,519 @@ declare namespace Enum {
|
|
|
10297
10306
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.FacialAnimationStreamingState | undefined;
|
|
10298
10307
|
}
|
|
10299
10308
|
export type FacialAnimationStreamingState = FacialAnimationStreamingState.None | FacialAnimationStreamingState.Audio | FacialAnimationStreamingState.Video | FacialAnimationStreamingState.Place | FacialAnimationStreamingState.Server;
|
|
10309
|
+
/**
|
|
10310
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit)
|
|
10311
|
+
*/
|
|
10312
|
+
export namespace FacsActionUnit {
|
|
10313
|
+
/**
|
|
10314
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#ChinRaiserUpperLip)
|
|
10315
|
+
*/
|
|
10316
|
+
export interface ChinRaiserUpperLip extends globalThis.EnumItem {
|
|
10317
|
+
Name: "ChinRaiserUpperLip";
|
|
10318
|
+
Value: 0;
|
|
10319
|
+
EnumType: typeof globalThis.Enum.FacsActionUnit;
|
|
10320
|
+
}
|
|
10321
|
+
export const ChinRaiserUpperLip: ChinRaiserUpperLip;
|
|
10322
|
+
/**
|
|
10323
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#ChinRaiser)
|
|
10324
|
+
*/
|
|
10325
|
+
export interface ChinRaiser extends globalThis.EnumItem {
|
|
10326
|
+
Name: "ChinRaiser";
|
|
10327
|
+
Value: 1;
|
|
10328
|
+
EnumType: typeof globalThis.Enum.FacsActionUnit;
|
|
10329
|
+
}
|
|
10330
|
+
export const ChinRaiser: ChinRaiser;
|
|
10331
|
+
/**
|
|
10332
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#FlatPucker)
|
|
10333
|
+
*/
|
|
10334
|
+
export interface FlatPucker extends globalThis.EnumItem {
|
|
10335
|
+
Name: "FlatPucker";
|
|
10336
|
+
Value: 2;
|
|
10337
|
+
EnumType: typeof globalThis.Enum.FacsActionUnit;
|
|
10338
|
+
}
|
|
10339
|
+
export const FlatPucker: FlatPucker;
|
|
10340
|
+
/**
|
|
10341
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#Funneler)
|
|
10342
|
+
*/
|
|
10343
|
+
export interface Funneler extends globalThis.EnumItem {
|
|
10344
|
+
Name: "Funneler";
|
|
10345
|
+
Value: 3;
|
|
10346
|
+
EnumType: typeof globalThis.Enum.FacsActionUnit;
|
|
10347
|
+
}
|
|
10348
|
+
export const Funneler: Funneler;
|
|
10349
|
+
/**
|
|
10350
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#LowerLipSuck)
|
|
10351
|
+
*/
|
|
10352
|
+
export interface LowerLipSuck extends globalThis.EnumItem {
|
|
10353
|
+
Name: "LowerLipSuck";
|
|
10354
|
+
Value: 4;
|
|
10355
|
+
EnumType: typeof globalThis.Enum.FacsActionUnit;
|
|
10356
|
+
}
|
|
10357
|
+
export const LowerLipSuck: LowerLipSuck;
|
|
10358
|
+
/**
|
|
10359
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#LipPresser)
|
|
10360
|
+
*/
|
|
10361
|
+
export interface LipPresser extends globalThis.EnumItem {
|
|
10362
|
+
Name: "LipPresser";
|
|
10363
|
+
Value: 5;
|
|
10364
|
+
EnumType: typeof globalThis.Enum.FacsActionUnit;
|
|
10365
|
+
}
|
|
10366
|
+
export const LipPresser: LipPresser;
|
|
10367
|
+
/**
|
|
10368
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#LipsTogether)
|
|
10369
|
+
*/
|
|
10370
|
+
export interface LipsTogether extends globalThis.EnumItem {
|
|
10371
|
+
Name: "LipsTogether";
|
|
10372
|
+
Value: 6;
|
|
10373
|
+
EnumType: typeof globalThis.Enum.FacsActionUnit;
|
|
10374
|
+
}
|
|
10375
|
+
export const LipsTogether: LipsTogether;
|
|
10376
|
+
/**
|
|
10377
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#MouthLeft)
|
|
10378
|
+
*/
|
|
10379
|
+
export interface MouthLeft extends globalThis.EnumItem {
|
|
10380
|
+
Name: "MouthLeft";
|
|
10381
|
+
Value: 7;
|
|
10382
|
+
EnumType: typeof globalThis.Enum.FacsActionUnit;
|
|
10383
|
+
}
|
|
10384
|
+
export const MouthLeft: MouthLeft;
|
|
10385
|
+
/**
|
|
10386
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#MouthRight)
|
|
10387
|
+
*/
|
|
10388
|
+
export interface MouthRight extends globalThis.EnumItem {
|
|
10389
|
+
Name: "MouthRight";
|
|
10390
|
+
Value: 8;
|
|
10391
|
+
EnumType: typeof globalThis.Enum.FacsActionUnit;
|
|
10392
|
+
}
|
|
10393
|
+
export const MouthRight: MouthRight;
|
|
10394
|
+
/**
|
|
10395
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#Pucker)
|
|
10396
|
+
*/
|
|
10397
|
+
export interface Pucker extends globalThis.EnumItem {
|
|
10398
|
+
Name: "Pucker";
|
|
10399
|
+
Value: 9;
|
|
10400
|
+
EnumType: typeof globalThis.Enum.FacsActionUnit;
|
|
10401
|
+
}
|
|
10402
|
+
export const Pucker: Pucker;
|
|
10403
|
+
/**
|
|
10404
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#UpperLipSuck)
|
|
10405
|
+
*/
|
|
10406
|
+
export interface UpperLipSuck extends globalThis.EnumItem {
|
|
10407
|
+
Name: "UpperLipSuck";
|
|
10408
|
+
Value: 10;
|
|
10409
|
+
EnumType: typeof globalThis.Enum.FacsActionUnit;
|
|
10410
|
+
}
|
|
10411
|
+
export const UpperLipSuck: UpperLipSuck;
|
|
10412
|
+
/**
|
|
10413
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#LeftCheekPuff)
|
|
10414
|
+
*/
|
|
10415
|
+
export interface LeftCheekPuff extends globalThis.EnumItem {
|
|
10416
|
+
Name: "LeftCheekPuff";
|
|
10417
|
+
Value: 11;
|
|
10418
|
+
EnumType: typeof globalThis.Enum.FacsActionUnit;
|
|
10419
|
+
}
|
|
10420
|
+
export const LeftCheekPuff: LeftCheekPuff;
|
|
10421
|
+
/**
|
|
10422
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#LeftDimpler)
|
|
10423
|
+
*/
|
|
10424
|
+
export interface LeftDimpler extends globalThis.EnumItem {
|
|
10425
|
+
Name: "LeftDimpler";
|
|
10426
|
+
Value: 12;
|
|
10427
|
+
EnumType: typeof globalThis.Enum.FacsActionUnit;
|
|
10428
|
+
}
|
|
10429
|
+
export const LeftDimpler: LeftDimpler;
|
|
10430
|
+
/**
|
|
10431
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#LeftLipCornerDown)
|
|
10432
|
+
*/
|
|
10433
|
+
export interface LeftLipCornerDown extends globalThis.EnumItem {
|
|
10434
|
+
Name: "LeftLipCornerDown";
|
|
10435
|
+
Value: 13;
|
|
10436
|
+
EnumType: typeof globalThis.Enum.FacsActionUnit;
|
|
10437
|
+
}
|
|
10438
|
+
export const LeftLipCornerDown: LeftLipCornerDown;
|
|
10439
|
+
/**
|
|
10440
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#LeftLowerLipDepressor)
|
|
10441
|
+
*/
|
|
10442
|
+
export interface LeftLowerLipDepressor extends globalThis.EnumItem {
|
|
10443
|
+
Name: "LeftLowerLipDepressor";
|
|
10444
|
+
Value: 14;
|
|
10445
|
+
EnumType: typeof globalThis.Enum.FacsActionUnit;
|
|
10446
|
+
}
|
|
10447
|
+
export const LeftLowerLipDepressor: LeftLowerLipDepressor;
|
|
10448
|
+
/**
|
|
10449
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#LeftLipCornerPuller)
|
|
10450
|
+
*/
|
|
10451
|
+
export interface LeftLipCornerPuller extends globalThis.EnumItem {
|
|
10452
|
+
Name: "LeftLipCornerPuller";
|
|
10453
|
+
Value: 15;
|
|
10454
|
+
EnumType: typeof globalThis.Enum.FacsActionUnit;
|
|
10455
|
+
}
|
|
10456
|
+
export const LeftLipCornerPuller: LeftLipCornerPuller;
|
|
10457
|
+
/**
|
|
10458
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#LeftLipStretcher)
|
|
10459
|
+
*/
|
|
10460
|
+
export interface LeftLipStretcher extends globalThis.EnumItem {
|
|
10461
|
+
Name: "LeftLipStretcher";
|
|
10462
|
+
Value: 16;
|
|
10463
|
+
EnumType: typeof globalThis.Enum.FacsActionUnit;
|
|
10464
|
+
}
|
|
10465
|
+
export const LeftLipStretcher: LeftLipStretcher;
|
|
10466
|
+
/**
|
|
10467
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#LeftUpperLipRaiser)
|
|
10468
|
+
*/
|
|
10469
|
+
export interface LeftUpperLipRaiser extends globalThis.EnumItem {
|
|
10470
|
+
Name: "LeftUpperLipRaiser";
|
|
10471
|
+
Value: 17;
|
|
10472
|
+
EnumType: typeof globalThis.Enum.FacsActionUnit;
|
|
10473
|
+
}
|
|
10474
|
+
export const LeftUpperLipRaiser: LeftUpperLipRaiser;
|
|
10475
|
+
/**
|
|
10476
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#RightCheekPuff)
|
|
10477
|
+
*/
|
|
10478
|
+
export interface RightCheekPuff extends globalThis.EnumItem {
|
|
10479
|
+
Name: "RightCheekPuff";
|
|
10480
|
+
Value: 18;
|
|
10481
|
+
EnumType: typeof globalThis.Enum.FacsActionUnit;
|
|
10482
|
+
}
|
|
10483
|
+
export const RightCheekPuff: RightCheekPuff;
|
|
10484
|
+
/**
|
|
10485
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#RightDimpler)
|
|
10486
|
+
*/
|
|
10487
|
+
export interface RightDimpler extends globalThis.EnumItem {
|
|
10488
|
+
Name: "RightDimpler";
|
|
10489
|
+
Value: 19;
|
|
10490
|
+
EnumType: typeof globalThis.Enum.FacsActionUnit;
|
|
10491
|
+
}
|
|
10492
|
+
export const RightDimpler: RightDimpler;
|
|
10493
|
+
/**
|
|
10494
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#RightLipCornerDown)
|
|
10495
|
+
*/
|
|
10496
|
+
export interface RightLipCornerDown extends globalThis.EnumItem {
|
|
10497
|
+
Name: "RightLipCornerDown";
|
|
10498
|
+
Value: 20;
|
|
10499
|
+
EnumType: typeof globalThis.Enum.FacsActionUnit;
|
|
10500
|
+
}
|
|
10501
|
+
export const RightLipCornerDown: RightLipCornerDown;
|
|
10502
|
+
/**
|
|
10503
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#RightLowerLipDepressor)
|
|
10504
|
+
*/
|
|
10505
|
+
export interface RightLowerLipDepressor extends globalThis.EnumItem {
|
|
10506
|
+
Name: "RightLowerLipDepressor";
|
|
10507
|
+
Value: 21;
|
|
10508
|
+
EnumType: typeof globalThis.Enum.FacsActionUnit;
|
|
10509
|
+
}
|
|
10510
|
+
export const RightLowerLipDepressor: RightLowerLipDepressor;
|
|
10511
|
+
/**
|
|
10512
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#RightLipCornerPuller)
|
|
10513
|
+
*/
|
|
10514
|
+
export interface RightLipCornerPuller extends globalThis.EnumItem {
|
|
10515
|
+
Name: "RightLipCornerPuller";
|
|
10516
|
+
Value: 22;
|
|
10517
|
+
EnumType: typeof globalThis.Enum.FacsActionUnit;
|
|
10518
|
+
}
|
|
10519
|
+
export const RightLipCornerPuller: RightLipCornerPuller;
|
|
10520
|
+
/**
|
|
10521
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#RightLipStretcher)
|
|
10522
|
+
*/
|
|
10523
|
+
export interface RightLipStretcher extends globalThis.EnumItem {
|
|
10524
|
+
Name: "RightLipStretcher";
|
|
10525
|
+
Value: 23;
|
|
10526
|
+
EnumType: typeof globalThis.Enum.FacsActionUnit;
|
|
10527
|
+
}
|
|
10528
|
+
export const RightLipStretcher: RightLipStretcher;
|
|
10529
|
+
/**
|
|
10530
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#RightUpperLipRaiser)
|
|
10531
|
+
*/
|
|
10532
|
+
export interface RightUpperLipRaiser extends globalThis.EnumItem {
|
|
10533
|
+
Name: "RightUpperLipRaiser";
|
|
10534
|
+
Value: 24;
|
|
10535
|
+
EnumType: typeof globalThis.Enum.FacsActionUnit;
|
|
10536
|
+
}
|
|
10537
|
+
export const RightUpperLipRaiser: RightUpperLipRaiser;
|
|
10538
|
+
/**
|
|
10539
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#JawDrop)
|
|
10540
|
+
*/
|
|
10541
|
+
export interface JawDrop extends globalThis.EnumItem {
|
|
10542
|
+
Name: "JawDrop";
|
|
10543
|
+
Value: 25;
|
|
10544
|
+
EnumType: typeof globalThis.Enum.FacsActionUnit;
|
|
10545
|
+
}
|
|
10546
|
+
export const JawDrop: JawDrop;
|
|
10547
|
+
/**
|
|
10548
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#JawLeft)
|
|
10549
|
+
*/
|
|
10550
|
+
export interface JawLeft extends globalThis.EnumItem {
|
|
10551
|
+
Name: "JawLeft";
|
|
10552
|
+
Value: 26;
|
|
10553
|
+
EnumType: typeof globalThis.Enum.FacsActionUnit;
|
|
10554
|
+
}
|
|
10555
|
+
export const JawLeft: JawLeft;
|
|
10556
|
+
/**
|
|
10557
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#JawRight)
|
|
10558
|
+
*/
|
|
10559
|
+
export interface JawRight extends globalThis.EnumItem {
|
|
10560
|
+
Name: "JawRight";
|
|
10561
|
+
Value: 27;
|
|
10562
|
+
EnumType: typeof globalThis.Enum.FacsActionUnit;
|
|
10563
|
+
}
|
|
10564
|
+
export const JawRight: JawRight;
|
|
10565
|
+
/**
|
|
10566
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#Corrugator)
|
|
10567
|
+
*/
|
|
10568
|
+
export interface Corrugator extends globalThis.EnumItem {
|
|
10569
|
+
Name: "Corrugator";
|
|
10570
|
+
Value: 28;
|
|
10571
|
+
EnumType: typeof globalThis.Enum.FacsActionUnit;
|
|
10572
|
+
}
|
|
10573
|
+
export const Corrugator: Corrugator;
|
|
10574
|
+
/**
|
|
10575
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#LeftBrowLowerer)
|
|
10576
|
+
*/
|
|
10577
|
+
export interface LeftBrowLowerer extends globalThis.EnumItem {
|
|
10578
|
+
Name: "LeftBrowLowerer";
|
|
10579
|
+
Value: 29;
|
|
10580
|
+
EnumType: typeof globalThis.Enum.FacsActionUnit;
|
|
10581
|
+
}
|
|
10582
|
+
export const LeftBrowLowerer: LeftBrowLowerer;
|
|
10583
|
+
/**
|
|
10584
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#LeftOuterBrowRaiser)
|
|
10585
|
+
*/
|
|
10586
|
+
export interface LeftOuterBrowRaiser extends globalThis.EnumItem {
|
|
10587
|
+
Name: "LeftOuterBrowRaiser";
|
|
10588
|
+
Value: 30;
|
|
10589
|
+
EnumType: typeof globalThis.Enum.FacsActionUnit;
|
|
10590
|
+
}
|
|
10591
|
+
export const LeftOuterBrowRaiser: LeftOuterBrowRaiser;
|
|
10592
|
+
/**
|
|
10593
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#LeftNoseWrinkler)
|
|
10594
|
+
*/
|
|
10595
|
+
export interface LeftNoseWrinkler extends globalThis.EnumItem {
|
|
10596
|
+
Name: "LeftNoseWrinkler";
|
|
10597
|
+
Value: 31;
|
|
10598
|
+
EnumType: typeof globalThis.Enum.FacsActionUnit;
|
|
10599
|
+
}
|
|
10600
|
+
export const LeftNoseWrinkler: LeftNoseWrinkler;
|
|
10601
|
+
/**
|
|
10602
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#LeftInnerBrowRaiser)
|
|
10603
|
+
*/
|
|
10604
|
+
export interface LeftInnerBrowRaiser extends globalThis.EnumItem {
|
|
10605
|
+
Name: "LeftInnerBrowRaiser";
|
|
10606
|
+
Value: 32;
|
|
10607
|
+
EnumType: typeof globalThis.Enum.FacsActionUnit;
|
|
10608
|
+
}
|
|
10609
|
+
export const LeftInnerBrowRaiser: LeftInnerBrowRaiser;
|
|
10610
|
+
/**
|
|
10611
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#RightBrowLowerer)
|
|
10612
|
+
*/
|
|
10613
|
+
export interface RightBrowLowerer extends globalThis.EnumItem {
|
|
10614
|
+
Name: "RightBrowLowerer";
|
|
10615
|
+
Value: 33;
|
|
10616
|
+
EnumType: typeof globalThis.Enum.FacsActionUnit;
|
|
10617
|
+
}
|
|
10618
|
+
export const RightBrowLowerer: RightBrowLowerer;
|
|
10619
|
+
/**
|
|
10620
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#RightOuterBrowRaiser)
|
|
10621
|
+
*/
|
|
10622
|
+
export interface RightOuterBrowRaiser extends globalThis.EnumItem {
|
|
10623
|
+
Name: "RightOuterBrowRaiser";
|
|
10624
|
+
Value: 34;
|
|
10625
|
+
EnumType: typeof globalThis.Enum.FacsActionUnit;
|
|
10626
|
+
}
|
|
10627
|
+
export const RightOuterBrowRaiser: RightOuterBrowRaiser;
|
|
10628
|
+
/**
|
|
10629
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#RightInnerBrowRaiser)
|
|
10630
|
+
*/
|
|
10631
|
+
export interface RightInnerBrowRaiser extends globalThis.EnumItem {
|
|
10632
|
+
Name: "RightInnerBrowRaiser";
|
|
10633
|
+
Value: 35;
|
|
10634
|
+
EnumType: typeof globalThis.Enum.FacsActionUnit;
|
|
10635
|
+
}
|
|
10636
|
+
export const RightInnerBrowRaiser: RightInnerBrowRaiser;
|
|
10637
|
+
/**
|
|
10638
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#RightNoseWrinkler)
|
|
10639
|
+
*/
|
|
10640
|
+
export interface RightNoseWrinkler extends globalThis.EnumItem {
|
|
10641
|
+
Name: "RightNoseWrinkler";
|
|
10642
|
+
Value: 36;
|
|
10643
|
+
EnumType: typeof globalThis.Enum.FacsActionUnit;
|
|
10644
|
+
}
|
|
10645
|
+
export const RightNoseWrinkler: RightNoseWrinkler;
|
|
10646
|
+
/**
|
|
10647
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#EyesLookDown)
|
|
10648
|
+
*/
|
|
10649
|
+
export interface EyesLookDown extends globalThis.EnumItem {
|
|
10650
|
+
Name: "EyesLookDown";
|
|
10651
|
+
Value: 37;
|
|
10652
|
+
EnumType: typeof globalThis.Enum.FacsActionUnit;
|
|
10653
|
+
}
|
|
10654
|
+
export const EyesLookDown: EyesLookDown;
|
|
10655
|
+
/**
|
|
10656
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#EyesLookLeft)
|
|
10657
|
+
*/
|
|
10658
|
+
export interface EyesLookLeft extends globalThis.EnumItem {
|
|
10659
|
+
Name: "EyesLookLeft";
|
|
10660
|
+
Value: 38;
|
|
10661
|
+
EnumType: typeof globalThis.Enum.FacsActionUnit;
|
|
10662
|
+
}
|
|
10663
|
+
export const EyesLookLeft: EyesLookLeft;
|
|
10664
|
+
/**
|
|
10665
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#EyesLookUp)
|
|
10666
|
+
*/
|
|
10667
|
+
export interface EyesLookUp extends globalThis.EnumItem {
|
|
10668
|
+
Name: "EyesLookUp";
|
|
10669
|
+
Value: 39;
|
|
10670
|
+
EnumType: typeof globalThis.Enum.FacsActionUnit;
|
|
10671
|
+
}
|
|
10672
|
+
export const EyesLookUp: EyesLookUp;
|
|
10673
|
+
/**
|
|
10674
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#EyesLookRight)
|
|
10675
|
+
*/
|
|
10676
|
+
export interface EyesLookRight extends globalThis.EnumItem {
|
|
10677
|
+
Name: "EyesLookRight";
|
|
10678
|
+
Value: 40;
|
|
10679
|
+
EnumType: typeof globalThis.Enum.FacsActionUnit;
|
|
10680
|
+
}
|
|
10681
|
+
export const EyesLookRight: EyesLookRight;
|
|
10682
|
+
/**
|
|
10683
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#LeftCheekRaiser)
|
|
10684
|
+
*/
|
|
10685
|
+
export interface LeftCheekRaiser extends globalThis.EnumItem {
|
|
10686
|
+
Name: "LeftCheekRaiser";
|
|
10687
|
+
Value: 41;
|
|
10688
|
+
EnumType: typeof globalThis.Enum.FacsActionUnit;
|
|
10689
|
+
}
|
|
10690
|
+
export const LeftCheekRaiser: LeftCheekRaiser;
|
|
10691
|
+
/**
|
|
10692
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#LeftEyeUpperLidRaiser)
|
|
10693
|
+
*/
|
|
10694
|
+
export interface LeftEyeUpperLidRaiser extends globalThis.EnumItem {
|
|
10695
|
+
Name: "LeftEyeUpperLidRaiser";
|
|
10696
|
+
Value: 42;
|
|
10697
|
+
EnumType: typeof globalThis.Enum.FacsActionUnit;
|
|
10698
|
+
}
|
|
10699
|
+
export const LeftEyeUpperLidRaiser: LeftEyeUpperLidRaiser;
|
|
10700
|
+
/**
|
|
10701
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#LeftEyeClosed)
|
|
10702
|
+
*/
|
|
10703
|
+
export interface LeftEyeClosed extends globalThis.EnumItem {
|
|
10704
|
+
Name: "LeftEyeClosed";
|
|
10705
|
+
Value: 43;
|
|
10706
|
+
EnumType: typeof globalThis.Enum.FacsActionUnit;
|
|
10707
|
+
}
|
|
10708
|
+
export const LeftEyeClosed: LeftEyeClosed;
|
|
10709
|
+
/**
|
|
10710
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#RightCheekRaiser)
|
|
10711
|
+
*/
|
|
10712
|
+
export interface RightCheekRaiser extends globalThis.EnumItem {
|
|
10713
|
+
Name: "RightCheekRaiser";
|
|
10714
|
+
Value: 44;
|
|
10715
|
+
EnumType: typeof globalThis.Enum.FacsActionUnit;
|
|
10716
|
+
}
|
|
10717
|
+
export const RightCheekRaiser: RightCheekRaiser;
|
|
10718
|
+
/**
|
|
10719
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#RightEyeUpperLidRaiser)
|
|
10720
|
+
*/
|
|
10721
|
+
export interface RightEyeUpperLidRaiser extends globalThis.EnumItem {
|
|
10722
|
+
Name: "RightEyeUpperLidRaiser";
|
|
10723
|
+
Value: 45;
|
|
10724
|
+
EnumType: typeof globalThis.Enum.FacsActionUnit;
|
|
10725
|
+
}
|
|
10726
|
+
export const RightEyeUpperLidRaiser: RightEyeUpperLidRaiser;
|
|
10727
|
+
/**
|
|
10728
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#RightEyeClosed)
|
|
10729
|
+
*/
|
|
10730
|
+
export interface RightEyeClosed extends globalThis.EnumItem {
|
|
10731
|
+
Name: "RightEyeClosed";
|
|
10732
|
+
Value: 46;
|
|
10733
|
+
EnumType: typeof globalThis.Enum.FacsActionUnit;
|
|
10734
|
+
}
|
|
10735
|
+
export const RightEyeClosed: RightEyeClosed;
|
|
10736
|
+
/**
|
|
10737
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#TongueDown)
|
|
10738
|
+
*/
|
|
10739
|
+
export interface TongueDown extends globalThis.EnumItem {
|
|
10740
|
+
Name: "TongueDown";
|
|
10741
|
+
Value: 47;
|
|
10742
|
+
EnumType: typeof globalThis.Enum.FacsActionUnit;
|
|
10743
|
+
}
|
|
10744
|
+
export const TongueDown: TongueDown;
|
|
10745
|
+
/**
|
|
10746
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#TongueOut)
|
|
10747
|
+
*/
|
|
10748
|
+
export interface TongueOut extends globalThis.EnumItem {
|
|
10749
|
+
Name: "TongueOut";
|
|
10750
|
+
Value: 48;
|
|
10751
|
+
EnumType: typeof globalThis.Enum.FacsActionUnit;
|
|
10752
|
+
}
|
|
10753
|
+
export const TongueOut: TongueOut;
|
|
10754
|
+
/**
|
|
10755
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacsActionUnit#TongueUp)
|
|
10756
|
+
*/
|
|
10757
|
+
export interface TongueUp extends globalThis.EnumItem {
|
|
10758
|
+
Name: "TongueUp";
|
|
10759
|
+
Value: 49;
|
|
10760
|
+
EnumType: typeof globalThis.Enum.FacsActionUnit;
|
|
10761
|
+
}
|
|
10762
|
+
export const TongueUp: TongueUp;
|
|
10763
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.FacsActionUnit>;
|
|
10764
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.FacsActionUnit | undefined;
|
|
10765
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.FacsActionUnit | undefined;
|
|
10766
|
+
}
|
|
10767
|
+
export type FacsActionUnit = FacsActionUnit.ChinRaiserUpperLip | FacsActionUnit.ChinRaiser | FacsActionUnit.FlatPucker | FacsActionUnit.Funneler | FacsActionUnit.LowerLipSuck | FacsActionUnit.LipPresser | FacsActionUnit.LipsTogether | FacsActionUnit.MouthLeft | FacsActionUnit.MouthRight | FacsActionUnit.Pucker | FacsActionUnit.UpperLipSuck | FacsActionUnit.LeftCheekPuff | FacsActionUnit.LeftDimpler | FacsActionUnit.LeftLipCornerDown | FacsActionUnit.LeftLowerLipDepressor | FacsActionUnit.LeftLipCornerPuller | FacsActionUnit.LeftLipStretcher | FacsActionUnit.LeftUpperLipRaiser | FacsActionUnit.RightCheekPuff | FacsActionUnit.RightDimpler | FacsActionUnit.RightLipCornerDown | FacsActionUnit.RightLowerLipDepressor | FacsActionUnit.RightLipCornerPuller | FacsActionUnit.RightLipStretcher | FacsActionUnit.RightUpperLipRaiser | FacsActionUnit.JawDrop | FacsActionUnit.JawLeft | FacsActionUnit.JawRight | FacsActionUnit.Corrugator | FacsActionUnit.LeftBrowLowerer | FacsActionUnit.LeftOuterBrowRaiser | FacsActionUnit.LeftNoseWrinkler | FacsActionUnit.LeftInnerBrowRaiser | FacsActionUnit.RightBrowLowerer | FacsActionUnit.RightOuterBrowRaiser | FacsActionUnit.RightInnerBrowRaiser | FacsActionUnit.RightNoseWrinkler | FacsActionUnit.EyesLookDown | FacsActionUnit.EyesLookLeft | FacsActionUnit.EyesLookUp | FacsActionUnit.EyesLookRight | FacsActionUnit.LeftCheekRaiser | FacsActionUnit.LeftEyeUpperLidRaiser | FacsActionUnit.LeftEyeClosed | FacsActionUnit.RightCheekRaiser | FacsActionUnit.RightEyeUpperLidRaiser | FacsActionUnit.RightEyeClosed | FacsActionUnit.TongueDown | FacsActionUnit.TongueOut | FacsActionUnit.TongueUp;
|
|
10768
|
+
/**
|
|
10769
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FeedRankingScoreType)
|
|
10770
|
+
*/
|
|
10771
|
+
export namespace FeedRankingScoreType {
|
|
10772
|
+
/**
|
|
10773
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FeedRankingScoreType#Content)
|
|
10774
|
+
*/
|
|
10775
|
+
export interface Content extends globalThis.EnumItem {
|
|
10776
|
+
Name: "Content";
|
|
10777
|
+
Value: 0;
|
|
10778
|
+
EnumType: typeof globalThis.Enum.FeedRankingScoreType;
|
|
10779
|
+
}
|
|
10780
|
+
export const Content: Content;
|
|
10781
|
+
/**
|
|
10782
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FeedRankingScoreType#Final)
|
|
10783
|
+
*/
|
|
10784
|
+
export interface Final extends globalThis.EnumItem {
|
|
10785
|
+
Name: "Final";
|
|
10786
|
+
Value: 1;
|
|
10787
|
+
EnumType: typeof globalThis.Enum.FeedRankingScoreType;
|
|
10788
|
+
}
|
|
10789
|
+
export const Final: Final;
|
|
10790
|
+
/**
|
|
10791
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FeedRankingScoreType#GameJoin)
|
|
10792
|
+
*/
|
|
10793
|
+
export interface GameJoin extends globalThis.EnumItem {
|
|
10794
|
+
Name: "GameJoin";
|
|
10795
|
+
Value: 2;
|
|
10796
|
+
EnumType: typeof globalThis.Enum.FeedRankingScoreType;
|
|
10797
|
+
}
|
|
10798
|
+
export const GameJoin: GameJoin;
|
|
10799
|
+
/**
|
|
10800
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FeedRankingScoreType#Interaction)
|
|
10801
|
+
*/
|
|
10802
|
+
export interface Interaction extends globalThis.EnumItem {
|
|
10803
|
+
Name: "Interaction";
|
|
10804
|
+
Value: 3;
|
|
10805
|
+
EnumType: typeof globalThis.Enum.FeedRankingScoreType;
|
|
10806
|
+
}
|
|
10807
|
+
export const Interaction: Interaction;
|
|
10808
|
+
/**
|
|
10809
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FeedRankingScoreType#Sharing)
|
|
10810
|
+
*/
|
|
10811
|
+
export interface Sharing extends globalThis.EnumItem {
|
|
10812
|
+
Name: "Sharing";
|
|
10813
|
+
Value: 4;
|
|
10814
|
+
EnumType: typeof globalThis.Enum.FeedRankingScoreType;
|
|
10815
|
+
}
|
|
10816
|
+
export const Sharing: Sharing;
|
|
10817
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.FeedRankingScoreType>;
|
|
10818
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.FeedRankingScoreType | undefined;
|
|
10819
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.FeedRankingScoreType | undefined;
|
|
10820
|
+
}
|
|
10821
|
+
export type FeedRankingScoreType = FeedRankingScoreType.Content | FeedRankingScoreType.Final | FeedRankingScoreType.GameJoin | FeedRankingScoreType.Interaction | FeedRankingScoreType.Sharing;
|
|
10300
10822
|
/**
|
|
10301
10823
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FieldOfViewMode)
|
|
10302
10824
|
*/
|
|
@@ -12655,10 +13177,14 @@ declare namespace Enum {
|
|
|
12655
13177
|
}
|
|
12656
13178
|
export type HandlesStyle = HandlesStyle.Resize | HandlesStyle.Movement;
|
|
12657
13179
|
/**
|
|
13180
|
+
* Enum used alongside `HapticEffect.Type`.
|
|
13181
|
+
*
|
|
12658
13182
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/HapticEffectType)
|
|
12659
13183
|
*/
|
|
12660
13184
|
export namespace HapticEffectType {
|
|
12661
13185
|
/**
|
|
13186
|
+
* Allows for application of a custom haptic waveform through the `HapticEffect:SetWaveformKeys()` method.
|
|
13187
|
+
*
|
|
12662
13188
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/HapticEffectType#Custom)
|
|
12663
13189
|
*/
|
|
12664
13190
|
export interface Custom extends globalThis.EnumItem {
|
|
@@ -12668,6 +13194,8 @@ declare namespace Enum {
|
|
|
12668
13194
|
}
|
|
12669
13195
|
export const Custom: Custom;
|
|
12670
13196
|
/**
|
|
13197
|
+
* Useful for when a player browses over an object (often a UI object) without the intention of triggering its action; it can also alert the player that they have browsed over an interactable object. This effect type is subtle and does not disrupt the gameplay experience.
|
|
13198
|
+
*
|
|
12671
13199
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/HapticEffectType#UIHover)
|
|
12672
13200
|
*/
|
|
12673
13201
|
export interface UIHover extends globalThis.EnumItem {
|
|
@@ -12677,6 +13205,8 @@ declare namespace Enum {
|
|
|
12677
13205
|
}
|
|
12678
13206
|
export const UIHover: UIHover;
|
|
12679
13207
|
/**
|
|
13208
|
+
* Useful for when a player has selected an object (often a UI object) with the intention of triggering its action. This effect type is crisp and it provides immediate feedback without being overwhelming.
|
|
13209
|
+
*
|
|
12680
13210
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/HapticEffectType#UIClick)
|
|
12681
13211
|
*/
|
|
12682
13212
|
export interface UIClick extends globalThis.EnumItem {
|
|
@@ -12686,6 +13216,8 @@ declare namespace Enum {
|
|
|
12686
13216
|
}
|
|
12687
13217
|
export const UIClick: UIClick;
|
|
12688
13218
|
/**
|
|
13219
|
+
* Useful for when there is an inbound message that should draw the player's attention away from their current gameplay and prompt them that the notification requires immediate attention or action.
|
|
13220
|
+
*
|
|
12689
13221
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/HapticEffectType#UINotification)
|
|
12690
13222
|
*/
|
|
12691
13223
|
export interface UINotification extends globalThis.EnumItem {
|
|
@@ -12695,6 +13227,8 @@ declare namespace Enum {
|
|
|
12695
13227
|
}
|
|
12696
13228
|
export const UINotification: UINotification;
|
|
12697
13229
|
/**
|
|
13230
|
+
* Useful to signify a large-scale physics event that triggers impact across a large portion of a given scene. This effect is high intensity in order to represent the magnitude of the impact and it lingers for a longer period of time than `GameplayCollision`.
|
|
13231
|
+
*
|
|
12698
13232
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/HapticEffectType#GameplayExplosion)
|
|
12699
13233
|
*/
|
|
12700
13234
|
export interface GameplayExplosion extends globalThis.EnumItem {
|
|
@@ -12704,6 +13238,8 @@ declare namespace Enum {
|
|
|
12704
13238
|
}
|
|
12705
13239
|
export const GameplayExplosion: GameplayExplosion;
|
|
12706
13240
|
/**
|
|
13241
|
+
* This effect is a large immediate rumble that dies down quickly, useful to signify a clear and purposeful impact between objects.
|
|
13242
|
+
*
|
|
12707
13243
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/HapticEffectType#GameplayCollision)
|
|
12708
13244
|
*/
|
|
12709
13245
|
export interface GameplayCollision extends globalThis.EnumItem {
|
|
@@ -14062,14 +14598,14 @@ declare namespace Enum {
|
|
|
14062
14598
|
}
|
|
14063
14599
|
export const Bool: Bool;
|
|
14064
14600
|
/**
|
|
14065
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/InputActionType#
|
|
14601
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/InputActionType#Direction1D)
|
|
14066
14602
|
*/
|
|
14067
|
-
export interface
|
|
14068
|
-
Name: "
|
|
14603
|
+
export interface Direction1D extends globalThis.EnumItem {
|
|
14604
|
+
Name: "Direction1D";
|
|
14069
14605
|
Value: 1;
|
|
14070
14606
|
EnumType: typeof globalThis.Enum.InputActionType;
|
|
14071
14607
|
}
|
|
14072
|
-
export const
|
|
14608
|
+
export const Direction1D: Direction1D;
|
|
14073
14609
|
/**
|
|
14074
14610
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/InputActionType#Direction2D)
|
|
14075
14611
|
*/
|
|
@@ -14083,7 +14619,7 @@ declare namespace Enum {
|
|
|
14083
14619
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.InputActionType | undefined;
|
|
14084
14620
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.InputActionType | undefined;
|
|
14085
14621
|
}
|
|
14086
|
-
export type InputActionType = InputActionType.Bool | InputActionType.
|
|
14622
|
+
export type InputActionType = InputActionType.Bool | InputActionType.Direction1D | InputActionType.Direction2D;
|
|
14087
14623
|
/**
|
|
14088
14624
|
* The InputType Enum controls the SurfaceInputs of `Part`.
|
|
14089
14625
|
*
|
|
@@ -17732,7 +18268,7 @@ declare namespace Enum {
|
|
|
17732
18268
|
*/
|
|
17733
18269
|
export namespace LineJoinMode {
|
|
17734
18270
|
/**
|
|
17735
|
-
* The corners are rounded (
|
|
18271
|
+
* The corners are rounded. 
|
|
17736
18272
|
*
|
|
17737
18273
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/LineJoinMode#Round)
|
|
17738
18274
|
*/
|
|
@@ -17743,7 +18279,7 @@ declare namespace Enum {
|
|
|
17743
18279
|
}
|
|
17744
18280
|
export const Round: Round;
|
|
17745
18281
|
/**
|
|
17746
|
-
* The corners are beveled (
|
|
18282
|
+
* The corners are beveled. 
|
|
17747
18283
|
*
|
|
17748
18284
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/LineJoinMode#Bevel)
|
|
17749
18285
|
*/
|
|
@@ -17754,7 +18290,7 @@ declare namespace Enum {
|
|
|
17754
18290
|
}
|
|
17755
18291
|
export const Bevel: Bevel;
|
|
17756
18292
|
/**
|
|
17757
|
-
* The corners are mitered (
|
|
18293
|
+
* The corners are mitered. 
|
|
17758
18294
|
*
|
|
17759
18295
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/LineJoinMode#Miter)
|
|
17760
18296
|
*/
|
|
@@ -24951,11 +25487,20 @@ declare namespace Enum {
|
|
|
24951
25487
|
EnumType: typeof globalThis.Enum.SecurityCapability;
|
|
24952
25488
|
}
|
|
24953
25489
|
export const Players: Players;
|
|
25490
|
+
/**
|
|
25491
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SecurityCapability#CapabilityControl)
|
|
25492
|
+
*/
|
|
25493
|
+
export interface CapabilityControl extends globalThis.EnumItem {
|
|
25494
|
+
Name: "CapabilityControl";
|
|
25495
|
+
Value: 22;
|
|
25496
|
+
EnumType: typeof globalThis.Enum.SecurityCapability;
|
|
25497
|
+
}
|
|
25498
|
+
export const CapabilityControl: CapabilityControl;
|
|
24954
25499
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.SecurityCapability>;
|
|
24955
25500
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.SecurityCapability | undefined;
|
|
24956
25501
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.SecurityCapability | undefined;
|
|
24957
25502
|
}
|
|
24958
|
-
export type SecurityCapability = SecurityCapability.RunClientScript | SecurityCapability.RunServerScript | SecurityCapability.AccessOutsideWrite | SecurityCapability.AssetRequire | SecurityCapability.LoadString | SecurityCapability.ScriptGlobals | SecurityCapability.CreateInstances | SecurityCapability.Basic | SecurityCapability.Audio | SecurityCapability.DataStore | SecurityCapability.Network | SecurityCapability.Physics | SecurityCapability.UI | SecurityCapability.CSG | SecurityCapability.Chat | SecurityCapability.Animation | SecurityCapability.Avatar | SecurityCapability.Input | SecurityCapability.Environment | SecurityCapability.RemoteEvent | SecurityCapability.LegacySound | SecurityCapability.Players;
|
|
25503
|
+
export type SecurityCapability = SecurityCapability.RunClientScript | SecurityCapability.RunServerScript | SecurityCapability.AccessOutsideWrite | SecurityCapability.AssetRequire | SecurityCapability.LoadString | SecurityCapability.ScriptGlobals | SecurityCapability.CreateInstances | SecurityCapability.Basic | SecurityCapability.Audio | SecurityCapability.DataStore | SecurityCapability.Network | SecurityCapability.Physics | SecurityCapability.UI | SecurityCapability.CSG | SecurityCapability.Chat | SecurityCapability.Animation | SecurityCapability.Avatar | SecurityCapability.Input | SecurityCapability.Environment | SecurityCapability.RemoteEvent | SecurityCapability.LegacySound | SecurityCapability.Players | SecurityCapability.CapabilityControl;
|
|
24959
25504
|
/**
|
|
24960
25505
|
* Customization options for gamepad selection when `GuiBase2d.SelectionGroup` is true.
|
|
24961
25506
|
*
|
|
@@ -25700,12 +26245,21 @@ declare namespace Enum {
|
|
|
25700
26245
|
EnumType: typeof globalThis.Enum.StateObjectFieldType;
|
|
25701
26246
|
}
|
|
25702
26247
|
export const CFrame: CFrame;
|
|
26248
|
+
/**
|
|
26249
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StateObjectFieldType#Color3)
|
|
26250
|
+
*/
|
|
26251
|
+
export interface Color3 extends globalThis.EnumItem {
|
|
26252
|
+
Name: "Color3";
|
|
26253
|
+
Value: 2;
|
|
26254
|
+
EnumType: typeof globalThis.Enum.StateObjectFieldType;
|
|
26255
|
+
}
|
|
26256
|
+
export const Color3: Color3;
|
|
25703
26257
|
/**
|
|
25704
26258
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StateObjectFieldType#Float)
|
|
25705
26259
|
*/
|
|
25706
26260
|
export interface Float extends globalThis.EnumItem {
|
|
25707
26261
|
Name: "Float";
|
|
25708
|
-
Value:
|
|
26262
|
+
Value: 3;
|
|
25709
26263
|
EnumType: typeof globalThis.Enum.StateObjectFieldType;
|
|
25710
26264
|
}
|
|
25711
26265
|
export const Float: Float;
|
|
@@ -25714,7 +26268,7 @@ declare namespace Enum {
|
|
|
25714
26268
|
*/
|
|
25715
26269
|
export interface Instance extends globalThis.EnumItem {
|
|
25716
26270
|
Name: "Instance";
|
|
25717
|
-
Value:
|
|
26271
|
+
Value: 4;
|
|
25718
26272
|
EnumType: typeof globalThis.Enum.StateObjectFieldType;
|
|
25719
26273
|
}
|
|
25720
26274
|
export const Instance: Instance;
|
|
@@ -25723,7 +26277,7 @@ declare namespace Enum {
|
|
|
25723
26277
|
*/
|
|
25724
26278
|
export interface Random extends globalThis.EnumItem {
|
|
25725
26279
|
Name: "Random";
|
|
25726
|
-
Value:
|
|
26280
|
+
Value: 5;
|
|
25727
26281
|
EnumType: typeof globalThis.Enum.StateObjectFieldType;
|
|
25728
26282
|
}
|
|
25729
26283
|
export const Random: Random;
|
|
@@ -25732,7 +26286,7 @@ declare namespace Enum {
|
|
|
25732
26286
|
*/
|
|
25733
26287
|
export interface Vector2 extends globalThis.EnumItem {
|
|
25734
26288
|
Name: "Vector2";
|
|
25735
|
-
Value:
|
|
26289
|
+
Value: 6;
|
|
25736
26290
|
EnumType: typeof globalThis.Enum.StateObjectFieldType;
|
|
25737
26291
|
}
|
|
25738
26292
|
export const Vector2: Vector2;
|
|
@@ -25741,7 +26295,7 @@ declare namespace Enum {
|
|
|
25741
26295
|
*/
|
|
25742
26296
|
export interface Vector3 extends globalThis.EnumItem {
|
|
25743
26297
|
Name: "Vector3";
|
|
25744
|
-
Value:
|
|
26298
|
+
Value: 7;
|
|
25745
26299
|
EnumType: typeof globalThis.Enum.StateObjectFieldType;
|
|
25746
26300
|
}
|
|
25747
26301
|
export const Vector3: Vector3;
|
|
@@ -25750,7 +26304,7 @@ declare namespace Enum {
|
|
|
25750
26304
|
*/
|
|
25751
26305
|
export interface INVALID extends globalThis.EnumItem {
|
|
25752
26306
|
Name: "INVALID";
|
|
25753
|
-
Value:
|
|
26307
|
+
Value: 8;
|
|
25754
26308
|
EnumType: typeof globalThis.Enum.StateObjectFieldType;
|
|
25755
26309
|
}
|
|
25756
26310
|
export const INVALID: INVALID;
|
|
@@ -25758,7 +26312,7 @@ declare namespace Enum {
|
|
|
25758
26312
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.StateObjectFieldType | undefined;
|
|
25759
26313
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.StateObjectFieldType | undefined;
|
|
25760
26314
|
}
|
|
25761
|
-
export type StateObjectFieldType = StateObjectFieldType.Boolean | StateObjectFieldType.CFrame | StateObjectFieldType.Float | StateObjectFieldType.Instance | StateObjectFieldType.Random | StateObjectFieldType.Vector2 | StateObjectFieldType.Vector3 | StateObjectFieldType.INVALID;
|
|
26315
|
+
export type StateObjectFieldType = StateObjectFieldType.Boolean | StateObjectFieldType.CFrame | StateObjectFieldType.Color3 | StateObjectFieldType.Float | StateObjectFieldType.Instance | StateObjectFieldType.Random | StateObjectFieldType.Vector2 | StateObjectFieldType.Vector3 | StateObjectFieldType.INVALID;
|
|
25762
26316
|
/**
|
|
25763
26317
|
* **Deprecated:** This enum is deprecated as it was only used by deprecated methods and events. It should not be used in new work.
|
|
25764
26318
|
*
|