Skip to content

Commit 990d690

Browse files
update Open Source Docs from Roblox internal teams
1 parent 8925bf4 commit 990d690

File tree

9 files changed

+27
-37
lines changed

9 files changed

+27
-37
lines changed

content/en-us/creator-programs/todays-picks-home.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ Your amazing creations are what makes Roblox special, and we are thrilled to fea
2323

2424
If you wish to nominate your experience to be featured for Today's Picks, please complete the survey below. Our editorial team reviews nominations on an ongoing basis. Due to the high volume of applicants, only those selected for Today's Picks on Home will be notified. If you haven't heard back, we encourage you to fill out the form each time your experience has a notable update.
2525

26-
<Button href="https://survey.roblox.com/jfe/form/SV_cHDxf7DtHltY4US" size='large' variant='contained' style={{width:200}}>Apply</Button>
26+
<Button href="https://survey.roblox.com/jfe/form/SV_7VTnD59gg3nFiTA" size='large' variant='contained' style={{width:200}}>Apply</Button>
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
0.690.0.6900721
2-
version-ffd2994ae3bd41ab
1+
0.691.0.6910867
2+
version-f0b439683245446c

content/en-us/reference/engine/classes/AdService.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ methods:
8888
type: AdFormat
8989
default:
9090
summary: |
91-
The format of the requested ad. For example, `RewardedOnDemandVideo`.
91+
The format of the requested ad. For example, `RewardedVideo`.
9292
returns:
9393
- type: Variant
9494
summary: ''

content/en-us/reference/engine/classes/ConfigSnapshot.yaml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,6 @@ methods:
6161
type: string
6262
default:
6363
summary: ''
64-
- name: defaultValue
65-
type: Variant
66-
default:
67-
summary: ''
6864
returns:
6965
- type: Variant
7066
summary: ''

content/en-us/reference/engine/classes/Lighting.yaml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -419,12 +419,11 @@ properties:
419419
experience, as an `Enum.LightingStyle` option.
420420
code_samples: []
421421
type: LightingStyle
422-
tags:
423-
- NotScriptable
422+
tags: []
424423
deprecation_message: ''
425424
security:
426425
read: None
427-
write: None
426+
write: RobloxScriptSecurity
428427
thread_safety: ReadSafe
429428
category: Appearance
430429
serialization:
@@ -510,12 +509,11 @@ properties:
510509
prioritizes view distance.
511510
code_samples: []
512511
type: boolean
513-
tags:
514-
- NotScriptable
512+
tags: []
515513
deprecation_message: ''
516514
security:
517515
read: None
518-
write: None
516+
write: RobloxScriptSecurity
519517
thread_safety: ReadSafe
520518
category: Appearance
521519
serialization:

content/en-us/reference/engine/classes/Plugin.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -592,7 +592,8 @@ methods:
592592
returns:
593593
- type: ()
594594
summary: ''
595-
tags: []
595+
tags:
596+
- Deprecated
596597
deprecation_message: ''
597598
security: PluginSecurity
598599
thread_safety: Unsafe

content/en-us/reference/engine/classes/TextGenerator.yaml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -147,27 +147,23 @@ methods:
147147
<th>Key Name</th>
148148
<th>Data Type</th>
149149
<th>Description</th>
150-
<th>Required</th>
151150
</tr>
152151
</thead>
153152
<tbody>
154153
<tr>
155154
<td><code>UserPrompt</code></td>
156155
<td>string</td>
157156
<td>Optional prompt from the user that initiates the chat. This could be a question, statement, or command that the user wants the model to respond to.</td>
158-
<td>No</td>
159157
</tr>
160158
<tr>
161159
<td><code>ContextToken</code></td>
162160
<td>string</td>
163161
<td>Prompt history context token containing a summarization of the previous prompt requests and responses in a conversation up to the current request. If no token is provided, a new token is generated and returned in the response. Providing a previously generated context token restores the conversation state into the current request.</td>
164-
<td>No</td>
165162
</tr>
166163
<tr>
167164
<td><code>MaxTokens</code></td>
168165
<td>number</td>
169166
<td>The maximum number of tokens in the response generated by the model, expected to be an integer whose value is at least <code>1</code>. This limits the length of the response, preventing overly long or incomplete answers. Non-integral numbers will be rounded to the nearest integer.</td>
170-
<td>No</td>
171167
</tr>
172168
</tbody>
173169
</table>

content/en-us/reference/engine/classes/Workspace.yaml

Lines changed: 16 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1262,30 +1262,28 @@ methods:
12621262
summary: |
12631263
Returns the server's Unix time in seconds.
12641264
description: |
1265-
`Class.Workspace:GetServerTimeNow()|GetServerTimeNow()` returns the
1266-
client's best approximation of the current time on the server. This is
1267-
useful for creating synchronized experiences as every client will get
1268-
about the same results regardless of their timezone or local clock.
1265+
This method returns the client's best approximation of the current time on
1266+
the server. It is useful for creating synchronized experiences, as every
1267+
client will get roughly the same results regardless of their timezone or
1268+
local clock.
12691269
1270-
This returns a Unix timestamp, similar to `Library.os|os.time()`, that can
1271-
be used with `Library.os|os.date()` or with
1272-
`Datatype.DateTime.fromUnixTimestamp()`.
1273-
1274-
The timestamp returned by this function is smoothed so that:
1270+
This method returns a Unix timestamp, similar to `Library.os|os.time()`,
1271+
that you can use with `Library.os|os.date()` or
1272+
`Datatype.DateTime.fromUnixTimestamp()`. The timestamp is smoothed so
1273+
that:
12751274
12761275
- It is monotonic; its value will never decrease.
12771276
- It moves at the same rate as the local clock to within 0.6%.
12781277
1279-
`Class.Workspace:GetServerTimeNow()|GetServerTimeNow()` is expensive to
1280-
call compared to `Datatype.DateTime.now()`, and is less precise than
1281-
`Library.os|os.clock()`, so it should be used to make sure an event starts
1282-
at the right real world time or to adjust things periodically to keep a
1283-
series of events in sync.
1278+
This method is useful for making sure an event starts at the right
1279+
real-world time and for periodic adjustments to keep a series of events in
1280+
sync. For benchmarking or other use cases that require higher precision,
1281+
consider `Library.os|os.clock()`.
12841282
1285-
This function relies on the server, so calling it from a client that isn't
1286-
connected will throw an error. Also note that this function is not
1287-
suitable for things like timed rewards as it is not secure compared to
1288-
tracking such timers on the server.
1283+
This method relies on the server, so calling it from a client that isn't
1284+
connected will throw an error. Also note that this method is not suitable
1285+
for things like timed rewards, as it is not secure compared to tracking
1286+
such timers on the server.
12891287
12901288
See also:
12911289

tools/checks/utils/allowedHttpLinks.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -684,3 +684,4 @@ https://www.ecma-international.org/publications-and-standards/standards/ecma-404
684684
https://github.com/Roblox/creator-docs/blob/main/content/en-us/reference/cloud/
685685
https://www.llama.com/llama3/license/
686686
https://ai.google.dev/gemini-api/terms
687+
https://survey.roblox.com/jfe/form/SV_7VTnD59gg3nFiTA

0 commit comments

Comments
 (0)