class TemporaryEffect : Component

book_4_sparkGenerated
code_blocksInput

Description

The TemporaryEffect class is responsible for destroying a GameObject after a specified number of seconds. If the GameObject or its children have any components that implement ITemporaryEffect, the destruction will be delayed until those effects are completed. This is particularly useful for ensuring that sounds or particles have finished before the GameObject is removed.

Members

Static Members

Member NameSummary
CreateOrphansLook at the children in this GameObject and orphan any temporary effects.

Instance Members

Member NameSummary
DestroyAfterSecondsNumber of seconds to wait before destroying.
WaitForChildEffectsIf true, waits for any ITemporaryEffect's to finish before destroying.