mirror of
https://github.com/godotengine/godot.git
synced 2026-01-03 18:11:19 +03:00
Expose BitMap's convert_to_image and resize methods to GDScript
(cherry picked from commit 453912d48d)
This commit is contained in:
committed by
Rémi Verschelde
parent
58191c4b7e
commit
941879f601
@@ -9,6 +9,12 @@
|
||||
<tutorials>
|
||||
</tutorials>
|
||||
<methods>
|
||||
<method name="convert_to_image" qualifiers="const">
|
||||
<return type="Image" />
|
||||
<description>
|
||||
Returns an image of the same size as the bitmap and with a [enum Image.Format] of type [code]FORMAT_L8[/code]. [code]true[/code] bits of the bitmap are being converted into white pixels, and [code]false[/code] bits into black.
|
||||
</description>
|
||||
</method>
|
||||
<method name="create">
|
||||
<return type="void" />
|
||||
<argument index="0" name="size" type="Vector2" />
|
||||
@@ -58,6 +64,13 @@
|
||||
<description>
|
||||
</description>
|
||||
</method>
|
||||
<method name="resize">
|
||||
<return type="void" />
|
||||
<argument index="0" name="new_size" type="Vector2" />
|
||||
<description>
|
||||
Resizes the image to [code]new_size[/code].
|
||||
</description>
|
||||
</method>
|
||||
<method name="set_bit">
|
||||
<return type="void" />
|
||||
<argument index="0" name="position" type="Vector2" />
|
||||
|
||||
Reference in New Issue
Block a user