You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/en-us/production/promotion/experience-events.md
+10Lines changed: 10 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -76,6 +76,16 @@ All published events also appear in a dedicated **Events** section on the experi
76
76
77
77
<imgsrc="../../assets/promotion/experience-events/Experience-Page-Promotion.png"width="840"alt="Event promoted on experience's detail page" />
78
78
79
+
### Roblox charts
80
+
81
+
The **Trending Events in Experiences** sort in Roblox's [charts](https://www.roblox.com/charts), available globally and across all platforms, can help increase player discovery and participation in your events. This sort shows active events based on the experience's daily active users (DAU), filterable by location and platform.
82
+
83
+
To be featured in **Trending Events in Experiences**, your event must meet the following criteria:
84
+
85
+
- An active event that started within the last 7 days.
86
+
- Minimum of 1,000 RSVPs.
87
+
- Visible to all players (not private).
88
+
79
89
### Group page
80
90
81
91
If you create events as an admin for a [group](../../projects/groups.md), the group's events will appear under the **Events** tab on the group page.
Copy file name to clipboardExpand all lines: content/en-us/reference/engine/classes/CommerceService.yaml
+46-10Lines changed: 46 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,8 @@
1
1
name: CommerceService
2
2
type: class
3
3
memory_category: Instances
4
-
summary: ''
5
-
description: ''
4
+
summary: 'Supports real-world purchases that you can bundle with digital benefits.'
5
+
description: '`Class.CommerceService` is a service that supports real-world purchases that you can bundle with virtual items. For information on eligibility and implementation, see [Commerce products](../../../production/monetization/commerce-products.md).'
summary: 'Prompts a user to purchase a commerce product using the provided `commerceProductId`. Opens a webview that guides the user through the purchasing flow.'
17
+
description: 'Prompts a user to purchase a commerce product using the provided `commerceProductId`. Opens a webview that guides the user through the purchasing flow.'
description: 'This is a legacy endpoint that is not meant for use. To open the webview to the purchasing flow for real world commerce, see `Class.CommerceService:PromptCommerceProductPurchase`. For more information, see [Commerce products](../../../production/monetization/commerce-products.md)'
summary: 'Retrieves information about the commerce products you are selling in experience.'
61
+
description: |
62
+
Retrieves information about the products that you are selling and surface them within your experience. How you surface products to your users is entirely up to you.
63
+
64
+
<table><thead>
65
+
<tr>
66
+
<th>Name</th>
67
+
<th>string</th>
68
+
<th>Localized name of of the physical item</th>
69
+
</tr></thead>
70
+
<tbody>
71
+
<tr>
72
+
<td>Description</td>
73
+
<td>string</td>
74
+
<td>Localized description of the physical item</td>
75
+
</tr>
76
+
<tr>
77
+
<td>IconImageAssetId</td>
78
+
<td>number</td>
79
+
<td>The image asset id of main default image of the physical item</td>
80
+
</tr>
81
+
<tr>
82
+
<td>DisplayPrice</td>
83
+
<td>string</td>
84
+
<td>Localized price string with currency symbol of the physical item. e.g. “$4.99“</td>
85
+
</tr>
86
+
<tr>
87
+
<td>IsPurchasable</td>
88
+
<td>bool</td>
89
+
<td>If the item can be added to a merchant checkout session, i.e. item is in stock, or can be backordered</td>
description: 'This is a legacy endpoint that is not meant for use. To check if a user is eligible for real world commerce, see `Class.PolicyService.IsEligibleToPurchaseCommerceProduct`. For more information, see [Commerce products](../../../production/monetization/commerce-products.md)'
summary: 'Fires when commerce purchase webview has closed - not an indicator that a purchase was successful.'
128
+
description: |
129
+
Use this signal to detect when a user has completed the purchasing flow and the webview has closed to resume gameplay within the experience. **This signal does not indicate a successful purchase**, so do not grant virtual items solely from this signal.
130
+
131
+
While optional, it is recommended to use this signal to reorient your users on Android, as the commerce purchasing flow will have forced them into portrait mode.
Copy file name to clipboardExpand all lines: content/en-us/reference/engine/classes/PolicyService.yaml
+7Lines changed: 7 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -101,6 +101,12 @@ methods:
101
101
<td>When <code>true</code>, the player is allowed to share content using APIs which open external sharing flows such as <code>Class.CaptureService:PromptShareCapture()|PromptShareCapture()</code>.</td>
0 commit comments