diff options
| author | Franklin Sobrinho | 2015-12-06 09:12:14 -0300 |
|---|---|---|
| committer | Franklin Sobrinho | 2015-12-06 09:12:14 -0300 |
| commit | 3c4b0236cbd87502673e7dd2ac2bb9f3ed92277c (patch) | |
| tree | 599dcaa655c4587a4ac1a0bdca4a9785fe7eae27 /doc/base/classes.xml | |
| parent | fe2a9bc746df86510391435f89eb10f6e0eddec4 (diff) | |
| download | godot-3c4b0236cbd87502673e7dd2ac2bb9f3ed92277c.tar.gz godot-3c4b0236cbd87502673e7dd2ac2bb9f3ed92277c.tar.zst godot-3c4b0236cbd87502673e7dd2ac2bb9f3ed92277c.zip | |
Add constructor for Image built-in type
Diffstat (limited to '')
| -rw-r--r-- | doc/base/classes.xml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/doc/base/classes.xml b/doc/base/classes.xml index fd5df945b..ab1320908 100644 --- a/doc/base/classes.xml +++ b/doc/base/classes.xml @@ -13147,6 +13147,21 @@ returns:= "username=user&password=pass" <description> </description> </method> + <method name="Image"> + <return type="Image"> + </return> + <argument index="0" name="width" type="int"> + </argument> + <argument index="1" name="height" type="int"> + </argument> + <argument index="2" name="mipmaps" type="bool"> + </argument> + <argument index="3" name="format" type="int"> + </argument> + <description> + Create an empty image of a specific size and format. + </description> + </method> </methods> <constants> <constant name="COMPRESS_BC" value="0"> |
