1
0
Fork 0

Add customizable snake and knight animation increments (#16337)

This commit is contained in:
Michał Szczepaniak 2022-04-18 11:07:36 +02:00 committed by GitHub
parent 4d67fe66a3
commit 5b6faa173b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 4 deletions

View file

@ -126,10 +126,18 @@ enum RGBLIGHT_EFFECT_MODE {
# define RGBLIGHT_EFFECT_SNAKE_LENGTH 4
#endif
#ifndef RGBLIGHT_EFFECT_SNAKE_INCREMENT
# define RGBLIGHT_EFFECT_SNAKE_INCREMENT 1
#endif
#ifndef RGBLIGHT_EFFECT_KNIGHT_LENGTH
# define RGBLIGHT_EFFECT_KNIGHT_LENGTH 3
#endif
#ifndef RGBLIGHT_EFFECT_KNIGHT_INCREMENT
# define RGBLIGHT_EFFECT_KNIGHT_INCREMENT 1
#endif
#ifndef RGBLIGHT_EFFECT_KNIGHT_OFFSET
# define RGBLIGHT_EFFECT_KNIGHT_OFFSET 0
#endif