Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

max FPS control in useFrame() #3122

Open
AirSurfer09 opened this issue Dec 18, 2023 · 2 comments
Open

max FPS control in useFrame() #3122

AirSurfer09 opened this issue Dec 18, 2023 · 2 comments

Comments

@AirSurfer09
Copy link

Sample code : useFrame(100), runs the frame-loop max 100 fps depending on the client pc performance.
lodash _.throttle might be useful : https://www.geeksforgeeks.org/lodash-_-throttle-method/

@clementroche
Copy link

clementroche commented Dec 28, 2023

something like:

useFrame(()=>{
  // your callback
  },
  {
    throttle: 100,
    priority: 0,
  })

@CodyJasonBennett
Copy link
Member

cc @krispya this will need to be a documented pattern.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants