@rbxts/types 1.0.950 → 1.0.952
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 +198 -42
- package/include/generated/PluginSecurity.d.ts +107 -19
- package/include/generated/enums.d.ts +375 -10
- package/include/roblox.d.ts +1 -2
- package/package.json +1 -1
|
@@ -1307,6 +1307,8 @@ declare namespace Enum {
|
|
|
1307
1307
|
*/
|
|
1308
1308
|
export namespace AnalyticsCustomFieldKeys {
|
|
1309
1309
|
/**
|
|
1310
|
+
* The first custom field key, used to provide a breakdown dimension in Roblox-provided analytics charts.
|
|
1311
|
+
*
|
|
1310
1312
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnalyticsCustomFieldKeys#CustomField01)
|
|
1311
1313
|
*/
|
|
1312
1314
|
export interface CustomField01 extends globalThis.EnumItem {
|
|
@@ -1316,6 +1318,8 @@ declare namespace Enum {
|
|
|
1316
1318
|
}
|
|
1317
1319
|
export const CustomField01: CustomField01;
|
|
1318
1320
|
/**
|
|
1321
|
+
* The second custom field key, used to provide a breakdown dimension in Roblox-provided analytics charts.
|
|
1322
|
+
*
|
|
1319
1323
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnalyticsCustomFieldKeys#CustomField02)
|
|
1320
1324
|
*/
|
|
1321
1325
|
export interface CustomField02 extends globalThis.EnumItem {
|
|
@@ -1325,6 +1329,8 @@ declare namespace Enum {
|
|
|
1325
1329
|
}
|
|
1326
1330
|
export const CustomField02: CustomField02;
|
|
1327
1331
|
/**
|
|
1332
|
+
* The third custom field key, used to provide a breakdown dimension in Roblox-provided analytics charts.
|
|
1333
|
+
*
|
|
1328
1334
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnalyticsCustomFieldKeys#CustomField03)
|
|
1329
1335
|
*/
|
|
1330
1336
|
export interface CustomField03 extends globalThis.EnumItem {
|
|
@@ -1339,6 +1345,8 @@ declare namespace Enum {
|
|
|
1339
1345
|
}
|
|
1340
1346
|
export type AnalyticsCustomFieldKeys = AnalyticsCustomFieldKeys.CustomField01 | AnalyticsCustomFieldKeys.CustomField02 | AnalyticsCustomFieldKeys.CustomField03;
|
|
1341
1347
|
/**
|
|
1348
|
+
* Describes the type of economic transaction in `AnalyticsService:FireInGameEconomyEvent()`.
|
|
1349
|
+
*
|
|
1342
1350
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnalyticsEconomyAction)
|
|
1343
1351
|
*/
|
|
1344
1352
|
export namespace AnalyticsEconomyAction {
|
|
@@ -1381,6 +1389,8 @@ declare namespace Enum {
|
|
|
1381
1389
|
}
|
|
1382
1390
|
export type AnalyticsEconomyAction = AnalyticsEconomyAction.Default | AnalyticsEconomyAction.Acquire | AnalyticsEconomyAction.Spend;
|
|
1383
1391
|
/**
|
|
1392
|
+
* Specifies the direction of currency flow in an economy event logged by `AnalyticsService:LogEconomyEvent()`.
|
|
1393
|
+
*
|
|
1384
1394
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnalyticsEconomyFlowType)
|
|
1385
1395
|
*/
|
|
1386
1396
|
export namespace AnalyticsEconomyFlowType {
|
|
@@ -1412,6 +1422,8 @@ declare namespace Enum {
|
|
|
1412
1422
|
}
|
|
1413
1423
|
export type AnalyticsEconomyFlowType = AnalyticsEconomyFlowType.Sink | AnalyticsEconomyFlowType.Source;
|
|
1414
1424
|
/**
|
|
1425
|
+
* Categorizes the context of an in-experience economic transaction for use with `AnalyticsService:LogEconomyEvent()`.
|
|
1426
|
+
*
|
|
1415
1427
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnalyticsEconomyTransactionType)
|
|
1416
1428
|
*/
|
|
1417
1429
|
export namespace AnalyticsEconomyTransactionType {
|
|
@@ -1487,6 +1499,8 @@ declare namespace Enum {
|
|
|
1487
1499
|
}
|
|
1488
1500
|
export type AnalyticsEconomyTransactionType = AnalyticsEconomyTransactionType.IAP | AnalyticsEconomyTransactionType.Shop | AnalyticsEconomyTransactionType.Gameplay | AnalyticsEconomyTransactionType.ContextualPurchase | AnalyticsEconomyTransactionType.TimedReward | AnalyticsEconomyTransactionType.Onboarding;
|
|
1489
1501
|
/**
|
|
1502
|
+
* Specifies the severity level of an analytics log event passed to `AnalyticsService:FireLogEvent()`.
|
|
1503
|
+
*
|
|
1490
1504
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnalyticsLogLevel)
|
|
1491
1505
|
*/
|
|
1492
1506
|
export namespace AnalyticsLogLevel {
|
|
@@ -1513,6 +1527,8 @@ declare namespace Enum {
|
|
|
1513
1527
|
}
|
|
1514
1528
|
export const Debug: Debug;
|
|
1515
1529
|
/**
|
|
1530
|
+
* Used for general informational messages that highlight progress or state changes during normal operation.
|
|
1531
|
+
*
|
|
1516
1532
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnalyticsLogLevel#Information)
|
|
1517
1533
|
*/
|
|
1518
1534
|
export interface Information extends globalThis.EnumItem {
|
|
@@ -1626,10 +1642,14 @@ declare namespace Enum {
|
|
|
1626
1642
|
}
|
|
1627
1643
|
export type AnalyticsProgressionStatus = AnalyticsProgressionStatus.Default | AnalyticsProgressionStatus.Begin | AnalyticsProgressionStatus.Complete | AnalyticsProgressionStatus.Abandon | AnalyticsProgressionStatus.Fail;
|
|
1628
1644
|
/**
|
|
1645
|
+
* Specifies the player's progression status in a level-progression event logged by `AnalyticsService:LogProgressionEvent()`.
|
|
1646
|
+
*
|
|
1629
1647
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnalyticsProgressionType)
|
|
1630
1648
|
*/
|
|
1631
1649
|
export namespace AnalyticsProgressionType {
|
|
1632
1650
|
/**
|
|
1651
|
+
* A custom progression status for events outside the standard start/fail/complete lifecycle.
|
|
1652
|
+
*
|
|
1633
1653
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnalyticsProgressionType#Custom)
|
|
1634
1654
|
*/
|
|
1635
1655
|
export interface Custom extends globalThis.EnumItem {
|
|
@@ -1639,6 +1659,8 @@ declare namespace Enum {
|
|
|
1639
1659
|
}
|
|
1640
1660
|
export const Custom: Custom;
|
|
1641
1661
|
/**
|
|
1662
|
+
* The player started the level attempt.
|
|
1663
|
+
*
|
|
1642
1664
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnalyticsProgressionType#Start)
|
|
1643
1665
|
*/
|
|
1644
1666
|
export interface Start extends globalThis.EnumItem {
|
|
@@ -1648,6 +1670,8 @@ declare namespace Enum {
|
|
|
1648
1670
|
}
|
|
1649
1671
|
export const Start: Start;
|
|
1650
1672
|
/**
|
|
1673
|
+
* The player failed the level attempt.
|
|
1674
|
+
*
|
|
1651
1675
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnalyticsProgressionType#Fail)
|
|
1652
1676
|
*/
|
|
1653
1677
|
export interface Fail extends globalThis.EnumItem {
|
|
@@ -1657,6 +1681,8 @@ declare namespace Enum {
|
|
|
1657
1681
|
}
|
|
1658
1682
|
export const Fail: Fail;
|
|
1659
1683
|
/**
|
|
1684
|
+
* The player completed the level successfully.
|
|
1685
|
+
*
|
|
1660
1686
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnalyticsProgressionType#Complete)
|
|
1661
1687
|
*/
|
|
1662
1688
|
export interface Complete extends globalThis.EnumItem {
|
|
@@ -1670,6 +1696,105 @@ declare namespace Enum {
|
|
|
1670
1696
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnalyticsProgressionType | undefined;
|
|
1671
1697
|
}
|
|
1672
1698
|
export type AnalyticsProgressionType = AnalyticsProgressionType.Custom | AnalyticsProgressionType.Start | AnalyticsProgressionType.Fail | AnalyticsProgressionType.Complete;
|
|
1699
|
+
/**
|
|
1700
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimatedImagePlaybackState)
|
|
1701
|
+
*/
|
|
1702
|
+
export namespace AnimatedImagePlaybackState {
|
|
1703
|
+
/**
|
|
1704
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimatedImagePlaybackState#Begin)
|
|
1705
|
+
*/
|
|
1706
|
+
export interface Begin extends globalThis.EnumItem {
|
|
1707
|
+
Name: "Begin";
|
|
1708
|
+
Value: 0;
|
|
1709
|
+
EnumType: typeof globalThis.Enum.AnimatedImagePlaybackState;
|
|
1710
|
+
}
|
|
1711
|
+
export const Begin: Begin;
|
|
1712
|
+
/**
|
|
1713
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimatedImagePlaybackState#Playing)
|
|
1714
|
+
*/
|
|
1715
|
+
export interface Playing extends globalThis.EnumItem {
|
|
1716
|
+
Name: "Playing";
|
|
1717
|
+
Value: 1;
|
|
1718
|
+
EnumType: typeof globalThis.Enum.AnimatedImagePlaybackState;
|
|
1719
|
+
}
|
|
1720
|
+
export const Playing: Playing;
|
|
1721
|
+
/**
|
|
1722
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimatedImagePlaybackState#Paused)
|
|
1723
|
+
*/
|
|
1724
|
+
export interface Paused extends globalThis.EnumItem {
|
|
1725
|
+
Name: "Paused";
|
|
1726
|
+
Value: 2;
|
|
1727
|
+
EnumType: typeof globalThis.Enum.AnimatedImagePlaybackState;
|
|
1728
|
+
}
|
|
1729
|
+
export const Paused: Paused;
|
|
1730
|
+
/**
|
|
1731
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimatedImagePlaybackState#Completed)
|
|
1732
|
+
*/
|
|
1733
|
+
export interface Completed extends globalThis.EnumItem {
|
|
1734
|
+
Name: "Completed";
|
|
1735
|
+
Value: 3;
|
|
1736
|
+
EnumType: typeof globalThis.Enum.AnimatedImagePlaybackState;
|
|
1737
|
+
}
|
|
1738
|
+
export const Completed: Completed;
|
|
1739
|
+
/**
|
|
1740
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimatedImagePlaybackState#Canceled)
|
|
1741
|
+
*/
|
|
1742
|
+
export interface Canceled extends globalThis.EnumItem {
|
|
1743
|
+
Name: "Canceled";
|
|
1744
|
+
Value: 4;
|
|
1745
|
+
EnumType: typeof globalThis.Enum.AnimatedImagePlaybackState;
|
|
1746
|
+
}
|
|
1747
|
+
export const Canceled: Canceled;
|
|
1748
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AnimatedImagePlaybackState>;
|
|
1749
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AnimatedImagePlaybackState | undefined;
|
|
1750
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnimatedImagePlaybackState | undefined;
|
|
1751
|
+
}
|
|
1752
|
+
export type AnimatedImagePlaybackState = AnimatedImagePlaybackState.Begin | AnimatedImagePlaybackState.Playing | AnimatedImagePlaybackState.Paused | AnimatedImagePlaybackState.Completed | AnimatedImagePlaybackState.Canceled;
|
|
1753
|
+
/**
|
|
1754
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimatedImageScaleType)
|
|
1755
|
+
*/
|
|
1756
|
+
export namespace AnimatedImageScaleType {
|
|
1757
|
+
/**
|
|
1758
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimatedImageScaleType#Stretch)
|
|
1759
|
+
*/
|
|
1760
|
+
export interface Stretch extends globalThis.EnumItem {
|
|
1761
|
+
Name: "Stretch";
|
|
1762
|
+
Value: 0;
|
|
1763
|
+
EnumType: typeof globalThis.Enum.AnimatedImageScaleType;
|
|
1764
|
+
}
|
|
1765
|
+
export const Stretch: Stretch;
|
|
1766
|
+
/**
|
|
1767
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimatedImageScaleType#Tile)
|
|
1768
|
+
*/
|
|
1769
|
+
export interface Tile extends globalThis.EnumItem {
|
|
1770
|
+
Name: "Tile";
|
|
1771
|
+
Value: 1;
|
|
1772
|
+
EnumType: typeof globalThis.Enum.AnimatedImageScaleType;
|
|
1773
|
+
}
|
|
1774
|
+
export const Tile: Tile;
|
|
1775
|
+
/**
|
|
1776
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimatedImageScaleType#Fit)
|
|
1777
|
+
*/
|
|
1778
|
+
export interface Fit extends globalThis.EnumItem {
|
|
1779
|
+
Name: "Fit";
|
|
1780
|
+
Value: 2;
|
|
1781
|
+
EnumType: typeof globalThis.Enum.AnimatedImageScaleType;
|
|
1782
|
+
}
|
|
1783
|
+
export const Fit: Fit;
|
|
1784
|
+
/**
|
|
1785
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimatedImageScaleType#Crop)
|
|
1786
|
+
*/
|
|
1787
|
+
export interface Crop extends globalThis.EnumItem {
|
|
1788
|
+
Name: "Crop";
|
|
1789
|
+
Value: 3;
|
|
1790
|
+
EnumType: typeof globalThis.Enum.AnimatedImageScaleType;
|
|
1791
|
+
}
|
|
1792
|
+
export const Crop: Crop;
|
|
1793
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AnimatedImageScaleType>;
|
|
1794
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AnimatedImageScaleType | undefined;
|
|
1795
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnimatedImageScaleType | undefined;
|
|
1796
|
+
}
|
|
1797
|
+
export type AnimatedImageScaleType = AnimatedImageScaleType.Stretch | AnimatedImageScaleType.Tile | AnimatedImageScaleType.Fit | AnimatedImageScaleType.Crop;
|
|
1673
1798
|
/**
|
|
1674
1799
|
* Indicates the current status or final outcome of a video-to-animation conversion started by `AssetService:PromptImportAnimationClipFromVideoAsync()`.
|
|
1675
1800
|
*
|
|
@@ -2291,6 +2416,33 @@ declare namespace Enum {
|
|
|
2291
2416
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnimationPriority | undefined;
|
|
2292
2417
|
}
|
|
2293
2418
|
export type AnimationPriority = AnimationPriority.Idle | AnimationPriority.Movement | AnimationPriority.Action | AnimationPriority.Action2 | AnimationPriority.Action3 | AnimationPriority.Action4 | AnimationPriority.Core;
|
|
2419
|
+
/**
|
|
2420
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationValueNodeType)
|
|
2421
|
+
*/
|
|
2422
|
+
export namespace AnimationValueNodeType {
|
|
2423
|
+
/**
|
|
2424
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationValueNodeType#Invalid)
|
|
2425
|
+
*/
|
|
2426
|
+
export interface Invalid extends globalThis.EnumItem {
|
|
2427
|
+
Name: "Invalid";
|
|
2428
|
+
Value: 0;
|
|
2429
|
+
EnumType: typeof globalThis.Enum.AnimationValueNodeType;
|
|
2430
|
+
}
|
|
2431
|
+
export const Invalid: Invalid;
|
|
2432
|
+
/**
|
|
2433
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationValueNodeType#Expression)
|
|
2434
|
+
*/
|
|
2435
|
+
export interface Expression extends globalThis.EnumItem {
|
|
2436
|
+
Name: "Expression";
|
|
2437
|
+
Value: 1;
|
|
2438
|
+
EnumType: typeof globalThis.Enum.AnimationValueNodeType;
|
|
2439
|
+
}
|
|
2440
|
+
export const Expression: Expression;
|
|
2441
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AnimationValueNodeType>;
|
|
2442
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AnimationValueNodeType | undefined;
|
|
2443
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnimationValueNodeType | undefined;
|
|
2444
|
+
}
|
|
2445
|
+
export type AnimationValueNodeType = AnimationValueNodeType.Invalid | AnimationValueNodeType.Expression;
|
|
2294
2446
|
/**
|
|
2295
2447
|
* Animation Retargeting setting.
|
|
2296
2448
|
*
|
|
@@ -10395,11 +10547,74 @@ declare namespace Enum {
|
|
|
10395
10547
|
EnumType: typeof globalThis.Enum.ConnectionError;
|
|
10396
10548
|
}
|
|
10397
10549
|
export const TeleportIsTeleporting: TeleportIsTeleporting;
|
|
10550
|
+
/**
|
|
10551
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ConnectionError#TransportErrors)
|
|
10552
|
+
*/
|
|
10553
|
+
export interface TransportErrors extends globalThis.EnumItem {
|
|
10554
|
+
Name: "TransportErrors";
|
|
10555
|
+
Value: 1024;
|
|
10556
|
+
EnumType: typeof globalThis.Enum.ConnectionError;
|
|
10557
|
+
}
|
|
10558
|
+
export const TransportErrors: TransportErrors;
|
|
10559
|
+
/**
|
|
10560
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ConnectionError#DisconnectTransportIoError)
|
|
10561
|
+
*/
|
|
10562
|
+
export interface DisconnectTransportIoError extends globalThis.EnumItem {
|
|
10563
|
+
Name: "DisconnectTransportIoError";
|
|
10564
|
+
Value: 1025;
|
|
10565
|
+
EnumType: typeof globalThis.Enum.ConnectionError;
|
|
10566
|
+
}
|
|
10567
|
+
export const DisconnectTransportIoError: DisconnectTransportIoError;
|
|
10568
|
+
/**
|
|
10569
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ConnectionError#DisconnectTransportIoInternetError)
|
|
10570
|
+
*/
|
|
10571
|
+
export interface DisconnectTransportIoInternetError extends globalThis.EnumItem {
|
|
10572
|
+
Name: "DisconnectTransportIoInternetError";
|
|
10573
|
+
Value: 1026;
|
|
10574
|
+
EnumType: typeof globalThis.Enum.ConnectionError;
|
|
10575
|
+
}
|
|
10576
|
+
export const DisconnectTransportIoInternetError: DisconnectTransportIoInternetError;
|
|
10577
|
+
/**
|
|
10578
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ConnectionError#DisconnectTransportProtocolError)
|
|
10579
|
+
*/
|
|
10580
|
+
export interface DisconnectTransportProtocolError extends globalThis.EnumItem {
|
|
10581
|
+
Name: "DisconnectTransportProtocolError";
|
|
10582
|
+
Value: 1027;
|
|
10583
|
+
EnumType: typeof globalThis.Enum.ConnectionError;
|
|
10584
|
+
}
|
|
10585
|
+
export const DisconnectTransportProtocolError: DisconnectTransportProtocolError;
|
|
10586
|
+
/**
|
|
10587
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ConnectionError#DisconnectTransportNgtcp2Error)
|
|
10588
|
+
*/
|
|
10589
|
+
export interface DisconnectTransportNgtcp2Error extends globalThis.EnumItem {
|
|
10590
|
+
Name: "DisconnectTransportNgtcp2Error";
|
|
10591
|
+
Value: 1028;
|
|
10592
|
+
EnumType: typeof globalThis.Enum.ConnectionError;
|
|
10593
|
+
}
|
|
10594
|
+
export const DisconnectTransportNgtcp2Error: DisconnectTransportNgtcp2Error;
|
|
10595
|
+
/**
|
|
10596
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ConnectionError#DisconnectTransportQuicError)
|
|
10597
|
+
*/
|
|
10598
|
+
export interface DisconnectTransportQuicError extends globalThis.EnumItem {
|
|
10599
|
+
Name: "DisconnectTransportQuicError";
|
|
10600
|
+
Value: 1029;
|
|
10601
|
+
EnumType: typeof globalThis.Enum.ConnectionError;
|
|
10602
|
+
}
|
|
10603
|
+
export const DisconnectTransportQuicError: DisconnectTransportQuicError;
|
|
10604
|
+
/**
|
|
10605
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ConnectionError#DisconnectTransportRnaError)
|
|
10606
|
+
*/
|
|
10607
|
+
export interface DisconnectTransportRnaError extends globalThis.EnumItem {
|
|
10608
|
+
Name: "DisconnectTransportRnaError";
|
|
10609
|
+
Value: 1030;
|
|
10610
|
+
EnumType: typeof globalThis.Enum.ConnectionError;
|
|
10611
|
+
}
|
|
10612
|
+
export const DisconnectTransportRnaError: DisconnectTransportRnaError;
|
|
10398
10613
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ConnectionError>;
|
|
10399
10614
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ConnectionError | undefined;
|
|
10400
10615
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ConnectionError | undefined;
|
|
10401
10616
|
}
|
|
10402
|
-
export type ConnectionError = ConnectionError.OK | ConnectionError.Unknown | ConnectionError.ConnectErrors | ConnectionError.AlreadyConnected | ConnectionError.NoFreeIncomingConnections | ConnectionError.ConnectionBanned | ConnectionError.InvalidPassword | ConnectionError.IncompatibleProtocolVersion | ConnectionError.IPRecentlyConnected | ConnectionError.OurSystemRequiresSecurity | ConnectionError.SecurityKeyMismatch | ConnectionError.DisconnectErrors | ConnectionError.DisconnectBadhash | ConnectionError.DisconnectSecurityKeyMismatch | ConnectionError.DisconnectProtocolMismatch | ConnectionError.DisconnectReceivePacketError | ConnectionError.DisconnectReceivePacketStreamError | ConnectionError.DisconnectSendPacketError | ConnectionError.DisconnectIllegalTeleport | ConnectionError.DisconnectDuplicatePlayer | ConnectionError.DisconnectDuplicateTicket | ConnectionError.DisconnectTimeout | ConnectionError.DisconnectLuaKick | ConnectionError.DisconnectOnRemoteSysStats | ConnectionError.DisconnectHashTimeout | ConnectionError.DisconnectCloudEditKick | ConnectionError.DisconnectPlayerless | ConnectionError.DisconnectNewSecurityKeyMismatch | ConnectionError.DisconnectEvicted | ConnectionError.DisconnectDevMaintenance | ConnectionError.DisconnectRobloxMaintenance | ConnectionError.DisconnectRejoin | ConnectionError.DisconnectConnectionLost | ConnectionError.DisconnectIdle | ConnectionError.DisconnectRaknetErrors | ConnectionError.DisconnectWrongVersion | ConnectionError.DisconnectBySecurityPolicy | ConnectionError.DisconnectBlockedIP | ConnectionError.DisconnectClientFailure | ConnectionError.DisconnectClientRequest | ConnectionError.DisconnectPrivateServerKickout | ConnectionError.DisconnectModeratedGame | ConnectionError.ServerShutdown | ConnectionError.ReplicatorTimeout | ConnectionError.PlayerRemoved | ConnectionError.DisconnectOutOfMemoryKeepPlayingLeave | ConnectionError.DisconnectRomarkEndOfTest | ConnectionError.DisconnectCollaboratorPermissionRevoked | ConnectionError.DisconnectCollaboratorUnderage | ConnectionError.NetworkInternal | ConnectionError.NetworkSend | ConnectionError.NetworkTimeout | ConnectionError.NetworkMisbehavior | ConnectionError.NetworkSecurity | ConnectionError.ReplacementReady | ConnectionError.ServerEmpty | ConnectionError.PhantomFreeze | ConnectionError.AndroidAnticheatKick | ConnectionError.AndroidEmulatorKick | ConnectionError.AndroidRootedKick | ConnectionError.ScreentimeLockoutKick | ConnectionError.DisconnectionNotification | ConnectionError.DisconnectVerboselyModeratedGame | ConnectionError.DisconnectCollaboratorNotAgeVerified | ConnectionError.DisconnectCollaboratorTrustedConnectionsRequired | ConnectionError.DisconnectCollaboratorOwnerActionRequired | ConnectionError.DisconnectCollaboratorTooManyCollaborators | ConnectionError.DisconnectCollaboratorUnknownError | ConnectionError.DisconnectCollaboratorRequestedEviction | ConnectionError.DisconnectCollaboratorTrustedConnectionsRequiredPC | ConnectionError.DisconnectRemoteAttestationUnsupported | ConnectionError.DisconnectRemoteAttestationGeneralFailure | ConnectionError.DisconnectRemoteAttestationTimeout | ConnectionError.DisconnectRemoteAttestationOSOutOfDate | ConnectionError.DisconnectRemoteAttestationBootValidationFailure | ConnectionError.PlacelaunchErrors | ConnectionError.PlacelaunchDisabled | ConnectionError.PlacelaunchError | ConnectionError.PlacelaunchGameEnded | ConnectionError.PlacelaunchGameFull | ConnectionError.PlacelaunchUserLeft | ConnectionError.PlacelaunchRestricted | ConnectionError.PlacelaunchUnauthorized | ConnectionError.PlacelaunchFlooded | ConnectionError.PlacelaunchHashExpired | ConnectionError.PlacelaunchHashException | ConnectionError.PlacelaunchPartyCannotFit | ConnectionError.PlacelaunchHttpError | ConnectionError.PlacelaunchUserPrivacyUnauthorized | ConnectionError.PlacelaunchVipOwnerNotPresent | ConnectionError.PlacelaunchAgeVerificationRequired | ConnectionError.PlacelaunchParentalApprovalRequired | ConnectionError.PlacelaunchCoreGated | ConnectionError.PlacelaunchCollaborationCoreGated | ConnectionError.PlacelaunchCreatorBan | ConnectionError.PlacelaunchDeviceBlock | ConnectionError.PlacelaunchCustomMessage | ConnectionError.PlacelaunchOtherError | ConnectionError.TeleportErrors | ConnectionError.TeleportFailure | ConnectionError.TeleportGameNotFound | ConnectionError.TeleportGameEnded | ConnectionError.TeleportGameFull | ConnectionError.TeleportUnauthorized | ConnectionError.TeleportFlooded | ConnectionError.TeleportIsTeleporting;
|
|
10617
|
+
export type ConnectionError = ConnectionError.OK | ConnectionError.Unknown | ConnectionError.ConnectErrors | ConnectionError.AlreadyConnected | ConnectionError.NoFreeIncomingConnections | ConnectionError.ConnectionBanned | ConnectionError.InvalidPassword | ConnectionError.IncompatibleProtocolVersion | ConnectionError.IPRecentlyConnected | ConnectionError.OurSystemRequiresSecurity | ConnectionError.SecurityKeyMismatch | ConnectionError.DisconnectErrors | ConnectionError.DisconnectBadhash | ConnectionError.DisconnectSecurityKeyMismatch | ConnectionError.DisconnectProtocolMismatch | ConnectionError.DisconnectReceivePacketError | ConnectionError.DisconnectReceivePacketStreamError | ConnectionError.DisconnectSendPacketError | ConnectionError.DisconnectIllegalTeleport | ConnectionError.DisconnectDuplicatePlayer | ConnectionError.DisconnectDuplicateTicket | ConnectionError.DisconnectTimeout | ConnectionError.DisconnectLuaKick | ConnectionError.DisconnectOnRemoteSysStats | ConnectionError.DisconnectHashTimeout | ConnectionError.DisconnectCloudEditKick | ConnectionError.DisconnectPlayerless | ConnectionError.DisconnectNewSecurityKeyMismatch | ConnectionError.DisconnectEvicted | ConnectionError.DisconnectDevMaintenance | ConnectionError.DisconnectRobloxMaintenance | ConnectionError.DisconnectRejoin | ConnectionError.DisconnectConnectionLost | ConnectionError.DisconnectIdle | ConnectionError.DisconnectRaknetErrors | ConnectionError.DisconnectWrongVersion | ConnectionError.DisconnectBySecurityPolicy | ConnectionError.DisconnectBlockedIP | ConnectionError.DisconnectClientFailure | ConnectionError.DisconnectClientRequest | ConnectionError.DisconnectPrivateServerKickout | ConnectionError.DisconnectModeratedGame | ConnectionError.ServerShutdown | ConnectionError.ReplicatorTimeout | ConnectionError.PlayerRemoved | ConnectionError.DisconnectOutOfMemoryKeepPlayingLeave | ConnectionError.DisconnectRomarkEndOfTest | ConnectionError.DisconnectCollaboratorPermissionRevoked | ConnectionError.DisconnectCollaboratorUnderage | ConnectionError.NetworkInternal | ConnectionError.NetworkSend | ConnectionError.NetworkTimeout | ConnectionError.NetworkMisbehavior | ConnectionError.NetworkSecurity | ConnectionError.ReplacementReady | ConnectionError.ServerEmpty | ConnectionError.PhantomFreeze | ConnectionError.AndroidAnticheatKick | ConnectionError.AndroidEmulatorKick | ConnectionError.AndroidRootedKick | ConnectionError.ScreentimeLockoutKick | ConnectionError.DisconnectionNotification | ConnectionError.DisconnectVerboselyModeratedGame | ConnectionError.DisconnectCollaboratorNotAgeVerified | ConnectionError.DisconnectCollaboratorTrustedConnectionsRequired | ConnectionError.DisconnectCollaboratorOwnerActionRequired | ConnectionError.DisconnectCollaboratorTooManyCollaborators | ConnectionError.DisconnectCollaboratorUnknownError | ConnectionError.DisconnectCollaboratorRequestedEviction | ConnectionError.DisconnectCollaboratorTrustedConnectionsRequiredPC | ConnectionError.DisconnectRemoteAttestationUnsupported | ConnectionError.DisconnectRemoteAttestationGeneralFailure | ConnectionError.DisconnectRemoteAttestationTimeout | ConnectionError.DisconnectRemoteAttestationOSOutOfDate | ConnectionError.DisconnectRemoteAttestationBootValidationFailure | ConnectionError.PlacelaunchErrors | ConnectionError.PlacelaunchDisabled | ConnectionError.PlacelaunchError | ConnectionError.PlacelaunchGameEnded | ConnectionError.PlacelaunchGameFull | ConnectionError.PlacelaunchUserLeft | ConnectionError.PlacelaunchRestricted | ConnectionError.PlacelaunchUnauthorized | ConnectionError.PlacelaunchFlooded | ConnectionError.PlacelaunchHashExpired | ConnectionError.PlacelaunchHashException | ConnectionError.PlacelaunchPartyCannotFit | ConnectionError.PlacelaunchHttpError | ConnectionError.PlacelaunchUserPrivacyUnauthorized | ConnectionError.PlacelaunchVipOwnerNotPresent | ConnectionError.PlacelaunchAgeVerificationRequired | ConnectionError.PlacelaunchParentalApprovalRequired | ConnectionError.PlacelaunchCoreGated | ConnectionError.PlacelaunchCollaborationCoreGated | ConnectionError.PlacelaunchCreatorBan | ConnectionError.PlacelaunchDeviceBlock | ConnectionError.PlacelaunchCustomMessage | ConnectionError.PlacelaunchOtherError | ConnectionError.TeleportErrors | ConnectionError.TeleportFailure | ConnectionError.TeleportGameNotFound | ConnectionError.TeleportGameEnded | ConnectionError.TeleportGameFull | ConnectionError.TeleportUnauthorized | ConnectionError.TeleportFlooded | ConnectionError.TeleportIsTeleporting | ConnectionError.TransportErrors | ConnectionError.DisconnectTransportIoError | ConnectionError.DisconnectTransportIoInternetError | ConnectionError.DisconnectTransportProtocolError | ConnectionError.DisconnectTransportNgtcp2Error | ConnectionError.DisconnectTransportQuicError | ConnectionError.DisconnectTransportRnaError;
|
|
10403
10618
|
/**
|
|
10404
10619
|
* Used to determine the connection state of the client to the game server.
|
|
10405
10620
|
*
|
|
@@ -17144,13 +17359,13 @@ declare namespace Enum {
|
|
|
17144
17359
|
}
|
|
17145
17360
|
export type Genre = Genre.All | Genre.TownAndCity | Genre.Fantasy | Genre.SciFi | Genre.Ninja | Genre.Scary | Genre.Pirate | Genre.Adventure | Genre.Sports | Genre.Funny | Genre.WildWest | Genre.War | Genre.SkatePark | Genre.Tutorial;
|
|
17146
17361
|
/**
|
|
17147
|
-
*
|
|
17362
|
+
* Used alongside `UIGradient.TileMode` to set how the gradient repeats.
|
|
17148
17363
|
*
|
|
17149
17364
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/GradientTileMode)
|
|
17150
17365
|
*/
|
|
17151
17366
|
export namespace GradientTileMode {
|
|
17152
17367
|
/**
|
|
17153
|
-
*
|
|
17368
|
+
* Default mode where the color/transparency values at the start and end of the sequence extend infinitely, so the start values fill any area before the gradient and the end values fill any area after it.
|
|
17154
17369
|
*
|
|
17155
17370
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/GradientTileMode#Clamp)
|
|
17156
17371
|
*/
|
|
@@ -17161,7 +17376,7 @@ declare namespace Enum {
|
|
|
17161
17376
|
}
|
|
17162
17377
|
export const Clamp: Clamp;
|
|
17163
17378
|
/**
|
|
17164
|
-
*
|
|
17379
|
+
* The gradient repeats by wrapping the color/transparency sequence tiles seamlessly from end back to start. This can produce a visible seam if the first and last color/transparency values in the sequence differ.
|
|
17165
17380
|
*
|
|
17166
17381
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/GradientTileMode#Repeat)
|
|
17167
17382
|
*/
|
|
@@ -17172,7 +17387,7 @@ declare namespace Enum {
|
|
|
17172
17387
|
}
|
|
17173
17388
|
export const Repeat: Repeat;
|
|
17174
17389
|
/**
|
|
17175
|
-
*
|
|
17390
|
+
* The gradient reflects at each boundary so the color/transparency sequence ping-pongs. This produces a smooth repetition with no seam, since the direction reverses at each tile edge.
|
|
17176
17391
|
*
|
|
17177
17392
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/GradientTileMode#Mirror)
|
|
17178
17393
|
*/
|
|
@@ -17188,13 +17403,13 @@ declare namespace Enum {
|
|
|
17188
17403
|
}
|
|
17189
17404
|
export type GradientTileMode = GradientTileMode.Clamp | GradientTileMode.Repeat | GradientTileMode.Mirror;
|
|
17190
17405
|
/**
|
|
17191
|
-
*
|
|
17406
|
+
* Used alongside `UIGradient.Type` to set the shape of the gradient.
|
|
17192
17407
|
*
|
|
17193
17408
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/GradientType)
|
|
17194
17409
|
*/
|
|
17195
17410
|
export namespace GradientType {
|
|
17196
17411
|
/**
|
|
17197
|
-
*
|
|
17412
|
+
* The color/transparency sequence transitions in a straight line across the element. The direction is controlled by `Rotation` and the position by `Offset`.
|
|
17198
17413
|
*
|
|
17199
17414
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/GradientType#Linear)
|
|
17200
17415
|
*/
|
|
@@ -17205,7 +17420,7 @@ declare namespace Enum {
|
|
|
17205
17420
|
}
|
|
17206
17421
|
export const Linear: Linear;
|
|
17207
17422
|
/**
|
|
17208
|
-
*
|
|
17423
|
+
* The color/transparency sequence radiates outward from the element's center, optionally shifted by `Offset`. The radius is defined by the average of the element's width and height divided by two, effectively `(width+height)/4`. `Rotation` has no effect on a radial gradient.
|
|
17209
17424
|
*
|
|
17210
17425
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/GradientType#Radial)
|
|
17211
17426
|
*/
|
|
@@ -17216,7 +17431,7 @@ declare namespace Enum {
|
|
|
17216
17431
|
}
|
|
17217
17432
|
export const Radial: Radial;
|
|
17218
17433
|
/**
|
|
17219
|
-
*
|
|
17434
|
+
* The color/transparency sequence sweeps clockwise around the center of the element, optionally shifted by `Offset`. `Rotation` controls the starting angle of the sweep.
|
|
17220
17435
|
*
|
|
17221
17436
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/GradientType#Conical)
|
|
17222
17437
|
*/
|
|
@@ -27770,6 +27985,42 @@ declare namespace Enum {
|
|
|
27770
27985
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PhysicsSteppingMethod | undefined;
|
|
27771
27986
|
}
|
|
27772
27987
|
export type PhysicsSteppingMethod = PhysicsSteppingMethod.Default | PhysicsSteppingMethod.Fixed | PhysicsSteppingMethod.Adaptive;
|
|
27988
|
+
/**
|
|
27989
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PinExperienceStatus)
|
|
27990
|
+
*/
|
|
27991
|
+
export namespace PinExperienceStatus {
|
|
27992
|
+
/**
|
|
27993
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PinExperienceStatus#Success)
|
|
27994
|
+
*/
|
|
27995
|
+
export interface Success extends globalThis.EnumItem {
|
|
27996
|
+
Name: "Success";
|
|
27997
|
+
Value: 0;
|
|
27998
|
+
EnumType: typeof globalThis.Enum.PinExperienceStatus;
|
|
27999
|
+
}
|
|
28000
|
+
export const Success: Success;
|
|
28001
|
+
/**
|
|
28002
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PinExperienceStatus#Failure)
|
|
28003
|
+
*/
|
|
28004
|
+
export interface Failure extends globalThis.EnumItem {
|
|
28005
|
+
Name: "Failure";
|
|
28006
|
+
Value: 1;
|
|
28007
|
+
EnumType: typeof globalThis.Enum.PinExperienceStatus;
|
|
28008
|
+
}
|
|
28009
|
+
export const Failure: Failure;
|
|
28010
|
+
/**
|
|
28011
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PinExperienceStatus#AlreadyExists)
|
|
28012
|
+
*/
|
|
28013
|
+
export interface AlreadyExists extends globalThis.EnumItem {
|
|
28014
|
+
Name: "AlreadyExists";
|
|
28015
|
+
Value: 2;
|
|
28016
|
+
EnumType: typeof globalThis.Enum.PinExperienceStatus;
|
|
28017
|
+
}
|
|
28018
|
+
export const AlreadyExists: AlreadyExists;
|
|
28019
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.PinExperienceStatus>;
|
|
28020
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.PinExperienceStatus | undefined;
|
|
28021
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PinExperienceStatus | undefined;
|
|
28022
|
+
}
|
|
28023
|
+
export type PinExperienceStatus = PinExperienceStatus.Success | PinExperienceStatus.Failure | PinExperienceStatus.AlreadyExists;
|
|
27773
28024
|
/**
|
|
27774
28025
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PioneerSource)
|
|
27775
28026
|
*/
|
|
@@ -36073,10 +36324,14 @@ declare namespace Enum {
|
|
|
36073
36324
|
}
|
|
36074
36325
|
export type StudioPlaceUpdateFailureReason = StudioPlaceUpdateFailureReason.Other | StudioPlaceUpdateFailureReason.TeamCreateConflict;
|
|
36075
36326
|
/**
|
|
36327
|
+
* Color categories used to theme the Script Editor in Roblox Studio.
|
|
36328
|
+
*
|
|
36076
36329
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioScriptEditorColorCategories)
|
|
36077
36330
|
*/
|
|
36078
36331
|
export namespace StudioScriptEditorColorCategories {
|
|
36079
36332
|
/**
|
|
36333
|
+
* Fallback foreground color used for script text that does not match any more specific syntax category.
|
|
36334
|
+
*
|
|
36080
36335
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioScriptEditorColorCategories#Default)
|
|
36081
36336
|
*/
|
|
36082
36337
|
export interface Default extends globalThis.EnumItem {
|
|
@@ -36086,6 +36341,8 @@ declare namespace Enum {
|
|
|
36086
36341
|
}
|
|
36087
36342
|
export const Default: Default;
|
|
36088
36343
|
/**
|
|
36344
|
+
* Color applied to operator tokens such as `+`, `-`, `*`, `/`, `==`, and `..` in scripts.
|
|
36345
|
+
*
|
|
36089
36346
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioScriptEditorColorCategories#Operator)
|
|
36090
36347
|
*/
|
|
36091
36348
|
export interface Operator extends globalThis.EnumItem {
|
|
@@ -36095,6 +36352,8 @@ declare namespace Enum {
|
|
|
36095
36352
|
}
|
|
36096
36353
|
export const Operator: Operator;
|
|
36097
36354
|
/**
|
|
36355
|
+
* Color applied to numeric literal tokens in scripts.
|
|
36356
|
+
*
|
|
36098
36357
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioScriptEditorColorCategories#Number)
|
|
36099
36358
|
*/
|
|
36100
36359
|
export interface Number extends globalThis.EnumItem {
|
|
@@ -36104,6 +36363,8 @@ declare namespace Enum {
|
|
|
36104
36363
|
}
|
|
36105
36364
|
export const Number: Number;
|
|
36106
36365
|
/**
|
|
36366
|
+
* Color applied to string literal tokens, including quoted strings and long-string literals.
|
|
36367
|
+
*
|
|
36107
36368
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioScriptEditorColorCategories#String)
|
|
36108
36369
|
*/
|
|
36109
36370
|
export interface String extends globalThis.EnumItem {
|
|
@@ -36113,6 +36374,8 @@ declare namespace Enum {
|
|
|
36113
36374
|
}
|
|
36114
36375
|
export const String: String;
|
|
36115
36376
|
/**
|
|
36377
|
+
* Color applied to comment tokens (single-line `--` and block `--[[ ]]` comments) in scripts.
|
|
36378
|
+
*
|
|
36116
36379
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioScriptEditorColorCategories#Comment)
|
|
36117
36380
|
*/
|
|
36118
36381
|
export interface Comment extends globalThis.EnumItem {
|
|
@@ -36122,6 +36385,8 @@ declare namespace Enum {
|
|
|
36122
36385
|
}
|
|
36123
36386
|
export const Comment: Comment;
|
|
36124
36387
|
/**
|
|
36388
|
+
* Color applied to Luau reserved keywords such as `if`, `then`, `else`, `do`, `end`, `return`, and `while`.
|
|
36389
|
+
*
|
|
36125
36390
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioScriptEditorColorCategories#Keyword)
|
|
36126
36391
|
*/
|
|
36127
36392
|
export interface Keyword extends globalThis.EnumItem {
|
|
@@ -36131,6 +36396,8 @@ declare namespace Enum {
|
|
|
36131
36396
|
}
|
|
36132
36397
|
export const Keyword: Keyword;
|
|
36133
36398
|
/**
|
|
36399
|
+
* Color applied to Luau built-in functions and standard library identifiers in scripts.
|
|
36400
|
+
*
|
|
36134
36401
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioScriptEditorColorCategories#Builtin)
|
|
36135
36402
|
*/
|
|
36136
36403
|
export interface Builtin extends globalThis.EnumItem {
|
|
@@ -36140,6 +36407,8 @@ declare namespace Enum {
|
|
|
36140
36407
|
}
|
|
36141
36408
|
export const Builtin: Builtin;
|
|
36142
36409
|
/**
|
|
36410
|
+
* Color applied to method call identifiers in scripts.
|
|
36411
|
+
*
|
|
36143
36412
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioScriptEditorColorCategories#Method)
|
|
36144
36413
|
*/
|
|
36145
36414
|
export interface Method extends globalThis.EnumItem {
|
|
@@ -36149,6 +36418,8 @@ declare namespace Enum {
|
|
|
36149
36418
|
}
|
|
36150
36419
|
export const Method: Method;
|
|
36151
36420
|
/**
|
|
36421
|
+
* Color applied to property access identifiers (tokens following a `.` operator) in scripts.
|
|
36422
|
+
*
|
|
36152
36423
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioScriptEditorColorCategories#Property)
|
|
36153
36424
|
*/
|
|
36154
36425
|
export interface Property extends globalThis.EnumItem {
|
|
@@ -36158,6 +36429,8 @@ declare namespace Enum {
|
|
|
36158
36429
|
}
|
|
36159
36430
|
export const Property: Property;
|
|
36160
36431
|
/**
|
|
36432
|
+
* Color applied to the `nil` literal token in scripts.
|
|
36433
|
+
*
|
|
36161
36434
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioScriptEditorColorCategories#Nil)
|
|
36162
36435
|
*/
|
|
36163
36436
|
export interface Nil extends globalThis.EnumItem {
|
|
@@ -36167,6 +36440,8 @@ declare namespace Enum {
|
|
|
36167
36440
|
}
|
|
36168
36441
|
export const Nil: Nil;
|
|
36169
36442
|
/**
|
|
36443
|
+
* Foreground color used to highlight boolean literals (`true` and `false`) in scripts.
|
|
36444
|
+
*
|
|
36170
36445
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioScriptEditorColorCategories#Bool)
|
|
36171
36446
|
*/
|
|
36172
36447
|
export interface Bool extends globalThis.EnumItem {
|
|
@@ -36176,6 +36451,8 @@ declare namespace Enum {
|
|
|
36176
36451
|
}
|
|
36177
36452
|
export const Bool: Bool;
|
|
36178
36453
|
/**
|
|
36454
|
+
* Color applied to the `function` keyword token in function declarations.
|
|
36455
|
+
*
|
|
36179
36456
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioScriptEditorColorCategories#Function)
|
|
36180
36457
|
*/
|
|
36181
36458
|
export interface Function extends globalThis.EnumItem {
|
|
@@ -36185,6 +36462,8 @@ declare namespace Enum {
|
|
|
36185
36462
|
}
|
|
36186
36463
|
export const Function: Function;
|
|
36187
36464
|
/**
|
|
36465
|
+
* Color applied to the `local` keyword token in local variable and function declarations.
|
|
36466
|
+
*
|
|
36188
36467
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioScriptEditorColorCategories#Local)
|
|
36189
36468
|
*/
|
|
36190
36469
|
export interface Local extends globalThis.EnumItem {
|
|
@@ -36194,6 +36473,8 @@ declare namespace Enum {
|
|
|
36194
36473
|
}
|
|
36195
36474
|
export const Local: Local;
|
|
36196
36475
|
/**
|
|
36476
|
+
* Color applied to the `self` identifier token in method bodies.
|
|
36477
|
+
*
|
|
36197
36478
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioScriptEditorColorCategories#Self)
|
|
36198
36479
|
*/
|
|
36199
36480
|
export interface Self extends globalThis.EnumItem {
|
|
@@ -36203,6 +36484,8 @@ declare namespace Enum {
|
|
|
36203
36484
|
}
|
|
36204
36485
|
export const Self: Self;
|
|
36205
36486
|
/**
|
|
36487
|
+
* Color applied to Luau-specific type annotation keywords such as `type` and `typeof`.
|
|
36488
|
+
*
|
|
36206
36489
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioScriptEditorColorCategories#LuauKeyword)
|
|
36207
36490
|
*/
|
|
36208
36491
|
export interface LuauKeyword extends globalThis.EnumItem {
|
|
@@ -36212,6 +36495,8 @@ declare namespace Enum {
|
|
|
36212
36495
|
}
|
|
36213
36496
|
export const LuauKeyword: LuauKeyword;
|
|
36214
36497
|
/**
|
|
36498
|
+
* Color applied to the identifier that names a function in its declaration.
|
|
36499
|
+
*
|
|
36215
36500
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioScriptEditorColorCategories#FunctionName)
|
|
36216
36501
|
*/
|
|
36217
36502
|
export interface FunctionName extends globalThis.EnumItem {
|
|
@@ -36221,6 +36506,8 @@ declare namespace Enum {
|
|
|
36221
36506
|
}
|
|
36222
36507
|
export const FunctionName: FunctionName;
|
|
36223
36508
|
/**
|
|
36509
|
+
* Color applied to `TODO` markers found inside comments in scripts.
|
|
36510
|
+
*
|
|
36224
36511
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioScriptEditorColorCategories#TODO)
|
|
36225
36512
|
*/
|
|
36226
36513
|
export interface TODO extends globalThis.EnumItem {
|
|
@@ -36230,6 +36517,8 @@ declare namespace Enum {
|
|
|
36230
36517
|
}
|
|
36231
36518
|
export const TODO: TODO;
|
|
36232
36519
|
/**
|
|
36520
|
+
* Main background color of the Script Editor canvas.
|
|
36521
|
+
*
|
|
36233
36522
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioScriptEditorColorCategories#Background)
|
|
36234
36523
|
*/
|
|
36235
36524
|
export interface Background extends globalThis.EnumItem {
|
|
@@ -36239,6 +36528,8 @@ declare namespace Enum {
|
|
|
36239
36528
|
}
|
|
36240
36529
|
export const Background: Background;
|
|
36241
36530
|
/**
|
|
36531
|
+
* Foreground color for text within the currently selected range in the Script Editor.
|
|
36532
|
+
*
|
|
36242
36533
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioScriptEditorColorCategories#SelectionText)
|
|
36243
36534
|
*/
|
|
36244
36535
|
export interface SelectionText extends globalThis.EnumItem {
|
|
@@ -36248,6 +36539,8 @@ declare namespace Enum {
|
|
|
36248
36539
|
}
|
|
36249
36540
|
export const SelectionText: SelectionText;
|
|
36250
36541
|
/**
|
|
36542
|
+
* Background highlight color for the currently selected text range in the Script Editor.
|
|
36543
|
+
*
|
|
36251
36544
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioScriptEditorColorCategories#SelectionBackground)
|
|
36252
36545
|
*/
|
|
36253
36546
|
export interface SelectionBackground extends globalThis.EnumItem {
|
|
@@ -36257,6 +36550,8 @@ declare namespace Enum {
|
|
|
36257
36550
|
}
|
|
36258
36551
|
export const SelectionBackground: SelectionBackground;
|
|
36259
36552
|
/**
|
|
36553
|
+
* Background highlight color applied to text ranges matched by a Find or Replace operation.
|
|
36554
|
+
*
|
|
36260
36555
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioScriptEditorColorCategories#FindSelectionBackground)
|
|
36261
36556
|
*/
|
|
36262
36557
|
export interface FindSelectionBackground extends globalThis.EnumItem {
|
|
@@ -36266,6 +36561,8 @@ declare namespace Enum {
|
|
|
36266
36561
|
}
|
|
36267
36562
|
export const FindSelectionBackground: FindSelectionBackground;
|
|
36268
36563
|
/**
|
|
36564
|
+
* Background highlight color applied to all occurrences of the word under the cursor when word-highlight is active.
|
|
36565
|
+
*
|
|
36269
36566
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioScriptEditorColorCategories#MatchingWordBackground)
|
|
36270
36567
|
*/
|
|
36271
36568
|
export interface MatchingWordBackground extends globalThis.EnumItem {
|
|
@@ -36275,6 +36572,8 @@ declare namespace Enum {
|
|
|
36275
36572
|
}
|
|
36276
36573
|
export const MatchingWordBackground: MatchingWordBackground;
|
|
36277
36574
|
/**
|
|
36575
|
+
* Color used for warning-severity diagnostic markers and underlines in scripts.
|
|
36576
|
+
*
|
|
36278
36577
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioScriptEditorColorCategories#Warning)
|
|
36279
36578
|
*/
|
|
36280
36579
|
export interface Warning extends globalThis.EnumItem {
|
|
@@ -36284,6 +36583,8 @@ declare namespace Enum {
|
|
|
36284
36583
|
}
|
|
36285
36584
|
export const Warning: Warning;
|
|
36286
36585
|
/**
|
|
36586
|
+
* Color used for error-severity diagnostic markers and underlines in scripts.
|
|
36587
|
+
*
|
|
36287
36588
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioScriptEditorColorCategories#Error)
|
|
36288
36589
|
*/
|
|
36289
36590
|
export interface Error extends globalThis.EnumItem {
|
|
@@ -36293,6 +36594,8 @@ declare namespace Enum {
|
|
|
36293
36594
|
}
|
|
36294
36595
|
export const Error: Error;
|
|
36295
36596
|
/**
|
|
36597
|
+
* Color used for information-severity diagnostic markers in scripts.
|
|
36598
|
+
*
|
|
36296
36599
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioScriptEditorColorCategories#Info)
|
|
36297
36600
|
*/
|
|
36298
36601
|
export interface Info extends globalThis.EnumItem {
|
|
@@ -36302,6 +36605,8 @@ declare namespace Enum {
|
|
|
36302
36605
|
}
|
|
36303
36606
|
export const Info: Info;
|
|
36304
36607
|
/**
|
|
36608
|
+
* Color used for hint-severity diagnostic markers in scripts.
|
|
36609
|
+
*
|
|
36305
36610
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioScriptEditorColorCategories#Hint)
|
|
36306
36611
|
*/
|
|
36307
36612
|
export interface Hint extends globalThis.EnumItem {
|
|
@@ -36311,6 +36616,8 @@ declare namespace Enum {
|
|
|
36311
36616
|
}
|
|
36312
36617
|
export const Hint: Hint;
|
|
36313
36618
|
/**
|
|
36619
|
+
* Color used to render visible whitespace characters (spaces and tabs) when that display option is enabled.
|
|
36620
|
+
*
|
|
36314
36621
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioScriptEditorColorCategories#Whitespace)
|
|
36315
36622
|
*/
|
|
36316
36623
|
export interface Whitespace extends globalThis.EnumItem {
|
|
@@ -36320,6 +36627,8 @@ declare namespace Enum {
|
|
|
36320
36627
|
}
|
|
36321
36628
|
export const Whitespace: Whitespace;
|
|
36322
36629
|
/**
|
|
36630
|
+
* Background highlight color applied to the line that currently contains the text cursor.
|
|
36631
|
+
*
|
|
36323
36632
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioScriptEditorColorCategories#ActiveLine)
|
|
36324
36633
|
*/
|
|
36325
36634
|
export interface ActiveLine extends globalThis.EnumItem {
|
|
@@ -36329,6 +36638,8 @@ declare namespace Enum {
|
|
|
36329
36638
|
}
|
|
36330
36639
|
export const ActiveLine: ActiveLine;
|
|
36331
36640
|
/**
|
|
36641
|
+
* Background highlight color for the line the debugger is currently paused on.
|
|
36642
|
+
*
|
|
36332
36643
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioScriptEditorColorCategories#DebuggerCurrentLine)
|
|
36333
36644
|
*/
|
|
36334
36645
|
export interface DebuggerCurrentLine extends globalThis.EnumItem {
|
|
@@ -36338,6 +36649,8 @@ declare namespace Enum {
|
|
|
36338
36649
|
}
|
|
36339
36650
|
export const DebuggerCurrentLine: DebuggerCurrentLine;
|
|
36340
36651
|
/**
|
|
36652
|
+
* Background highlight color for a line that caused a runtime error during a debugging session.
|
|
36653
|
+
*
|
|
36341
36654
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioScriptEditorColorCategories#DebuggerErrorLine)
|
|
36342
36655
|
*/
|
|
36343
36656
|
export interface DebuggerErrorLine extends globalThis.EnumItem {
|
|
@@ -36347,6 +36660,8 @@ declare namespace Enum {
|
|
|
36347
36660
|
}
|
|
36348
36661
|
export const DebuggerErrorLine: DebuggerErrorLine;
|
|
36349
36662
|
/**
|
|
36663
|
+
* Color of the vertical column ruler line drawn at the configured character-width limit in the Script Editor.
|
|
36664
|
+
*
|
|
36350
36665
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioScriptEditorColorCategories#Ruler)
|
|
36351
36666
|
*/
|
|
36352
36667
|
export interface Ruler extends globalThis.EnumItem {
|
|
@@ -36356,6 +36671,8 @@ declare namespace Enum {
|
|
|
36356
36671
|
}
|
|
36357
36672
|
export const Ruler: Ruler;
|
|
36358
36673
|
/**
|
|
36674
|
+
* Color applied to bracket characters such as `(`, `)`, `[`, `]`, `{`, and `}` in scripts.
|
|
36675
|
+
*
|
|
36359
36676
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioScriptEditorColorCategories#Bracket)
|
|
36360
36677
|
*/
|
|
36361
36678
|
export interface Bracket extends globalThis.EnumItem {
|
|
@@ -36365,6 +36682,8 @@ declare namespace Enum {
|
|
|
36365
36682
|
}
|
|
36366
36683
|
export const Bracket: Bracket;
|
|
36367
36684
|
/**
|
|
36685
|
+
* Color applied to Luau type name tokens in type annotations and declarations.
|
|
36686
|
+
*
|
|
36368
36687
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioScriptEditorColorCategories#Type)
|
|
36369
36688
|
*/
|
|
36370
36689
|
export interface Type extends globalThis.EnumItem {
|
|
@@ -36374,6 +36693,8 @@ declare namespace Enum {
|
|
|
36374
36693
|
}
|
|
36375
36694
|
export const Type: Type;
|
|
36376
36695
|
/**
|
|
36696
|
+
* Primary text color for items listed in autocomplete and context-menu popups.
|
|
36697
|
+
*
|
|
36377
36698
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioScriptEditorColorCategories#MenuPrimaryText)
|
|
36378
36699
|
*/
|
|
36379
36700
|
export interface MenuPrimaryText extends globalThis.EnumItem {
|
|
@@ -36383,6 +36704,8 @@ declare namespace Enum {
|
|
|
36383
36704
|
}
|
|
36384
36705
|
export const MenuPrimaryText: MenuPrimaryText;
|
|
36385
36706
|
/**
|
|
36707
|
+
* Secondary text color (for example, type annotations or documentation hints) in autocomplete popups.
|
|
36708
|
+
*
|
|
36386
36709
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioScriptEditorColorCategories#MenuSecondaryText)
|
|
36387
36710
|
*/
|
|
36388
36711
|
export interface MenuSecondaryText extends globalThis.EnumItem {
|
|
@@ -36392,6 +36715,8 @@ declare namespace Enum {
|
|
|
36392
36715
|
}
|
|
36393
36716
|
export const MenuSecondaryText: MenuSecondaryText;
|
|
36394
36717
|
/**
|
|
36718
|
+
* Text color of the currently highlighted item in autocomplete and context-menu popups.
|
|
36719
|
+
*
|
|
36395
36720
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioScriptEditorColorCategories#MenuSelectedText)
|
|
36396
36721
|
*/
|
|
36397
36722
|
export interface MenuSelectedText extends globalThis.EnumItem {
|
|
@@ -36401,6 +36726,8 @@ declare namespace Enum {
|
|
|
36401
36726
|
}
|
|
36402
36727
|
export const MenuSelectedText: MenuSelectedText;
|
|
36403
36728
|
/**
|
|
36729
|
+
* Background color for autocomplete and context-menu popups in the Script Editor.
|
|
36730
|
+
*
|
|
36404
36731
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioScriptEditorColorCategories#MenuBackground)
|
|
36405
36732
|
*/
|
|
36406
36733
|
export interface MenuBackground extends globalThis.EnumItem {
|
|
@@ -36410,6 +36737,8 @@ declare namespace Enum {
|
|
|
36410
36737
|
}
|
|
36411
36738
|
export const MenuBackground: MenuBackground;
|
|
36412
36739
|
/**
|
|
36740
|
+
* Background color of the currently highlighted item in autocomplete and context-menu popups.
|
|
36741
|
+
*
|
|
36413
36742
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioScriptEditorColorCategories#MenuSelectedBackground)
|
|
36414
36743
|
*/
|
|
36415
36744
|
export interface MenuSelectedBackground extends globalThis.EnumItem {
|
|
@@ -36419,6 +36748,8 @@ declare namespace Enum {
|
|
|
36419
36748
|
}
|
|
36420
36749
|
export const MenuSelectedBackground: MenuSelectedBackground;
|
|
36421
36750
|
/**
|
|
36751
|
+
* Background color of the scrollbar track inside autocomplete and context-menu popups.
|
|
36752
|
+
*
|
|
36422
36753
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioScriptEditorColorCategories#MenuScrollbarBackground)
|
|
36423
36754
|
*/
|
|
36424
36755
|
export interface MenuScrollbarBackground extends globalThis.EnumItem {
|
|
@@ -36428,6 +36759,8 @@ declare namespace Enum {
|
|
|
36428
36759
|
}
|
|
36429
36760
|
export const MenuScrollbarBackground: MenuScrollbarBackground;
|
|
36430
36761
|
/**
|
|
36762
|
+
* Color of the scrollbar thumb (handle) inside autocomplete and context-menu popups.
|
|
36763
|
+
*
|
|
36431
36764
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioScriptEditorColorCategories#MenuScrollbarHandle)
|
|
36432
36765
|
*/
|
|
36433
36766
|
export interface MenuScrollbarHandle extends globalThis.EnumItem {
|
|
@@ -36437,6 +36770,8 @@ declare namespace Enum {
|
|
|
36437
36770
|
}
|
|
36438
36771
|
export const MenuScrollbarHandle: MenuScrollbarHandle;
|
|
36439
36772
|
/**
|
|
36773
|
+
* Border color for autocomplete and context-menu popups in the Script Editor.
|
|
36774
|
+
*
|
|
36440
36775
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioScriptEditorColorCategories#MenuBorder)
|
|
36441
36776
|
*/
|
|
36442
36777
|
export interface MenuBorder extends globalThis.EnumItem {
|
|
@@ -36446,6 +36781,8 @@ declare namespace Enum {
|
|
|
36446
36781
|
}
|
|
36447
36782
|
export const MenuBorder: MenuBorder;
|
|
36448
36783
|
/**
|
|
36784
|
+
* Background color for inline code blocks rendered in the documentation viewer panel within Studio.
|
|
36785
|
+
*
|
|
36449
36786
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioScriptEditorColorCategories#DocViewCodeBackground)
|
|
36450
36787
|
*/
|
|
36451
36788
|
export interface DocViewCodeBackground extends globalThis.EnumItem {
|
|
@@ -36455,6 +36792,8 @@ declare namespace Enum {
|
|
|
36455
36792
|
}
|
|
36456
36793
|
export const DocViewCodeBackground: DocViewCodeBackground;
|
|
36457
36794
|
/**
|
|
36795
|
+
* Text color for labels displayed in the AI Code Overlay panel.
|
|
36796
|
+
*
|
|
36458
36797
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioScriptEditorColorCategories#AICOOverlayText)
|
|
36459
36798
|
*/
|
|
36460
36799
|
export interface AICOOverlayText extends globalThis.EnumItem {
|
|
@@ -36464,6 +36803,8 @@ declare namespace Enum {
|
|
|
36464
36803
|
}
|
|
36465
36804
|
export const AICOOverlayText: AICOOverlayText;
|
|
36466
36805
|
/**
|
|
36806
|
+
* Background color for AI Code Overlay action buttons in their default (idle) state.
|
|
36807
|
+
*
|
|
36467
36808
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioScriptEditorColorCategories#AICOOverlayButtonBackground)
|
|
36468
36809
|
*/
|
|
36469
36810
|
export interface AICOOverlayButtonBackground extends globalThis.EnumItem {
|
|
@@ -36473,6 +36814,8 @@ declare namespace Enum {
|
|
|
36473
36814
|
}
|
|
36474
36815
|
export const AICOOverlayButtonBackground: AICOOverlayButtonBackground;
|
|
36475
36816
|
/**
|
|
36817
|
+
* Background color for AI Code Overlay action buttons when the pointer hovers over them.
|
|
36818
|
+
*
|
|
36476
36819
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioScriptEditorColorCategories#AICOOverlayButtonBackgroundHover)
|
|
36477
36820
|
*/
|
|
36478
36821
|
export interface AICOOverlayButtonBackgroundHover extends globalThis.EnumItem {
|
|
@@ -36482,6 +36825,8 @@ declare namespace Enum {
|
|
|
36482
36825
|
}
|
|
36483
36826
|
export const AICOOverlayButtonBackgroundHover: AICOOverlayButtonBackgroundHover;
|
|
36484
36827
|
/**
|
|
36828
|
+
* Background color for AI Code Overlay action buttons while they are being pressed.
|
|
36829
|
+
*
|
|
36485
36830
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioScriptEditorColorCategories#AICOOverlayButtonBackgroundPressed)
|
|
36486
36831
|
*/
|
|
36487
36832
|
export interface AICOOverlayButtonBackgroundPressed extends globalThis.EnumItem {
|
|
@@ -36491,6 +36836,8 @@ declare namespace Enum {
|
|
|
36491
36836
|
}
|
|
36492
36837
|
export const AICOOverlayButtonBackgroundPressed: AICOOverlayButtonBackgroundPressed;
|
|
36493
36838
|
/**
|
|
36839
|
+
* Color of the vertical guide lines drawn at each indentation level in the script editor gutter.
|
|
36840
|
+
*
|
|
36494
36841
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioScriptEditorColorCategories#IndentationRuler)
|
|
36495
36842
|
*/
|
|
36496
36843
|
export interface IndentationRuler extends globalThis.EnumItem {
|
|
@@ -36499,11 +36846,29 @@ declare namespace Enum {
|
|
|
36499
36846
|
EnumType: typeof globalThis.Enum.StudioScriptEditorColorCategories;
|
|
36500
36847
|
}
|
|
36501
36848
|
export const IndentationRuler: IndentationRuler;
|
|
36849
|
+
/**
|
|
36850
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioScriptEditorColorCategories#ReviewableChangeAddedText)
|
|
36851
|
+
*/
|
|
36852
|
+
export interface ReviewableChangeAddedText extends globalThis.EnumItem {
|
|
36853
|
+
Name: "ReviewableChangeAddedText";
|
|
36854
|
+
Value: 47;
|
|
36855
|
+
EnumType: typeof globalThis.Enum.StudioScriptEditorColorCategories;
|
|
36856
|
+
}
|
|
36857
|
+
export const ReviewableChangeAddedText: ReviewableChangeAddedText;
|
|
36858
|
+
/**
|
|
36859
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioScriptEditorColorCategories#ReviewableChangeRemovedText)
|
|
36860
|
+
*/
|
|
36861
|
+
export interface ReviewableChangeRemovedText extends globalThis.EnumItem {
|
|
36862
|
+
Name: "ReviewableChangeRemovedText";
|
|
36863
|
+
Value: 48;
|
|
36864
|
+
EnumType: typeof globalThis.Enum.StudioScriptEditorColorCategories;
|
|
36865
|
+
}
|
|
36866
|
+
export const ReviewableChangeRemovedText: ReviewableChangeRemovedText;
|
|
36502
36867
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.StudioScriptEditorColorCategories>;
|
|
36503
36868
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.StudioScriptEditorColorCategories | undefined;
|
|
36504
36869
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.StudioScriptEditorColorCategories | undefined;
|
|
36505
36870
|
}
|
|
36506
|
-
export type StudioScriptEditorColorCategories = StudioScriptEditorColorCategories.Default | StudioScriptEditorColorCategories.Operator | StudioScriptEditorColorCategories.Number | StudioScriptEditorColorCategories.String | StudioScriptEditorColorCategories.Comment | StudioScriptEditorColorCategories.Keyword | StudioScriptEditorColorCategories.Builtin | StudioScriptEditorColorCategories.Method | StudioScriptEditorColorCategories.Property | StudioScriptEditorColorCategories.Nil | StudioScriptEditorColorCategories.Bool | StudioScriptEditorColorCategories.Function | StudioScriptEditorColorCategories.Local | StudioScriptEditorColorCategories.Self | StudioScriptEditorColorCategories.LuauKeyword | StudioScriptEditorColorCategories.FunctionName | StudioScriptEditorColorCategories.TODO | StudioScriptEditorColorCategories.Background | StudioScriptEditorColorCategories.SelectionText | StudioScriptEditorColorCategories.SelectionBackground | StudioScriptEditorColorCategories.FindSelectionBackground | StudioScriptEditorColorCategories.MatchingWordBackground | StudioScriptEditorColorCategories.Warning | StudioScriptEditorColorCategories.Error | StudioScriptEditorColorCategories.Info | StudioScriptEditorColorCategories.Hint | StudioScriptEditorColorCategories.Whitespace | StudioScriptEditorColorCategories.ActiveLine | StudioScriptEditorColorCategories.DebuggerCurrentLine | StudioScriptEditorColorCategories.DebuggerErrorLine | StudioScriptEditorColorCategories.Ruler | StudioScriptEditorColorCategories.Bracket | StudioScriptEditorColorCategories.Type | StudioScriptEditorColorCategories.MenuPrimaryText | StudioScriptEditorColorCategories.MenuSecondaryText | StudioScriptEditorColorCategories.MenuSelectedText | StudioScriptEditorColorCategories.MenuBackground | StudioScriptEditorColorCategories.MenuSelectedBackground | StudioScriptEditorColorCategories.MenuScrollbarBackground | StudioScriptEditorColorCategories.MenuScrollbarHandle | StudioScriptEditorColorCategories.MenuBorder | StudioScriptEditorColorCategories.DocViewCodeBackground | StudioScriptEditorColorCategories.AICOOverlayText | StudioScriptEditorColorCategories.AICOOverlayButtonBackground | StudioScriptEditorColorCategories.AICOOverlayButtonBackgroundHover | StudioScriptEditorColorCategories.AICOOverlayButtonBackgroundPressed | StudioScriptEditorColorCategories.IndentationRuler;
|
|
36871
|
+
export type StudioScriptEditorColorCategories = StudioScriptEditorColorCategories.Default | StudioScriptEditorColorCategories.Operator | StudioScriptEditorColorCategories.Number | StudioScriptEditorColorCategories.String | StudioScriptEditorColorCategories.Comment | StudioScriptEditorColorCategories.Keyword | StudioScriptEditorColorCategories.Builtin | StudioScriptEditorColorCategories.Method | StudioScriptEditorColorCategories.Property | StudioScriptEditorColorCategories.Nil | StudioScriptEditorColorCategories.Bool | StudioScriptEditorColorCategories.Function | StudioScriptEditorColorCategories.Local | StudioScriptEditorColorCategories.Self | StudioScriptEditorColorCategories.LuauKeyword | StudioScriptEditorColorCategories.FunctionName | StudioScriptEditorColorCategories.TODO | StudioScriptEditorColorCategories.Background | StudioScriptEditorColorCategories.SelectionText | StudioScriptEditorColorCategories.SelectionBackground | StudioScriptEditorColorCategories.FindSelectionBackground | StudioScriptEditorColorCategories.MatchingWordBackground | StudioScriptEditorColorCategories.Warning | StudioScriptEditorColorCategories.Error | StudioScriptEditorColorCategories.Info | StudioScriptEditorColorCategories.Hint | StudioScriptEditorColorCategories.Whitespace | StudioScriptEditorColorCategories.ActiveLine | StudioScriptEditorColorCategories.DebuggerCurrentLine | StudioScriptEditorColorCategories.DebuggerErrorLine | StudioScriptEditorColorCategories.Ruler | StudioScriptEditorColorCategories.Bracket | StudioScriptEditorColorCategories.Type | StudioScriptEditorColorCategories.MenuPrimaryText | StudioScriptEditorColorCategories.MenuSecondaryText | StudioScriptEditorColorCategories.MenuSelectedText | StudioScriptEditorColorCategories.MenuBackground | StudioScriptEditorColorCategories.MenuSelectedBackground | StudioScriptEditorColorCategories.MenuScrollbarBackground | StudioScriptEditorColorCategories.MenuScrollbarHandle | StudioScriptEditorColorCategories.MenuBorder | StudioScriptEditorColorCategories.DocViewCodeBackground | StudioScriptEditorColorCategories.AICOOverlayText | StudioScriptEditorColorCategories.AICOOverlayButtonBackground | StudioScriptEditorColorCategories.AICOOverlayButtonBackgroundHover | StudioScriptEditorColorCategories.AICOOverlayButtonBackgroundPressed | StudioScriptEditorColorCategories.IndentationRuler | StudioScriptEditorColorCategories.ReviewableChangeAddedText | StudioScriptEditorColorCategories.ReviewableChangeRemovedText;
|
|
36507
36872
|
/**
|
|
36508
36873
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioScriptEditorColorPresets)
|
|
36509
36874
|
*/
|