low-health

Display a pulsing red vignette overlay when the player's health is low.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "low-health" with this command: npx skills add verekia/r3f-gamedev/verekia-r3f-gamedev-low-health

Low Health

Display a pulsing red vignette overlay when the player's health is low.

Technique

Use a full-screen fixed div with box-shadow: inset to create a red vignette effect. Animate the opacity with CSS keyframes for a pulsing effect.

Key Concepts

  • Fixed positioning with inset-0 to cover the entire screen
  • pointer-events-none to allow clicking through the overlay
  • Inset box shadow creates the vignette: inset 0 0 160px 40px red
  • CSS animation for pulsing: animate-[low-health-opacity_0.5s_ease-in-out_infinite_alternate]

Usage

<div
  className="pointer-events-none fixed inset-0 animate-[low-health-opacity_0.5s_ease-in-out_infinite_alternate]"
  style={{ boxShadow: 'inset 0 0 160px 40px red' }}
/>

This skill is part of verekia's r3f-gamedev.

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Coding

smooth-interpolation

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

reactive-polling

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

ui-useframe

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

health-bars

No summary provided by upstream source.

Repository SourceNeeds Review