Assets.Scripts.Gore.BloodDroplet.Update C# (CSharp) Method

Update() public method

public Update ( ) : void
return void
        void Update()
        {
            if (Time.time - _spawnTime > _selfDestructTime)
            {
                Destroy(gameObject);
            }
        }