mirror of
https://github.com/flame-engine/flame.git
synced 2025-11-02 03:15:43 +08:00
Remove old effects system (#1157)
* Remove old effects system * Add changelog entry
This commit is contained in:
@ -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,
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user