Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/user95401/player-particles
geometry dash mod to customize player particles for drag, land etc
https://github.com/user95401/player-particles
gdscript geode-sdk geometry-dash mod modified
Last synced: 2 months ago
JSON representation
geometry dash mod to customize player particles for drag, land etc
- Host: GitHub
- URL: https://github.com/user95401/player-particles
- Owner: user95401
- Created: 2024-09-10T18:12:08.000Z (5 months ago)
- Default Branch: master
- Last Pushed: 2024-11-13T20:05:02.000Z (3 months ago)
- Last Synced: 2024-11-13T21:17:48.641Z (3 months ago)
- Topics: gdscript, geode-sdk, geometry-dash, mod, modified
- Language: C++
- Homepage: https://geode-sdk.org/mods/user95401.player_particles
- Size: 134 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: changelog.md
Awesome Lists containing this project
README
# Player Particles
- __Customize player particles for drag, land etc__
Add a ui and use saved data system to make able u create own particles for basic player effects
- __Particle variables forcing__
In settings you can enable forcing intital gravity/colors/position that getting changed by game while you playing level.
- __.txt file "particle from string" loader__
You can create `EFFECT_NAME.``txt` instead of `EFFECT_NAME.plist` to use **string system** instead xml dict. and also u can edit any other effect by that way.
Put txt file to any search paths.
- __Custom texture for particles__
Put `EFFECT_NAME.``png` to any search paths.
---
`EFFECT_NAME is an original name of effect like dragEffect, shipDragEffect, landEffect, dashEffect...`
### Search Paths?
The folders where game search for resources:
```
- [your texture pack]
- ./
- ./Resources
- ./geode/resources
and any other paths ever added at runtime.
```## Build instructions
For more info, see [docs](https://docs.geode-sdk.org/getting-started/create-mod#build)
```sh
# Assuming you have the Geode CLI set up already
geode build
```### Resources
* [Geode SDK Documentation](https://docs.geode-sdk.org/)
* [Geode SDK Source Code](https://github.com/geode-sdk/geode/)
* [Geode CLI](https://github.com/geode-sdk/cli)
* [Bindings](https://github.com/geode-sdk/bindings/)
* [Dev Tools](https://github.com/geode-sdk/DevTools)