{"id":36236898,"url":"https://github.com/lavashikk/egui-snow","last_synced_at":"2026-01-11T06:02:03.313Z","repository":{"id":329564000,"uuid":"1120027967","full_name":"LaVashikk/egui-snow","owner":"LaVashikk","description":"A lightweight, zero-layout-impact snowfall effect widget for egui","archived":false,"fork":false,"pushed_at":"2025-12-20T11:01:02.000Z","size":1285,"stargazers_count":1,"open_issues_count":0,"forks_count":2,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-12-22T15:57:30.157Z","etag":null,"topics":["egui","gamedev","gui","particles","widgets"],"latest_commit_sha":null,"homepage":"https://lavashikk.github.io/egui-snow/","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/LaVashikk.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-12-20T10:34:52.000Z","updated_at":"2025-12-20T14:02:26.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/LaVashikk/egui-snow","commit_stats":null,"previous_names":["lavashikk/egui-snow"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/LaVashikk/egui-snow","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LaVashikk%2Fegui-snow","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LaVashikk%2Fegui-snow/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LaVashikk%2Fegui-snow/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LaVashikk%2Fegui-snow/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/LaVashikk","download_url":"https://codeload.github.com/LaVashikk/egui-snow/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LaVashikk%2Fegui-snow/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28293188,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-11T04:44:51.577Z","status":"ssl_error","status_checked_at":"2026-01-11T04:44:44.232Z","response_time":60,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["egui","gamedev","gui","particles","widgets"],"created_at":"2026-01-11T06:02:02.967Z","updated_at":"2026-01-11T06:02:03.304Z","avatar_url":"https://github.com/LaVashikk.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# egui-snow\n\n[![Latest version](https://img.shields.io/crates/v/egui-snow.svg)](https://crates.io/crates/egui-snow)\n[![Documentation](https://docs.rs/egui-snow/badge.svg)](https://docs.rs/egui-snow)\n[![MIT](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/LaVashikk/egui-snow/blob/main/LICENSE)\n\nA lightweight, performant snowfall effect widget for [egui](https://github.com/emilk/egui). \n\nIt renders particles on top of your UI (or behind it) without affecting layout allocation. Ideally suited for festive themes or atmospheric effects.\n\n[**Run Web Demo**](https://lavashikk.github.io/egui-snow/)\n\n![Demo GIF](assets/snow_demo.gif)\n\n## Usage\n\nAdd to `Cargo.toml`:\n```toml\n[dependencies]\negui = \"0.33\"\negui-snow = \"0.33\"\n```\n\nIn your update loop:\n\n```rust\nuse egui_snow::Snow;\n\nfn update(ctx: \u0026egui::Context, ...) {\n    // Render your UI...\n    egui::CentralPanel::default().show(ctx, |ui| {\n        ui.label(\"Hello, Winter!\");\n    });\n\n    // Render snow on top\n    Snow::new(\"snow_effect\")\n        .color(egui::Color32::from_white_alpha(200))\n        .speed(40.0..=100.0)\n        .size(0.5..=3.0)\n        .show(ctx);\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flavashikk%2Fegui-snow","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flavashikk%2Fegui-snow","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flavashikk%2Fegui-snow/lists"}