remove redundant code

This commit is contained in:
Ki Rill 2023-07-19 16:10:01 +06:00
parent ab9df3a8ff
commit ad424b6283
1 changed files with 2 additions and 15 deletions

View File

@ -11,7 +11,6 @@ struct Animation {
float frameTimeSecs;
float frameTimeSecsLeft;
bool isActive;
bool flip;
}
this(in Texture2D texture, in int numFrames, in int numRows, in float frameTimeSecs, in int useRow = 1, in bool flip = false) {
@ -21,13 +20,12 @@ struct Animation {
this.frameTimeSecsLeft = frameTimeSecs;
this.currentFrame = 0;
this.isActive = true;
this.flip = flip;
// create rectangle frames
immutable frameWidth = texture.width / numFrames;
immutable frameHeight = texture.height / numRows;
foreach(i; 0 .. numFrames) {
this.rectFrames ~= Rectangle(i * frameWidth, (useRow - 1) * frameHeight, frameWidth, frameHeight);
this.rectFrames ~= Rectangle(i * frameWidth, (useRow - 1) * frameHeight, flip ? -frameWidth : frameWidth, frameHeight);
}
}
@ -57,18 +55,7 @@ struct Animation {
}
void draw(in Vector2 position) {
if (flip) {
DrawTextureRec(texture,
Rectangle(
rectFrames[currentFrame].x,
rectFrames[currentFrame].y,
-rectFrames[currentFrame].width,
rectFrames[currentFrame].height
),
position, Colors.WHITE);
} else {
DrawTextureRec(texture, rectFrames[currentFrame], position, Colors.WHITE);
}
DrawTextureRec(texture, rectFrames[currentFrame], position, Colors.WHITE);
}
}