Available since LÖVE 0.7.0
|
This function is not supported in earlier versions.
|
Создаёт новый поток из Lua файла или FileData объекта.
Функция
Available since LÖVE 0.9.0
|
This variant is not supported in earlier versions.
|
Вид
thread = love.thread.newThread( filename )
Аргументы
string filename
- Имя Lua файла, который будет загружен как Поток.
Возвращает
Thread (Русский) thread
- Новый поток, который ещё не запущен.
Функция
Available since LÖVE 0.9.0
|
This variant is not supported in earlier versions.
|
Вид
thread = love.thread.newThread( fileData )
Аргументы
FileData fileData
- The FileData containing the Lua code to use as the source.
Возвращает
Thread thread
- Новый поток, который ещё не запущен.
Функция
Available since LÖVE 0.9.2
|
This variant is not supported in earlier versions.
|
Вид
thread = love.thread.newThread( codestring )
Аргументы
string codestring
- A string containing the Lua code to use as the source. It needs to either be at least 1024 characters long, or contain at least one newline.
Возвращает
Thread thread
- Новый поток, который ещё не запущен.
Функция
Removed in LÖVE 0.9.0
|
This variant is not supported in that and later versions.
|
Вид
thread = love.thread.newThread( name, filename )
Аргументы
string name
- The name of the thread.
string filename
- The name of the File to use as source.
Возвращает
Thread thread
- Новый поток, который ещё не запущен.
Функция
Removed in LÖVE 0.9.0
|
This variant is not supported in that and later versions.
|
Вид
thread = love.thread.newThread( name, file )
Аргументы
string name
- The name of the thread.
File file
- The file to use as source.
Возвращает
Thread thread
- Новый поток, который ещё не запущен.
Функция
Removed in LÖVE 0.9.0
|
This variant is not supported in that and later versions.
|
Вид
thread = love.thread.newThread( name, data )
Аргументы
string name
- The name of the thread.
Data data
- The data to use as source.
Возвращает
Thread thread
- Новый поток, который ещё не запущен.
Смотрите также
Другие языки