@rbxts/types 1.0.771 → 1.0.773
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/roblox.d.ts +6 -0
- package/package.json +1 -1
package/include/roblox.d.ts
CHANGED
|
@@ -355,6 +355,8 @@ interface AgentParameters {
|
|
|
355
355
|
AgentHeight?: number;
|
|
356
356
|
/** Sets whether off-mesh links for jumping are allowed. */
|
|
357
357
|
AgentCanJump?: boolean;
|
|
358
|
+
/** Determines whether climbing `TrussParts` during pathfinding is allowed. */
|
|
359
|
+
AgentCanClimb?: boolean;
|
|
358
360
|
/** Determines the spacing between intermediate waypoints in path. */
|
|
359
361
|
WaypointSpacing?: number;
|
|
360
362
|
/** Table of materials or defined PathfindingModifiers and their "cost" for traversal. Useful for making the agent prefer certain materials/regions over others. */
|
|
@@ -536,10 +538,14 @@ interface SendNotificationConfig {
|
|
|
536
538
|
}
|
|
537
539
|
|
|
538
540
|
interface PolicyInfo {
|
|
541
|
+
/** When true, the player might see immersive ads within an experience. */
|
|
542
|
+
AreAdsAllowed: boolean;
|
|
539
543
|
/** When true, the player cannot interact with paid (via in-experience currency or Robux) random item generators. */
|
|
540
544
|
ArePaidRandomItemsRestricted: boolean;
|
|
541
545
|
/** A list of external link references (for example, social media links, handles, or iconography) a player is permitted to see. Possible values include: “Discord”, “Facebook”, “Twitch”, and “YouTube”. */
|
|
542
546
|
AllowedExternalLinkReferences: Array<string>;
|
|
547
|
+
/** When true, the player is eligible to purchase subscriptions within an experience. */
|
|
548
|
+
IsEligibleToPurchaseSubscription: boolean;
|
|
543
549
|
/** When true, the player can trade virtual items that they purchased with in-experience currency or Robux. */
|
|
544
550
|
IsPaidItemTradingAllowed: boolean;
|
|
545
551
|
/** When true, an experience should enforce compliance changes. See [here](https://devforum.roblox.com/t/about-our-upcoming-global-compliance-system/461447) for details. */
|