love.threaderror (Italiano)
Disponibile da LÖVE 0.9.0 |
Questa/o callback non è supportata/o nelle versioni precedenti. |
Callback chiamata quando un Thread riscontra un errore.
Contents
Funzione
Sinossi
love.threaderror( thread, errorstr )
Argomenti
Thread (Italiano) thread
- Il thread che ha riscontrato l'errore.
string (Italiano) errorstr
- Il messaggio di errore.
Restituisce
Niente.
Esempi
function love.load()
mythread = love.thread.newThread("thread.lua")
mythread:start()
end
function love.threaderror(thread, errorstr)
print("Thread error!\n"..errorstr)
-- thread:getError() restituirà lo stesso messaggio di errore.
end
Vedi anche
In altre lingue
Dansk –
Deutsch –
English –
Español –
Français –
Indonesia –
Italiano –
Lietuviškai –
Magyar –
Nederlands –
Polski –
Português –
Română –
Slovenský –
Suomi –
Svenska –
Türkçe –
Česky –
Ελληνικά –
Български –
Русский –
Српски –
Українська –
עברית –
ไทย –
日本語 –
正體中文 –
简体中文 –
Tiếng Việt –
한국어
More info