check a condition 1000 times per second

how can i check a condition 1000 times per second? i don’t want to use FixedUpdate.cause it only checks 50 times per sec by default and i don’t want to change it.

Hey! I don’t know why you would need to check 1000 times per second, but you could use a Coroutine that has a WaitForSeconds value of 0.001.
Example:

    IEnumerator Checking ()
    {
      yield return new WaitForSeconds(0.001f);
      if (i = 1)
        //do this
    }

Why the hell would you want to run something so specifically fast? The PC won’t be able to run the application at that speed anyway.