private float count; void Update(){ count += Time.deltaTime; if(count >= 1.0f){ count = 0.0f; Debug.Log("1秒おきに処理"); } }