{"id":13529989,"url":"https://github.com/GamemakerCasts/particles","last_synced_at":"2025-04-01T17:31:40.444Z","repository":{"id":147342505,"uuid":"407529594","full_name":"GamemakerCasts/particles","owner":"GamemakerCasts","description":"A simplistic particle system that is automagically cleaned up","archived":false,"fork":false,"pushed_at":"2022-08-21T18:14:01.000Z","size":20,"stargazers_count":6,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-08-02T07:11:00.640Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Yacc","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/GamemakerCasts.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}},"created_at":"2021-09-17T12:19:17.000Z","updated_at":"2024-03-31T23:42:58.000Z","dependencies_parsed_at":null,"dependency_job_id":"fc3e4167-fe35-48e2-bfc9-d00593e6d7b7","html_url":"https://github.com/GamemakerCasts/particles","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GamemakerCasts%2Fparticles","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GamemakerCasts%2Fparticles/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GamemakerCasts%2Fparticles/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GamemakerCasts%2Fparticles/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/GamemakerCasts","download_url":"https://codeload.github.com/GamemakerCasts/particles/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":222748224,"owners_count":17031897,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":[],"created_at":"2024-08-01T07:00:41.757Z","updated_at":"2024-11-02T16:31:31.208Z","avatar_url":"https://github.com/GamemakerCasts.png","language":"Yacc","readme":"Particle - System\n---\nA simplistic particle system wrapper that is designed to make creating particles fun and easy.\n\n### Requirements\n - GameMaker Studio 2.3.3 or higher\n\n### Quick Guide\n - Download **yymps** file found in the release tab\n - Import `obj_Particles` into your own project\n - Create an object for your new effect (example: rain)\n - Add a create event and here is some sample code\n\n```\n// create an instance of our particles\nvar effect = instance_create_depth(0, 0, depth, obj_Particles);\n\n// change the emitter to go all across the top\neffect.set_emitter_size(0, room_width + 128, 0, 0);\n// change to line\neffect.set_shape(pt_shape_line);\n// set the origin to be pointing towards the direction\neffect.set_orientation(0, 0);\n// change the direction to the left\neffect.set_direction(260);\n// change the speed to a high valu\neffect.set_speed(10, 20);\n// mix the colors between white and grey for each particle\neffect.set_color_mix(c_white, c_ltgray);\n// change the alpha to 0.2\neffect.set_alpha(0.2);\n// set the life so the particles will go the entire room height\neffect.set_life(room_height);\n// change the size\neffect.set_size(0.01, 0.5);\n\n// stream 8 particles every tick (frame)\neffect.stream(8);\n```\n","funding_links":[],"categories":["Particles"],"sub_categories":["Recommendations"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FGamemakerCasts%2Fparticles","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FGamemakerCasts%2Fparticles","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FGamemakerCasts%2Fparticles/lists"}