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/localization/automatic-translations.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,6 +19,8 @@ Automatic Text Capture (ATC) captures text strings from UI elements in your expe
19
19
20
20
ATC evaluates over time which strings should be added to your translation table, so it may take up to a few days for new strings to appear in Translator Portal after users encounter them. If you require strings to be captured immediately, you can use the [Studio text capture process](#text-capture-in-studio).
21
21
22
+
ATC only captures text objects that have `Class.GuiBase2d.AutoLocalize|AutoLocalize` enabled. If you do not want ATC to collect a certain text string, such as a name or unique text entry, disable this property. Note that for `Class.TextBox` objects, only `Class.TextBox.PlaceholderText|PlaceholderText` is captured; the assumption is that strings in `Class.TextBox.Text|Text` were provided by the player.
23
+
22
24
To enable Automatic Text Capture:
23
25
24
26
1. In localization settings, navigate to **Settings**.
@@ -27,8 +29,6 @@ To enable Automatic Text Capture:
width="800" alt="The Localization Settings section highlighting the toggle for Capture text from Experience UI while users play."/>
29
31
30
-
ATC adds text strings to the localization table within 1–2 minutes of encountering the text in the experience. If you do not want ATC to collect a certain text string, such as a name or unique text entry, disable the `Class.GuiBase2d.AutoLocalize|AutoLocalize` property of the text object.
31
-
32
32
<Alertseverity="info">
33
33
ATC can not capture some experience objects. These objects may require special handling with <ahref="./localize-with-scripting.md">localization scripts</a>. The current exemptions are:
Copy file name to clipboardExpand all lines: content/en-us/production/promotion/ads-manager.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -80,6 +80,12 @@ You can use existing thumbnail images you have previously uploaded to the Creato
80
80
81
81
### Define the campaign
82
82
83
+
<Alertseverity="warning">
84
+
Campaigns for experiences that are not unique can result in **no ad spend** and **no conversions**.
85
+
86
+
Experiences with metadata and place files that closely resemble existing experiences on Roblox are not prioritized for recommendations and might rank lower in search results. Campaigns for these experiences might not be effective.
87
+
</Alert>
88
+
83
89
To create an ad campaign with the new Ads Manager:
84
90
85
91
1. Go to **Manage Ads** and click **Create Campaign**.
Copy file name to clipboardExpand all lines: content/en-us/reference/engine/classes/Attachment.yaml
+66-46Lines changed: 66 additions & 46 deletions
Original file line number
Diff line number
Diff line change
@@ -5,13 +5,19 @@
5
5
name: Attachment
6
6
type: class
7
7
memory_category: Instances
8
-
summary: |-
8
+
summary: |
9
9
Defines a point and orientation relative to an ancestor `Class.PVInstance`,
10
10
`Class.Bone`, or another `Class.Attachment`.
11
-
description: |-
12
-
An `Attachment` defines a point and orientation relative to an ancestor `Class.PVInstance`, `Class.Bone`, or another `Attachment`. The offset is stored in the `Class.Attachment.CFrame|CFrame` property. The offset can also be set through other properties, such as `Class.Attachment.WorldCFrame|WorldCFrame`.
11
+
description: |
12
+
An `Attachment` defines a point and orientation relative to an ancestor
13
+
`Class.PVInstance`, `Class.Bone`, or another `Attachment`. The offset is
14
+
stored in the `Class.Attachment.CFrame|CFrame` property. The offset can also
15
+
be set through other properties, such as
16
+
`Class.Attachment.WorldCFrame|WorldCFrame`.
13
17
14
-
If no ancestral `Class.PVInstance` or `Class.Attachment` exists, then `Class.Attachment.CFrame|CFrame` and `Class.Attachment.WorldCFrame|WorldCFrame` are the same.
18
+
If no ancestral `Class.PVInstance` or `Class.Attachment` exists, then
19
+
`Class.Attachment.CFrame|CFrame` and
20
+
`Class.Attachment.WorldCFrame|WorldCFrame` are the same.
15
21
16
22
Attachments are used by several kinds of `Class.Constraint|Constraints` and
17
23
are also valid alternatives to `Class.BasePart` as a parent for objects such
@@ -34,10 +40,10 @@ tags: []
34
40
deprecation_message: ''
35
41
properties:
36
42
- name: Attachment.Axis
37
-
summary: |-
43
+
summary: |
38
44
Direction of the **X** axis of the attachment, represented as a unit
39
45
`Datatype.Vector3`.
40
-
description: |-
46
+
description: |
41
47
Direction of the **X** axis of the attachment, represented as a unit
42
48
`Datatype.Vector3`.
43
49
code_samples: []
@@ -56,8 +62,9 @@ properties:
56
62
capabilities:
57
63
- Basic
58
64
- name: Attachment.CFrame
59
-
summary: '`Datatype.CFrame` offset of the attachment.'
60
-
description: |-
65
+
summary: |
66
+
`Datatype.CFrame` offset of the attachment.
67
+
description: |
61
68
The `Datatype.CFrame` offset of the attachment. Changes to this property
62
69
will reflect onto the `Class.Attachment.Position|Position` and
63
70
`Class.Attachment.Rotation|Rotation` properties of this object. Similarly,
@@ -77,8 +84,9 @@ properties:
77
84
capabilities:
78
85
- Basic
79
86
- name: Attachment.Orientation
80
-
summary: Orientation of the attachment relative to the orientation of its parent.
81
-
description: |-
87
+
summary: |
88
+
Orientation of the attachment relative to the orientation of its parent.
89
+
description: |
82
90
Orientation of the attachment relative to the orientation of its parent.
83
91
Rotations are in **Z**, **X**, **Y** order.
84
92
code_samples: []
@@ -98,10 +106,10 @@ properties:
98
106
capabilities:
99
107
- Basic
100
108
- name: Attachment.Position
101
-
summary: |-
109
+
summary: |
102
110
Positional offset of the attachment, relative to the position and
103
111
orientation of its parent.
104
-
description: |-
112
+
description: |
105
113
Positional offset of the attachment, relative to the position and
106
114
orientation of its parent.
107
115
code_samples: []
@@ -121,8 +129,9 @@ properties:
121
129
capabilities:
122
130
- Basic
123
131
- name: Attachment.Rotation
124
-
summary: Rotation of the attachment relative to the rotation of its parent.
125
-
description: |-
132
+
summary: |
133
+
Rotation of the attachment relative to the rotation of its parent.
134
+
description: |
126
135
Rotation of the attachment relative to the rotation of its parent.
127
136
Rotations are in **Z**, **Y**, **X** order.
128
137
code_samples: []
@@ -131,7 +140,7 @@ properties:
131
140
- Hidden
132
141
- NotReplicated
133
142
- Deprecated
134
-
deprecation_message: |-
143
+
deprecation_message: |
135
144
This property is deprecated and should not be used in new work. See
0 commit comments