doc: Sync classref with current source
This commit is contained in:
parent
3f5f58b9d8
commit
fcce1ca8c4
|
@ -351,6 +351,15 @@
|
||||||
Loads an image from the binary contents of a PNG file.
|
Loads an image from the binary contents of a PNG file.
|
||||||
</description>
|
</description>
|
||||||
</method>
|
</method>
|
||||||
|
<method name="load_tga_from_buffer">
|
||||||
|
<return type="int" enum="Error">
|
||||||
|
</return>
|
||||||
|
<argument index="0" name="buffer" type="PoolByteArray">
|
||||||
|
</argument>
|
||||||
|
<description>
|
||||||
|
Loads an image from the binary contents of a TGA file.
|
||||||
|
</description>
|
||||||
|
</method>
|
||||||
<method name="load_webp_from_buffer">
|
<method name="load_webp_from_buffer">
|
||||||
<return type="int" enum="Error">
|
<return type="int" enum="Error">
|
||||||
</return>
|
</return>
|
||||||
|
|
|
@ -260,6 +260,9 @@
|
||||||
<member name="audio/output_latency" type="int" setter="" getter="" default="15">
|
<member name="audio/output_latency" type="int" setter="" getter="" default="15">
|
||||||
Output latency in milliseconds for audio. Lower values will result in lower audio latency at the cost of increased CPU usage. Low values may result in audible cracking on slower hardware.
|
Output latency in milliseconds for audio. Lower values will result in lower audio latency at the cost of increased CPU usage. Low values may result in audible cracking on slower hardware.
|
||||||
</member>
|
</member>
|
||||||
|
<member name="audio/output_latency.web" type="int" setter="" getter="" default="50">
|
||||||
|
Safer override for [member audio/output_latency] in the Web platform, to avoid audio issues especially on mobile devices.
|
||||||
|
</member>
|
||||||
<member name="audio/video_delay_compensation_ms" type="int" setter="" getter="" default="0">
|
<member name="audio/video_delay_compensation_ms" type="int" setter="" getter="" default="0">
|
||||||
Setting to hardcode audio delay when playing video. Best to leave this untouched unless you know what you are doing.
|
Setting to hardcode audio delay when playing video. Best to leave this untouched unless you know what you are doing.
|
||||||
</member>
|
</member>
|
||||||
|
|
Loading…
Reference in New Issue