Difference between revisions of "Object:release (Español)"

(Created page with "{{newin|11.0|110|type=function}} Destruye la referencia al objeto. El objeto será eliminado completamente si no es referenciado por otro objeto o hilo de LÖVE. Este mé...")
 
m
Line 15: Line 15:
 
{{param|boolean|success|True if the object was released by this call, false if it had been previously released.}}
 
{{param|boolean|success|True if the object was released by this call, false if it had been previously released.}}
 
== See Also ==
 
== See Also ==
* [[parent::Object]]
+
* [[parent::Object (Español)]]
  
 
== Other Languages ==
 
== Other Languages ==

Revision as of 03:56, 29 November 2019

Available since LÖVE 11.0
This function is not supported in earlier versions.

Destruye la referencia al objeto. El objeto será eliminado completamente si no es referenciado por otro objeto o hilo de LÖVE.

Este método puede usarse para eliminar inmediatamente un recurso sin esperar al recolector de basura.

O.png 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.  


Function

Synopsis

success = Object:release( )

Arguments

None.

Returns

boolean success
True if the object was released by this call, false if it had been previously released.

See Also

Other Languages