Augen: Position korrigiert
This commit is contained in:
parent
49a86bc2f6
commit
8a574acc05
10
src/render.c
10
src/render.c
@ -87,21 +87,21 @@ void renderGame(){
|
|||||||
rect.h = config.blockSizePx/4; //Höhe festlegen
|
rect.h = config.blockSizePx/4; //Höhe festlegen
|
||||||
if (game.snake.direction == LEFT || game.snake.direction == RIGHT){
|
if (game.snake.direction == LEFT || game.snake.direction == RIGHT){
|
||||||
//oberes Auge
|
//oberes Auge
|
||||||
rect.x = (game.snake.headX * config.blockSizePx) + config.blockSizePx/2.5; //Abstand links
|
rect.x = (game.snake.headX * config.blockSizePx) + config.blockSizePx/2.5;
|
||||||
rect.y = (game.snake.headY * config.blockSizePx) + config.blockSizePx/5;
|
rect.y = (game.snake.headY * config.blockSizePx) + config.blockSizePx/5;
|
||||||
SDL_RenderFillRect(renderer, &rect); //Rechteck rendern
|
SDL_RenderFillRect(renderer, &rect); //Rechteck rendern
|
||||||
//unteres Auge
|
//unteres Auge
|
||||||
rect.x = (game.snake.headX * config.blockSizePx) + config.blockSizePx/2.5; //Abstand links
|
rect.x = (game.snake.headX * config.blockSizePx) + config.blockSizePx/2.5;
|
||||||
rect.y = (game.snake.headY * config.blockSizePx) + config.blockSizePx/1.8;
|
rect.y = (game.snake.headY * config.blockSizePx) + config.blockSizePx/1.7;
|
||||||
SDL_RenderFillRect(renderer, &rect); //Rechteck rendern
|
SDL_RenderFillRect(renderer, &rect); //Rechteck rendern
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
//linkes Auge
|
//linkes Auge
|
||||||
rect.x = (game.snake.headX * config.blockSizePx) + config.blockSizePx/5; //Abstand links
|
rect.x = (game.snake.headX * config.blockSizePx) + config.blockSizePx/5;
|
||||||
rect.y = (game.snake.headY * config.blockSizePx) + config.blockSizePx/2.5;
|
rect.y = (game.snake.headY * config.blockSizePx) + config.blockSizePx/2.5;
|
||||||
SDL_RenderFillRect(renderer, &rect); //Rechteck rendern
|
SDL_RenderFillRect(renderer, &rect); //Rechteck rendern
|
||||||
//rechtes Auge
|
//rechtes Auge
|
||||||
rect.x = (game.snake.headX * config.blockSizePx) + config.blockSizePx/1.8; //Abstand links
|
rect.x = (game.snake.headX * config.blockSizePx) + config.blockSizePx/1.7; //Abstand links
|
||||||
rect.y = (game.snake.headY * config.blockSizePx) + config.blockSizePx/2.5;
|
rect.y = (game.snake.headY * config.blockSizePx) + config.blockSizePx/2.5;
|
||||||
SDL_RenderFillRect(renderer, &rect); //Rechteck rendern
|
SDL_RenderFillRect(renderer, &rect); //Rechteck rendern
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user