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.

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