@rbxts/types 1.0.910 → 1.0.912
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 +428 -175
- package/include/generated/PluginSecurity.d.ts +77 -25
- package/include/generated/enums.d.ts +380 -59
- package/package.json +1 -1
|
@@ -12,6 +12,7 @@ interface Services {
|
|
|
12
12
|
AnimationFromVideoCreatorService: AnimationFromVideoCreatorService;
|
|
13
13
|
AnimationFromVideoCreatorStudioService: AnimationFromVideoCreatorStudioService;
|
|
14
14
|
AnnotationsService: AnnotationsService;
|
|
15
|
+
AppAgeSignalsService: AppAgeSignalsService;
|
|
15
16
|
AppLifecycleObserverService: AppLifecycleObserverService;
|
|
16
17
|
AppRatingPromptService: AppRatingPromptService;
|
|
17
18
|
AppUpdateService: AppUpdateService;
|
|
@@ -82,6 +83,7 @@ interface Services {
|
|
|
82
83
|
GenerationService: GenerationService;
|
|
83
84
|
GenericChallengeService: GenericChallengeService;
|
|
84
85
|
GeometryService: GeometryService;
|
|
86
|
+
GongService: GongService;
|
|
85
87
|
GroupService: GroupService;
|
|
86
88
|
GuiService: GuiService;
|
|
87
89
|
HapticService: HapticService;
|
|
@@ -706,6 +708,7 @@ interface Instances extends Services, CreatableInstances {
|
|
|
706
708
|
SyncScriptBuilder: SyncScriptBuilder;
|
|
707
709
|
TeleportAsyncResult: TeleportAsyncResult;
|
|
708
710
|
Terrain: Terrain;
|
|
711
|
+
TestCase: TestCase;
|
|
709
712
|
TextChatConfigurations: TextChatConfigurations;
|
|
710
713
|
TextChatMessage: TextChatMessage;
|
|
711
714
|
TextFilterResult: TextFilterResult;
|
|
@@ -732,7 +735,6 @@ interface Instances extends Services, CreatableInstances {
|
|
|
732
735
|
}
|
|
733
736
|
interface Objects extends Instances {
|
|
734
737
|
AnimationNode: AnimationNode;
|
|
735
|
-
AuroraHandle: AuroraHandle;
|
|
736
738
|
Capture: Capture;
|
|
737
739
|
ConfigSnapshot: ConfigSnapshot;
|
|
738
740
|
EditableImage: EditableImage;
|
|
@@ -740,6 +742,7 @@ interface Objects extends Instances {
|
|
|
740
742
|
ExecutedRemoteCommand: ExecutedRemoteCommand;
|
|
741
743
|
MLSession: MLSession;
|
|
742
744
|
Object: RBXObject;
|
|
745
|
+
OutputLink: OutputLink;
|
|
743
746
|
ScreenshotCapture: ScreenshotCapture;
|
|
744
747
|
TerrainIterateOperation: TerrainIterateOperation;
|
|
745
748
|
TerrainModifyOperation: TerrainModifyOperation;
|
|
@@ -823,35 +826,6 @@ interface AnimationNode extends RBXObject {
|
|
|
823
826
|
*/
|
|
824
827
|
readonly _nominal_AnimationNode: unique symbol;
|
|
825
828
|
}
|
|
826
|
-
/**
|
|
827
|
-
* - **Tags**: NotCreatable
|
|
828
|
-
*
|
|
829
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraHandle)
|
|
830
|
-
*
|
|
831
|
-
* @deprecated
|
|
832
|
-
*/
|
|
833
|
-
interface AuroraHandle extends RBXObject {
|
|
834
|
-
/**
|
|
835
|
-
* **DO NOT USE!**
|
|
836
|
-
*
|
|
837
|
-
* This field exists to force TypeScript to recognize this as a nominal type
|
|
838
|
-
* @hidden
|
|
839
|
-
* @deprecated
|
|
840
|
-
*/
|
|
841
|
-
readonly _nominal_AuroraHandle: unique symbol;
|
|
842
|
-
/**
|
|
843
|
-
* - **ThreadSafety**: Unsafe
|
|
844
|
-
*
|
|
845
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraHandle#Destroy)
|
|
846
|
-
*/
|
|
847
|
-
Destroy(this: AuroraHandle): void;
|
|
848
|
-
/**
|
|
849
|
-
* - **ThreadSafety**: Unsafe
|
|
850
|
-
*
|
|
851
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraHandle#ForEach)
|
|
852
|
-
*/
|
|
853
|
-
ForEach(this: AuroraHandle, iterator: Callback): void;
|
|
854
|
-
}
|
|
855
829
|
/**
|
|
856
830
|
* A class which defines a piece of content, such as a screenshot or video, taken in-experience.
|
|
857
831
|
*
|
|
@@ -2939,6 +2913,12 @@ interface AdService extends Instance {
|
|
|
2939
2913
|
* @param devProductId The ID of the developer product you want to grant as a reward.
|
|
2940
2914
|
*/
|
|
2941
2915
|
CreateAdRewardFromDevProductId(this: AdService, devProductId: number): AdReward;
|
|
2916
|
+
/**
|
|
2917
|
+
* - **ThreadSafety**: Unsafe
|
|
2918
|
+
*
|
|
2919
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AdService#RegisterDisclosureButton)
|
|
2920
|
+
*/
|
|
2921
|
+
RegisterDisclosureButton(this: AdService, disclosureButton: GuiButton, immersiveBrandedAdId: string): void;
|
|
2942
2922
|
/**
|
|
2943
2923
|
* **Deprecated:** `ShowVideoAd` has been decommissioned and is no longer operational.
|
|
2944
2924
|
*
|
|
@@ -2971,7 +2951,14 @@ interface AdService extends Instance {
|
|
|
2971
2951
|
* @param this A class that allows the display of mobile video ads.
|
|
2972
2952
|
* @param adFormat The format of the requested ad. For example, `RewardedVideo`.
|
|
2973
2953
|
*/
|
|
2974
|
-
GetAdAvailabilityNowAsync(this: AdService, adFormat: CastsToEnum<Enum.AdFormat>):
|
|
2954
|
+
GetAdAvailabilityNowAsync(this: AdService, adFormat: CastsToEnum<Enum.AdFormat>): object;
|
|
2955
|
+
/**
|
|
2956
|
+
* - **ThreadSafety**: Unsafe
|
|
2957
|
+
* - **Tags**: Yields
|
|
2958
|
+
*
|
|
2959
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AdService#GetCampaignEligibilityAsync)
|
|
2960
|
+
*/
|
|
2961
|
+
GetCampaignEligibilityAsync(this: AdService, campaignId: string, player?: Player): object;
|
|
2975
2962
|
/**
|
|
2976
2963
|
* Tracks how many times a user had the chance to watch a video ad and the rate at which they actually watched the ad.
|
|
2977
2964
|
*
|
|
@@ -3012,7 +2999,7 @@ interface AdService extends Instance {
|
|
|
3012
2999
|
readonly VideoAdClosed: RBXScriptSignal<(adShown: boolean) => void>;
|
|
3013
3000
|
}
|
|
3014
3001
|
/**
|
|
3015
|
-
* Collection of methods that allows
|
|
3002
|
+
* Collection of methods that allows you to track how users interact with your experiences.
|
|
3016
3003
|
*
|
|
3017
3004
|
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
3018
3005
|
*
|
|
@@ -3028,7 +3015,7 @@ interface AnalyticsService extends Instance {
|
|
|
3028
3015
|
*/
|
|
3029
3016
|
readonly _nominal_AnalyticsService: unique symbol;
|
|
3030
3017
|
/**
|
|
3031
|
-
* **Deprecated:**
|
|
3018
|
+
* **Deprecated:** This deprecated function is a variant of `AnalyticsService:LogCustomEvent()` which should be used instead.
|
|
3032
3019
|
*
|
|
3033
3020
|
* Fires a custom event with a custom event name and data.
|
|
3034
3021
|
*
|
|
@@ -3036,7 +3023,7 @@ interface AnalyticsService extends Instance {
|
|
|
3036
3023
|
* - **Tags**:
|
|
3037
3024
|
*
|
|
3038
3025
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnalyticsService#FireCustomEvent)
|
|
3039
|
-
* @param this Collection of methods that allows
|
|
3026
|
+
* @param this Collection of methods that allows you to track how users interact with your experiences.
|
|
3040
3027
|
* @param player The player who triggered the custom event. `nil` if not player related.
|
|
3041
3028
|
* @param eventCategory User defined category. This should be the name of the event.
|
|
3042
3029
|
* @param customData Optional. User defined data, could be a string, a number or a table.
|
|
@@ -3045,20 +3032,15 @@ interface AnalyticsService extends Instance {
|
|
|
3045
3032
|
*/
|
|
3046
3033
|
FireCustomEvent(this: AnalyticsService, player: Player | undefined, eventCategory: string, customData?: unknown): void;
|
|
3047
3034
|
/**
|
|
3048
|
-
* **Deprecated:** This function has been deprecated in favor of more descriptive methods, including:
|
|
3049
|
-
* - `AnalyticsService:FireInGameEconomyEvent()`
|
|
3050
|
-
* - `AnalyticsService:FireLogEvent()`
|
|
3051
|
-
* - `AnalyticsService:FirePlayerProgressionEvent()`
|
|
3035
|
+
* **Deprecated:** This function has been deprecated in favor of more descriptive methods, including `AnalyticsService:LogCustomEvent()`, `AnalyticsService:LogEconomyEvent()`, and `AnalyticsService:LogProgressionEvent()`.
|
|
3052
3036
|
*
|
|
3053
3037
|
* Report a custom event to PlayFab.
|
|
3054
3038
|
*
|
|
3055
|
-
*
|
|
3056
|
-
*
|
|
3057
3039
|
* - **ThreadSafety**: Unsafe
|
|
3058
3040
|
* - **Tags**:
|
|
3059
3041
|
*
|
|
3060
3042
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnalyticsService#FireEvent)
|
|
3061
|
-
* @param this Collection of methods that allows
|
|
3043
|
+
* @param this Collection of methods that allows you to track how users interact with your experiences.
|
|
3062
3044
|
* @param category 'The category of event to report. Cannot contain the following characters: comma `,`, double quote `"` or newline characters `\r\n`'.
|
|
3063
3045
|
* @param value A value to be serialized and reported. Serialized length must not exceed 1 KiB, or 1024 bytes.
|
|
3064
3046
|
*
|
|
@@ -3066,7 +3048,7 @@ interface AnalyticsService extends Instance {
|
|
|
3066
3048
|
*/
|
|
3067
3049
|
FireEvent(this: AnalyticsService, category: string, value: unknown): void;
|
|
3068
3050
|
/**
|
|
3069
|
-
* **Deprecated:**
|
|
3051
|
+
* **Deprecated:** This deprecated function is a variant of `AnalyticsService:LogEconomyEvent()` which should be used instead.
|
|
3070
3052
|
*
|
|
3071
3053
|
* Fire an event used to track player actions pertaining to the in-game economy.
|
|
3072
3054
|
*
|
|
@@ -3074,7 +3056,7 @@ interface AnalyticsService extends Instance {
|
|
|
3074
3056
|
* - **Tags**:
|
|
3075
3057
|
*
|
|
3076
3058
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnalyticsService#FireInGameEconomyEvent)
|
|
3077
|
-
* @param this Collection of methods that allows
|
|
3059
|
+
* @param this Collection of methods that allows you to track how users interact with your experiences.
|
|
3078
3060
|
* @param player The player who triggered the economy event.
|
|
3079
3061
|
* @param itemName The name of the item.
|
|
3080
3062
|
* @param economyAction Indicates the acquisition or spending of an in game resource.
|
|
@@ -3101,14 +3083,11 @@ interface AnalyticsService extends Instance {
|
|
|
3101
3083
|
* - **Tags**:
|
|
3102
3084
|
*
|
|
3103
3085
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnalyticsService#FireLogEvent)
|
|
3104
|
-
* @param this Collection of methods that allows
|
|
3086
|
+
* @param this Collection of methods that allows you to track how users interact with your experiences.
|
|
3105
3087
|
* @param player The player who triggered the error event, `nil` if not player related.
|
|
3106
3088
|
* @param logLevel The specified log level (e.g. Debug, Error).
|
|
3107
3089
|
* @param message User defined message.
|
|
3108
3090
|
* @param debugInfo Optional. A dictionary which contains predefined keys including "errorCode" and "stackTrace". Both keys values are strings. stackTrace is a traceback of the current function call stack.
|
|
3109
|
-
* ```lua
|
|
3110
|
-
* local debugInfo = { errorCode = '123', stackTrace = debug.traceback() }
|
|
3111
|
-
* ```
|
|
3112
3091
|
* @param customData Optional. User defined data, could be a string, a number or a table.
|
|
3113
3092
|
*
|
|
3114
3093
|
* @deprecated
|
|
@@ -3118,7 +3097,7 @@ interface AnalyticsService extends Instance {
|
|
|
3118
3097
|
stackTrace?: string;
|
|
3119
3098
|
}, customData?: unknown): void;
|
|
3120
3099
|
/**
|
|
3121
|
-
* **Deprecated:**
|
|
3100
|
+
* **Deprecated:** This deprecated function is a variant of `AnalyticsService:LogProgressionEvent()` which should be used instead.
|
|
3122
3101
|
*
|
|
3123
3102
|
* Fire an event used to track player progression through the game.
|
|
3124
3103
|
*
|
|
@@ -3126,18 +3105,12 @@ interface AnalyticsService extends Instance {
|
|
|
3126
3105
|
* - **Tags**:
|
|
3127
3106
|
*
|
|
3128
3107
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnalyticsService#FirePlayerProgressionEvent)
|
|
3129
|
-
* @param this Collection of methods that allows
|
|
3108
|
+
* @param this Collection of methods that allows you to track how users interact with your experiences.
|
|
3130
3109
|
* @param player The player who triggered the event.
|
|
3131
3110
|
* @param category A user defined category for progression.
|
|
3132
3111
|
* @param progressionStatus Indicates the status of the progression.
|
|
3133
3112
|
* @param location The event location. A dictionary that each key-value represents an entry of location data. The key-value is a string-string pair. With this developers can query where is the most frequent location for a specific progression event category. For example, the category could be "LevelUp".
|
|
3134
|
-
* ```lua
|
|
3135
|
-
* local location = { ["placeDesc"] = "Dungeon1", ["levelDesc"] = "level2", ["mapDesc"] = "LeftChamberMap", ["ProgresionType"] = "LevelUp", ["userDefinedKey5"] = "0005" }
|
|
3136
|
-
* ```
|
|
3137
3113
|
* @param statistics Optional. A dictionary that each key-value represents an entry of statistics data that allows developers to track any specific data that they want to collect as players progress through their game. Key-Value is a string-number pair.
|
|
3138
|
-
* ```lua
|
|
3139
|
-
* local statistics = { ["numberOfKills"] = 111, ["numberOfExp"] = 222, ["userDefinedKey3"] = number, ["userDefinedKey4"] = number, ["userDefinedKey5"] = number }
|
|
3140
|
-
* ```
|
|
3141
3114
|
* @param customData Optional. User defined data, could be a string, a number or a table.
|
|
3142
3115
|
*
|
|
3143
3116
|
* @deprecated
|
|
@@ -3159,7 +3132,7 @@ interface AnalyticsService extends Instance {
|
|
|
3159
3132
|
* - **ThreadSafety**: Unsafe
|
|
3160
3133
|
*
|
|
3161
3134
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnalyticsService#LogCustomEvent)
|
|
3162
|
-
* @param this Collection of methods that allows
|
|
3135
|
+
* @param this Collection of methods that allows you to track how users interact with your experiences.
|
|
3163
3136
|
* @param player The user who triggered the event.
|
|
3164
3137
|
* @param eventName The name of the custom event.
|
|
3165
3138
|
* @param value The value of the event that will be used in aggregation.
|
|
@@ -3172,7 +3145,7 @@ interface AnalyticsService extends Instance {
|
|
|
3172
3145
|
* - **ThreadSafety**: Unsafe
|
|
3173
3146
|
*
|
|
3174
3147
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnalyticsService#LogEconomyEvent)
|
|
3175
|
-
* @param this Collection of methods that allows
|
|
3148
|
+
* @param this Collection of methods that allows you to track how users interact with your experiences.
|
|
3176
3149
|
* @param player The user who triggered the event.
|
|
3177
3150
|
* @param flowType Should specify the direction that currency is flowing using `AnalyticsEconomyFlowType`.
|
|
3178
3151
|
* @param currencyType The name of the currency being added or removed, for example `"gold"`, `"gems"`, or `"energy"`. Limited to 5 unique currency types per experience.
|
|
@@ -3189,7 +3162,7 @@ interface AnalyticsService extends Instance {
|
|
|
3189
3162
|
* - **ThreadSafety**: Unsafe
|
|
3190
3163
|
*
|
|
3191
3164
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnalyticsService#LogFunnelStepEvent)
|
|
3192
|
-
* @param this Collection of methods that allows
|
|
3165
|
+
* @param this Collection of methods that allows you to track how users interact with your experiences.
|
|
3193
3166
|
* @param player The user who triggered the event.
|
|
3194
3167
|
* @param funnelName The name of the funnel. This should be the same for all steps in the funnel. Limited to 10 unique funnels per experience.
|
|
3195
3168
|
* @param funnelSessionId Optional unique identifier for the funnel session. This should be the same for all steps in the funnel. Note that this field is only necessary for **recurring** funnels, for example a purchase flow funnel or an item upgrade funnel. If you don't have a natural funnel session identifier, it's recommended to use `HttpService:GenerateGUID()`.
|
|
@@ -3204,7 +3177,7 @@ interface AnalyticsService extends Instance {
|
|
|
3204
3177
|
* - **ThreadSafety**: Unsafe
|
|
3205
3178
|
*
|
|
3206
3179
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnalyticsService#LogOnboardingFunnelStepEvent)
|
|
3207
|
-
* @param this Collection of methods that allows
|
|
3180
|
+
* @param this Collection of methods that allows you to track how users interact with your experiences.
|
|
3208
3181
|
* @param player The user who triggered the event.
|
|
3209
3182
|
* @param step The step number in the funnel. This should be unique for each step in the funnel. All funnels start at step 1. Limited to steps 1-100. Note that if any steps are skipped, the intermediate steps will be considered completed.
|
|
3210
3183
|
* @param stepName Optional name of the step in the funnel. This field is only used for display purposes in Roblox-provided charts.
|
|
@@ -3217,7 +3190,7 @@ interface AnalyticsService extends Instance {
|
|
|
3217
3190
|
* - **ThreadSafety**: Unsafe
|
|
3218
3191
|
*
|
|
3219
3192
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnalyticsService#LogProgressionCompleteEvent)
|
|
3220
|
-
* @param this Collection of methods that allows
|
|
3193
|
+
* @param this Collection of methods that allows you to track how users interact with your experiences.
|
|
3221
3194
|
* @param player The player who triggered the event.
|
|
3222
3195
|
* @param progressionPathName
|
|
3223
3196
|
* @param level
|
|
@@ -3231,7 +3204,7 @@ interface AnalyticsService extends Instance {
|
|
|
3231
3204
|
* - **ThreadSafety**: Unsafe
|
|
3232
3205
|
*
|
|
3233
3206
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnalyticsService#LogProgressionEvent)
|
|
3234
|
-
* @param this Collection of methods that allows
|
|
3207
|
+
* @param this Collection of methods that allows you to track how users interact with your experiences.
|
|
3235
3208
|
* @param player The player who triggered the event.
|
|
3236
3209
|
* @param progressionPathName
|
|
3237
3210
|
* @param status
|
|
@@ -3246,7 +3219,7 @@ interface AnalyticsService extends Instance {
|
|
|
3246
3219
|
* - **ThreadSafety**: Unsafe
|
|
3247
3220
|
*
|
|
3248
3221
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnalyticsService#LogProgressionFailEvent)
|
|
3249
|
-
* @param this Collection of methods that allows
|
|
3222
|
+
* @param this Collection of methods that allows you to track how users interact with your experiences.
|
|
3250
3223
|
* @param player The user who triggered the event.
|
|
3251
3224
|
* @param progressionPathName
|
|
3252
3225
|
* @param level
|
|
@@ -3260,7 +3233,7 @@ interface AnalyticsService extends Instance {
|
|
|
3260
3233
|
* - **ThreadSafety**: Unsafe
|
|
3261
3234
|
*
|
|
3262
3235
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnalyticsService#LogProgressionStartEvent)
|
|
3263
|
-
* @param this Collection of methods that allows
|
|
3236
|
+
* @param this Collection of methods that allows you to track how users interact with your experiences.
|
|
3264
3237
|
* @param player The player who triggered the event.
|
|
3265
3238
|
* @param progressionPathName
|
|
3266
3239
|
* @param level
|
|
@@ -3268,6 +3241,13 @@ interface AnalyticsService extends Instance {
|
|
|
3268
3241
|
* @param customFields
|
|
3269
3242
|
*/
|
|
3270
3243
|
LogProgressionStartEvent(this: AnalyticsService, player: Player, progressionPathName: string, level: number, levelName?: string, customFields?: object): void;
|
|
3244
|
+
/**
|
|
3245
|
+
* - **ThreadSafety**: Unsafe
|
|
3246
|
+
* - **Tags**: Yields
|
|
3247
|
+
*
|
|
3248
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnalyticsService#GetPlayerSegmentsAsync)
|
|
3249
|
+
*/
|
|
3250
|
+
GetPlayerSegmentsAsync(this: AnalyticsService, player: Player): object;
|
|
3271
3251
|
}
|
|
3272
3252
|
/**
|
|
3273
3253
|
* References an animation asset which can be loaded by an `AnimationController`.
|
|
@@ -4038,6 +4018,21 @@ interface AnnotationsService extends Instance {
|
|
|
4038
4018
|
*/
|
|
4039
4019
|
readonly _nominal_AnnotationsService: unique symbol;
|
|
4040
4020
|
}
|
|
4021
|
+
/**
|
|
4022
|
+
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
4023
|
+
*
|
|
4024
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AppAgeSignalsService)
|
|
4025
|
+
*/
|
|
4026
|
+
interface AppAgeSignalsService extends Instance {
|
|
4027
|
+
/**
|
|
4028
|
+
* **DO NOT USE!**
|
|
4029
|
+
*
|
|
4030
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
4031
|
+
* @hidden
|
|
4032
|
+
* @deprecated
|
|
4033
|
+
*/
|
|
4034
|
+
readonly _nominal_AppAgeSignalsService: unique symbol;
|
|
4035
|
+
}
|
|
4041
4036
|
/**
|
|
4042
4037
|
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
4043
4038
|
*
|
|
@@ -4308,6 +4303,13 @@ interface AssetService extends Instance {
|
|
|
4308
4303
|
* @returns The `CreateAssetResult` and asset version number pair if successful.
|
|
4309
4304
|
*/
|
|
4310
4305
|
CreateAssetVersionAsync(this: AssetService, object: RBXObject, assetType: CastsToEnum<Enum.AssetType>, assetId: number, requestParameters?: object): unknown;
|
|
4306
|
+
/**
|
|
4307
|
+
* - **ThreadSafety**: Unsafe
|
|
4308
|
+
* - **Tags**: Yields
|
|
4309
|
+
*
|
|
4310
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AssetService#CreateDataModelContentAsync)
|
|
4311
|
+
*/
|
|
4312
|
+
CreateDataModelContentAsync(this: AssetService, content: Content, options?: object): unknown;
|
|
4311
4313
|
/**
|
|
4312
4314
|
* Creates a new `EditableImage` object populated with the given image.
|
|
4313
4315
|
*
|
|
@@ -4914,6 +4916,8 @@ interface AudioAnalyzer extends Instance {
|
|
|
4914
4916
|
*/
|
|
4915
4917
|
SpectrumEnabled: boolean;
|
|
4916
4918
|
/**
|
|
4919
|
+
* Controls the resolution and timeliness of `GetSpectrum`.
|
|
4920
|
+
*
|
|
4917
4921
|
* - **ThreadSafety**: ReadSafe
|
|
4918
4922
|
*
|
|
4919
4923
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioAnalyzer#WindowSize)
|
|
@@ -4958,6 +4962,7 @@ interface AudioAnalyzer extends Instance {
|
|
|
4958
4962
|
*
|
|
4959
4963
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioAnalyzer#GetSpectrum)
|
|
4960
4964
|
* @param this Takes measurements from audio streams that are connected to it via one or more `Wires`.
|
|
4965
|
+
* @returns A table of numbers representing the amplitude levels of various frequencies of audio within the last buffer, or an empty table if a spectrum cannot be obtained.
|
|
4961
4966
|
*/
|
|
4962
4967
|
GetSpectrum(this: AudioAnalyzer): Array<number>;
|
|
4963
4968
|
/**
|
|
@@ -5573,6 +5578,8 @@ interface AudioEcho extends Instance {
|
|
|
5573
5578
|
*/
|
|
5574
5579
|
Feedback: number;
|
|
5575
5580
|
/**
|
|
5581
|
+
* The time taken to interpolate between `DelayTime` values.
|
|
5582
|
+
*
|
|
5576
5583
|
* - **ThreadSafety**: ReadSafe
|
|
5577
5584
|
*
|
|
5578
5585
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioEcho#RampTime)
|
|
@@ -5641,6 +5648,8 @@ interface AudioEmitter extends Instance {
|
|
|
5641
5648
|
*/
|
|
5642
5649
|
readonly _nominal_AudioEmitter: unique symbol;
|
|
5643
5650
|
/**
|
|
5651
|
+
* Determines whether acoustic simulation should be used for this `AudioEmitter`.
|
|
5652
|
+
*
|
|
5644
5653
|
* - **ThreadSafety**: ReadSafe
|
|
5645
5654
|
*
|
|
5646
5655
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioEmitter#AcousticSimulationEnabled)
|
|
@@ -6140,6 +6149,8 @@ interface AudioFocusService extends Instance {
|
|
|
6140
6149
|
readonly _nominal_AudioFocusService: unique symbol;
|
|
6141
6150
|
}
|
|
6142
6151
|
/**
|
|
6152
|
+
* Mutes audio streams that fall below a certain volume threshold.
|
|
6153
|
+
*
|
|
6143
6154
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioGate)
|
|
6144
6155
|
*/
|
|
6145
6156
|
interface AudioGate extends Instance {
|
|
@@ -6152,24 +6163,32 @@ interface AudioGate extends Instance {
|
|
|
6152
6163
|
*/
|
|
6153
6164
|
readonly _nominal_AudioGate: unique symbol;
|
|
6154
6165
|
/**
|
|
6166
|
+
* Controls how long it takes for the gate to open when the signal level rises above the `Threshold`.
|
|
6167
|
+
*
|
|
6155
6168
|
* - **ThreadSafety**: ReadSafe
|
|
6156
6169
|
*
|
|
6157
6170
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioGate#Attack)
|
|
6158
6171
|
*/
|
|
6159
6172
|
Attack: number;
|
|
6160
6173
|
/**
|
|
6174
|
+
* Whether audio streams are passed-through unaffected by this effect.
|
|
6175
|
+
*
|
|
6161
6176
|
* - **ThreadSafety**: ReadSafe
|
|
6162
6177
|
*
|
|
6163
6178
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioGate#Bypass)
|
|
6164
6179
|
*/
|
|
6165
6180
|
Bypass: boolean;
|
|
6166
6181
|
/**
|
|
6182
|
+
* Controls how long it takes for the gate to close when the signal level drops below the `Threshold`.
|
|
6183
|
+
*
|
|
6167
6184
|
* - **ThreadSafety**: ReadSafe
|
|
6168
6185
|
*
|
|
6169
6186
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioGate#Release)
|
|
6170
6187
|
*/
|
|
6171
6188
|
Release: number;
|
|
6172
6189
|
/**
|
|
6190
|
+
* The gain value(s) around which the gate opens and closes.
|
|
6191
|
+
*
|
|
6173
6192
|
* - **ThreadSafety**: ReadSafe
|
|
6174
6193
|
*
|
|
6175
6194
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioGate#Threshold)
|
|
@@ -6181,7 +6200,7 @@ interface AudioGate extends Instance {
|
|
|
6181
6200
|
* - **ThreadSafety**: Unsafe
|
|
6182
6201
|
*
|
|
6183
6202
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioGate#GetConnectedWires)
|
|
6184
|
-
* @param this
|
|
6203
|
+
* @param this Mutes audio streams that fall below a certain volume threshold.
|
|
6185
6204
|
* @param pin An input or output pin on this instance
|
|
6186
6205
|
* @returns An array of `Wires`
|
|
6187
6206
|
*/
|
|
@@ -6192,7 +6211,7 @@ interface AudioGate extends Instance {
|
|
|
6192
6211
|
* - **ThreadSafety**: Unsafe
|
|
6193
6212
|
*
|
|
6194
6213
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioGate#GetInputPins)
|
|
6195
|
-
* @param this
|
|
6214
|
+
* @param this Mutes audio streams that fall below a certain volume threshold.
|
|
6196
6215
|
* @returns An array of strings representing valid pin names.
|
|
6197
6216
|
*/
|
|
6198
6217
|
GetInputPins(this: AudioGate): Array<unknown>;
|
|
@@ -6202,12 +6221,12 @@ interface AudioGate extends Instance {
|
|
|
6202
6221
|
* - **ThreadSafety**: Unsafe
|
|
6203
6222
|
*
|
|
6204
6223
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioGate#GetOutputPins)
|
|
6205
|
-
* @param this
|
|
6224
|
+
* @param this Mutes audio streams that fall below a certain volume threshold.
|
|
6206
6225
|
* @returns An array of strings representing valid pin names.
|
|
6207
6226
|
*/
|
|
6208
6227
|
GetOutputPins(this: AudioGate): Array<unknown>;
|
|
6209
6228
|
/**
|
|
6210
|
-
* Fires when another instance is connected to or disconnected from the `
|
|
6229
|
+
* Fires when another instance is connected to or disconnected from the `AudioGate` via a `Wire`.
|
|
6211
6230
|
*
|
|
6212
6231
|
* - **ThreadSafety**: Unsafe
|
|
6213
6232
|
*
|
|
@@ -6308,6 +6327,8 @@ interface AudioListener extends Instance {
|
|
|
6308
6327
|
*/
|
|
6309
6328
|
readonly _nominal_AudioListener: unique symbol;
|
|
6310
6329
|
/**
|
|
6330
|
+
* Determines whether acoustic simulation should be used for this `AudioListener`.
|
|
6331
|
+
*
|
|
6311
6332
|
* - **ThreadSafety**: ReadSafe
|
|
6312
6333
|
*
|
|
6313
6334
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioListener#AcousticSimulationEnabled)
|
|
@@ -6467,6 +6488,8 @@ interface AudioPitchShifter extends Instance {
|
|
|
6467
6488
|
*/
|
|
6468
6489
|
Pitch: number;
|
|
6469
6490
|
/**
|
|
6491
|
+
* Controls how much audio will be buffered and shifted at once.
|
|
6492
|
+
*
|
|
6470
6493
|
* - **ThreadSafety**: ReadSafe
|
|
6471
6494
|
*
|
|
6472
6495
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioPitchShifter#WindowSize)
|
|
@@ -6548,6 +6571,8 @@ interface AudioPlayer extends Instance {
|
|
|
6548
6571
|
*/
|
|
6549
6572
|
AssetId: string;
|
|
6550
6573
|
/**
|
|
6574
|
+
* The audio content to be loaded into the `AudioPlayer`.
|
|
6575
|
+
*
|
|
6551
6576
|
* - **ThreadSafety**: ReadSafe
|
|
6552
6577
|
* - **Tags**: Hidden
|
|
6553
6578
|
*
|
|
@@ -6694,13 +6719,16 @@ interface AudioPlayer extends Instance {
|
|
|
6694
6719
|
*/
|
|
6695
6720
|
Stop(this: AudioPlayer): void;
|
|
6696
6721
|
/**
|
|
6722
|
+
* Returns a sampling of the waveform data for the loaded `Asset`.
|
|
6723
|
+
*
|
|
6697
6724
|
* - **ThreadSafety**: Unsafe
|
|
6698
6725
|
* - **Tags**: Yields
|
|
6699
6726
|
*
|
|
6700
6727
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioPlayer#GetWaveformAsync)
|
|
6701
6728
|
* @param this Used to play audio assets.
|
|
6702
|
-
* @param timeRange
|
|
6703
|
-
* @param samples
|
|
6729
|
+
* @param timeRange The start and end time (in seconds) of the segment to read.
|
|
6730
|
+
* @param samples The number of samples to return for the specified range.
|
|
6731
|
+
* @returns A table of `samples` numbers ranging between -1 and 1 representing the sampled waveform, or an empty table if a waveform could not be read.
|
|
6704
6732
|
*/
|
|
6705
6733
|
GetWaveformAsync(this: AudioPlayer, timeRange: NumberRange, samples: number): Array<unknown>;
|
|
6706
6734
|
/**
|
|
@@ -6745,12 +6773,16 @@ interface AudioRecorder extends Instance {
|
|
|
6745
6773
|
*/
|
|
6746
6774
|
readonly _nominal_AudioRecorder: unique symbol;
|
|
6747
6775
|
/**
|
|
6776
|
+
* Whether the `AudioRecorder` is currently recording.
|
|
6777
|
+
*
|
|
6748
6778
|
* - **ThreadSafety**: ReadSafe
|
|
6749
6779
|
*
|
|
6750
6780
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#IsRecording)
|
|
6751
6781
|
*/
|
|
6752
6782
|
get IsRecording(): boolean;
|
|
6753
6783
|
/**
|
|
6784
|
+
* The current length of the recording in seconds.
|
|
6785
|
+
*
|
|
6754
6786
|
* - **ThreadSafety**: ReadSafe
|
|
6755
6787
|
* - **Tags**: NotReplicated
|
|
6756
6788
|
*
|
|
@@ -6758,6 +6790,8 @@ interface AudioRecorder extends Instance {
|
|
|
6758
6790
|
*/
|
|
6759
6791
|
readonly TimeLength: number;
|
|
6760
6792
|
/**
|
|
6793
|
+
* Clears out the recording from the `AudioRecorder`.
|
|
6794
|
+
*
|
|
6761
6795
|
* - **ThreadSafety**: Unsafe
|
|
6762
6796
|
*
|
|
6763
6797
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#Clear)
|
|
@@ -6796,13 +6830,18 @@ interface AudioRecorder extends Instance {
|
|
|
6796
6830
|
*/
|
|
6797
6831
|
GetOutputPins(this: AudioRecorder): Array<unknown>;
|
|
6798
6832
|
/**
|
|
6833
|
+
* Returns a `Content` object representing the current audio recording.
|
|
6834
|
+
*
|
|
6799
6835
|
* - **ThreadSafety**: Unsafe
|
|
6800
6836
|
*
|
|
6801
6837
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#GetTemporaryContent)
|
|
6802
6838
|
* @param this Records audio streams in-experience.
|
|
6839
|
+
* @returns A temporary `Content` ID that can be used with `AudioPlayer`.
|
|
6803
6840
|
*/
|
|
6804
6841
|
GetTemporaryContent(this: AudioRecorder): Content;
|
|
6805
6842
|
/**
|
|
6843
|
+
* Stops recording audio.
|
|
6844
|
+
*
|
|
6806
6845
|
* - **ThreadSafety**: Unsafe
|
|
6807
6846
|
*
|
|
6808
6847
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#Stop)
|
|
@@ -6810,22 +6849,30 @@ interface AudioRecorder extends Instance {
|
|
|
6810
6849
|
*/
|
|
6811
6850
|
Stop(this: AudioRecorder): void;
|
|
6812
6851
|
/**
|
|
6852
|
+
* Returns whether the `AudioRecorder` can currently record.
|
|
6853
|
+
*
|
|
6813
6854
|
* - **ThreadSafety**: Unsafe
|
|
6814
6855
|
* - **Tags**: Yields
|
|
6815
6856
|
*
|
|
6816
6857
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#CanRecordAsync)
|
|
6817
6858
|
* @param this Records audio streams in-experience.
|
|
6859
|
+
* @returns `true` if recording is possible, `false` otherwise.
|
|
6818
6860
|
*/
|
|
6819
6861
|
CanRecordAsync(this: AudioRecorder): boolean;
|
|
6820
6862
|
/**
|
|
6863
|
+
* Returns any instances which cannot be recorded.
|
|
6864
|
+
*
|
|
6821
6865
|
* - **ThreadSafety**: Unsafe
|
|
6822
6866
|
* - **Tags**: Yields
|
|
6823
6867
|
*
|
|
6824
6868
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#GetUnrecordableInstancesAsync)
|
|
6825
6869
|
* @param this Records audio streams in-experience.
|
|
6870
|
+
* @returns A table of `Instances` that are not recordable.
|
|
6826
6871
|
*/
|
|
6827
6872
|
GetUnrecordableInstancesAsync(this: AudioRecorder): Array<Instance>;
|
|
6828
6873
|
/**
|
|
6874
|
+
* Starts recording audio.
|
|
6875
|
+
*
|
|
6829
6876
|
* - **ThreadSafety**: Unsafe
|
|
6830
6877
|
* - **Tags**: Yields
|
|
6831
6878
|
*
|
|
@@ -6834,7 +6881,7 @@ interface AudioRecorder extends Instance {
|
|
|
6834
6881
|
*/
|
|
6835
6882
|
RecordAsync(this: AudioRecorder): void;
|
|
6836
6883
|
/**
|
|
6837
|
-
* Fires when another instance is connected to or disconnected from the `
|
|
6884
|
+
* Fires when another instance is connected to or disconnected from the `AudioRecorder` via a `Wire`.
|
|
6838
6885
|
*
|
|
6839
6886
|
* - **ThreadSafety**: Unsafe
|
|
6840
6887
|
*
|
|
@@ -7033,6 +7080,8 @@ interface AudioSearchParams extends Instance {
|
|
|
7033
7080
|
*/
|
|
7034
7081
|
Artist: string;
|
|
7035
7082
|
/**
|
|
7083
|
+
* The subtype of the audio asset.
|
|
7084
|
+
*
|
|
7036
7085
|
* - **ThreadSafety**: ReadSafe
|
|
7037
7086
|
*
|
|
7038
7087
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioSearchParams#AudioSubType)
|
|
@@ -7294,13 +7343,16 @@ interface AudioTextToSpeech extends Instance {
|
|
|
7294
7343
|
*/
|
|
7295
7344
|
Unload(this: AudioTextToSpeech): void;
|
|
7296
7345
|
/**
|
|
7346
|
+
* Returns a sampling of the waveform data for the generated audio.
|
|
7347
|
+
*
|
|
7297
7348
|
* - **ThreadSafety**: Unsafe
|
|
7298
7349
|
* - **Tags**: Yields
|
|
7299
7350
|
*
|
|
7300
7351
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#GetWaveformAsync)
|
|
7301
7352
|
* @param this Plays text as speech audio.
|
|
7302
|
-
* @param timeRange
|
|
7303
|
-
* @param samples
|
|
7353
|
+
* @param timeRange The start and end time (in seconds) of the segment to read.
|
|
7354
|
+
* @param samples The number of samples to return for the specified range.
|
|
7355
|
+
* @returns A table of `samples` numbers ranging between -1 and 1 representing the sampled waveform,
|
|
7304
7356
|
*/
|
|
7305
7357
|
GetWaveformAsync(this: AudioTextToSpeech, timeRange: NumberRange, samples: number): Array<unknown>;
|
|
7306
7358
|
/**
|
|
@@ -7353,6 +7405,8 @@ interface AudioTremolo extends Instance {
|
|
|
7353
7405
|
*/
|
|
7354
7406
|
readonly _nominal_AudioTremolo: unique symbol;
|
|
7355
7407
|
/**
|
|
7408
|
+
* Whether audio streams are passed-through unaffected by this effect.
|
|
7409
|
+
*
|
|
7356
7410
|
* - **ThreadSafety**: ReadSafe
|
|
7357
7411
|
*
|
|
7358
7412
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTremolo#Bypass)
|
|
@@ -7438,7 +7492,7 @@ interface AudioTremolo extends Instance {
|
|
|
7438
7492
|
*/
|
|
7439
7493
|
GetOutputPins(this: AudioTremolo): Array<unknown>;
|
|
7440
7494
|
/**
|
|
7441
|
-
* Fires when another instance is connected to or disconnected from the `
|
|
7495
|
+
* Fires when another instance is connected to or disconnected from the `AudioTremolo` via a `Wire`.
|
|
7442
7496
|
*
|
|
7443
7497
|
* - **ThreadSafety**: Unsafe
|
|
7444
7498
|
*
|
|
@@ -7502,7 +7556,7 @@ interface AuroraScriptService extends Instance {
|
|
|
7502
7556
|
*
|
|
7503
7557
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScriptService#CreateCollection)
|
|
7504
7558
|
*/
|
|
7505
|
-
CreateCollection(this: AuroraScriptService, query: string, root?: Instance):
|
|
7559
|
+
CreateCollection(this: AuroraScriptService, query: string, root?: Instance): CollectionHandle;
|
|
7506
7560
|
/**
|
|
7507
7561
|
* - **ThreadSafety**: Safe
|
|
7508
7562
|
* - **Tags**: CustomLuaState
|
|
@@ -7684,12 +7738,6 @@ interface AuroraService extends Instance {
|
|
|
7684
7738
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraService#Misprediction)
|
|
7685
7739
|
*/
|
|
7686
7740
|
readonly Misprediction: RBXScriptSignal<(remoteWorldStepId: number, mispredictedInstances: Array<unknown>) => void>;
|
|
7687
|
-
/**
|
|
7688
|
-
* - **ThreadSafety**: Unsafe
|
|
7689
|
-
*
|
|
7690
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraService#Rollback)
|
|
7691
|
-
*/
|
|
7692
|
-
readonly Rollback: RBXScriptSignal<(worldStepId: number) => void>;
|
|
7693
7741
|
/**
|
|
7694
7742
|
* - **ThreadSafety**: Unsafe
|
|
7695
7743
|
*
|
|
@@ -8023,7 +8071,7 @@ interface AvatarCreationService extends Instance {
|
|
|
8023
8071
|
/**
|
|
8024
8072
|
* A service to support developer Avatar Editors.
|
|
8025
8073
|
*
|
|
8026
|
-
* - **Tags**: NotCreatable, Service
|
|
8074
|
+
* - **Tags**: NotCreatable, Service
|
|
8027
8075
|
*
|
|
8028
8076
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarEditorService)
|
|
8029
8077
|
*/
|
|
@@ -9245,6 +9293,12 @@ interface RootImportData extends BaseImportData {
|
|
|
9245
9293
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RootImportData#RigVisualization)
|
|
9246
9294
|
*/
|
|
9247
9295
|
RigVisualization: boolean;
|
|
9296
|
+
/**
|
|
9297
|
+
* - **ThreadSafety**: ReadSafe
|
|
9298
|
+
*
|
|
9299
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RootImportData#ScaleFactor)
|
|
9300
|
+
*/
|
|
9301
|
+
ScaleFactor: number;
|
|
9248
9302
|
/**
|
|
9249
9303
|
* - **ThreadSafety**: ReadSafe
|
|
9250
9304
|
*
|
|
@@ -10856,7 +10910,7 @@ interface CaptureService extends Instance {
|
|
|
10856
10910
|
*
|
|
10857
10911
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CaptureService#UploadCaptureAsync)
|
|
10858
10912
|
* @param this A service which provides control over screenshot and video capture features.
|
|
10859
|
-
* @param capture
|
|
10913
|
+
* @param capture The `Capture` to upload.
|
|
10860
10914
|
* @returns Tuple of (result: `UploadCaptureResult`, assetId: `number`)
|
|
10861
10915
|
*/
|
|
10862
10916
|
UploadCaptureAsync(this: CaptureService, capture: Capture): unknown;
|
|
@@ -15492,6 +15546,8 @@ interface DataStoreService extends Instance {
|
|
|
15492
15546
|
*/
|
|
15493
15547
|
GetRequestBudgetForRequestType(this: DataStoreService, requestType: CastsToEnum<Enum.DataStoreRequestType>): number;
|
|
15494
15548
|
/**
|
|
15549
|
+
* Sets the rate limit for a given request type per minute.
|
|
15550
|
+
*
|
|
15495
15551
|
* - **ThreadSafety**: Unsafe
|
|
15496
15552
|
*
|
|
15497
15553
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DataStoreService#SetRateLimitForRequestType)
|
|
@@ -16126,24 +16182,34 @@ interface DigitsRigDescription extends Instance {
|
|
|
16126
16182
|
* - **ThreadSafety**: Unsafe
|
|
16127
16183
|
*
|
|
16128
16184
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DigitsRigDescription#GetFingerControl)
|
|
16185
|
+
* @param this
|
|
16186
|
+
* @param fingerIndex
|
|
16129
16187
|
*/
|
|
16130
16188
|
GetFingerControl(this: DigitsRigDescription, fingerIndex: number): Vector3;
|
|
16131
16189
|
/**
|
|
16132
16190
|
* - **ThreadSafety**: Unsafe
|
|
16133
16191
|
*
|
|
16134
16192
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DigitsRigDescription#GetFingerTip)
|
|
16193
|
+
* @param this
|
|
16194
|
+
* @param fingerIndex
|
|
16135
16195
|
*/
|
|
16136
16196
|
GetFingerTip(this: DigitsRigDescription, fingerIndex: number): Vector3;
|
|
16137
16197
|
/**
|
|
16138
16198
|
* - **ThreadSafety**: Unsafe
|
|
16139
16199
|
*
|
|
16140
16200
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DigitsRigDescription#SetFingerControl)
|
|
16201
|
+
* @param this
|
|
16202
|
+
* @param fingerIndex
|
|
16203
|
+
* @param control
|
|
16141
16204
|
*/
|
|
16142
16205
|
SetFingerControl(this: DigitsRigDescription, fingerIndex: number, control: Vector3): void;
|
|
16143
16206
|
/**
|
|
16144
16207
|
* - **ThreadSafety**: Unsafe
|
|
16145
16208
|
*
|
|
16146
16209
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DigitsRigDescription#SetFingerTip)
|
|
16210
|
+
* @param this
|
|
16211
|
+
* @param fingerIndex
|
|
16212
|
+
* @param point
|
|
16147
16213
|
*/
|
|
16148
16214
|
SetFingerTip(this: DigitsRigDescription, fingerIndex: number, point: Vector3): void;
|
|
16149
16215
|
}
|
|
@@ -17684,97 +17750,113 @@ interface GeometryService extends Instance {
|
|
|
17684
17750
|
*/
|
|
17685
17751
|
CreateSolidPrimitive(this: GeometryService, type: CastsToEnum<Enum.SolidPrimitiveType>, options?: object): MeshPart;
|
|
17686
17752
|
/**
|
|
17687
|
-
*
|
|
17753
|
+
* Provides an array of positions which can easily be passed into `FragmentAsync` to perform simple types of destruction.
|
|
17688
17754
|
*
|
|
17689
17755
|
* - **ThreadSafety**: Unsafe
|
|
17690
17756
|
*
|
|
17691
17757
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/GeometryService#GenerateFragmentSites)
|
|
17692
17758
|
* @param this Service containing geometric operations.
|
|
17693
|
-
* @param part
|
|
17694
|
-
* @param options
|
|
17759
|
+
* @param part The `Part`, `PartOperation`, or `MeshPart` which you are planning to pass into `FragmentAsync()`. This is necessary to make the fragment site generation and the subsequent `FragmentAsync()` call efficient.
|
|
17760
|
+
* @param options Options table containing all the controls for the method: - `SiteSpacing` — The approximate distance between sites, which directly corresponds to the diameter of the resulting fragments. If not specified, a reasonable value will be chosen.
|
|
17761
|
+
* - `Origin` — If provided, this will be the center of the area to be fragmented. If not provided, the entire object will be fragmented.
|
|
17762
|
+
* - `Radius` — If provided, this will be the center of the area to be fragmented. Either `Origin` and `Radius` should both be provided, or neither.
|
|
17763
|
+
*
|
|
17764
|
+
*
|
|
17765
|
+
* @returns An array of `Vector3` which is typically passed into `FragmentAsync()`. The output depends on the options provided. If `Origin` and `Radius` are provided, then the output array will contain several `Vector3` elements which will all be located within the radius, but the last element of the array will be an inner array containing many `Vector3` sites which are outside the radius. If `Origin` and `Radius` are not provided, the output will simply be an array of `Vector3` positions within the extents of the input `part`.
|
|
17695
17766
|
*/
|
|
17696
17767
|
GenerateFragmentSites(this: GeometryService, part: BasePart, options?: object): Array<unknown>;
|
|
17697
17768
|
/**
|
|
17698
|
-
*
|
|
17769
|
+
* Breaks a `BasePart` into multiple `MeshPart` instances, according to the pattern of points passed in, by using voronoi decomposition.
|
|
17699
17770
|
*
|
|
17700
17771
|
* - **ThreadSafety**: Unsafe
|
|
17701
17772
|
* - **Tags**: Yields
|
|
17702
17773
|
*
|
|
17703
17774
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/GeometryService#FragmentAsync)
|
|
17704
17775
|
* @param this Service containing geometric operations.
|
|
17705
|
-
* @param part
|
|
17706
|
-
* @param sites
|
|
17707
|
-
* @param options
|
|
17776
|
+
* @param part A `Part`, `PartOperation`, or `MeshPart` to operate on.
|
|
17777
|
+
* @param sites Array of `Vector3` defining the site positions. Each site will become a separate part. You can also provide a jagged 2D array of `Vector3` by including inner arrays of `Vector3` as elements of the outer array. Each inner array will have all of its voronoi cells merged into a single part. `GeometryService:GenerateFragmentSites` can be used to easily create this input.
|
|
17778
|
+
* @param options Options table containing all the controls for the method: - `CollisionFidelity` — The value of `CollisionFidelity` in the resulting parts, with one caveat: If a 2D array of sites is provided, this collision fidelity will only be applied to parts which came from more than one site. The others will be given `Hull` precision.
|
|
17779
|
+
* - `RenderFidelity` — The value of `RenderFidelity` in the resulting parts.
|
|
17780
|
+
* - `FluidFidelity` — The value of `FluidFidelity` in the resulting parts.
|
|
17781
|
+
* - `SplitApart` — Boolean controlling whether a part should be split into multiple parts if it contains multiple connected components. Default is `true` (split).
|
|
17782
|
+
*
|
|
17783
|
+
*
|
|
17784
|
+
* @returns Array of `MeshPart` along with mapping info. Each array element is a Dictionary with two elements: `{ “Instance”: instance, “Index”: index }`. `Index` is the index in the outer array of sites; in other words, it tells you which group of sites this instance came from. Note that it is possible for multiple instances to have the same index, if SplitApart is `true`.
|
|
17708
17785
|
*/
|
|
17709
17786
|
FragmentAsync(this: GeometryService, part: BasePart, sites: Array<unknown>, options?: object): Array<unknown>;
|
|
17710
17787
|
/**
|
|
17711
|
-
* Creates one or more `PartOperations` from the intersecting geometry of
|
|
17788
|
+
* Creates one or more `PartOperations` or `MeshParts` from the intersecting geometry of multiple parts.
|
|
17712
17789
|
*
|
|
17713
17790
|
* - **ThreadSafety**: Unsafe
|
|
17714
17791
|
* - **Tags**: Yields
|
|
17715
17792
|
*
|
|
17716
17793
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/GeometryService#IntersectAsync)
|
|
17717
17794
|
* @param this Service containing geometric operations.
|
|
17718
|
-
* @param part Main `Part` or `
|
|
17719
|
-
* @param parts Array of parts to intersect with the main part.
|
|
17795
|
+
* @param part Main `Part`, `PartOperation`, or `MeshPart` to operate on.
|
|
17796
|
+
* @param parts Array of other parts to intersect with the main part.
|
|
17720
17797
|
* @param options Options table containing all the controls for the method: - `CollisionFidelity` — The value of `CollisionFidelity` in the resulting parts.
|
|
17721
|
-
* - `RenderFidelity` — The value of `RenderFidelity` in the resulting parts.
|
|
17722
|
-
* - `FluidFidelity` — The value of `FluidFidelity` in the
|
|
17798
|
+
* - `RenderFidelity` — The value of `RenderFidelity` or `RenderFidelity` in the resulting parts.
|
|
17799
|
+
* - `FluidFidelity` — The value of `FluidFidelity` in the resulting parts.
|
|
17723
17800
|
* - `SplitApart` — Boolean controlling whether the objects should all be kept together or properly split apart. Default is `true` (split).
|
|
17724
17801
|
*
|
|
17725
17802
|
*
|
|
17726
|
-
* @returns One or more `PartOperations`
|
|
17803
|
+
* @returns One or more `PartOperations` or `MeshParts`. If the input contained any `MeshParts`, then the results will always be `MeshParts`.
|
|
17727
17804
|
*/
|
|
17728
17805
|
IntersectAsync(this: GeometryService, part: Part | PartOperation, parts: ReadonlyArray<Part | PartOperation>, options?: GeometryServiceAsyncMethodConfig): Array<PartOperation>;
|
|
17729
17806
|
/**
|
|
17730
|
-
* Creates one or more `PartOperations` from one part minus the
|
|
17807
|
+
* Creates one or more `PartOperations` or `MeshParts` from one part minus the space occupied by other parts.
|
|
17731
17808
|
*
|
|
17732
17809
|
* - **ThreadSafety**: Unsafe
|
|
17733
17810
|
* - **Tags**: Yields
|
|
17734
17811
|
*
|
|
17735
17812
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/GeometryService#SubtractAsync)
|
|
17736
17813
|
* @param this Service containing geometric operations.
|
|
17737
|
-
* @param part Main `Part` or `
|
|
17814
|
+
* @param part Main `Part`, `PartOperation`, or `MeshPart` to operate on.
|
|
17738
17815
|
* @param parts Array of parts to subtract from the main part.
|
|
17739
17816
|
* @param options Options table containing all the controls for the method: - `CollisionFidelity` — The value of `CollisionFidelity` in the resulting parts.
|
|
17740
|
-
* - `RenderFidelity` — The value of `RenderFidelity` in the resulting parts.
|
|
17741
|
-
* - `FluidFidelity` — The value of `FluidFidelity` in the
|
|
17817
|
+
* - `RenderFidelity` — The value of `RenderFidelity` or `RenderFidelity` in the resulting parts.
|
|
17818
|
+
* - `FluidFidelity` — The value of `FluidFidelity` in the resulting parts.
|
|
17742
17819
|
* - `SplitApart` — Boolean controlling whether the objects should all be kept together or properly split apart. Default is `true` (split).
|
|
17743
17820
|
*
|
|
17744
17821
|
*
|
|
17745
|
-
* @returns One or more `PartOperations`
|
|
17822
|
+
* @returns One or more `PartOperations` or `MeshParts`. If the input contained any `MeshParts`, then the results will always be `MeshParts`.
|
|
17746
17823
|
*/
|
|
17747
17824
|
SubtractAsync(this: GeometryService, part: Part | PartOperation, parts: ReadonlyArray<Part | PartOperation>, options?: GeometryServiceAsyncMethodConfig): Array<PartOperation>;
|
|
17748
17825
|
/**
|
|
17749
|
-
*
|
|
17826
|
+
* Creates a `MeshPart` which has the shape of the input part stretched/dragged through the given set of `CFrame` positions.
|
|
17750
17827
|
*
|
|
17751
17828
|
* - **ThreadSafety**: Unsafe
|
|
17752
17829
|
* - **Tags**: Yields
|
|
17753
17830
|
*
|
|
17754
17831
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/GeometryService#SweepPartAsync)
|
|
17755
17832
|
* @param this Service containing geometric operations.
|
|
17756
|
-
* @param part
|
|
17757
|
-
* @param cframes
|
|
17758
|
-
* @param options
|
|
17833
|
+
* @param part A `Part`, `PartOperation`, or `MeshPart` to operate on.
|
|
17834
|
+
* @param cframes Array of coordinate frames to sweep parts through.
|
|
17835
|
+
* @param options Options table containing all the controls for the method: - `CollisionFidelity` — The value of `CollisionFidelity` in the resulting parts.
|
|
17836
|
+
* - `RenderFidelity` — The value of `RenderFidelity` in the resulting parts.
|
|
17837
|
+
* - `FluidFidelity` — The value of `FluidFidelity` in the resulting parts.
|
|
17838
|
+
*
|
|
17839
|
+
*
|
|
17840
|
+
* @returns A new `MeshPart` with the swept geometry.
|
|
17759
17841
|
*/
|
|
17760
17842
|
SweepPartAsync(this: GeometryService, part: BasePart, cframes: Array<unknown>, options?: object): MeshPart;
|
|
17761
17843
|
/**
|
|
17762
|
-
* Creates one or more `PartOperations` from one part plus the
|
|
17844
|
+
* Creates one or more `PartOperations` or `MeshParts` from one part plus the space occupied by other parts.
|
|
17763
17845
|
*
|
|
17764
17846
|
* - **ThreadSafety**: Unsafe
|
|
17765
17847
|
* - **Tags**: Yields
|
|
17766
17848
|
*
|
|
17767
17849
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/GeometryService#UnionAsync)
|
|
17768
17850
|
* @param this Service containing geometric operations.
|
|
17769
|
-
* @param part Main `Part` or `
|
|
17851
|
+
* @param part Main `Part`, `PartOperation`, or `MeshPart` to operate on.
|
|
17770
17852
|
* @param parts Array of parts to union with the main part.
|
|
17771
17853
|
* @param options Options table containing all the controls for the method: - `CollisionFidelity` — The value of `CollisionFidelity` in the resulting parts.
|
|
17772
|
-
* - `RenderFidelity` — The value of `RenderFidelity` in the resulting parts.
|
|
17773
|
-
* - `FluidFidelity` — The value of `FluidFidelity` in the
|
|
17854
|
+
* - `RenderFidelity` — The value of `RenderFidelity` or `RenderFidelity` in the resulting parts.
|
|
17855
|
+
* - `FluidFidelity` — The value of `FluidFidelity` in the resulting parts.
|
|
17774
17856
|
* - `SplitApart` — Boolean controlling whether the objects should all be kept together or properly split apart. Default is `true` (split).
|
|
17775
17857
|
*
|
|
17776
17858
|
*
|
|
17777
|
-
* @returns One or more `PartOperations`
|
|
17859
|
+
* @returns One or more `PartOperations` or `MeshParts`. If the input contained any `MeshParts`, then the results will always be `MeshParts`.
|
|
17778
17860
|
*/
|
|
17779
17861
|
UnionAsync(this: GeometryService, part: Part | PartOperation, parts: ReadonlyArray<Part | PartOperation>, options?: GeometryServiceAsyncMethodConfig): Array<PartOperation>;
|
|
17780
17862
|
}
|
|
@@ -18019,6 +18101,8 @@ interface DataStore extends GlobalDataStore {
|
|
|
18019
18101
|
* @param this
|
|
18020
18102
|
* @param key Key name for which a version is to be removed. If `DataStoreOptions.AllScopes` was set to true when accessing the data store through `DataStoreService:GetDataStore()`, this key name must be prepended with the original scope as in "scope/key".
|
|
18021
18103
|
* @param version Version number of the key to remove.
|
|
18104
|
+
*
|
|
18105
|
+
* @deprecated
|
|
18022
18106
|
*/
|
|
18023
18107
|
RemoveVersionAsync(this: DataStore, key: string, version: string): void;
|
|
18024
18108
|
GetAsync<T>(this: DataStore, key: string, options?: DataStoreGetOptions): LuaTuple<[
|
|
@@ -18080,6 +18164,21 @@ interface OrderedDataStore extends GlobalDataStore {
|
|
|
18080
18164
|
SetAsync(this: OrderedDataStore, key: string, value?: unknown): void;
|
|
18081
18165
|
UpdateAsync(this: OrderedDataStore, key: string, transformFunction: (oldValue: number | undefined) => number | undefined): number | undefined;
|
|
18082
18166
|
}
|
|
18167
|
+
/**
|
|
18168
|
+
* - **Tags**: NotCreatable, Service
|
|
18169
|
+
*
|
|
18170
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/GongService)
|
|
18171
|
+
*/
|
|
18172
|
+
interface GongService extends Instance {
|
|
18173
|
+
/**
|
|
18174
|
+
* **DO NOT USE!**
|
|
18175
|
+
*
|
|
18176
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
18177
|
+
* @hidden
|
|
18178
|
+
* @deprecated
|
|
18179
|
+
*/
|
|
18180
|
+
readonly _nominal_GongService: unique symbol;
|
|
18181
|
+
}
|
|
18083
18182
|
/**
|
|
18084
18183
|
* GroupService is a service that allows developers to fetch information about a Roblox group from within a game.
|
|
18085
18184
|
*
|
|
@@ -18943,6 +19042,8 @@ interface GuiButton extends GuiObject {
|
|
|
18943
19042
|
*/
|
|
18944
19043
|
readonly MouseButton2Up: RBXScriptSignal<(x: number, y: number) => void>;
|
|
18945
19044
|
/**
|
|
19045
|
+
* Fires when a right-click is detected on desktop, long press detected on mobile, or triangle / Y activated in UI navigation mode on console. This function is not available yet.
|
|
19046
|
+
*
|
|
18946
19047
|
* - **ThreadSafety**: Unsafe
|
|
18947
19048
|
*
|
|
18948
19049
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/GuiButton#SecondaryActivated)
|
|
@@ -20400,6 +20501,24 @@ interface VideoFrame extends GuiObject {
|
|
|
20400
20501
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoFrame#Resolution)
|
|
20401
20502
|
*/
|
|
20402
20503
|
readonly Resolution: Vector2;
|
|
20504
|
+
/**
|
|
20505
|
+
* - **ThreadSafety**: ReadSafe
|
|
20506
|
+
*
|
|
20507
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoFrame#RollOffMaxDistance)
|
|
20508
|
+
*/
|
|
20509
|
+
RollOffMaxDistance: number;
|
|
20510
|
+
/**
|
|
20511
|
+
* - **ThreadSafety**: ReadSafe
|
|
20512
|
+
*
|
|
20513
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoFrame#RollOffMinDistance)
|
|
20514
|
+
*/
|
|
20515
|
+
RollOffMinDistance: number;
|
|
20516
|
+
/**
|
|
20517
|
+
* - **ThreadSafety**: ReadSafe
|
|
20518
|
+
*
|
|
20519
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoFrame#RollOffMode)
|
|
20520
|
+
*/
|
|
20521
|
+
RollOffMode: Enum.RollOffMode;
|
|
20403
20522
|
/**
|
|
20404
20523
|
* Indicates the length of the `VideoFrame.Video` in seconds.
|
|
20405
20524
|
*
|
|
@@ -23443,6 +23562,12 @@ interface Humanoid extends Instance {
|
|
|
23443
23562
|
* @deprecated
|
|
23444
23563
|
*/
|
|
23445
23564
|
GetPlayingAnimationTracks(this: Humanoid): Array<AnimationTrack>;
|
|
23565
|
+
/**
|
|
23566
|
+
* - **ThreadSafety**: Unsafe
|
|
23567
|
+
*
|
|
23568
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Humanoid#GetRelativeVelocityAtFloor)
|
|
23569
|
+
*/
|
|
23570
|
+
GetRelativeVelocityAtFloor(this: Humanoid): Vector3;
|
|
23446
23571
|
/**
|
|
23447
23572
|
* Returns the humanoid's current `HumanoidStateType`.
|
|
23448
23573
|
*
|
|
@@ -24636,33 +24761,33 @@ interface HumanoidRigDescription extends Instance {
|
|
|
24636
24761
|
/**
|
|
24637
24762
|
* - **ThreadSafety**: ReadSafe
|
|
24638
24763
|
*
|
|
24639
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#
|
|
24764
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#LeftToeBase)
|
|
24640
24765
|
*/
|
|
24641
|
-
|
|
24766
|
+
LeftToeBase: Instance | undefined;
|
|
24642
24767
|
/**
|
|
24643
24768
|
* - **ThreadSafety**: ReadSafe
|
|
24644
24769
|
*
|
|
24645
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#
|
|
24770
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#LeftToeBaseRangeMax)
|
|
24646
24771
|
*/
|
|
24647
|
-
|
|
24772
|
+
LeftToeBaseRangeMax: Vector3;
|
|
24648
24773
|
/**
|
|
24649
24774
|
* - **ThreadSafety**: ReadSafe
|
|
24650
24775
|
*
|
|
24651
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#
|
|
24776
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#LeftToeBaseRangeMin)
|
|
24652
24777
|
*/
|
|
24653
|
-
|
|
24778
|
+
LeftToeBaseRangeMin: Vector3;
|
|
24654
24779
|
/**
|
|
24655
24780
|
* - **ThreadSafety**: ReadSafe
|
|
24656
24781
|
*
|
|
24657
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#
|
|
24782
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#LeftToeBaseSize)
|
|
24658
24783
|
*/
|
|
24659
|
-
|
|
24784
|
+
LeftToeBaseSize: number;
|
|
24660
24785
|
/**
|
|
24661
24786
|
* - **ThreadSafety**: ReadSafe
|
|
24662
24787
|
*
|
|
24663
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#
|
|
24788
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#LeftToeBaseTposeAdjustment)
|
|
24664
24789
|
*/
|
|
24665
|
-
|
|
24790
|
+
LeftToeBaseTposeAdjustment: CFrame;
|
|
24666
24791
|
/**
|
|
24667
24792
|
* - **ThreadSafety**: ReadSafe
|
|
24668
24793
|
*
|
|
@@ -24723,36 +24848,6 @@ interface HumanoidRigDescription extends Instance {
|
|
|
24723
24848
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#NeckTposeAdjustment)
|
|
24724
24849
|
*/
|
|
24725
24850
|
NeckTposeAdjustment: CFrame;
|
|
24726
|
-
/**
|
|
24727
|
-
* - **ThreadSafety**: ReadSafe
|
|
24728
|
-
*
|
|
24729
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#Pelvis)
|
|
24730
|
-
*/
|
|
24731
|
-
Pelvis: Instance | undefined;
|
|
24732
|
-
/**
|
|
24733
|
-
* - **ThreadSafety**: ReadSafe
|
|
24734
|
-
*
|
|
24735
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#PelvisRangeMax)
|
|
24736
|
-
*/
|
|
24737
|
-
PelvisRangeMax: Vector3;
|
|
24738
|
-
/**
|
|
24739
|
-
* - **ThreadSafety**: ReadSafe
|
|
24740
|
-
*
|
|
24741
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#PelvisRangeMin)
|
|
24742
|
-
*/
|
|
24743
|
-
PelvisRangeMin: Vector3;
|
|
24744
|
-
/**
|
|
24745
|
-
* - **ThreadSafety**: ReadSafe
|
|
24746
|
-
*
|
|
24747
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#PelvisSize)
|
|
24748
|
-
*/
|
|
24749
|
-
PelvisSize: number;
|
|
24750
|
-
/**
|
|
24751
|
-
* - **ThreadSafety**: ReadSafe
|
|
24752
|
-
*
|
|
24753
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#PelvisTposeAdjustment)
|
|
24754
|
-
*/
|
|
24755
|
-
PelvisTposeAdjustment: CFrame;
|
|
24756
24851
|
/**
|
|
24757
24852
|
* - **ThreadSafety**: ReadSafe
|
|
24758
24853
|
*
|
|
@@ -24936,33 +25031,33 @@ interface HumanoidRigDescription extends Instance {
|
|
|
24936
25031
|
/**
|
|
24937
25032
|
* - **ThreadSafety**: ReadSafe
|
|
24938
25033
|
*
|
|
24939
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#
|
|
25034
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#RightToeBase)
|
|
24940
25035
|
*/
|
|
24941
|
-
|
|
25036
|
+
RightToeBase: Instance | undefined;
|
|
24942
25037
|
/**
|
|
24943
25038
|
* - **ThreadSafety**: ReadSafe
|
|
24944
25039
|
*
|
|
24945
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#
|
|
25040
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#RightToeBaseRangeMax)
|
|
24946
25041
|
*/
|
|
24947
|
-
|
|
25042
|
+
RightToeBaseRangeMax: Vector3;
|
|
24948
25043
|
/**
|
|
24949
25044
|
* - **ThreadSafety**: ReadSafe
|
|
24950
25045
|
*
|
|
24951
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#
|
|
25046
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#RightToeBaseRangeMin)
|
|
24952
25047
|
*/
|
|
24953
|
-
|
|
25048
|
+
RightToeBaseRangeMin: Vector3;
|
|
24954
25049
|
/**
|
|
24955
25050
|
* - **ThreadSafety**: ReadSafe
|
|
24956
25051
|
*
|
|
24957
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#
|
|
25052
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#RightToeBaseSize)
|
|
24958
25053
|
*/
|
|
24959
|
-
|
|
25054
|
+
RightToeBaseSize: number;
|
|
24960
25055
|
/**
|
|
24961
25056
|
* - **ThreadSafety**: ReadSafe
|
|
24962
25057
|
*
|
|
24963
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#
|
|
25058
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#RightToeBaseTposeAdjustment)
|
|
24964
25059
|
*/
|
|
24965
|
-
|
|
25060
|
+
RightToeBaseTposeAdjustment: CFrame;
|
|
24966
25061
|
/**
|
|
24967
25062
|
* - **ThreadSafety**: ReadSafe
|
|
24968
25063
|
*
|
|
@@ -25023,6 +25118,36 @@ interface HumanoidRigDescription extends Instance {
|
|
|
25023
25118
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#RootTposeAdjustment)
|
|
25024
25119
|
*/
|
|
25025
25120
|
RootTposeAdjustment: CFrame;
|
|
25121
|
+
/**
|
|
25122
|
+
* - **ThreadSafety**: ReadSafe
|
|
25123
|
+
*
|
|
25124
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#Spine)
|
|
25125
|
+
*/
|
|
25126
|
+
Spine: Instance | undefined;
|
|
25127
|
+
/**
|
|
25128
|
+
* - **ThreadSafety**: ReadSafe
|
|
25129
|
+
*
|
|
25130
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#SpineRangeMax)
|
|
25131
|
+
*/
|
|
25132
|
+
SpineRangeMax: Vector3;
|
|
25133
|
+
/**
|
|
25134
|
+
* - **ThreadSafety**: ReadSafe
|
|
25135
|
+
*
|
|
25136
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#SpineRangeMin)
|
|
25137
|
+
*/
|
|
25138
|
+
SpineRangeMin: Vector3;
|
|
25139
|
+
/**
|
|
25140
|
+
* - **ThreadSafety**: ReadSafe
|
|
25141
|
+
*
|
|
25142
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#SpineSize)
|
|
25143
|
+
*/
|
|
25144
|
+
SpineSize: number;
|
|
25145
|
+
/**
|
|
25146
|
+
* - **ThreadSafety**: ReadSafe
|
|
25147
|
+
*
|
|
25148
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#SpineTposeAdjustment)
|
|
25149
|
+
*/
|
|
25150
|
+
SpineTposeAdjustment: CFrame;
|
|
25026
25151
|
/**
|
|
25027
25152
|
* - **ThreadSafety**: ReadSafe
|
|
25028
25153
|
*
|
|
@@ -25870,7 +25995,7 @@ interface InsertService extends Instance {
|
|
|
25870
25995
|
*
|
|
25871
25996
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InsertService#GetFreeModels)
|
|
25872
25997
|
* @param this Used to insert assets from the Roblox website.
|
|
25873
|
-
* @param searchText String used to search for free
|
|
25998
|
+
* @param searchText String used to search for free models in the Catalog.
|
|
25874
25999
|
* @param pageNum The page number in the Catalog to return.
|
|
25875
26000
|
* @returns A single table (of returned free models) wrapped in a table.
|
|
25876
26001
|
*
|
|
@@ -27909,8 +28034,6 @@ interface MLService extends Instance {
|
|
|
27909
28034
|
CreateSessionAsync(this: MLService, assetId: string): MLSession;
|
|
27910
28035
|
}
|
|
27911
28036
|
/**
|
|
27912
|
-
* - **Tags**: NotBrowsable
|
|
27913
|
-
*
|
|
27914
28037
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MakeupDescription)
|
|
27915
28038
|
*/
|
|
27916
28039
|
interface MakeupDescription extends Instance {
|
|
@@ -28194,6 +28317,8 @@ interface MarketplaceService extends Instance {
|
|
|
28194
28317
|
* - **Tags**: Yields
|
|
28195
28318
|
*
|
|
28196
28319
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MarketplaceService#GetRobloxSubscriptionDetailsAsync)
|
|
28320
|
+
* @param this The service responsible for in-experience transactions.
|
|
28321
|
+
* @param user
|
|
28197
28322
|
*/
|
|
28198
28323
|
GetRobloxSubscriptionDetailsAsync(this: MarketplaceService, user: Player): object;
|
|
28199
28324
|
/**
|
|
@@ -30543,7 +30668,12 @@ interface BasePart extends PVInstance {
|
|
|
30543
30668
|
*/
|
|
30544
30669
|
TorqueToAngularAcceleration(this: BasePart, torque: Vector3, angVelocity?: Vector3): Vector3;
|
|
30545
30670
|
/**
|
|
30546
|
-
*
|
|
30671
|
+
* Note: It is highly recommended to use the newer `GeometryService:IntersectAsync` instead of this function. As well as having better performance and more features, the new function differs as follows: - The output is an array of instances rather than a single instance.
|
|
30672
|
+
* - The input parts do not need to be parented to the scene, allowing for background operations.
|
|
30673
|
+
* - When the `SplitApart` option is set to `true` (default), each distinct body will be returned in its own `PartOperation`.
|
|
30674
|
+
* - All the returned parts are in the coordinate space of the main part, so their `PVInstance.Origin` positions are the same as the main part's. This keeps the vertices of the mesh in the same position relative to the object as before the operation, but it does also mean the `(0, 0, 0)` of a returned part is not necessarily at the center of its body.
|
|
30675
|
+
*
|
|
30676
|
+
* Creates a new `IntersectOperation` from the overlapping geometry of the part and the other parts in the given array.
|
|
30547
30677
|
*
|
|
30548
30678
|
* - **ThreadSafety**: Unsafe
|
|
30549
30679
|
* - **Tags**: Yields
|
|
@@ -30557,7 +30687,12 @@ interface BasePart extends PVInstance {
|
|
|
30557
30687
|
*/
|
|
30558
30688
|
IntersectAsync(this: BasePart, parts: Array<Instance>, collisionfidelity?: CastsToEnum<Enum.CollisionFidelity>, renderFidelity?: CastsToEnum<Enum.RenderFidelity>): Instance | undefined;
|
|
30559
30689
|
/**
|
|
30560
|
-
*
|
|
30690
|
+
* Note: It is highly recommended to use the newer `GeometryService:UnionAsync` instead of this function. As well as having better performance and more features, the new function differs as follows: - The output is an array of instances rather than a single instance.
|
|
30691
|
+
* - The input parts do not need to be parented to the scene, allowing for background operations.
|
|
30692
|
+
* - When the `SplitApart` option is set to `true` (default), each distinct body will be returned in its own `PartOperation`.
|
|
30693
|
+
* - All the returned parts are in the coordinate space of the main part, so their `PVInstance.Origin` positions are the same as the main part's. This keeps the vertices of the mesh in the same position relative to the object as before the operation, but it does also mean the `(0, 0, 0)` of a returned part is not necessarily at the center of its body.
|
|
30694
|
+
*
|
|
30695
|
+
* Creates a new `UnionOperation` from the part, minus the geometry occupied by the parts in the given array.
|
|
30561
30696
|
*
|
|
30562
30697
|
* - **ThreadSafety**: Unsafe
|
|
30563
30698
|
* - **Tags**: Yields
|
|
@@ -30571,7 +30706,7 @@ interface BasePart extends PVInstance {
|
|
|
30571
30706
|
*/
|
|
30572
30707
|
SubtractAsync(this: BasePart, parts: Array<BasePart>, collisionfidelity?: CastsToEnum<Enum.CollisionFidelity>): UnionOperation | undefined;
|
|
30573
30708
|
/**
|
|
30574
|
-
* Creates a new `UnionOperation` from the part, plus the geometry occupied by the parts in the given array.
|
|
30709
|
+
* Note: It is highly recommended to use the newer <code>GeometryService:UnionAsync</code> instead of this function. As well as having better performance and more features, the new function differs as follows: <ul> <li>The output is an array of instances rather than a single instance.</li> <li>The input parts do not need to be parented to the scene, allowing for background operations.</li> <li>When the <code>SplitApart</code> option is set to <code>true</code> (default), each distinct body will be returned in its own <code>PartOperation</code>.</li> <li>All the returned parts are in the coordinate space of the main part, so their <code>PVInstance.Origin</code> positions are the same as the main part's. This keeps the vertices of the mesh in the same position relative to the object as before the operation, but it does also mean the <code>(0, 0, 0)</code> of a returned part is not necessarily at the center of its body.<pre><code>Creates a new `UnionOperation` from the part, plus the geometry </code></pre> </li> </ul> occupied by the parts in the given array.
|
|
30575
30710
|
*
|
|
30576
30711
|
* - **ThreadSafety**: Unsafe
|
|
30577
30712
|
* - **Tags**: Yields
|
|
@@ -33684,6 +33819,8 @@ interface ParticleEmitter extends Instance {
|
|
|
33684
33819
|
*/
|
|
33685
33820
|
Enabled: boolean;
|
|
33686
33821
|
/**
|
|
33822
|
+
* Determines whether the flipbook frames are blended between.
|
|
33823
|
+
*
|
|
33687
33824
|
* - **ThreadSafety**: ReadSafe
|
|
33688
33825
|
*
|
|
33689
33826
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ParticleEmitter#FlipbookBlendFrames)
|
|
@@ -34840,6 +34977,12 @@ interface Player extends Instance {
|
|
|
34840
34977
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Player#GameplayPaused)
|
|
34841
34978
|
*/
|
|
34842
34979
|
get GameplayPaused(): boolean;
|
|
34980
|
+
/**
|
|
34981
|
+
* - **ThreadSafety**: ReadSafe
|
|
34982
|
+
*
|
|
34983
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Player#HasRobloxSubscription)
|
|
34984
|
+
*/
|
|
34985
|
+
get HasRobloxSubscription(): boolean;
|
|
34843
34986
|
/**
|
|
34844
34987
|
* Indicates if a player has a **Verified** badge.
|
|
34845
34988
|
*
|
|
@@ -35385,6 +35528,7 @@ interface Player extends Instance {
|
|
|
35385
35528
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Player#LoadCharacterWithHumanoidDescription)
|
|
35386
35529
|
* @param this An object that represents a presently connected client to the experience.
|
|
35387
35530
|
* @param humanoidDescription A `HumanoidDescription` containing traits like body parts/colors, body scaling, accessories, clothing, and animations that will be equipped to the loaded character.
|
|
35531
|
+
* @param assetTypeVerification The asset type verification mode.
|
|
35388
35532
|
*
|
|
35389
35533
|
* @deprecated LoadCharacterWithHumanoidDescriptionAsync
|
|
35390
35534
|
*/
|
|
@@ -35398,8 +35542,9 @@ interface Player extends Instance {
|
|
|
35398
35542
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Player#LoadCharacterWithHumanoidDescriptionAsync)
|
|
35399
35543
|
* @param this An object that represents a presently connected client to the experience.
|
|
35400
35544
|
* @param humanoidDescription A `HumanoidDescription` containing traits like body parts/colors, body scaling, accessories, clothing, and animations that will be equipped to the loaded character.
|
|
35545
|
+
* @param assetTypeVerification The asset type verification mode.
|
|
35401
35546
|
*/
|
|
35402
|
-
LoadCharacterWithHumanoidDescriptionAsync(this: Player, humanoidDescription: HumanoidDescription): void;
|
|
35547
|
+
LoadCharacterWithHumanoidDescriptionAsync(this: Player, humanoidDescription: HumanoidDescription, assetTypeVerification?: CastsToEnum<Enum.AssetTypeVerification>): void;
|
|
35403
35548
|
/**
|
|
35404
35549
|
* Requests that the server stream to the player around the specified location.
|
|
35405
35550
|
*
|
|
@@ -37920,6 +38065,12 @@ interface RunService extends Instance {
|
|
|
37920
38065
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RunService#RenderStepped)
|
|
37921
38066
|
*/
|
|
37922
38067
|
readonly RenderStepped: RBXScriptSignal<(deltaTime: number) => void>;
|
|
38068
|
+
/**
|
|
38069
|
+
* - **ThreadSafety**: Unsafe
|
|
38070
|
+
*
|
|
38071
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RunService#Rollback)
|
|
38072
|
+
*/
|
|
38073
|
+
readonly Rollback: RBXScriptSignal<(time: number) => void>;
|
|
37923
38074
|
/**
|
|
37924
38075
|
* Fires every frame, prior to the physics simulation.
|
|
37925
38076
|
*
|
|
@@ -38791,7 +38942,7 @@ interface DataModel extends ServiceProvider<Services> {
|
|
|
38791
38942
|
*
|
|
38792
38943
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DataModel#RunService)
|
|
38793
38944
|
*/
|
|
38794
|
-
readonly RunService:
|
|
38945
|
+
readonly RunService: RunService | undefined;
|
|
38795
38946
|
/**
|
|
38796
38947
|
* **Deprecated:** This property has been deprecated. Use `DataModel.PrivateServerId` instead.
|
|
38797
38948
|
*
|
|
@@ -41666,6 +41817,12 @@ interface StyleRule extends StyleBase {
|
|
|
41666
41817
|
* @param value Property value to set, for example `Color3.new(1, 0, 0.25)`.
|
|
41667
41818
|
*/
|
|
41668
41819
|
SetProperty(this: StyleRule, name: string, value: unknown): void;
|
|
41820
|
+
/**
|
|
41821
|
+
* - **ThreadSafety**: Unsafe
|
|
41822
|
+
*
|
|
41823
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StyleRule#SetPropertyTransition)
|
|
41824
|
+
*/
|
|
41825
|
+
SetPropertyTransition(this: StyleRule, property: string, transitionParams: unknown): void;
|
|
41669
41826
|
/**
|
|
41670
41827
|
* - **ThreadSafety**: Unsafe
|
|
41671
41828
|
*
|
|
@@ -41765,8 +41922,6 @@ interface StyleLink extends Instance {
|
|
|
41765
41922
|
StyleSheet: StyleSheet | undefined;
|
|
41766
41923
|
}
|
|
41767
41924
|
/**
|
|
41768
|
-
* - **Tags**: NotBrowsable
|
|
41769
|
-
*
|
|
41770
41925
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StyleQuery)
|
|
41771
41926
|
*/
|
|
41772
41927
|
interface StyleQuery extends Instance {
|
|
@@ -41789,24 +41944,32 @@ interface StyleQuery extends Instance {
|
|
|
41789
41944
|
* - **ThreadSafety**: Unsafe
|
|
41790
41945
|
*
|
|
41791
41946
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StyleQuery#GetCondition)
|
|
41947
|
+
* @param this
|
|
41948
|
+
* @param name
|
|
41792
41949
|
*/
|
|
41793
41950
|
GetCondition(this: StyleQuery, name: string): unknown;
|
|
41794
41951
|
/**
|
|
41795
41952
|
* - **ThreadSafety**: Unsafe
|
|
41796
41953
|
*
|
|
41797
41954
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StyleQuery#GetConditions)
|
|
41955
|
+
* @param this
|
|
41798
41956
|
*/
|
|
41799
41957
|
GetConditions(this: StyleQuery): object;
|
|
41800
41958
|
/**
|
|
41801
41959
|
* - **ThreadSafety**: Unsafe
|
|
41802
41960
|
*
|
|
41803
41961
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StyleQuery#SetCondition)
|
|
41962
|
+
* @param this
|
|
41963
|
+
* @param name
|
|
41964
|
+
* @param value
|
|
41804
41965
|
*/
|
|
41805
41966
|
SetCondition(this: StyleQuery, name: string, value: unknown): void;
|
|
41806
41967
|
/**
|
|
41807
41968
|
* - **ThreadSafety**: Unsafe
|
|
41808
41969
|
*
|
|
41809
41970
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StyleQuery#SetConditions)
|
|
41971
|
+
* @param this
|
|
41972
|
+
* @param conditions
|
|
41810
41973
|
*/
|
|
41811
41974
|
SetConditions(this: StyleQuery, conditions: object): void;
|
|
41812
41975
|
}
|
|
@@ -42565,6 +42728,45 @@ interface TerrainRegion extends Instance {
|
|
|
42565
42728
|
*/
|
|
42566
42729
|
readonly SizeInCells: Vector3;
|
|
42567
42730
|
}
|
|
42731
|
+
/**
|
|
42732
|
+
* - **Tags**: NotCreatable
|
|
42733
|
+
*
|
|
42734
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TestCase)
|
|
42735
|
+
*/
|
|
42736
|
+
interface TestCase extends Instance {
|
|
42737
|
+
/**
|
|
42738
|
+
* **DO NOT USE!**
|
|
42739
|
+
*
|
|
42740
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
42741
|
+
* @hidden
|
|
42742
|
+
* @deprecated
|
|
42743
|
+
*/
|
|
42744
|
+
readonly _nominal_TestCase: unique symbol;
|
|
42745
|
+
/**
|
|
42746
|
+
* - **ThreadSafety**: Unsafe
|
|
42747
|
+
*
|
|
42748
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TestCase#Assert)
|
|
42749
|
+
*/
|
|
42750
|
+
Assert(this: TestCase, condition: boolean, message?: string, source?: Instance, line?: number): void;
|
|
42751
|
+
/**
|
|
42752
|
+
* - **ThreadSafety**: Unsafe
|
|
42753
|
+
*
|
|
42754
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TestCase#EndTest)
|
|
42755
|
+
*/
|
|
42756
|
+
EndTest(this: TestCase, message?: string, source?: Instance, line?: number): void;
|
|
42757
|
+
/**
|
|
42758
|
+
* - **ThreadSafety**: Unsafe
|
|
42759
|
+
*
|
|
42760
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TestCase#Message)
|
|
42761
|
+
*/
|
|
42762
|
+
Message(this: TestCase, text: string, source?: Instance, line?: number): void;
|
|
42763
|
+
/**
|
|
42764
|
+
* - **ThreadSafety**: Unsafe
|
|
42765
|
+
*
|
|
42766
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TestCase#Require)
|
|
42767
|
+
*/
|
|
42768
|
+
Require(this: TestCase, condition: boolean, message?: string, source?: Instance, line?: number): void;
|
|
42769
|
+
}
|
|
42568
42770
|
/**
|
|
42569
42771
|
* A service used by Roblox to run controlled tests of the engine. It is available for developers to use, to a limited degree.
|
|
42570
42772
|
*
|
|
@@ -42763,6 +42965,12 @@ interface TestService extends Instance {
|
|
|
42763
42965
|
* @param line
|
|
42764
42966
|
*/
|
|
42765
42967
|
Message(this: TestService, text: string, source?: Instance, line?: number): void;
|
|
42968
|
+
/**
|
|
42969
|
+
* - **ThreadSafety**: Unsafe
|
|
42970
|
+
*
|
|
42971
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TestService#RegisterTest)
|
|
42972
|
+
*/
|
|
42973
|
+
RegisterTest(this: TestService, testOptions: object): TestCase;
|
|
42766
42974
|
/**
|
|
42767
42975
|
* Prints whether a condition is true along with a description string.
|
|
42768
42976
|
*
|
|
@@ -43924,15 +44132,15 @@ interface TextChatService extends Instance {
|
|
|
43924
44132
|
*/
|
|
43925
44133
|
CanUserChatAsync(this: TextChatService, userId: number): boolean;
|
|
43926
44134
|
/**
|
|
43927
|
-
* Determines whether or not two users
|
|
44135
|
+
* Determines whether or not two users can receive messages from each other.
|
|
43928
44136
|
*
|
|
43929
44137
|
* - **ThreadSafety**: Unsafe
|
|
43930
44138
|
* - **Tags**: Yields
|
|
43931
44139
|
*
|
|
43932
44140
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TextChatService#CanUsersChatAsync)
|
|
43933
44141
|
* @param this A service handling in-experience text chat.
|
|
43934
|
-
* @param userIdFrom
|
|
43935
|
-
* @param userIdTo
|
|
44142
|
+
* @param userIdFrom
|
|
44143
|
+
* @param userIdTo
|
|
43936
44144
|
*/
|
|
43937
44145
|
CanUsersChatAsync(this: TextChatService, userIdFrom: number, userIdTo: number): boolean;
|
|
43938
44146
|
/**
|
|
@@ -43943,9 +44151,9 @@ interface TextChatService extends Instance {
|
|
|
43943
44151
|
*
|
|
43944
44152
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TextChatService#CanUsersDirectChatAsync)
|
|
43945
44153
|
* @param this A service handling in-experience text chat.
|
|
43946
|
-
* @param requesterUserId The user who would have initiated the direct chat request. If the
|
|
43947
|
-
* @param userIds A list of users who the requesterUserId would like to chat with directly. Users not in the current server are ignored.
|
|
43948
|
-
* @returns A list of users who could participate in the direct chat request. If none of the users can direct chat with the requesterUserId
|
|
44154
|
+
* @param requesterUserId The user who would have initiated the direct chat request. If the user is not in the current server, this method will error.
|
|
44155
|
+
* @param userIds A list of users who the `requesterUserId` would like to chat with directly. Users not in the current server are ignored.
|
|
44156
|
+
* @returns A list of users who could participate in the direct chat request. If none of the users can direct chat with the `requesterUserId`, the result is an empty array.
|
|
43949
44157
|
*/
|
|
43950
44158
|
CanUsersDirectChatAsync(this: TextChatService, requesterUserId: number, userIds: Array<unknown>): Array<unknown>;
|
|
43951
44159
|
/**
|
|
@@ -45043,6 +45251,20 @@ interface UICorner extends UIComponent {
|
|
|
45043
45251
|
* @deprecated
|
|
45044
45252
|
*/
|
|
45045
45253
|
readonly _nominal_UICorner: unique symbol;
|
|
45254
|
+
/**
|
|
45255
|
+
* - **ThreadSafety**: ReadSafe
|
|
45256
|
+
* - **Tags**: Hidden, NotReplicated
|
|
45257
|
+
*
|
|
45258
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UICorner#BottomLeftRadius)
|
|
45259
|
+
*/
|
|
45260
|
+
set BottomLeftRadius(value: UDim);
|
|
45261
|
+
/**
|
|
45262
|
+
* - **ThreadSafety**: ReadSafe
|
|
45263
|
+
* - **Tags**: Hidden, NotReplicated
|
|
45264
|
+
*
|
|
45265
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UICorner#BottomRightRadius)
|
|
45266
|
+
*/
|
|
45267
|
+
set BottomRightRadius(value: UDim);
|
|
45046
45268
|
/**
|
|
45047
45269
|
* Determines the radius of the component.
|
|
45048
45270
|
*
|
|
@@ -45051,6 +45273,20 @@ interface UICorner extends UIComponent {
|
|
|
45051
45273
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UICorner#CornerRadius)
|
|
45052
45274
|
*/
|
|
45053
45275
|
CornerRadius: UDim;
|
|
45276
|
+
/**
|
|
45277
|
+
* - **ThreadSafety**: ReadSafe
|
|
45278
|
+
* - **Tags**: Hidden, NotReplicated
|
|
45279
|
+
*
|
|
45280
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UICorner#TopLeftRadius)
|
|
45281
|
+
*/
|
|
45282
|
+
set TopLeftRadius(value: UDim);
|
|
45283
|
+
/**
|
|
45284
|
+
* - **ThreadSafety**: ReadSafe
|
|
45285
|
+
* - **Tags**: Hidden, NotReplicated
|
|
45286
|
+
*
|
|
45287
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UICorner#TopRightRadius)
|
|
45288
|
+
*/
|
|
45289
|
+
set TopRightRadius(value: UDim);
|
|
45054
45290
|
}
|
|
45055
45291
|
/**
|
|
45056
45292
|
* Instance which facilitates and encourages interaction with UI elements in an experience.
|
|
@@ -45914,6 +46150,8 @@ interface UIScale extends UIComponent {
|
|
|
45914
46150
|
Scale: number;
|
|
45915
46151
|
}
|
|
45916
46152
|
/**
|
|
46153
|
+
* - **Tags**: NotBrowsable
|
|
46154
|
+
*
|
|
45917
46155
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UIShadow)
|
|
45918
46156
|
*/
|
|
45919
46157
|
interface UIShadow extends UIComponent {
|
|
@@ -48659,6 +48897,21 @@ interface MLSession extends RBXObject {
|
|
|
48659
48897
|
*/
|
|
48660
48898
|
ForwardAsync(this: MLSession, data: object): object;
|
|
48661
48899
|
}
|
|
48900
|
+
/**
|
|
48901
|
+
* - **Tags**: NotCreatable, NotReplicated
|
|
48902
|
+
*
|
|
48903
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/OutputLink)
|
|
48904
|
+
*/
|
|
48905
|
+
interface OutputLink extends RBXObject {
|
|
48906
|
+
/**
|
|
48907
|
+
* **DO NOT USE!**
|
|
48908
|
+
*
|
|
48909
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
48910
|
+
* @hidden
|
|
48911
|
+
* @deprecated
|
|
48912
|
+
*/
|
|
48913
|
+
readonly _nominal_OutputLink: unique symbol;
|
|
48914
|
+
}
|
|
48662
48915
|
/**
|
|
48663
48916
|
* - **Tags**: NotCreatable, NotReplicated
|
|
48664
48917
|
*
|