
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
voxel-clouds-cc
Advanced tools
Clouds for voxel.js.
// create a clouds
var clouds = require('voxel-clouds')({
// pass a copy of the game
game: game,
// how high up the clouds should be from the player
high: 10,
// the distance from the player the clouds should repeat
distance: 300,
// how many clouds to generate
many: 100,
// how fast the clouds should move
speed: 0.01,
// material of the clouds
material: new game.THREE.MeshBasicMaterial({
emissive: 0xffffff,
shading: game.THREE.FlatShading,
fog: false,
transparent: true,
opacity: 0.5,
}),
});
// on tick, move the clouds
game.on('tick', clouds.tick.bind(clouds));
clouds.generate([size:16])Will generate a cloud 16x1x16.
clouds.tick(delta)Call on game tick to move the clouds and upon exceeding the distance from the player; loop the cloud.
clouds.cloudsAn array of all the generated voxel mesh clouds.
With npm do:
npm install voxel-clouds
Use browserify to require('voxel-clouds').
Copyright (c) 2013 Kyle Robinson Young
Licensed under the MIT license.
FAQs
Clouds for voxel.js
We found that voxel-clouds-cc demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Security News
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.