loadParallaxComponent method
Future<ParallaxComponent<FlameGame<World> > >
loadParallaxComponent(
- Iterable<
ParallaxData> dataList, { - Vector2? baseVelocity,
- Vector2? velocityMultiplierDelta,
- ImageRepeat repeat = ImageRepeat.repeatX,
- Alignment alignment = Alignment.bottomLeft,
- LayerFill fill = LayerFill.height,
- Images? images,
- Vector2? position,
- Vector2? size,
- Vector2? scale,
- double? angle,
- Anchor? anchor,
- int? priority,
- FilterQuality? filterQuality,
- ComponentKey? key,
Implementation
Future<ParallaxComponent> loadParallaxComponent(
Iterable<ParallaxData> dataList, {
Vector2? baseVelocity,
Vector2? velocityMultiplierDelta,
ImageRepeat repeat = ImageRepeat.repeatX,
Alignment alignment = Alignment.bottomLeft,
LayerFill fill = LayerFill.height,
Images? images,
Vector2? position,
Vector2? size,
Vector2? scale,
double? angle,
Anchor? anchor,
int? priority,
FilterQuality? filterQuality,
ComponentKey? key,
}) {
return ParallaxComponent.load(
dataList,
baseVelocity: baseVelocity,
velocityMultiplierDelta: velocityMultiplierDelta,
repeat: repeat,
alignment: alignment,
fill: fill,
images: images,
position: position,
size: size,
scale: scale,
angle: angle,
anchor: anchor,
priority: priority,
filterQuality: filterQuality,
key: key,
);
}