Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/VitorEstevam/polarca
https://github.com/VitorEstevam/polarca
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/VitorEstevam/polarca
- Owner: vitorestevam
- License: mit
- Created: 2021-05-18T12:36:42.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-03-11T11:58:22.000Z (10 months ago)
- Last Synced: 2024-08-02T07:07:31.525Z (5 months ago)
- Language: Game Maker Language
- Homepage:
- Size: 831 KB
- Stars: 10
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
- awesome-gamemaker - Polarca - Interpolation functions. (Utilities / Recommendations)
README
# Polarca - Interpolate anything using animation curves 🐻❄️
## why polarca?
Polarca is the simplest way to use animation curves to interpolate values in game maker studio 2. You just need to create some polarca_animation instances and run it:
//create
xa = new polarca_animation("x",x+400,ac,0,0.005)
polarca_animation_start([xa])You can also create sequential animation in the simplest way ever! Just pass some arrays of arrays and see the magic happening:
//create
ya = new polarca_animation("image_yscale",8,ac1,1,0.005)
xa = new polarca_animation("image_xscale",8,ac1,0,0.005)
polarca_sequence_start([
[ya],
[xa]
])[Want to know more details about each function? Click here.](https://github.com/VitorEstevam/polarca/blob/master/details.md)
# examples