mirror of
https://github.com/flame-engine/flame.git
synced 2025-11-03 04:18:25 +08:00
Formatting and changelog
This commit is contained in:
committed by
Lukas Klingsbo
parent
d39701ac50
commit
3b0cb95ed6
@ -6,6 +6,7 @@
|
||||
- Create extension of Vector2 and unify all tuples to use that class
|
||||
- Remove Position class in favor of new Vector2 extension
|
||||
- Remove Box2D as a dependency
|
||||
- Use isRelative on effects
|
||||
|
||||
## 0.26.0
|
||||
- Improving Flame image auto cache
|
||||
|
||||
@ -19,7 +19,8 @@ class MoveEffect extends PositionComponentEffect {
|
||||
isAlternating = false,
|
||||
isRelative = true,
|
||||
Function onComplete,
|
||||
}) : super(isInfinite, isAlternating, isRelative: isRelative, onComplete: onComplete);
|
||||
}) : super(isInfinite, isAlternating,
|
||||
isRelative: isRelative, onComplete: onComplete);
|
||||
|
||||
@override
|
||||
void initialize(_comp) {
|
||||
|
||||
@ -18,7 +18,8 @@ class RotateEffect extends PositionComponentEffect {
|
||||
isAlternating = false,
|
||||
isRelative = true,
|
||||
Function onComplete,
|
||||
}) : super(isInfinite, isAlternating, isRelative: isRelative, onComplete: onComplete);
|
||||
}) : super(isInfinite, isAlternating,
|
||||
isRelative: isRelative, onComplete: onComplete);
|
||||
|
||||
@override
|
||||
void initialize(_comp) {
|
||||
|
||||
@ -19,7 +19,8 @@ class ScaleEffect extends PositionComponentEffect {
|
||||
isAlternating = false,
|
||||
isRelative = true,
|
||||
Function onComplete,
|
||||
}) : super(isInfinite, isAlternating, isRelative: isRelative, onComplete: onComplete);
|
||||
}) : super(isInfinite, isAlternating,
|
||||
isRelative: isRelative, onComplete: onComplete);
|
||||
|
||||
@override
|
||||
void initialize(_comp) {
|
||||
|
||||
Reference in New Issue
Block a user