BufferMode

Available since LÖVE 0.9.0
This enum is not supported in earlier versions.

Buffer modes for File objects.

Constants

none
No buffering. The result of write and append operations appears immediately.
line
Line buffering. Write and append operations are buffered until a newline is output or the buffer size limit is reached.
full
Full buffering. Write and append operations are always buffered until the buffer size limit is reached.

See Also

© 2006–2020 LÖVE Development Team
Licensed under the GNU Free Documentation License, Version 1.3.
https://love2d.org/wiki/BufferMode