Remove old effects system (#1157)

* Remove old effects system

* Add changelog entry
This commit is contained in:
Lukas Klingsbo
2021-12-03 15:02:25 +01:00
committed by GitHub
parent fe162c6d90
commit 790b8f73dd
61 changed files with 892 additions and 3588 deletions

View File

@ -1,18 +0,0 @@
import 'dart:ui';
import 'package:flame/components.dart';
import 'package:flame/effects.dart';
class SquareComponent extends RectangleComponent with EffectsHelper {
SquareComponent({
Vector2? position,
double size = 100.0,
Paint? paint,
int priority = 0,
}) : super(
position: position,
size: Vector2.all(size),
paint: paint,
priority: priority,
);
}