Skip to content

Commit 320b6e1

Browse files
update Open Source Docs from Roblox internal teams
1 parent 845a007 commit 320b6e1

File tree

4 files changed

+14
-15
lines changed

4 files changed

+14
-15
lines changed

content/common/navigation/engine/guides.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ navigation:
1010
- title: Coding Fundamentals
1111
path: /tutorials/fundamentals/coding-1/coding-fundamentals
1212
navigation: /engine/tutorials-fundamentals.yaml
13-
- title: Documentation Assistant
13+
- title: Assistant for Documentation
1414
path: /assistant/guide
1515
#section:
1616
# - title: Setting Up Roblox Studio

content/en-us/assistant/guide.md

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
---
2-
title: Documentation Assistant
2+
title: Assistant for Documentation
33
description: How to use the Documentation Assistant to help you build, grow, and monetize your creations.
44
---
5-
The Documentation Assistant is an AI assistant to help you build, grow, and monetize your creations by utilizing Roblox documentation. The Assistant is trained on the official Roblox documentation and designed to answer three categories of questions:
5+
<Alert severity="warning">
6+
The Assistant for Documentation is in beta. You may not have access yet. Additional Assistant capabilities are in development.
7+
</Alert>
8+
9+
The Assistant for Documentation is an AI assistant to help you build, grow, and monetize your creations by utilizing Roblox documentation. The Assistant is trained on the official Roblox documentation and designed to answer three categories of questions:
610

711
- **Build**: Answers questions about creating an experience in Roblox Studio. To learn more about building an experience on Roblox, see [Creation Overview](/creation).
812
- **Grow**: Answers questions about improving an existing experience by leveraging its analytics. To learn more about leveraging your experience's analytics, see [Analytics](../production/analytics/).

content/en-us/navigation/navigation.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@
177177
"title:Creation Overview": "Creation Overview",
178178
"title:Create Your First Experience": "Create Your First Experience",
179179
"title:Coding Fundamentals": "Coding Fundamentals",
180-
"title:Documentation Assistant": "Documentation Assistant",
180+
"title:Assistant for Documentation": "Assistant for Documentation",
181181
"heading:Create": "Create",
182182
"title:Roblox Studio": "Roblox Studio",
183183
"title:Projects": "Projects",

content/en-us/tutorials/core/building/create-basic-visual-effects.md

+6-11
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ particles that add texture to the atmosphere.
2323
## Create a Flare
2424

2525
The first type of particle emitter the sample [Island Jump - Final](https://www.roblox.com/games/14238807008/Island-Jump-Completed-Sample) uses to add dynamic movement to the
26-
experinece is a giant flare at the top of the tallest sea stack platform. As the rest of the environment
26+
experience is a giant flare at the top of the tallest sea stack platform. As the rest of the environment
2727
is static, this effect becomes a focal point in the 3D space, which incentizes players to progress through the environment
2828
so that they can reach the final platform of the experience.
2929

@@ -34,29 +34,27 @@ To create a flare:
3434
<table>
3535
<thead>
3636
<tr>
37-
<th>Name</th>
3837
<th>Size</th>
3938
<th>CFrame.Position</th>
4039
<th>CFrame.Orientation</th>
4140
</tr>
4241
</thead>
4342
<tbody>
4443
<tr>
45-
<td>VFX_Flare</td>
4644
<td>`20, 20, 20`</td>
4745
<td>`400, 331, 79`</td>
4846
<td>`0, 0, 0`</td>
4947
</tr>
5048
</tbody>
5149
</table>
5250
1. Select this block part, then in the **Properties** window,
53-
1. Set **Name** to **Emitter_Flare**.
51+
1. Set **Name** to **VFX_Flare**.
5452
1. Set **Transparency** to **1** so the part is invisible.
5553
1. Enable **Anchored** so the physics system doesn't move the part when the experience starts.
5654
1. Add an attachment to this part.
5755
1. In the **Explorer** window, hover over the block part and click the **** button. A contextual menu displays.
5856
1. From the contextual menu, insert an **Attachment**. An attachment displays in the center of the part in the direction of the positive Y axis.
59-
1. Add a particle emitter to this attachment. The particle emitter immediately emits particles in the direction of the attachment.
57+
1. Add a particle emitter to this attachment, and rename the particle emitter to **Emitter_Flare**. The particle emitter immediately emits particles in the direction of the attachment.
6058

6159
<video controls src="../../../assets/tutorials/core-building-and-scripting/Flare-1.mp4" width="80%"></video>
6260

@@ -130,7 +128,7 @@ To ensure the flare stands out more, you can put a light into it. There are thre
130128

131129
A `Class.PointLight` is best for this to emit light spherically from the part at the position of the particle effect. To create a light source in the part:
132130

133-
1. Add a **PointLight** to **VFX_Flare**.
131+
1. Add a **PointLight** to **Emitter_Flare**.
134132
1. Select the **PointLight** object, then in the **Properties** window,
135133
1. Set **Brightness** to **2** to make the light brighter.
136134
1. Set **Range** to **36** to increase the light's range.
@@ -148,15 +146,13 @@ To create dust particles:
148146
<table>
149147
<thead>
150148
<tr>
151-
<th>Name</th>
152149
<th>Size</th>
153150
<th>CFrame.Position</th>
154151
<th>CFrame.Orientation</th>
155152
</tr>
156153
</thead>
157154
<tbody>
158155
<tr>
159-
<td>VFX_DustMotes</td>
160156
<td>`645, 355, 275`</td>
161157
<td>`198, 168, 26`</td>
162158
<td>`0, 0, 0`</td>
@@ -165,13 +161,12 @@ To create dust particles:
165161
</table>
166162

167163
1. Select this block part, then in the **Properties** window,
168-
169-
1. Set **Name** to **Emitter_DustMotes**.
164+
1. Set **Name** to **VFX_DustMotes**.
170165
1. Set **Transparency** to **1** so the part is invisible.
171166
1. Disable **CanCollide** so players don't collide with the part as they move through the playable area.
172167
1. Enable **Anchored** so the physics system doesn't move the part when the experience starts.
173168

174-
1. Add a particle emitter to this part. The particle emitter immediately emits particles within the part's area.
169+
1. Add a particle emitter to this part, then rename the particle emitter to **Emitter_DustMotes**. The particle emitter immediately emits particles within the part's area.
175170

176171
<video controls src="../../../assets/tutorials/core-building-and-scripting/DustParticles-1.mp4" width="80%"></video>
177172

0 commit comments

Comments
 (0)