remove redundant code
This commit is contained in:
parent
ab9df3a8ff
commit
ad424b6283
|
@ -11,7 +11,6 @@ struct Animation {
|
||||||
float frameTimeSecs;
|
float frameTimeSecs;
|
||||||
float frameTimeSecsLeft;
|
float frameTimeSecsLeft;
|
||||||
bool isActive;
|
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) {
|
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.frameTimeSecsLeft = frameTimeSecs;
|
||||||
this.currentFrame = 0;
|
this.currentFrame = 0;
|
||||||
this.isActive = true;
|
this.isActive = true;
|
||||||
this.flip = flip;
|
|
||||||
|
|
||||||
// create rectangle frames
|
// create rectangle frames
|
||||||
immutable frameWidth = texture.width / numFrames;
|
immutable frameWidth = texture.width / numFrames;
|
||||||
immutable frameHeight = texture.height / numRows;
|
immutable frameHeight = texture.height / numRows;
|
||||||
foreach(i; 0 .. numFrames) {
|
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,19 +55,8 @@ struct Animation {
|
||||||
}
|
}
|
||||||
|
|
||||||
void draw(in Vector2 position) {
|
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);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue