Skip to content

Default frame rate of 10 feels slow #83

@ericcervin

Description

@ericcervin

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) 
)

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions