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.