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/cloud/webhooks/automate-right-to-erasure.md
+8-6Lines changed: 8 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -90,19 +90,21 @@ After you add the webhook, use it to configure the bot with the following steps:
90
90
91
91
<TabItemlabel="Discord">
92
92
93
+
Check out Discord's [documentation](https://discord.com/developers/docs/topics/oauth2#bot-vs-user-accounts) for latest instructions.
94
+
93
95
1. Navigate to the [Applications page](https://discord.com/developers/applications).
94
96
1. Create a new application and name it to `GDPR Bot`.
95
97
1. The system redirects you to the **General Information** settings of the bot. Copy and save its application ID in a secure place.
96
98
1. Under the settings menu, select **OAuth2**.
97
-
1.Under the **Default Authorization Link** section, expand the **Authorization Method**dropdown and select **In-app Authorization**.
98
-
1.Add the **bot** scope and the **Administrator** permission. Save your changes.
99
-
1. Under the **OAuth2**settings, select the **URL Generator** subcategory.
100
-
1. Select the **bot** scope and the **Administrator** permission.
99
+
1.Navigate to the **OAuth2**settings
100
+
1.Enable the **bot** scope, a list of additional Bot Permissions displays.
101
+
2. Add the **Administrator**permission. Save your changes.
102
+
3. Save the generated URL.
101
103
1. Copy the generated URL. Leave the application settings page unclosed.
102
104
1. Navigate to the generated URL. Select the target server. Click the **Continue** button and then the **Authorize** button.
103
-
1. Navigate back to application settings page of your bot. Under the settings menu, select **bot**.
105
+
1. Navigate back to application settings page and navigate to the Bot settings.
104
106
1. Under the **Privileged Gateway Intents** section, enable **Message Content Intent**.
105
-
1.Under the **Build-A-Bot** section, save the bot token in a secure place for later steps. If you don't see the token, click the **Reset Token** button to generate a new one.
107
+
1.In the Bot settings >**Build-A-Bot** section, save the bot token in a secure place for later steps. If you don't see the token, click the **Reset Token** button to generate a new one.
Copy file name to clipboardExpand all lines: content/en-us/creator-programs/inspire.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ description: Inspire is an annual global online event where creators come togeth
5
5
6
6
Inspire is an annual global online event where creators come together to exchange ideas, learn from workshops led by top creators, and collaborate to boost connections within the community. By participating, you can share your knowledge and host workshops for the broader creator community.
7
7
8
-
See [Roblox Learn](https://www.youtube.com/@RobloxLearn) for content from Inspire 2024.
8
+
See [Roblox Learn](https://www.youtube.com/@RobloxLearn/streams) for content from Inspire 2025.
Copy file name to clipboardExpand all lines: content/en-us/effects/particle-emitters.md
+14-14Lines changed: 14 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -396,21 +396,21 @@ Particle flipbook textures let you animate a particle's texture over its lifetim
396
396
To use particle flipbooks, the texture's dimensions must be divisible by the number of frames in the layout grid. If the texture's dimensions are not compatible with the layout grid size, a warning appears next to the `Class.ParticleEmitter.FlipbookLayout|FlipbookLayout` property in the [Properties](../studio/properties.md) window.
A 1024×1024 texture with a `Enum.ParticleFlipbookLayout.Grid4x4|Grid4x4` layout. The texture's dimensions are divisible by 4, so each frame is 256×256. Similarly, a 1024×512 texture with a custom layout of 8×4 is compatible because 1024 is divisible by 8 and 512 is divisible by 4.
A 100×100 texture with a `Enum.ParticleFlipbookLayout.Grid8x8|Grid8x8` layout. The texture's dimensions are not divisible by 8, so the frames cannot be divided evenly. Similarly, a 1024×1024 texture with a custom layout of 10×10 is incompatible because 1024 is not divisible by 10.
An example compatible texture is 1024×1024 in size with a `Enum.ParticleFlipbookLayout.Grid4x4|Grid4x4` layout, since the texture's dimensions are divisible by 4 and each frame becomes 256×256. Similarly, a 1024×512 texture with a custom layout of 8×4 is compatible because 1024 is divisible by 8 and 512 is divisible by 4.
An example incompatible texture is 100×100 in size with a `Enum.ParticleFlipbookLayout.Grid8x8|Grid8x8` layout, since the texture's dimensions are not evenly divisible by 8 and the frames cannot be divided evenly. Similarly, a 1024×1024 texture with a custom layout of 10×10 is incompatible because 1024 is not evenly divisible by 10.
409
+
</Alert>
410
+
</figure>
411
411
</GridContainer>
412
412
413
-
The flipbook texture can have a frame layout of 2×2, 4×4, 8×8 or custom. For example, the following 1024×1024 image has an 8×8 layout, so it's suitable for a 64‑frame animation.
413
+
The flipbook texture can have a frame layout of 2×2, 4×4, 8×8, or custom. For example, the following 1024×1024 image has an 8×8 layout, so it's suitable for a 64‑frame animation.
414
414
415
415
<imgsrc="../assets/lighting-and-effects/particle-emitter/8x8-Explosion.png"width="512"alt="Sample texture for particle flipbooks" />
416
416
@@ -428,7 +428,7 @@ Once you've specified a valid flipbook [texture](#texture) for the emitter's `Cl
428
428
-**Grid2x2**— 2×2 frames for a 4-frame animation.
429
429
-**Grid4x4**— 4×4 frames for a 16-frame animation.
430
430
-**Grid8x8**— 8×8 frames for a 64-frame animation.
431
-
-**Custom**– A custom grid size defined by `Class.ParticleEmitter.FlipbookSizeX|FlipbookSizeX` and `Class.ParticleEmitter.FlipbookSizeY|FlipbookSizeY`.
431
+
-**Custom**— A custom grid size defined by `Class.ParticleEmitter.FlipbookSizeX|FlipbookSizeX` and `Class.ParticleEmitter.FlipbookSizeY|FlipbookSizeY`.
432
432
433
433
To further customize the flipbook behavior, you can adjust the following properties:
Copy file name to clipboardExpand all lines: content/en-us/production/promotion/rewarded-video-ads.md
+7-3Lines changed: 7 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -220,16 +220,20 @@ To access your rewarded video ad metrics:
220
220
<td>The number of rewards granted for video ad views in your experience. <br /><br /> Different lines show you this metric for different ad placements inside the experience.</td>
221
221
</tr>
222
222
<tr>
223
-
<td>**DUV (Daily Unique Views)**</td>
223
+
<td>**DUV (Daily Unique Viewers)**</td>
224
224
<td>The number of unique users who have viewed one or more video ads in your experience in a day. A view is defined by an impression. <br /><br /> This data is updated with 1 day delay.</td>
225
225
</tr>
226
226
<tr>
227
227
<td>**AEPDUV (Average Earnings Per Daily Uniquer Viewers)**</td>
228
228
<td>The earnings generated per daily unique viewer for rewarded video ads. <br /><br /> This data is updated with 1 day delay.</td>
229
229
</tr>
230
230
<tr>
231
-
<td>**DUV/DAU (Daily Unique Views/Daily Active Users)**</td>
232
-
<td>The percentage of unique users who have viewed a video ad in a day divided by the total number of users who joined your experience that day. <br /><br /> This data is updated with 1 day delay.</td>
231
+
<td>**Eligible Daily Active Users**</td>
232
+
<td>The number of unique daily visitors to your experience who were eligible to see Rewarded Video ads. <br /><br /> This data is updated with 1 day delay.</td>
233
+
</tr>
234
+
<tr>
235
+
<td>**DUV/eDAU (Daily Unique Viewers/Eligible Daily Active Users)**</td>
236
+
<td>The percent of ads eligible visitors to your experience, known as Eligible Daily Active Users, who saw at least one ad on a day. <br /><br /> This data is updated with 1 day delay.</td>
0 commit comments