@@ -21,15 +21,19 @@ methods:
2121 summary : |
2222 Creates a new `Class.EditableImage`.
2323 description : |
24- Creates a new `Class.EditableImage`. By default, the resolution
25- is set at 512×512 but it can be specified via the returned object's
24+ Creates a new `Class.EditableImage`. By default, the resolution is set at
25+ 512×512 but it can be specified via the returned object's
2626 `Class.EditableImage.Size` parameter. If the device‑specific editable
2727 memory budget is exhausted, creation will fail and this method will return
2828 `nil`.
2929 code_samples : []
30- parameters : []
30+ parameters :
31+ - name : editableImageOptions
32+ type : Dictionary?
33+ default :
34+ summary : ' '
3135 returns :
32- - type : EditableImage
36+ - type : Object
3337 summary : ' '
3438 tags : []
3539 deprecation_message : ' '
@@ -41,21 +45,44 @@ methods:
4145 summary : |
4246 Creates a new, empty `Class.EditableMesh`.
4347 description : |
44- Creates a new, empty `Class.EditableMesh`. Vertices,
45- triangles and their attributes can be added dynamically to it.
46- If the device‑specific editable memory budget is exhausted,
47- creation will fail and this method will return `nil`.
48+ Creates a new, empty `Class.EditableMesh`. Vertices, triangles and their
49+ attributes can be added dynamically to it. If the device‑specific editable
50+ memory budget is exhausted, creation will fail and this method will return
51+ `nil`.
4852 code_samples : []
49- parameters : []
53+ parameters :
54+ - name : editableMeshOptions
55+ type : Dictionary?
56+ default :
57+ summary : ' '
5058 returns :
51- - type : EditableMesh
59+ - type : Object
5260 summary : ' '
5361 tags : []
5462 deprecation_message : ' '
5563 security : None
5664 thread_safety : Unsafe
5765 capabilities : []
5866 writeCapabilities : []
67+ - name : AssetService:CheckTextureAlphaAsync
68+ summary : ' '
69+ description : ' '
70+ code_samples : []
71+ parameters :
72+ - name : textureId
73+ type : ContentId
74+ default :
75+ summary : ' '
76+ returns :
77+ - type : bool
78+ summary : ' '
79+ tags :
80+ - Yields
81+ deprecation_message : ' '
82+ security : RobloxScriptSecurity
83+ thread_safety : Unsafe
84+ capabilities : []
85+ writeCapabilities : []
5986 - name : AssetService:CreateEditableImageAsync
6087 summary : |
6188 Creates a new `Class.EditableImage` instance populated with the given
@@ -64,18 +91,21 @@ methods:
6491 Creates a new `Class.EditableImage` instance populated with the given
6592 texture. Non-asset texture IDs such as `rbxthumb://` are supported. If
6693 using an image asset, it must be associated with and/or owned by a creator
67- of the experience, or it must have been created inside the experience.
68- If the device-specific editable memory budget is exhausted, creation
69- will fail and this method will return `nil`.
94+ of the experience, or it must have been created inside the experience. If
95+ the device-specific editable memory budget is exhausted, creation will
96+ fail and this method will return `nil`.
7097 code_samples : []
7198 parameters :
72- - name : textureId
73- type : ContentId
99+ - name : content
100+ type : Content
74101 default :
75- summary : |
76- Texture ID of the image to populate the `Class.EditableImage`.
102+ summary : ' '
103+ - name : editableImageOptions
104+ type : Dictionary?
105+ default :
106+ summary : ' '
77107 returns :
78- - type : EditableImage
108+ - type : Object
79109 summary : |
80110 A new `Class.EditableImage` containing the provided image.
81111 tags :
@@ -91,23 +121,25 @@ methods:
91121 content ID.
92122 description : |
93123 Returns a new `Class.EditableMesh` instance created from an existing mesh
94- content ID. By default a `Class.EditableMesh` created from this method will
95- be fixed size such that mesh data can only be modified, not added nor removed.
96- A fixed size `Class.EditableMesh` consumes less memory and should be preferred
97- when possible.
98-
99- If the device-specific editable memory budget is exhausted, creation
100- will fail and this method will return `nil`.
124+ content ID. By default a `Class.EditableMesh` created from this method
125+ will be fixed size such that mesh data can only be modified, not added nor
126+ removed. A fixed size `Class.EditableMesh` consumes less memory and should
127+ be preferred when possible.
128+
129+ If the device-specific editable memory budget is exhausted, creation will
130+ fail and this method will return `nil`.
101131 code_samples : []
102132 parameters :
103- - name : meshId
104- type : ContentId
133+ - name : content
134+ type : Content
105135 default :
106- summary : |
107- Content ID of the mesh from which to create an `Class.EditableMesh`
108- instance.
136+ summary : ' '
137+ - name : editableMeshOptions
138+ type : Dictionary?
139+ default :
140+ summary : ' '
109141 returns :
110- - type : EditableMesh
142+ - type : Object
111143 summary : |
112144 The new `Class.EditableMesh` instance.
113145 tags :
@@ -134,7 +166,7 @@ methods:
134166 instance. The part must have a valid `Class.MeshPart.MeshId|MeshId`
135167 for this method to operate.
136168 returns :
137- - type : EditableMesh
169+ - type : Object
138170 summary : |
139171 The new `Class.EditableMesh` instance.
140172 tags :
0 commit comments