Object:release (简体中文)

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

摧毁对象在 Lua 中的引用。如果它没有被其余的 LÖVE 对象或线程引用,对象会被彻底的删除。

这个方法可以用来立即清理空闲资源而不必等待 Lua 的垃圾回收。

O.png 在这个方法被调用后,尝试调用这个对象的其他方法或使用这个对象作为其它 LÖVE API 的参数将会导致产生一个 error。  


Function

Synopsis

success = Object:release( )

Arguments

无。

Returns

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

See Also

Other Languages