Difference between revisions of "Object:release (Italiano)"

Line 1: Line 1:
 
{{newin (Italiano)|[[11.0]]|110|type=funzione}}
 
{{newin (Italiano)|[[11.0]]|110|type=funzione}}
Destroys the object's Lua reference. The object will be completely deleted if it's not referenced by any other LÖVE object or thread.
+
Distrugge i riferimenti di Lua all'oggetto. L'oggetto sarà completamente rimosso, a meno che altri oggetti o thread di LÖVE non possiedano un riferimento a tale oggetto.
  
This method can be used to immediately clean up resources without waiting for Lua's garbage collector.
+
Questo metodo può essere utilizzato per liberare immediatamente le risorse, senza attendere l'attivazione del garbage collector automatico di Lua.
  
{{notice|After this method has been called, attempting to call any other method on the object or using the object as an argument in another LÖVE API will cause an error.}}
+
{{notice|Una volta chiamato questo metodo, tentare di chiamare ogni altro metodo sull'oggetto o utilizzarlo come argomento in un'altra API LÖVE causerà un errore.}}
== Function ==
+
== Funzione ==
=== Synopsis ===
+
=== Sinossi ===
 
<source lang="lua">
 
<source lang="lua">
success = Object:release( )
+
successo = Object:release( )
 
</source>
 
</source>
=== Arguments ===
+
=== Argomenti ===
None.
+
Nessuno.
=== Returns ===
+
=== Restituisce ===
{{param|boolean|success|True if the object was released by this call, false if it had been previously released.}}
+
{{param|boolean|successo|Vero se l'oggetto è stato rilasciato dalla chiamata, falso se è già stato rilasciato precedentemente.}}
== See Also ==
+
== Vedi anche ==
* [[parent::Object]]
+
* [[parent::Object (Italiano)]]
  
== Other Languages ==
+
== In altre lingue ==
 
{{i18n|Object:release}}
 
{{i18n|Object:release}}
  
[[Category:Functions]]
+
[[Category:Functions (Italiano)]]
{{#set:Description=Immediately destroys the object's Lua reference.}}
+
{{#set:Description=Distrugge i riferimenti di Lua all'oggetto.}}

Revision as of 14:05, 15 March 2021

Disponibile da LÖVE 11.0
Questa/o funzione non è supportata/o nelle versioni precedenti.

Distrugge i riferimenti di Lua all'oggetto. L'oggetto sarà completamente rimosso, a meno che altri oggetti o thread di LÖVE non possiedano un riferimento a tale oggetto.

Questo metodo può essere utilizzato per liberare immediatamente le risorse, senza attendere l'attivazione del garbage collector automatico di Lua.

O.png Una volta chiamato questo metodo, tentare di chiamare ogni altro metodo sull'oggetto o utilizzarlo come argomento in un'altra API LÖVE causerà un errore.  


Funzione

Sinossi

successo = Object:release( )

Argomenti

Nessuno.

Restituisce

boolean successo
Vero se l'oggetto è stato rilasciato dalla chiamata, falso se è già stato rilasciato precedentemente.

Vedi anche

In altre lingue