Difference between revisions of "Buffer"
m |
|||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
<!-- GIDEROSOBJ:Buffer --> | <!-- GIDEROSOBJ:Buffer --> | ||
− | '''Supported platforms:''' [[File:Platform android.png]][[File:Platform ios.png]][[File:Platform mac.png]][[File:Platform pc.png]][[File:Platform html5.png]][[File:Platform winrt.png]][[File:Platform win32.png]]<br/> | + | '''Supported platforms:''' [[File:Platform android.png]][[File:Platform ios.png]][[File:Platform mac.png]][[File:Platform pc.png]][[File:Platform html5.png]][[File:Platform winrt.png]][[File:Platform win32.png]][[File:Platform linux.png]]<br/> |
'''Available since:''' Gideros 2020.2<br/> | '''Available since:''' Gideros 2020.2<br/> | ||
'''Inherits from:''' [[Object]]<br/> | '''Inherits from:''' [[Object]]<br/> | ||
Line 8: | Line 8: | ||
The Buffer class acts as FIFO buffer with Gideros internal file system integration. | The Buffer class acts as FIFO buffer with Gideros internal file system integration. | ||
− | At | + | At Lua side, Buffers are created with a name, and data can be added or taken from them. |
Once created, buffer data can also be accessed by internal gideros functions that normally use files, such as textures or sounds. To do that pass '''|B|buffer.ext''' as the file name, where buffer.ext is the name of the buffer. | Once created, buffer data can also be accessed by internal gideros functions that normally use files, such as textures or sounds. To do that pass '''|B|buffer.ext''' as the file name, where buffer.ext is the name of the buffer. |
Revision as of 21:52, 5 February 2025
Supported platforms:
Available since: Gideros 2020.2
Inherits from: Object
Description
The Buffer class acts as FIFO buffer with Gideros internal file system integration.
At Lua side, Buffers are created with a name, and data can be added or taken from them.
Once created, buffer data can also be accessed by internal gideros functions that normally use files, such as textures or sounds. To do that pass |B|buffer.ext as the file name, where buffer.ext is the name of the buffer.
MethodsBuffer.new creates a new Buffer object |
EventsConstants |