@rbxts/types 1.0.894 → 1.0.895
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 +207 -34
- package/include/generated/PluginSecurity.d.ts +61 -17
- package/include/generated/enums.d.ts +458 -0
- package/package.json +1 -1
|
@@ -19,6 +19,7 @@ interface Services {
|
|
|
19
19
|
AssetDeliveryProxy: AssetDeliveryProxy;
|
|
20
20
|
AssetImportService: AssetImportService;
|
|
21
21
|
AssetManagerService: AssetManagerService;
|
|
22
|
+
AssetQualityService: AssetQualityService;
|
|
22
23
|
AssetService: AssetService;
|
|
23
24
|
AudioFocusService: AudioFocusService;
|
|
24
25
|
AuroraScriptService: AuroraScriptService;
|
|
@@ -325,6 +326,7 @@ interface CreatableInstances {
|
|
|
325
326
|
Color3Value: Color3Value;
|
|
326
327
|
ColorCorrectionEffect: ColorCorrectionEffect;
|
|
327
328
|
ColorGradingEffect: ColorGradingEffect;
|
|
329
|
+
CompositeValueCurve: CompositeValueCurve;
|
|
328
330
|
CompressorSoundEffect: CompressorSoundEffect;
|
|
329
331
|
ConeHandleAdornment: ConeHandleAdornment;
|
|
330
332
|
Configuration: Configuration;
|
|
@@ -398,6 +400,7 @@ interface CreatableInstances {
|
|
|
398
400
|
LineHandleAdornment: LineHandleAdornment;
|
|
399
401
|
LocalizationTable: LocalizationTable;
|
|
400
402
|
LocalScript: LocalScript;
|
|
403
|
+
MakeupDescription: MakeupDescription;
|
|
401
404
|
ManualGlue: ManualGlue;
|
|
402
405
|
ManualWeld: ManualWeld;
|
|
403
406
|
MarkerCurve: MarkerCurve;
|
|
@@ -732,7 +735,7 @@ interface Objects extends Instances {
|
|
|
732
735
|
}
|
|
733
736
|
// GENERATED ROBLOX INSTANCE CLASSES
|
|
734
737
|
/**
|
|
735
|
-
* Object is the base class for all classes in the Roblox class hierarchy.
|
|
738
|
+
* `Object` is the base class for all classes in the Roblox class hierarchy.
|
|
736
739
|
*
|
|
737
740
|
* - **Tags**: NotCreatable, NotReplicated
|
|
738
741
|
*
|
|
@@ -762,7 +765,7 @@ interface RBXObject {
|
|
|
762
765
|
* - **ThreadSafety**: Unsafe
|
|
763
766
|
*
|
|
764
767
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Object#GetPropertyChangedSignal)
|
|
765
|
-
* @param this Object is the base class for all classes in the Roblox class hierarchy.
|
|
768
|
+
* @param this `Object` is the base class for all classes in the Roblox class hierarchy.
|
|
766
769
|
* @param property The property to connect to.
|
|
767
770
|
* @returns A signal that fires whenever the property changes.
|
|
768
771
|
*/
|
|
@@ -774,13 +777,13 @@ interface RBXObject {
|
|
|
774
777
|
* - **Tags**: CustomLuaState
|
|
775
778
|
*
|
|
776
779
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Object#IsA)
|
|
777
|
-
* @param this Object is the base class for all classes in the Roblox class hierarchy.
|
|
780
|
+
* @param this `Object` is the base class for all classes in the Roblox class hierarchy.
|
|
778
781
|
* @param className The class against which the Object's class will be checked. Case-sensitive.
|
|
779
782
|
* @returns Describes whether the Object's class matched or is a subclass of the given class.
|
|
780
783
|
*/
|
|
781
784
|
IsA<T extends keyof Objects>(this: RBXObject, className: T): this is Objects[T];
|
|
782
785
|
/**
|
|
783
|
-
*
|
|
786
|
+
* Fires immediately after a property of the object changes, with some limitations.
|
|
784
787
|
*
|
|
785
788
|
* - **ThreadSafety**: Unsafe
|
|
786
789
|
*
|
|
@@ -4116,6 +4119,21 @@ interface AssetPatchSettings extends Instance {
|
|
|
4116
4119
|
*/
|
|
4117
4120
|
PatchId: string;
|
|
4118
4121
|
}
|
|
4122
|
+
/**
|
|
4123
|
+
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
4124
|
+
*
|
|
4125
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AssetQualityService)
|
|
4126
|
+
*/
|
|
4127
|
+
interface AssetQualityService extends Instance {
|
|
4128
|
+
/**
|
|
4129
|
+
* **DO NOT USE!**
|
|
4130
|
+
*
|
|
4131
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
4132
|
+
* @hidden
|
|
4133
|
+
* @deprecated
|
|
4134
|
+
*/
|
|
4135
|
+
readonly _nominal_AssetQualityService: unique symbol;
|
|
4136
|
+
}
|
|
4119
4137
|
/**
|
|
4120
4138
|
* A non-replicated service that handles asset-related queries to the Roblox web API.
|
|
4121
4139
|
*
|
|
@@ -11527,6 +11545,37 @@ interface CommerceService extends Instance {
|
|
|
11527
11545
|
*/
|
|
11528
11546
|
readonly PromptCommerceProductPurchaseFinished: RBXScriptSignal<(user: Player, productId: string) => void>;
|
|
11529
11547
|
}
|
|
11548
|
+
/**
|
|
11549
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CompositeValueCurve)
|
|
11550
|
+
*/
|
|
11551
|
+
interface CompositeValueCurve extends Instance {
|
|
11552
|
+
/**
|
|
11553
|
+
* **DO NOT USE!**
|
|
11554
|
+
*
|
|
11555
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
11556
|
+
* @hidden
|
|
11557
|
+
* @deprecated
|
|
11558
|
+
*/
|
|
11559
|
+
readonly _nominal_CompositeValueCurve: unique symbol;
|
|
11560
|
+
/**
|
|
11561
|
+
* - **ThreadSafety**: ReadSafe
|
|
11562
|
+
*
|
|
11563
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CompositeValueCurve#CurveType)
|
|
11564
|
+
*/
|
|
11565
|
+
CurveType: Enum.CompositeValueCurveType;
|
|
11566
|
+
/**
|
|
11567
|
+
* - **ThreadSafety**: Unsafe
|
|
11568
|
+
*
|
|
11569
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CompositeValueCurve#GetComponentCurves)
|
|
11570
|
+
*/
|
|
11571
|
+
GetComponentCurves(this: CompositeValueCurve): Array<Instance>;
|
|
11572
|
+
/**
|
|
11573
|
+
* - **ThreadSafety**: Unsafe
|
|
11574
|
+
*
|
|
11575
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CompositeValueCurve#GetValueAtTime)
|
|
11576
|
+
*/
|
|
11577
|
+
GetValueAtTime(this: CompositeValueCurve, time: number): unknown;
|
|
11578
|
+
}
|
|
11530
11579
|
/**
|
|
11531
11580
|
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
11532
11581
|
*
|
|
@@ -23368,6 +23417,12 @@ interface HumanoidDescription extends Instance {
|
|
|
23368
23417
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidDescription#TorsoColor)
|
|
23369
23418
|
*/
|
|
23370
23419
|
TorsoColor: Color3;
|
|
23420
|
+
/**
|
|
23421
|
+
* - **ThreadSafety**: ReadSafe
|
|
23422
|
+
*
|
|
23423
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidDescription#UseAvatarSettings)
|
|
23424
|
+
*/
|
|
23425
|
+
UseAvatarSettings: boolean;
|
|
23371
23426
|
/**
|
|
23372
23427
|
* A comma-separated list of asset IDs that will be added as `Accessories` to a `Humanoid` rig when `applied`, usually those attached to its waist (such as belts).
|
|
23373
23428
|
*
|
|
@@ -24691,6 +24746,12 @@ interface InputBinding extends Instance {
|
|
|
24691
24746
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputBinding#Vector2Scale)
|
|
24692
24747
|
*/
|
|
24693
24748
|
Vector2Scale: Vector2;
|
|
24749
|
+
/**
|
|
24750
|
+
* - **ThreadSafety**: ReadSafe
|
|
24751
|
+
*
|
|
24752
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputBinding#Vector3Scale)
|
|
24753
|
+
*/
|
|
24754
|
+
Vector3Scale: Vector3;
|
|
24694
24755
|
}
|
|
24695
24756
|
/**
|
|
24696
24757
|
* Collection of actions which holds related actions and defines how they interact with other contexts/actions.
|
|
@@ -26936,6 +26997,49 @@ interface MLService extends Instance {
|
|
|
26936
26997
|
*/
|
|
26937
26998
|
CreateSessionAsync(this: MLService, assetId: string): MLSession;
|
|
26938
26999
|
}
|
|
27000
|
+
/**
|
|
27001
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MakeupDescription)
|
|
27002
|
+
*/
|
|
27003
|
+
interface MakeupDescription extends Instance {
|
|
27004
|
+
/**
|
|
27005
|
+
* **DO NOT USE!**
|
|
27006
|
+
*
|
|
27007
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
27008
|
+
* @hidden
|
|
27009
|
+
* @deprecated
|
|
27010
|
+
*/
|
|
27011
|
+
readonly _nominal_MakeupDescription: unique symbol;
|
|
27012
|
+
/**
|
|
27013
|
+
* - **ThreadSafety**: ReadSafe
|
|
27014
|
+
*
|
|
27015
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MakeupDescription#AssetId)
|
|
27016
|
+
*/
|
|
27017
|
+
AssetId: number;
|
|
27018
|
+
/**
|
|
27019
|
+
* - **ThreadSafety**: ReadSafe
|
|
27020
|
+
*
|
|
27021
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MakeupDescription#Instance)
|
|
27022
|
+
*/
|
|
27023
|
+
Instance: Instance | undefined;
|
|
27024
|
+
/**
|
|
27025
|
+
* - **ThreadSafety**: ReadSafe
|
|
27026
|
+
*
|
|
27027
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MakeupDescription#MakeupType)
|
|
27028
|
+
*/
|
|
27029
|
+
MakeupType: Enum.MakeupType;
|
|
27030
|
+
/**
|
|
27031
|
+
* - **ThreadSafety**: ReadSafe
|
|
27032
|
+
*
|
|
27033
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MakeupDescription#Order)
|
|
27034
|
+
*/
|
|
27035
|
+
Order: number;
|
|
27036
|
+
/**
|
|
27037
|
+
* - **ThreadSafety**: Unsafe
|
|
27038
|
+
*
|
|
27039
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MakeupDescription#GetAppliedInstance)
|
|
27040
|
+
*/
|
|
27041
|
+
GetAppliedInstance(this: MakeupDescription): Instance | undefined;
|
|
27042
|
+
}
|
|
26939
27043
|
/**
|
|
26940
27044
|
* Represents a list of strings markers in chronological order.
|
|
26941
27045
|
*
|
|
@@ -35848,10 +35952,10 @@ interface RecommendationService extends Instance {
|
|
|
35848
35952
|
* @param actionType The enum for the type of action.
|
|
35849
35953
|
* @param itemId The item ID returned from registration and `GenerateItemListAsync`.
|
|
35850
35954
|
* @param tracingId The tracing ID returned from the `GenerateItemListAsync` response. Each item has a `TracingId`.
|
|
35851
|
-
* @param actionEventDetails A dictionary containing the following fields: - `Weight` — A number representing the weight of the action.
|
|
35852
|
-
* - `DestinationPlaceId` — The ID of the place the user was sent
|
|
35853
|
-
* - `CommentText` — Any text associated with the action, such as a
|
|
35854
|
-
* - `ReactionType` — A string describing the type of reaction, for
|
|
35955
|
+
* @param actionEventDetails A dictionary containing the following fields: - `Weight` — A number representing the weight of the action. Default is 1.
|
|
35956
|
+
* - `DestinationPlaceId` — The ID of the place the user was sent to after the action. Used for `Play`.
|
|
35957
|
+
* - `CommentText` — Any text associated with the action, such as a comment. Used for `Comment`.
|
|
35958
|
+
* - `ReactionType` — A string describing the type of reaction, for example, "like" or "dislike". Used for `AddReaction` or `RemoveReaction`.
|
|
35855
35959
|
*/
|
|
35856
35960
|
LogActionEvent(this: RecommendationService, actionType: CastsToEnum<Enum.RecommendationActionType>, itemId: string, tracingId: string, actionEventDetails?: object): void;
|
|
35857
35961
|
/**
|
|
@@ -35863,9 +35967,9 @@ interface RecommendationService extends Instance {
|
|
|
35863
35967
|
* @param itemId The item ID returned from registration and `GenerateItemListAsync`.
|
|
35864
35968
|
* @param tracingId The tracing ID returned from the `GenerateItemListAsync` response. Each item has a `TracingId`.
|
|
35865
35969
|
* @param impressionEventDetails A dictionary containing the following fields: - `Duration` — The duration of the impression in seconds.
|
|
35866
|
-
* - `Weight` — A number representing the weight of the impression.
|
|
35867
|
-
* - `ItemPosition` — The position of the item in the
|
|
35868
|
-
* - `DepartureIntent` — The `RecommendationDepartureIntent`
|
|
35970
|
+
* - `Weight` — A number representing the weight of the impression. Default is 1.
|
|
35971
|
+
* - `ItemPosition` — The position of the item in the recommendation list.
|
|
35972
|
+
* - `DepartureIntent` — The `RecommendationDepartureIntent` indicating the user's intent when leaving a view. For example, `Positive` if the view is considered good.
|
|
35869
35973
|
*/
|
|
35870
35974
|
LogImpressionEvent(this: RecommendationService, impressionType: CastsToEnum<Enum.RecommendationImpressionType>, itemId: string, tracingId: string, impressionEventDetails?: object): void;
|
|
35871
35975
|
/**
|
|
@@ -35874,11 +35978,11 @@ interface RecommendationService extends Instance {
|
|
|
35874
35978
|
*
|
|
35875
35979
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RecommendationService#GenerateItemListAsync)
|
|
35876
35980
|
* @param this A service that provides an interface for you to manage and display personalized content recommendations.
|
|
35877
|
-
* @param generateRecommendationItemListRequest A dictionary containing the following
|
|
35878
|
-
* - `LocationId` — A developer-defined string that specifies the
|
|
35981
|
+
* @param generateRecommendationItemListRequest A dictionary containing the following fields: - `ConfigName` — A unique ID for the specific configuration. This determines how the candidates are ranked.
|
|
35982
|
+
* - `LocationId` — A developer-defined string that specifies the location where the recommendation is used, such as `"For_you"` or `"Lobby"`. This parameter will not affect the items returned, and it can help you track the performance of multiple recommendation features within your experience. Recommendation metrics for each individual location will be displayed in the Creator Hub. `LocationId` **must** be a string and cannot be `"Other"` or `"other"` as these values are reserved by the Creator Hub.
|
|
35879
35983
|
* - `PageSize` — The number of items returned for each page.
|
|
35880
|
-
* - `BoostCustomTags` — A list of string tags. Any item with this
|
|
35881
|
-
* - `CustomContexts` — A table of key-value pairs used to pass in
|
|
35984
|
+
* - `BoostCustomTags` — A list of string tags. Any item with this tag will be boosted in ranking. Note: only supports boosting one tag now.
|
|
35985
|
+
* - `CustomContexts` — A table of key-value pairs used to pass in additional context data for ranking. For example, `UserId` for a Server script.
|
|
35882
35986
|
*/
|
|
35883
35987
|
GenerateItemListAsync(this: RecommendationService, generateRecommendationItemListRequest: object): RecommendationPages;
|
|
35884
35988
|
/**
|
|
@@ -35888,7 +35992,13 @@ interface RecommendationService extends Instance {
|
|
|
35888
35992
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RecommendationService#GetRecommendationItemAsync)
|
|
35889
35993
|
* @param this A service that provides an interface for you to manage and display personalized content recommendations.
|
|
35890
35994
|
* @param itemId The ID of the item to retrieve.
|
|
35891
|
-
* @returns A dictionary representing the recommendation item with the following fields: - `ItemId` — The unique ID for the item.
|
|
35995
|
+
* @returns A dictionary representing the recommendation item with the following fields: - `ItemId` — The unique ID for the item.
|
|
35996
|
+
* - `ReferenceId` — The developer-provided ID for the item.
|
|
35997
|
+
* - `TracingId` — An ID for tracking recommendation sessions. This will be empty when fetching a single item directly.
|
|
35998
|
+
* - `Creator` — A table containing the `CreatorId` and `CreatorType`.
|
|
35999
|
+
* - `Attributes` — A list of content attributes associated with the item.
|
|
36000
|
+
* - `CustomTags` — A list of custom string tags.
|
|
36001
|
+
* - `Visibility` — An enum of type `RecommendationItemVisibility`.
|
|
35892
36002
|
*/
|
|
35893
36003
|
GetRecommendationItemAsync(this: RecommendationService, itemId: string): object;
|
|
35894
36004
|
/**
|
|
@@ -35898,12 +36008,12 @@ interface RecommendationService extends Instance {
|
|
|
35898
36008
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RecommendationService#RegisterItemAsync)
|
|
35899
36009
|
* @param this A service that provides an interface for you to manage and display personalized content recommendations.
|
|
35900
36010
|
* @param player The player who created the item.
|
|
35901
|
-
* @param registerRecommendationItemsRequest A dictionary containing the following fields: - `ContentType` — The `RecommendationItemContentType`
|
|
35902
|
-
* - `ReferenceId` — The developer-defined string that uniquely
|
|
36011
|
+
* @param registerRecommendationItemsRequest A dictionary containing the following fields: - `ContentType` — The `RecommendationItemContentType` specifying the type of content. Type is defined in a generic way. For example, you can use `Static` for images, `Dynamic` for videos, and `Interactive` for 3D models that support interaction.
|
|
36012
|
+
* - `ReferenceId` — The developer-defined string that uniquely identifies the item.
|
|
35903
36013
|
* - `Duration` — The duration of the content in seconds.
|
|
35904
|
-
* - `Attributes` — The table of attributes for the item, such as
|
|
35905
|
-
* - `CustomTags` — The list of string tags for filtering and
|
|
35906
|
-
* - `Visibility` — The
|
|
36014
|
+
* - `Attributes` — The table of attributes for the item, such as `AssetId` or `Description`.
|
|
36015
|
+
* - `CustomTags` — The list of string tags for filtering and boosting.
|
|
36016
|
+
* - `Visibility` — The `RecommendationItemVisibility` enum that controls the item's visibility, such as `Public` or `Private`.
|
|
35907
36017
|
*
|
|
35908
36018
|
*
|
|
35909
36019
|
* @returns A table with only two fields: `ItemId` and `ReferenceId`.
|
|
@@ -35925,8 +36035,8 @@ interface RecommendationService extends Instance {
|
|
|
35925
36035
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RecommendationService#UpdateItemAsync)
|
|
35926
36036
|
* @param this A service that provides an interface for you to manage and display personalized content recommendations.
|
|
35927
36037
|
* @param updateRecommendationItemRequest A dictionary containing the following fields: - `ItemId` — The ID of the item to update.
|
|
35928
|
-
* - `ReferenceId` — The new developer-defined string to identify
|
|
35929
|
-
* - `Creator` — The new creator for the item. Creator is a table
|
|
36038
|
+
* - `ReferenceId` — The new developer-defined string to identify the item.
|
|
36039
|
+
* - `Creator` — The new creator for the item. Creator is a table containing two fields: `CreatorId: number` and `CreatorType: Enum.CreatorType`.
|
|
35930
36040
|
* - `Duration` — The new duration for the content in seconds.
|
|
35931
36041
|
* - `Visibility` — The new visibility setting for the item.
|
|
35932
36042
|
* - `Attributes` — The new table of attributes for the item.
|
|
@@ -35949,32 +36059,41 @@ interface ReflectionService extends Instance {
|
|
|
35949
36059
|
*/
|
|
35950
36060
|
readonly _nominal_ReflectionService: unique symbol;
|
|
35951
36061
|
/**
|
|
36062
|
+
* Returns information about a class when given its name, assuming that class is accessible.
|
|
36063
|
+
*
|
|
35952
36064
|
* - **ThreadSafety**: Unsafe
|
|
35953
36065
|
* - **Tags**: CustomLuaState
|
|
35954
36066
|
*
|
|
35955
36067
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ReflectionService#GetClass)
|
|
35956
36068
|
* @param this
|
|
35957
|
-
* @param className
|
|
35958
|
-
* @param filter
|
|
36069
|
+
* @param className The name of the class for which you wish to retrieve information.
|
|
36070
|
+
* @param filter An optional filter to restrict or expand the set of classes that this method can return and change the method's behavior.
|
|
36071
|
+
* @returns A `ReflectedClass` dictionary with reflection information if the class exists; otherwise, `nil`.
|
|
35959
36072
|
*/
|
|
35960
36073
|
GetClass(this: ReflectionService, className: string, filter?: object): object | undefined;
|
|
35961
36074
|
/**
|
|
36075
|
+
* Returns a list of all classes accessible with filters applied.
|
|
36076
|
+
*
|
|
35962
36077
|
* - **ThreadSafety**: Unsafe
|
|
35963
36078
|
* - **Tags**: CustomLuaState
|
|
35964
36079
|
*
|
|
35965
36080
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ReflectionService#GetClasses)
|
|
35966
36081
|
* @param this
|
|
35967
|
-
* @param filter
|
|
36082
|
+
* @param filter An optional filter to restrict or expand the set of classes that this method can return and change the method's behavior.
|
|
36083
|
+
* @returns A list of `ReflectedClass` dictionaries with reflection information for each class that matches the filter criteria.
|
|
35968
36084
|
*/
|
|
35969
36085
|
GetClasses(this: ReflectionService, filter?: object): Array<unknown>;
|
|
35970
36086
|
/**
|
|
36087
|
+
* Returns a list of properties for a given class with filters applied.
|
|
36088
|
+
*
|
|
35971
36089
|
* - **ThreadSafety**: Unsafe
|
|
35972
36090
|
* - **Tags**: CustomLuaState
|
|
35973
36091
|
*
|
|
35974
36092
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ReflectionService#GetPropertiesOfClass)
|
|
35975
36093
|
* @param this
|
|
35976
|
-
* @param className
|
|
35977
|
-
* @param filter
|
|
36094
|
+
* @param className The name of the class for which you wish to retrieve properties.
|
|
36095
|
+
* @param filter An optional filter to restrict or expand the set of properties that this method can return and change the method's behavior.
|
|
36096
|
+
* @returns A list of `ReflectedProperty` dictionaries with reflection information for each property of the class that matches the filter criteria.
|
|
35978
36097
|
*/
|
|
35979
36098
|
GetPropertiesOfClass(this: ReflectionService, className: string, filter?: object): Array<unknown>;
|
|
35980
36099
|
}
|
|
@@ -37744,6 +37863,12 @@ interface Sky extends Instance {
|
|
|
37744
37863
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Sky#MoonAngularSize)
|
|
37745
37864
|
*/
|
|
37746
37865
|
MoonAngularSize: number;
|
|
37866
|
+
/**
|
|
37867
|
+
* - **ThreadSafety**: ReadSafe
|
|
37868
|
+
*
|
|
37869
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Sky#MoonTextureContent)
|
|
37870
|
+
*/
|
|
37871
|
+
MoonTextureContent: Content;
|
|
37747
37872
|
/**
|
|
37748
37873
|
* The texture of the moon while using this skybox.
|
|
37749
37874
|
*
|
|
@@ -37752,6 +37877,12 @@ interface Sky extends Instance {
|
|
|
37752
37877
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Sky#MoonTextureId)
|
|
37753
37878
|
*/
|
|
37754
37879
|
MoonTextureId: ContentId;
|
|
37880
|
+
/**
|
|
37881
|
+
* - **ThreadSafety**: ReadSafe
|
|
37882
|
+
*
|
|
37883
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Sky#SkyboxBackContent)
|
|
37884
|
+
*/
|
|
37885
|
+
SkyboxBackContent: Content;
|
|
37755
37886
|
/**
|
|
37756
37887
|
* The URL link to a picture for the back surface of the sky.
|
|
37757
37888
|
*
|
|
@@ -37768,6 +37899,18 @@ interface Sky extends Instance {
|
|
|
37768
37899
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Sky#SkyboxDn)
|
|
37769
37900
|
*/
|
|
37770
37901
|
SkyboxDn: ContentId;
|
|
37902
|
+
/**
|
|
37903
|
+
* - **ThreadSafety**: ReadSafe
|
|
37904
|
+
*
|
|
37905
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Sky#SkyboxDownContent)
|
|
37906
|
+
*/
|
|
37907
|
+
SkyboxDownContent: Content;
|
|
37908
|
+
/**
|
|
37909
|
+
* - **ThreadSafety**: ReadSafe
|
|
37910
|
+
*
|
|
37911
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Sky#SkyboxFrontContent)
|
|
37912
|
+
*/
|
|
37913
|
+
SkyboxFrontContent: Content;
|
|
37771
37914
|
/**
|
|
37772
37915
|
* Asset ID for the front surface of the skybox.
|
|
37773
37916
|
*
|
|
@@ -37776,6 +37919,12 @@ interface Sky extends Instance {
|
|
|
37776
37919
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Sky#SkyboxFt)
|
|
37777
37920
|
*/
|
|
37778
37921
|
SkyboxFt: ContentId;
|
|
37922
|
+
/**
|
|
37923
|
+
* - **ThreadSafety**: ReadSafe
|
|
37924
|
+
*
|
|
37925
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Sky#SkyboxLeftContent)
|
|
37926
|
+
*/
|
|
37927
|
+
SkyboxLeftContent: Content;
|
|
37779
37928
|
/**
|
|
37780
37929
|
* Asset ID for the left surface of the skybox.
|
|
37781
37930
|
*
|
|
@@ -37792,6 +37941,12 @@ interface Sky extends Instance {
|
|
|
37792
37941
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Sky#SkyboxOrientation)
|
|
37793
37942
|
*/
|
|
37794
37943
|
SkyboxOrientation: Vector3;
|
|
37944
|
+
/**
|
|
37945
|
+
* - **ThreadSafety**: ReadSafe
|
|
37946
|
+
*
|
|
37947
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Sky#SkyboxRightContent)
|
|
37948
|
+
*/
|
|
37949
|
+
SkyboxRightContent: Content;
|
|
37795
37950
|
/**
|
|
37796
37951
|
* Asset ID for the right surface of the skybox.
|
|
37797
37952
|
*
|
|
@@ -37808,6 +37963,12 @@ interface Sky extends Instance {
|
|
|
37808
37963
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Sky#SkyboxUp)
|
|
37809
37964
|
*/
|
|
37810
37965
|
SkyboxUp: ContentId;
|
|
37966
|
+
/**
|
|
37967
|
+
* - **ThreadSafety**: ReadSafe
|
|
37968
|
+
*
|
|
37969
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Sky#SkyboxUpContent)
|
|
37970
|
+
*/
|
|
37971
|
+
SkyboxUpContent: Content;
|
|
37811
37972
|
/**
|
|
37812
37973
|
* How many stars are shown in the skybox.
|
|
37813
37974
|
*
|
|
@@ -37824,6 +37985,12 @@ interface Sky extends Instance {
|
|
|
37824
37985
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Sky#SunAngularSize)
|
|
37825
37986
|
*/
|
|
37826
37987
|
SunAngularSize: number;
|
|
37988
|
+
/**
|
|
37989
|
+
* - **ThreadSafety**: ReadSafe
|
|
37990
|
+
*
|
|
37991
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Sky#SunTextureContent)
|
|
37992
|
+
*/
|
|
37993
|
+
SunTextureContent: Content;
|
|
37827
37994
|
/**
|
|
37828
37995
|
* The texture of the sun while using this skybox.
|
|
37829
37996
|
*
|
|
@@ -40872,10 +41039,16 @@ interface TeleportService extends Instance {
|
|
|
40872
41039
|
string
|
|
40873
41040
|
]>;
|
|
40874
41041
|
/**
|
|
41042
|
+
* Prompts a `Player` with information about the specified experience. The player can choose to teleport to the target experience through the prompt.
|
|
41043
|
+
*
|
|
40875
41044
|
* - **ThreadSafety**: Unsafe
|
|
40876
41045
|
* - **Tags**: Yields
|
|
40877
41046
|
*
|
|
40878
41047
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TeleportService#PromptExperienceDetailsAsync)
|
|
41048
|
+
* @param this Enables transporting `Players` between places and servers.
|
|
41049
|
+
* @param player The `Player` to be presented the prompt.
|
|
41050
|
+
* @param universeId `DataModel.UniverseId` of the experience to be presented to the `Player`
|
|
41051
|
+
* @returns `PromptExperienceDetailsResult`
|
|
40879
41052
|
*/
|
|
40880
41053
|
PromptExperienceDetailsAsync(this: TeleportService, player: Player, universeId: number): Enum.PromptExperienceDetailsResult;
|
|
40881
41054
|
/**
|
|
@@ -42632,7 +42805,7 @@ interface TextGenerator extends Instance {
|
|
|
42632
42805
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TextGenerator#GenerateTextAsync)
|
|
42633
42806
|
* @param this Gives access to a large language model for text generation.
|
|
42634
42807
|
* @param request A dictionary containing optional parameters for the text generation request. The currently supported parameters are `UserPrompt`, `ContextToken`, and `MaxTokens`.
|
|
42635
|
-
* @returns A dictionary containing the
|
|
42808
|
+
* @returns A dictionary containing the generated response.
|
|
42636
42809
|
*/
|
|
42637
42810
|
GenerateTextAsync(this: TextGenerator, request: object): object;
|
|
42638
42811
|
}
|
|
@@ -45579,7 +45752,7 @@ interface VRStatusService extends Instance {
|
|
|
45579
45752
|
readonly _nominal_VRStatusService: unique symbol;
|
|
45580
45753
|
}
|
|
45581
45754
|
/**
|
|
45582
|
-
* Base class of all
|
|
45755
|
+
* Base class of all "value instance" objects.
|
|
45583
45756
|
*
|
|
45584
45757
|
* - **Tags**: NotCreatable
|
|
45585
45758
|
*
|
|
@@ -45620,7 +45793,7 @@ interface BoolValue extends ValueBase {
|
|
|
45620
45793
|
*/
|
|
45621
45794
|
Value: boolean;
|
|
45622
45795
|
/**
|
|
45623
|
-
*
|
|
45796
|
+
* Fires whenever the `BoolValue.Value` is changed.
|
|
45624
45797
|
*
|
|
45625
45798
|
* - **ThreadSafety**: Unsafe
|
|
45626
45799
|
*
|
|
@@ -45899,7 +46072,7 @@ interface NumberValue extends ValueBase {
|
|
|
45899
46072
|
*/
|
|
45900
46073
|
Value: number;
|
|
45901
46074
|
/**
|
|
45902
|
-
*
|
|
46075
|
+
* Fires whenever the `NumberValue.Value` is changed.
|
|
45903
46076
|
*
|
|
45904
46077
|
* - **ThreadSafety**: Unsafe
|
|
45905
46078
|
*
|
|
@@ -45930,7 +46103,7 @@ interface ObjectValue extends ValueBase {
|
|
|
45930
46103
|
*/
|
|
45931
46104
|
Value: Instance | undefined;
|
|
45932
46105
|
/**
|
|
45933
|
-
*
|
|
46106
|
+
* Fires whenever the `ObjectValue.Value` is changed.
|
|
45934
46107
|
*
|
|
45935
46108
|
* - **ThreadSafety**: Unsafe
|
|
45936
46109
|
*
|
|
@@ -45992,7 +46165,7 @@ interface StringValue extends ValueBase {
|
|
|
45992
46165
|
*/
|
|
45993
46166
|
Value: string;
|
|
45994
46167
|
/**
|
|
45995
|
-
*
|
|
46168
|
+
* Fires whenever `StringValue.Value` is changed.
|
|
45996
46169
|
*
|
|
45997
46170
|
* - **ThreadSafety**: Unsafe
|
|
45998
46171
|
*
|
|
@@ -19,6 +19,7 @@ interface Services {
|
|
|
19
19
|
AssetDeliveryProxy: AssetDeliveryProxy;
|
|
20
20
|
AssetImportService: AssetImportService;
|
|
21
21
|
AssetManagerService: AssetManagerService;
|
|
22
|
+
AssetQualityService: AssetQualityService;
|
|
22
23
|
AssetService: AssetService;
|
|
23
24
|
AudioFocusService: AudioFocusService;
|
|
24
25
|
AuroraScriptService: AuroraScriptService;
|
|
@@ -347,6 +348,7 @@ interface CreatableInstances {
|
|
|
347
348
|
Color3Value: Color3Value;
|
|
348
349
|
ColorCorrectionEffect: ColorCorrectionEffect;
|
|
349
350
|
ColorGradingEffect: ColorGradingEffect;
|
|
351
|
+
CompositeValueCurve: CompositeValueCurve;
|
|
350
352
|
CompressorSoundEffect: CompressorSoundEffect;
|
|
351
353
|
ConeHandleAdornment: ConeHandleAdornment;
|
|
352
354
|
Configuration: Configuration;
|
|
@@ -420,6 +422,7 @@ interface CreatableInstances {
|
|
|
420
422
|
LineHandleAdornment: LineHandleAdornment;
|
|
421
423
|
LocalizationTable: LocalizationTable;
|
|
422
424
|
LocalScript: LocalScript;
|
|
425
|
+
MakeupDescription: MakeupDescription;
|
|
423
426
|
ManualGlue: ManualGlue;
|
|
424
427
|
ManualWeld: ManualWeld;
|
|
425
428
|
MarkerCurve: MarkerCurve;
|
|
@@ -784,7 +787,7 @@ interface Objects extends Instances {
|
|
|
784
787
|
}
|
|
785
788
|
// GENERATED ROBLOX INSTANCE CLASSES
|
|
786
789
|
/**
|
|
787
|
-
* Object is the base class for all classes in the Roblox class hierarchy.
|
|
790
|
+
* `Object` is the base class for all classes in the Roblox class hierarchy.
|
|
788
791
|
*
|
|
789
792
|
* - **Tags**: NotCreatable, NotReplicated
|
|
790
793
|
*
|
|
@@ -1549,6 +1552,21 @@ interface AssetPatchSettings extends Instance {
|
|
|
1549
1552
|
*/
|
|
1550
1553
|
readonly _nominal_AssetPatchSettings: unique symbol;
|
|
1551
1554
|
}
|
|
1555
|
+
/**
|
|
1556
|
+
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
1557
|
+
*
|
|
1558
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AssetQualityService)
|
|
1559
|
+
*/
|
|
1560
|
+
interface AssetQualityService extends Instance {
|
|
1561
|
+
/**
|
|
1562
|
+
* **DO NOT USE!**
|
|
1563
|
+
*
|
|
1564
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
1565
|
+
* @hidden
|
|
1566
|
+
* @deprecated
|
|
1567
|
+
*/
|
|
1568
|
+
readonly _nominal_AssetQualityService: unique symbol;
|
|
1569
|
+
}
|
|
1552
1570
|
/**
|
|
1553
1571
|
* A non-replicated service that handles asset-related queries to the Roblox web API.
|
|
1554
1572
|
*
|
|
@@ -2959,7 +2977,7 @@ interface CaptureService extends Instance {
|
|
|
2959
2977
|
readonly _nominal_CaptureService: unique symbol;
|
|
2960
2978
|
}
|
|
2961
2979
|
/**
|
|
2962
|
-
* **
|
|
2980
|
+
* Service which **must** be used by plugins to communicate to Studio how to undo and redo the changes which they make to the experience.
|
|
2963
2981
|
*
|
|
2964
2982
|
* - **Tags**: NotCreatable, Service
|
|
2965
2983
|
*
|
|
@@ -2980,8 +2998,8 @@ interface ChangeHistoryService extends Instance {
|
|
|
2980
2998
|
* - **ThreadSafety**: Unsafe
|
|
2981
2999
|
*
|
|
2982
3000
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ChangeHistoryService#FinishRecording)
|
|
2983
|
-
* @param this **
|
|
2984
|
-
* @param identifier
|
|
3001
|
+
* @param this Service which **must** be used by plugins to communicate to Studio how to undo and redo the changes which they make to the experience.
|
|
3002
|
+
* @param identifier The string returned by a previous call to `TryBeginRecording()`, used to identify which recording to finish. This identifier is **not the same** as the `name` of the action passed to `TryBeginRecording()`. If the operation is `FinishRecordingOperation.Cancel`, this value is ignored, and the recording is determined by context.
|
|
2985
3003
|
* @param operation Specifies the operation to take.
|
|
2986
3004
|
* @param finalOptions Optional table of values to pass to `OnFinishRecording`.
|
|
2987
3005
|
*/
|
|
@@ -2992,7 +3010,7 @@ interface ChangeHistoryService extends Instance {
|
|
|
2992
3010
|
* - **ThreadSafety**: Unsafe
|
|
2993
3011
|
*
|
|
2994
3012
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ChangeHistoryService#GetCanRedo)
|
|
2995
|
-
* @param this **
|
|
3013
|
+
* @param this Service which **must** be used by plugins to communicate to Studio how to undo and redo the changes which they make to the experience.
|
|
2996
3014
|
*/
|
|
2997
3015
|
GetCanRedo(this: ChangeHistoryService): unknown;
|
|
2998
3016
|
/**
|
|
@@ -3001,14 +3019,14 @@ interface ChangeHistoryService extends Instance {
|
|
|
3001
3019
|
* - **ThreadSafety**: Unsafe
|
|
3002
3020
|
*
|
|
3003
3021
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ChangeHistoryService#GetCanUndo)
|
|
3004
|
-
* @param this **
|
|
3022
|
+
* @param this Service which **must** be used by plugins to communicate to Studio how to undo and redo the changes which they make to the experience.
|
|
3005
3023
|
*/
|
|
3006
3024
|
GetCanUndo(this: ChangeHistoryService): unknown;
|
|
3007
3025
|
/**
|
|
3008
3026
|
* - **ThreadSafety**: Unsafe
|
|
3009
3027
|
*
|
|
3010
3028
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ChangeHistoryService#IsRecordingInProgress)
|
|
3011
|
-
* @param this **
|
|
3029
|
+
* @param this Service which **must** be used by plugins to communicate to Studio how to undo and redo the changes which they make to the experience.
|
|
3012
3030
|
* @param identifier
|
|
3013
3031
|
*/
|
|
3014
3032
|
IsRecordingInProgress(this: ChangeHistoryService, identifier?: string): boolean;
|
|
@@ -3018,7 +3036,7 @@ interface ChangeHistoryService extends Instance {
|
|
|
3018
3036
|
* - **ThreadSafety**: Unsafe
|
|
3019
3037
|
*
|
|
3020
3038
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ChangeHistoryService#Redo)
|
|
3021
|
-
* @param this **
|
|
3039
|
+
* @param this Service which **must** be used by plugins to communicate to Studio how to undo and redo the changes which they make to the experience.
|
|
3022
3040
|
*/
|
|
3023
3041
|
Redo(this: ChangeHistoryService): void;
|
|
3024
3042
|
/**
|
|
@@ -3027,16 +3045,16 @@ interface ChangeHistoryService extends Instance {
|
|
|
3027
3045
|
* - **ThreadSafety**: Unsafe
|
|
3028
3046
|
*
|
|
3029
3047
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ChangeHistoryService#ResetWaypoints)
|
|
3030
|
-
* @param this **
|
|
3048
|
+
* @param this Service which **must** be used by plugins to communicate to Studio how to undo and redo the changes which they make to the experience.
|
|
3031
3049
|
*/
|
|
3032
3050
|
ResetWaypoints(this: ChangeHistoryService): void;
|
|
3033
3051
|
/**
|
|
3034
|
-
* Sets whether or not
|
|
3052
|
+
* Sets whether or not `ChangeHistoryService` is enabled.
|
|
3035
3053
|
*
|
|
3036
3054
|
* - **ThreadSafety**: Unsafe
|
|
3037
3055
|
*
|
|
3038
3056
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ChangeHistoryService#SetEnabled)
|
|
3039
|
-
* @param this **
|
|
3057
|
+
* @param this Service which **must** be used by plugins to communicate to Studio how to undo and redo the changes which they make to the experience.
|
|
3040
3058
|
* @param state
|
|
3041
3059
|
*/
|
|
3042
3060
|
SetEnabled(this: ChangeHistoryService, state: boolean): void;
|
|
@@ -3046,7 +3064,7 @@ interface ChangeHistoryService extends Instance {
|
|
|
3046
3064
|
* - **ThreadSafety**: Unsafe
|
|
3047
3065
|
*
|
|
3048
3066
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ChangeHistoryService#SetWaypoint)
|
|
3049
|
-
* @param this **
|
|
3067
|
+
* @param this Service which **must** be used by plugins to communicate to Studio how to undo and redo the changes which they make to the experience.
|
|
3050
3068
|
* @param name
|
|
3051
3069
|
*/
|
|
3052
3070
|
SetWaypoint(this: ChangeHistoryService, name: string): void;
|
|
@@ -3056,7 +3074,7 @@ interface ChangeHistoryService extends Instance {
|
|
|
3056
3074
|
* - **ThreadSafety**: Unsafe
|
|
3057
3075
|
*
|
|
3058
3076
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ChangeHistoryService#TryBeginRecording)
|
|
3059
|
-
* @param this **
|
|
3077
|
+
* @param this Service which **must** be used by plugins to communicate to Studio how to undo and redo the changes which they make to the experience.
|
|
3060
3078
|
* @param name Name of the action being performed suitable for logging and coding purposes.
|
|
3061
3079
|
* @param displayName Name of the action being performed to display to the user.
|
|
3062
3080
|
*/
|
|
@@ -3067,7 +3085,7 @@ interface ChangeHistoryService extends Instance {
|
|
|
3067
3085
|
* - **ThreadSafety**: Unsafe
|
|
3068
3086
|
*
|
|
3069
3087
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ChangeHistoryService#Undo)
|
|
3070
|
-
* @param this **
|
|
3088
|
+
* @param this Service which **must** be used by plugins to communicate to Studio how to undo and redo the changes which they make to the experience.
|
|
3071
3089
|
*/
|
|
3072
3090
|
Undo(this: ChangeHistoryService): void;
|
|
3073
3091
|
/**
|
|
@@ -3087,7 +3105,7 @@ interface ChangeHistoryService extends Instance {
|
|
|
3087
3105
|
*/
|
|
3088
3106
|
readonly OnRecordingStarted: RBXScriptSignal<(name: string, displayName?: string) => void>;
|
|
3089
3107
|
/**
|
|
3090
|
-
* Fired when the user reverses the undo command.
|
|
3108
|
+
* Fired when the user reverses the undo command.
|
|
3091
3109
|
*
|
|
3092
3110
|
* - **ThreadSafety**: Unsafe
|
|
3093
3111
|
*
|
|
@@ -3095,7 +3113,7 @@ interface ChangeHistoryService extends Instance {
|
|
|
3095
3113
|
*/
|
|
3096
3114
|
readonly OnRedo: RBXScriptSignal<(waypoint: string) => void>;
|
|
3097
3115
|
/**
|
|
3098
|
-
* Fired when the user undoes an action in studio.
|
|
3116
|
+
* Fired when the user undoes an action in studio.
|
|
3099
3117
|
*
|
|
3100
3118
|
* - **ThreadSafety**: Unsafe
|
|
3101
3119
|
*
|
|
@@ -3383,6 +3401,19 @@ interface CommerceService extends Instance {
|
|
|
3383
3401
|
*/
|
|
3384
3402
|
readonly _nominal_CommerceService: unique symbol;
|
|
3385
3403
|
}
|
|
3404
|
+
/**
|
|
3405
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CompositeValueCurve)
|
|
3406
|
+
*/
|
|
3407
|
+
interface CompositeValueCurve extends Instance {
|
|
3408
|
+
/**
|
|
3409
|
+
* **DO NOT USE!**
|
|
3410
|
+
*
|
|
3411
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
3412
|
+
* @hidden
|
|
3413
|
+
* @deprecated
|
|
3414
|
+
*/
|
|
3415
|
+
readonly _nominal_CompositeValueCurve: unique symbol;
|
|
3416
|
+
}
|
|
3386
3417
|
/**
|
|
3387
3418
|
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
3388
3419
|
*
|
|
@@ -8007,6 +8038,19 @@ interface MLService extends Instance {
|
|
|
8007
8038
|
*/
|
|
8008
8039
|
readonly _nominal_MLService: unique symbol;
|
|
8009
8040
|
}
|
|
8041
|
+
/**
|
|
8042
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MakeupDescription)
|
|
8043
|
+
*/
|
|
8044
|
+
interface MakeupDescription extends Instance {
|
|
8045
|
+
/**
|
|
8046
|
+
* **DO NOT USE!**
|
|
8047
|
+
*
|
|
8048
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
8049
|
+
* @hidden
|
|
8050
|
+
* @deprecated
|
|
8051
|
+
*/
|
|
8052
|
+
readonly _nominal_MakeupDescription: unique symbol;
|
|
8053
|
+
}
|
|
8010
8054
|
/**
|
|
8011
8055
|
* Represents a list of strings markers in chronological order.
|
|
8012
8056
|
*
|
|
@@ -14889,7 +14933,7 @@ interface VRStatusService extends Instance {
|
|
|
14889
14933
|
readonly _nominal_VRStatusService: unique symbol;
|
|
14890
14934
|
}
|
|
14891
14935
|
/**
|
|
14892
|
-
* Base class of all
|
|
14936
|
+
* Base class of all "value instance" objects.
|
|
14893
14937
|
*
|
|
14894
14938
|
* - **Tags**: NotCreatable
|
|
14895
14939
|
*
|
|
@@ -1590,6 +1590,69 @@ declare namespace Enum {
|
|
|
1590
1590
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnimationClipFromVideoStatus | undefined;
|
|
1591
1591
|
}
|
|
1592
1592
|
export type AnimationClipFromVideoStatus = AnimationClipFromVideoStatus.Initializing | AnimationClipFromVideoStatus.Pending | AnimationClipFromVideoStatus.Processing | AnimationClipFromVideoStatus.ErrorGeneric | AnimationClipFromVideoStatus.Success | AnimationClipFromVideoStatus.ErrorVideoTooLong | AnimationClipFromVideoStatus.ErrorNoPersonDetected | AnimationClipFromVideoStatus.ErrorVideoUnstable | AnimationClipFromVideoStatus.Timeout | AnimationClipFromVideoStatus.Cancelled | AnimationClipFromVideoStatus.ErrorMultiplePeople | AnimationClipFromVideoStatus.ErrorUploadingVideo;
|
|
1593
|
+
/**
|
|
1594
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeBlend2DInputMode)
|
|
1595
|
+
*/
|
|
1596
|
+
export namespace AnimationNodeBlend2DInputMode {
|
|
1597
|
+
/**
|
|
1598
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeBlend2DInputMode#Cartesian)
|
|
1599
|
+
*/
|
|
1600
|
+
export interface Cartesian extends globalThis.EnumItem {
|
|
1601
|
+
Name: "Cartesian";
|
|
1602
|
+
Value: 0;
|
|
1603
|
+
EnumType: typeof globalThis.Enum.AnimationNodeBlend2DInputMode;
|
|
1604
|
+
}
|
|
1605
|
+
export const Cartesian: Cartesian;
|
|
1606
|
+
/**
|
|
1607
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeBlend2DInputMode#Polar)
|
|
1608
|
+
*/
|
|
1609
|
+
export interface Polar extends globalThis.EnumItem {
|
|
1610
|
+
Name: "Polar";
|
|
1611
|
+
Value: 1;
|
|
1612
|
+
EnumType: typeof globalThis.Enum.AnimationNodeBlend2DInputMode;
|
|
1613
|
+
}
|
|
1614
|
+
export const Polar: Polar;
|
|
1615
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AnimationNodeBlend2DInputMode>;
|
|
1616
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AnimationNodeBlend2DInputMode | undefined;
|
|
1617
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnimationNodeBlend2DInputMode | undefined;
|
|
1618
|
+
}
|
|
1619
|
+
export type AnimationNodeBlend2DInputMode = AnimationNodeBlend2DInputMode.Cartesian | AnimationNodeBlend2DInputMode.Polar;
|
|
1620
|
+
/**
|
|
1621
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeInterruptible)
|
|
1622
|
+
*/
|
|
1623
|
+
export namespace AnimationNodeInterruptible {
|
|
1624
|
+
/**
|
|
1625
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeInterruptible#Always)
|
|
1626
|
+
*/
|
|
1627
|
+
export interface Always extends globalThis.EnumItem {
|
|
1628
|
+
Name: "Always";
|
|
1629
|
+
Value: 0;
|
|
1630
|
+
EnumType: typeof globalThis.Enum.AnimationNodeInterruptible;
|
|
1631
|
+
}
|
|
1632
|
+
export const Always: Always;
|
|
1633
|
+
/**
|
|
1634
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeInterruptible#ClipFinished)
|
|
1635
|
+
*/
|
|
1636
|
+
export interface ClipFinished extends globalThis.EnumItem {
|
|
1637
|
+
Name: "ClipFinished";
|
|
1638
|
+
Value: 1;
|
|
1639
|
+
EnumType: typeof globalThis.Enum.AnimationNodeInterruptible;
|
|
1640
|
+
}
|
|
1641
|
+
export const ClipFinished: ClipFinished;
|
|
1642
|
+
/**
|
|
1643
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeInterruptible#Expression)
|
|
1644
|
+
*/
|
|
1645
|
+
export interface Expression extends globalThis.EnumItem {
|
|
1646
|
+
Name: "Expression";
|
|
1647
|
+
Value: 2;
|
|
1648
|
+
EnumType: typeof globalThis.Enum.AnimationNodeInterruptible;
|
|
1649
|
+
}
|
|
1650
|
+
export const Expression: Expression;
|
|
1651
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AnimationNodeInterruptible>;
|
|
1652
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AnimationNodeInterruptible | undefined;
|
|
1653
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnimationNodeInterruptible | undefined;
|
|
1654
|
+
}
|
|
1655
|
+
export type AnimationNodeInterruptible = AnimationNodeInterruptible.Always | AnimationNodeInterruptible.ClipFinished | AnimationNodeInterruptible.Expression;
|
|
1593
1656
|
/**
|
|
1594
1657
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodePlayMode)
|
|
1595
1658
|
*/
|
|
@@ -1806,6 +1869,33 @@ declare namespace Enum {
|
|
|
1806
1869
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnimationNodeType | undefined;
|
|
1807
1870
|
}
|
|
1808
1871
|
export type AnimationNodeType = AnimationNodeType.InvalidNode | AnimationNodeType.AddNode | AnimationNodeType.BlendNode | AnimationNodeType.Blend1DNode | AnimationNodeType.Blend2DNode | AnimationNodeType.ClipNode | AnimationNodeType.GraphOutput | AnimationNodeType.MaskNode | AnimationNodeType.PrioritySelectNode | AnimationNodeType.RandomSequenceNode | AnimationNodeType.SelectNode | AnimationNodeType.SequenceNode | AnimationNodeType.SpeedNode | AnimationNodeType.SubtractNode;
|
|
1872
|
+
/**
|
|
1873
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeWaitFor)
|
|
1874
|
+
*/
|
|
1875
|
+
export namespace AnimationNodeWaitFor {
|
|
1876
|
+
/**
|
|
1877
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeWaitFor#ClipFinished)
|
|
1878
|
+
*/
|
|
1879
|
+
export interface ClipFinished extends globalThis.EnumItem {
|
|
1880
|
+
Name: "ClipFinished";
|
|
1881
|
+
Value: 0;
|
|
1882
|
+
EnumType: typeof globalThis.Enum.AnimationNodeWaitFor;
|
|
1883
|
+
}
|
|
1884
|
+
export const ClipFinished: ClipFinished;
|
|
1885
|
+
/**
|
|
1886
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeWaitFor#Expression)
|
|
1887
|
+
*/
|
|
1888
|
+
export interface Expression extends globalThis.EnumItem {
|
|
1889
|
+
Name: "Expression";
|
|
1890
|
+
Value: 1;
|
|
1891
|
+
EnumType: typeof globalThis.Enum.AnimationNodeWaitFor;
|
|
1892
|
+
}
|
|
1893
|
+
export const Expression: Expression;
|
|
1894
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AnimationNodeWaitFor>;
|
|
1895
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AnimationNodeWaitFor | undefined;
|
|
1896
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnimationNodeWaitFor | undefined;
|
|
1897
|
+
}
|
|
1898
|
+
export type AnimationNodeWaitFor = AnimationNodeWaitFor.ClipFinished | AnimationNodeWaitFor.Expression;
|
|
1809
1899
|
/**
|
|
1810
1900
|
* The AnimationPriority Enum determines how concurrently-playing AnimationTracks contribute to the final animation.
|
|
1811
1901
|
*
|
|
@@ -7818,6 +7908,87 @@ declare namespace Enum {
|
|
|
7818
7908
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CompletionTriggerKind | undefined;
|
|
7819
7909
|
}
|
|
7820
7910
|
export type CompletionTriggerKind = CompletionTriggerKind.Invoked | CompletionTriggerKind.TriggerCharacter | CompletionTriggerKind.TriggerForIncompleteCompletions;
|
|
7911
|
+
/**
|
|
7912
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CompositeValueCurveType)
|
|
7913
|
+
*/
|
|
7914
|
+
export namespace CompositeValueCurveType {
|
|
7915
|
+
/**
|
|
7916
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CompositeValueCurveType#ColorRGB)
|
|
7917
|
+
*/
|
|
7918
|
+
export interface ColorRGB extends globalThis.EnumItem {
|
|
7919
|
+
Name: "ColorRGB";
|
|
7920
|
+
Value: 0;
|
|
7921
|
+
EnumType: typeof globalThis.Enum.CompositeValueCurveType;
|
|
7922
|
+
}
|
|
7923
|
+
export const ColorRGB: ColorRGB;
|
|
7924
|
+
/**
|
|
7925
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CompositeValueCurveType#ColorHSV)
|
|
7926
|
+
*/
|
|
7927
|
+
export interface ColorHSV extends globalThis.EnumItem {
|
|
7928
|
+
Name: "ColorHSV";
|
|
7929
|
+
Value: 1;
|
|
7930
|
+
EnumType: typeof globalThis.Enum.CompositeValueCurveType;
|
|
7931
|
+
}
|
|
7932
|
+
export const ColorHSV: ColorHSV;
|
|
7933
|
+
/**
|
|
7934
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CompositeValueCurveType#NumberRange)
|
|
7935
|
+
*/
|
|
7936
|
+
export interface NumberRange extends globalThis.EnumItem {
|
|
7937
|
+
Name: "NumberRange";
|
|
7938
|
+
Value: 2;
|
|
7939
|
+
EnumType: typeof globalThis.Enum.CompositeValueCurveType;
|
|
7940
|
+
}
|
|
7941
|
+
export const NumberRange: NumberRange;
|
|
7942
|
+
/**
|
|
7943
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CompositeValueCurveType#Rect)
|
|
7944
|
+
*/
|
|
7945
|
+
export interface Rect extends globalThis.EnumItem {
|
|
7946
|
+
Name: "Rect";
|
|
7947
|
+
Value: 3;
|
|
7948
|
+
EnumType: typeof globalThis.Enum.CompositeValueCurveType;
|
|
7949
|
+
}
|
|
7950
|
+
export const Rect: Rect;
|
|
7951
|
+
/**
|
|
7952
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CompositeValueCurveType#UDim)
|
|
7953
|
+
*/
|
|
7954
|
+
export interface UDim extends globalThis.EnumItem {
|
|
7955
|
+
Name: "UDim";
|
|
7956
|
+
Value: 4;
|
|
7957
|
+
EnumType: typeof globalThis.Enum.CompositeValueCurveType;
|
|
7958
|
+
}
|
|
7959
|
+
export const UDim: UDim;
|
|
7960
|
+
/**
|
|
7961
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CompositeValueCurveType#UDim2)
|
|
7962
|
+
*/
|
|
7963
|
+
export interface UDim2 extends globalThis.EnumItem {
|
|
7964
|
+
Name: "UDim2";
|
|
7965
|
+
Value: 5;
|
|
7966
|
+
EnumType: typeof globalThis.Enum.CompositeValueCurveType;
|
|
7967
|
+
}
|
|
7968
|
+
export const UDim2: UDim2;
|
|
7969
|
+
/**
|
|
7970
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CompositeValueCurveType#Vector2)
|
|
7971
|
+
*/
|
|
7972
|
+
export interface Vector2 extends globalThis.EnumItem {
|
|
7973
|
+
Name: "Vector2";
|
|
7974
|
+
Value: 6;
|
|
7975
|
+
EnumType: typeof globalThis.Enum.CompositeValueCurveType;
|
|
7976
|
+
}
|
|
7977
|
+
export const Vector2: Vector2;
|
|
7978
|
+
/**
|
|
7979
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CompositeValueCurveType#Vector3)
|
|
7980
|
+
*/
|
|
7981
|
+
export interface Vector3 extends globalThis.EnumItem {
|
|
7982
|
+
Name: "Vector3";
|
|
7983
|
+
Value: 7;
|
|
7984
|
+
EnumType: typeof globalThis.Enum.CompositeValueCurveType;
|
|
7985
|
+
}
|
|
7986
|
+
export const Vector3: Vector3;
|
|
7987
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.CompositeValueCurveType>;
|
|
7988
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.CompositeValueCurveType | undefined;
|
|
7989
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CompositeValueCurveType | undefined;
|
|
7990
|
+
}
|
|
7991
|
+
export type CompositeValueCurveType = CompositeValueCurveType.ColorRGB | CompositeValueCurveType.ColorHSV | CompositeValueCurveType.NumberRange | CompositeValueCurveType.Rect | CompositeValueCurveType.UDim | CompositeValueCurveType.UDim2 | CompositeValueCurveType.Vector2 | CompositeValueCurveType.Vector3;
|
|
7821
7992
|
/**
|
|
7822
7993
|
* A compression algorithm to use in `EncodingService` methods.
|
|
7823
7994
|
*
|
|
@@ -12629,6 +12800,33 @@ declare namespace Enum {
|
|
|
12629
12800
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.FilterResult | undefined;
|
|
12630
12801
|
}
|
|
12631
12802
|
export type FilterResult = FilterResult.Accepted | FilterResult.Rejected;
|
|
12803
|
+
/**
|
|
12804
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FilterType)
|
|
12805
|
+
*/
|
|
12806
|
+
export namespace FilterType {
|
|
12807
|
+
/**
|
|
12808
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FilterType#Exclude)
|
|
12809
|
+
*/
|
|
12810
|
+
export interface Exclude extends globalThis.EnumItem {
|
|
12811
|
+
Name: "Exclude";
|
|
12812
|
+
Value: 0;
|
|
12813
|
+
EnumType: typeof globalThis.Enum.FilterType;
|
|
12814
|
+
}
|
|
12815
|
+
export const Exclude: Exclude;
|
|
12816
|
+
/**
|
|
12817
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FilterType#Include)
|
|
12818
|
+
*/
|
|
12819
|
+
export interface Include extends globalThis.EnumItem {
|
|
12820
|
+
Name: "Include";
|
|
12821
|
+
Value: 1;
|
|
12822
|
+
EnumType: typeof globalThis.Enum.FilterType;
|
|
12823
|
+
}
|
|
12824
|
+
export const Include: Include;
|
|
12825
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.FilterType>;
|
|
12826
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.FilterType | undefined;
|
|
12827
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.FilterType | undefined;
|
|
12828
|
+
}
|
|
12829
|
+
export type FilterType = FilterType.Exclude | FilterType.Include;
|
|
12632
12830
|
/**
|
|
12633
12831
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FinishRecordingOperation)
|
|
12634
12832
|
*/
|
|
@@ -20541,6 +20739,42 @@ declare namespace Enum {
|
|
|
20541
20739
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.LuauTypeCheckMode | undefined;
|
|
20542
20740
|
}
|
|
20543
20741
|
export type LuauTypeCheckMode = LuauTypeCheckMode.Default | LuauTypeCheckMode.NoCheck | LuauTypeCheckMode.Nonstrict | LuauTypeCheckMode.Strict;
|
|
20742
|
+
/**
|
|
20743
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/MakeupType)
|
|
20744
|
+
*/
|
|
20745
|
+
export namespace MakeupType {
|
|
20746
|
+
/**
|
|
20747
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/MakeupType#Face)
|
|
20748
|
+
*/
|
|
20749
|
+
export interface Face extends globalThis.EnumItem {
|
|
20750
|
+
Name: "Face";
|
|
20751
|
+
Value: 0;
|
|
20752
|
+
EnumType: typeof globalThis.Enum.MakeupType;
|
|
20753
|
+
}
|
|
20754
|
+
export const Face: Face;
|
|
20755
|
+
/**
|
|
20756
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/MakeupType#Lip)
|
|
20757
|
+
*/
|
|
20758
|
+
export interface Lip extends globalThis.EnumItem {
|
|
20759
|
+
Name: "Lip";
|
|
20760
|
+
Value: 1;
|
|
20761
|
+
EnumType: typeof globalThis.Enum.MakeupType;
|
|
20762
|
+
}
|
|
20763
|
+
export const Lip: Lip;
|
|
20764
|
+
/**
|
|
20765
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/MakeupType#Eye)
|
|
20766
|
+
*/
|
|
20767
|
+
export interface Eye extends globalThis.EnumItem {
|
|
20768
|
+
Name: "Eye";
|
|
20769
|
+
Value: 2;
|
|
20770
|
+
EnumType: typeof globalThis.Enum.MakeupType;
|
|
20771
|
+
}
|
|
20772
|
+
export const Eye: Eye;
|
|
20773
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.MakeupType>;
|
|
20774
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.MakeupType | undefined;
|
|
20775
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.MakeupType | undefined;
|
|
20776
|
+
}
|
|
20777
|
+
export type MakeupType = MakeupType.Face | MakeupType.Lip | MakeupType.Eye;
|
|
20544
20778
|
/**
|
|
20545
20779
|
* The status of the BulkPurchasePrompt after player interaction.
|
|
20546
20780
|
*
|
|
@@ -26988,6 +27222,222 @@ declare namespace Enum {
|
|
|
26988
27222
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.RibbonTool | undefined;
|
|
26989
27223
|
}
|
|
26990
27224
|
export type RibbonTool = RibbonTool.Select | RibbonTool.Scale | RibbonTool.Rotate | RibbonTool.Move | RibbonTool.Transform | RibbonTool.ColorPicker | RibbonTool.MaterialPicker | RibbonTool.Group | RibbonTool.Ungroup | RibbonTool.None | RibbonTool.PivotEditor;
|
|
27225
|
+
/**
|
|
27226
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel)
|
|
27227
|
+
*/
|
|
27228
|
+
export namespace RigLabel {
|
|
27229
|
+
/**
|
|
27230
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#Invalid)
|
|
27231
|
+
*/
|
|
27232
|
+
export interface Invalid extends globalThis.EnumItem {
|
|
27233
|
+
Name: "Invalid";
|
|
27234
|
+
Value: 0;
|
|
27235
|
+
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27236
|
+
}
|
|
27237
|
+
export const Invalid: Invalid;
|
|
27238
|
+
/**
|
|
27239
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#Root)
|
|
27240
|
+
*/
|
|
27241
|
+
export interface Root extends globalThis.EnumItem {
|
|
27242
|
+
Name: "Root";
|
|
27243
|
+
Value: 1;
|
|
27244
|
+
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27245
|
+
}
|
|
27246
|
+
export const Root: Root;
|
|
27247
|
+
/**
|
|
27248
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#Pelvis)
|
|
27249
|
+
*/
|
|
27250
|
+
export interface Pelvis extends globalThis.EnumItem {
|
|
27251
|
+
Name: "Pelvis";
|
|
27252
|
+
Value: 2;
|
|
27253
|
+
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27254
|
+
}
|
|
27255
|
+
export const Pelvis: Pelvis;
|
|
27256
|
+
/**
|
|
27257
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#Waist)
|
|
27258
|
+
*/
|
|
27259
|
+
export interface Waist extends globalThis.EnumItem {
|
|
27260
|
+
Name: "Waist";
|
|
27261
|
+
Value: 3;
|
|
27262
|
+
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27263
|
+
}
|
|
27264
|
+
export const Waist: Waist;
|
|
27265
|
+
/**
|
|
27266
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#Chest)
|
|
27267
|
+
*/
|
|
27268
|
+
export interface Chest extends globalThis.EnumItem {
|
|
27269
|
+
Name: "Chest";
|
|
27270
|
+
Value: 4;
|
|
27271
|
+
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27272
|
+
}
|
|
27273
|
+
export const Chest: Chest;
|
|
27274
|
+
/**
|
|
27275
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#Neck)
|
|
27276
|
+
*/
|
|
27277
|
+
export interface Neck extends globalThis.EnumItem {
|
|
27278
|
+
Name: "Neck";
|
|
27279
|
+
Value: 5;
|
|
27280
|
+
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27281
|
+
}
|
|
27282
|
+
export const Neck: Neck;
|
|
27283
|
+
/**
|
|
27284
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#HeadBase)
|
|
27285
|
+
*/
|
|
27286
|
+
export interface HeadBase extends globalThis.EnumItem {
|
|
27287
|
+
Name: "HeadBase";
|
|
27288
|
+
Value: 6;
|
|
27289
|
+
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27290
|
+
}
|
|
27291
|
+
export const HeadBase: HeadBase;
|
|
27292
|
+
/**
|
|
27293
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#LeftClavicle)
|
|
27294
|
+
*/
|
|
27295
|
+
export interface LeftClavicle extends globalThis.EnumItem {
|
|
27296
|
+
Name: "LeftClavicle";
|
|
27297
|
+
Value: 7;
|
|
27298
|
+
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27299
|
+
}
|
|
27300
|
+
export const LeftClavicle: LeftClavicle;
|
|
27301
|
+
/**
|
|
27302
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#LeftShoulder)
|
|
27303
|
+
*/
|
|
27304
|
+
export interface LeftShoulder extends globalThis.EnumItem {
|
|
27305
|
+
Name: "LeftShoulder";
|
|
27306
|
+
Value: 8;
|
|
27307
|
+
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27308
|
+
}
|
|
27309
|
+
export const LeftShoulder: LeftShoulder;
|
|
27310
|
+
/**
|
|
27311
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#LeftElbow)
|
|
27312
|
+
*/
|
|
27313
|
+
export interface LeftElbow extends globalThis.EnumItem {
|
|
27314
|
+
Name: "LeftElbow";
|
|
27315
|
+
Value: 9;
|
|
27316
|
+
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27317
|
+
}
|
|
27318
|
+
export const LeftElbow: LeftElbow;
|
|
27319
|
+
/**
|
|
27320
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#LeftWrist)
|
|
27321
|
+
*/
|
|
27322
|
+
export interface LeftWrist extends globalThis.EnumItem {
|
|
27323
|
+
Name: "LeftWrist";
|
|
27324
|
+
Value: 10;
|
|
27325
|
+
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27326
|
+
}
|
|
27327
|
+
export const LeftWrist: LeftWrist;
|
|
27328
|
+
/**
|
|
27329
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#RightClavicle)
|
|
27330
|
+
*/
|
|
27331
|
+
export interface RightClavicle extends globalThis.EnumItem {
|
|
27332
|
+
Name: "RightClavicle";
|
|
27333
|
+
Value: 11;
|
|
27334
|
+
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27335
|
+
}
|
|
27336
|
+
export const RightClavicle: RightClavicle;
|
|
27337
|
+
/**
|
|
27338
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#RightShoulder)
|
|
27339
|
+
*/
|
|
27340
|
+
export interface RightShoulder extends globalThis.EnumItem {
|
|
27341
|
+
Name: "RightShoulder";
|
|
27342
|
+
Value: 12;
|
|
27343
|
+
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27344
|
+
}
|
|
27345
|
+
export const RightShoulder: RightShoulder;
|
|
27346
|
+
/**
|
|
27347
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#RightElbow)
|
|
27348
|
+
*/
|
|
27349
|
+
export interface RightElbow extends globalThis.EnumItem {
|
|
27350
|
+
Name: "RightElbow";
|
|
27351
|
+
Value: 13;
|
|
27352
|
+
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27353
|
+
}
|
|
27354
|
+
export const RightElbow: RightElbow;
|
|
27355
|
+
/**
|
|
27356
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#RightWrist)
|
|
27357
|
+
*/
|
|
27358
|
+
export interface RightWrist extends globalThis.EnumItem {
|
|
27359
|
+
Name: "RightWrist";
|
|
27360
|
+
Value: 14;
|
|
27361
|
+
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27362
|
+
}
|
|
27363
|
+
export const RightWrist: RightWrist;
|
|
27364
|
+
/**
|
|
27365
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#LeftHip)
|
|
27366
|
+
*/
|
|
27367
|
+
export interface LeftHip extends globalThis.EnumItem {
|
|
27368
|
+
Name: "LeftHip";
|
|
27369
|
+
Value: 15;
|
|
27370
|
+
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27371
|
+
}
|
|
27372
|
+
export const LeftHip: LeftHip;
|
|
27373
|
+
/**
|
|
27374
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#LeftKnee)
|
|
27375
|
+
*/
|
|
27376
|
+
export interface LeftKnee extends globalThis.EnumItem {
|
|
27377
|
+
Name: "LeftKnee";
|
|
27378
|
+
Value: 16;
|
|
27379
|
+
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27380
|
+
}
|
|
27381
|
+
export const LeftKnee: LeftKnee;
|
|
27382
|
+
/**
|
|
27383
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#LeftAnkle)
|
|
27384
|
+
*/
|
|
27385
|
+
export interface LeftAnkle extends globalThis.EnumItem {
|
|
27386
|
+
Name: "LeftAnkle";
|
|
27387
|
+
Value: 17;
|
|
27388
|
+
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27389
|
+
}
|
|
27390
|
+
export const LeftAnkle: LeftAnkle;
|
|
27391
|
+
/**
|
|
27392
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#LeftToes)
|
|
27393
|
+
*/
|
|
27394
|
+
export interface LeftToes extends globalThis.EnumItem {
|
|
27395
|
+
Name: "LeftToes";
|
|
27396
|
+
Value: 18;
|
|
27397
|
+
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27398
|
+
}
|
|
27399
|
+
export const LeftToes: LeftToes;
|
|
27400
|
+
/**
|
|
27401
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#RightHip)
|
|
27402
|
+
*/
|
|
27403
|
+
export interface RightHip extends globalThis.EnumItem {
|
|
27404
|
+
Name: "RightHip";
|
|
27405
|
+
Value: 19;
|
|
27406
|
+
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27407
|
+
}
|
|
27408
|
+
export const RightHip: RightHip;
|
|
27409
|
+
/**
|
|
27410
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#RightKnee)
|
|
27411
|
+
*/
|
|
27412
|
+
export interface RightKnee extends globalThis.EnumItem {
|
|
27413
|
+
Name: "RightKnee";
|
|
27414
|
+
Value: 20;
|
|
27415
|
+
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27416
|
+
}
|
|
27417
|
+
export const RightKnee: RightKnee;
|
|
27418
|
+
/**
|
|
27419
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#RightAnkle)
|
|
27420
|
+
*/
|
|
27421
|
+
export interface RightAnkle extends globalThis.EnumItem {
|
|
27422
|
+
Name: "RightAnkle";
|
|
27423
|
+
Value: 21;
|
|
27424
|
+
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27425
|
+
}
|
|
27426
|
+
export const RightAnkle: RightAnkle;
|
|
27427
|
+
/**
|
|
27428
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#RightToes)
|
|
27429
|
+
*/
|
|
27430
|
+
export interface RightToes extends globalThis.EnumItem {
|
|
27431
|
+
Name: "RightToes";
|
|
27432
|
+
Value: 22;
|
|
27433
|
+
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27434
|
+
}
|
|
27435
|
+
export const RightToes: RightToes;
|
|
27436
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.RigLabel>;
|
|
27437
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.RigLabel | undefined;
|
|
27438
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.RigLabel | undefined;
|
|
27439
|
+
}
|
|
27440
|
+
export type RigLabel = RigLabel.Invalid | RigLabel.Root | RigLabel.Pelvis | RigLabel.Waist | RigLabel.Chest | RigLabel.Neck | RigLabel.HeadBase | RigLabel.LeftClavicle | RigLabel.LeftShoulder | RigLabel.LeftElbow | RigLabel.LeftWrist | RigLabel.RightClavicle | RigLabel.RightShoulder | RigLabel.RightElbow | RigLabel.RightWrist | RigLabel.LeftHip | RigLabel.LeftKnee | RigLabel.LeftAnkle | RigLabel.LeftToes | RigLabel.RightHip | RigLabel.RightKnee | RigLabel.RightAnkle | RigLabel.RightToes;
|
|
26991
27441
|
/**
|
|
26992
27442
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigScale)
|
|
26993
27443
|
*/
|
|
@@ -36657,10 +37107,14 @@ declare namespace Enum {
|
|
|
36657
37107
|
}
|
|
36658
37108
|
export type VoiceControlPath = VoiceControlPath.Publish | VoiceControlPath.Subscribe | VoiceControlPath.Join;
|
|
36659
37109
|
/**
|
|
37110
|
+
* Enum used with `SoundService.VolumetricAudio`.
|
|
37111
|
+
*
|
|
36660
37112
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VolumetricAudio)
|
|
36661
37113
|
*/
|
|
36662
37114
|
export namespace VolumetricAudio {
|
|
36663
37115
|
/**
|
|
37116
|
+
* Volumetric audio is disabled.
|
|
37117
|
+
*
|
|
36664
37118
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VolumetricAudio#Disabled)
|
|
36665
37119
|
*/
|
|
36666
37120
|
export interface Disabled extends globalThis.EnumItem {
|
|
@@ -36670,6 +37124,8 @@ declare namespace Enum {
|
|
|
36670
37124
|
}
|
|
36671
37125
|
export const Disabled: Disabled;
|
|
36672
37126
|
/**
|
|
37127
|
+
* Volumetric audio is in the default state, currently `Disabled`.
|
|
37128
|
+
*
|
|
36673
37129
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VolumetricAudio#Automatic)
|
|
36674
37130
|
*/
|
|
36675
37131
|
export interface Automatic extends globalThis.EnumItem {
|
|
@@ -36679,6 +37135,8 @@ declare namespace Enum {
|
|
|
36679
37135
|
}
|
|
36680
37136
|
export const Automatic: Automatic;
|
|
36681
37137
|
/**
|
|
37138
|
+
* Volumetric audio is enabled.
|
|
37139
|
+
*
|
|
36682
37140
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VolumetricAudio#Enabled)
|
|
36683
37141
|
*/
|
|
36684
37142
|
export interface Enabled extends globalThis.EnumItem {
|