New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@blooooork/three-effects

Package Overview
Dependencies
Maintainers
0
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@blooooork/three-effects

Advanced Three.js visual effects including bloom, particles, and material systems

  • 1.0.0
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
61
Maintainers
0
Weekly downloads
 
Created
Source

@blooooork/three-effects

A professional-grade collection of visual effects for Three.js applications. This package provides high-performance, reusable effect systems including bloom post-processing, particle systems, and advanced material management.

Features

🌟 Bloom Effect System

Advanced post-processing bloom effects with configurable parameters:

import { BloomEffectSystem } from '@blooooork/three-effects';

const bloomSystem = new BloomEffectSystem(renderer, scene, camera);
// In your render loop:
bloomSystem.render();

🎉 Particle System

Sophisticated particle system with physics and automatic cleanup:

import { ParticleSystem } from '@blooooork/three-effects';

const particles = new ParticleSystem(scene, camera);
// Create a confetti burst
particles.createConfettiBurst(
    new THREE.Vector3(0, 0, 0),  // position
    50,                          // particle count
    [0xff0000, 0x00ff00]        // colors
);
// In your render loop:
particles.update();

✨ Emission Material System

Efficient material management with automatic caching:

import { EmissionMaterialSystem } from '@blooooork/three-effects';

const materials = new EmissionMaterialSystem();
const glowingMaterial = materials.createEmissiveMaterial(
    new THREE.Color(0xff0000),
    {
        emissiveIntensity: 2,
        roughness: 0.5
    }
);

Installation

npm install @blooooork/three-effects

Requirements

  • three.js ^0.160.0

License

MIT

Keywords

FAQs

Package last updated on 27 Feb 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc