private void OnClickHandler() { if (_isGameplayStarted == false) { return; } _boneGenerator.TryThrowBones(); }
private IEnumerator ThrowDelay() { yield return(new WaitForSeconds(_throwDelay)); _boneGenerator.TryThrowBones(); _throwDelayCoroutine = null; }