@rbxts/types 1.0.773 → 1.0.774
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.
|
@@ -1633,7 +1633,7 @@ interface AnalyticsService extends Instance {
|
|
|
1633
1633
|
statistics?: { [index: string]: number },
|
|
1634
1634
|
customData?: unknown,
|
|
1635
1635
|
): void;
|
|
1636
|
-
LogEconomyEvent(this: AnalyticsService, player: Player, flowType: CastsToEnum<Enum.AnalyticsEconomyFlowType>, currencyType: string,
|
|
1636
|
+
LogEconomyEvent(this: AnalyticsService, player: Player, flowType: CastsToEnum<Enum.AnalyticsEconomyFlowType>, currencyType: string, amount: number, endingBalance: number, transactionType: string, itemSku?: string, customFields?: object): void;
|
|
1637
1637
|
LogFunnelStepEvent(this: AnalyticsService, player: Player, funnelName: string, funnelSessionId?: string, step?: number, stepName?: string, customFields?: object): void;
|
|
1638
1638
|
LogOnboardingFunnelStepEvent(this: AnalyticsService, player: Player, step: number, stepName?: string, customFields?: object): void;
|
|
1639
1639
|
LogProgressionCompleteEvent(this: AnalyticsService, player: Player, progressionPathName: string, level: number, levelName?: string, customFields?: object): void;
|
|
@@ -26765,6 +26765,10 @@ interface Workspace extends WorldRoot {
|
|
|
26765
26765
|
* @deprecated
|
|
26766
26766
|
*/
|
|
26767
26767
|
InterpolationThrottling: Enum.InterpolationThrottlingMode;
|
|
26768
|
+
/**
|
|
26769
|
+
* Tags: Hidden
|
|
26770
|
+
*/
|
|
26771
|
+
RenderingCacheOptimizations: Enum.RenderingCacheOptimizationMode;
|
|
26768
26772
|
Retargeting: Enum.AnimatorRetargetingMode;
|
|
26769
26773
|
/**
|
|
26770
26774
|
* The **StreamingEnabled** property determines whether game content streaming is enabled for the place. This property is not scriptable and therefore must be set on the **Workspace** object in Studio.
|
|
@@ -33365,6 +33369,7 @@ interface SurfaceAppearance extends Instance {
|
|
|
33365
33369
|
* @deprecated
|
|
33366
33370
|
*/
|
|
33367
33371
|
readonly _nominal_SurfaceAppearance: unique symbol;
|
|
33372
|
+
Color: Color3;
|
|
33368
33373
|
}
|
|
33369
33374
|
|
|
33370
33375
|
/** The [Team](https://developer.roblox.com/en-us/api-reference/class/Team) class represents a faction in a Roblox place. The only valid parent for a Team is in the [Teams](https://developer.roblox.com/en-us/api-reference/class/Teams) service. Teams offer a range of features that are useful to developers that can be divided into two rough groups:
|
|
@@ -15015,6 +15015,35 @@ declare namespace Enum {
|
|
|
15015
15015
|
}
|
|
15016
15016
|
export type RenderPriority = RenderPriority.First | RenderPriority.Input | RenderPriority.Camera | RenderPriority.Character | RenderPriority.Last;
|
|
15017
15017
|
|
|
15018
|
+
export namespace RenderingCacheOptimizationMode {
|
|
15019
|
+
export interface Default extends globalThis.EnumItem {
|
|
15020
|
+
Name: "Default";
|
|
15021
|
+
Value: 0;
|
|
15022
|
+
EnumType: typeof globalThis.Enum.RenderingCacheOptimizationMode;
|
|
15023
|
+
}
|
|
15024
|
+
|
|
15025
|
+
export const Default: Default;
|
|
15026
|
+
|
|
15027
|
+
export interface Disabled extends globalThis.EnumItem {
|
|
15028
|
+
Name: "Disabled";
|
|
15029
|
+
Value: 1;
|
|
15030
|
+
EnumType: typeof globalThis.Enum.RenderingCacheOptimizationMode;
|
|
15031
|
+
}
|
|
15032
|
+
|
|
15033
|
+
export const Disabled: Disabled;
|
|
15034
|
+
|
|
15035
|
+
export interface Enabled extends globalThis.EnumItem {
|
|
15036
|
+
Name: "Enabled";
|
|
15037
|
+
Value: 2;
|
|
15038
|
+
EnumType: typeof globalThis.Enum.RenderingCacheOptimizationMode;
|
|
15039
|
+
}
|
|
15040
|
+
|
|
15041
|
+
export const Enabled: Enabled;
|
|
15042
|
+
|
|
15043
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.RenderingCacheOptimizationMode>;
|
|
15044
|
+
}
|
|
15045
|
+
export type RenderingCacheOptimizationMode = RenderingCacheOptimizationMode.Default | RenderingCacheOptimizationMode.Disabled | RenderingCacheOptimizationMode.Enabled;
|
|
15046
|
+
|
|
15018
15047
|
export namespace RenderingTestComparisonMethod {
|
|
15019
15048
|
export interface psnr extends globalThis.EnumItem {
|
|
15020
15049
|
Name: "psnr";
|