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

Default frame rate of 10 feels slow #83

Open
ericcervin opened this issue Mar 19, 2022 · 2 comments
Open

Default frame rate of 10 feels slow #83

ericcervin opened this issue Mar 19, 2022 · 2 comments

Comments

@ericcervin
Copy link

When I first started running loops in sketching, the performance felt sluggish and I wondered if there was a bug. Once I checked the documentation, I learned that 10 was the intended default, and I started using set-frame-rate! in my sketches. Would it be worthwhile to have a higher default? Maybe it might improve the experience for other new and naive users.

#lang sketching
(define (setup)
  (size 480 120)
  (smoothing 'smoothed)
  (background 200)

  (fill 0 102)
  (no-stroke)
  )

(define (draw)
  (ellipse mouse-x mouse-y 9 9) 
)
@ericcervin
Copy link
Author

image

@ericcervin
Copy link
Author

image

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

1 participant