Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Living wiki of UI design patterns and best practices built with Fumadocs, Next.js, and Base UI components.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
rules/easing-natural-decay.md
1---2title: Exponential Ramps for Natural Decay3impact: MEDIUM4impactDescription: Linear ramps for decay produce abrupt, unnatural cutoffs; exponential ramps match perceptual expectations.5tags: easing, decay, audio, animation6---78## Exponential Ramps for Natural Decay910Use exponential ramps, not linear, for natural decay.1112**Incorrect (linear ramp):**1314```ts15gain.gain.linearRampToValueAtTime(0, t + 0.05);16```1718**Correct (exponential ramp):**1920```ts21gain.gain.exponentialRampToValueAtTime(0.001, t + 0.05);22```23