Before Width: | Height: | Size: 306 KiB After Width: | Height: | Size: 207 KiB |
Before Width: | Height: | Size: 422 KiB After Width: | Height: | Size: 209 KiB |
Before Width: | Height: | Size: 171 KiB After Width: | Height: | Size: 124 KiB |
Before Width: | Height: | Size: 200 KiB After Width: | Height: | Size: 105 KiB |
Before Width: | Height: | Size: 298 KiB After Width: | Height: | Size: 169 KiB |
Before Width: | Height: | Size: 6.2 KiB |
@ -1,20 +0,0 @@
|
|||||||
import 'package:flame/components.dart';
|
|
||||||
import 'package:flame_bloc/flame_bloc.dart';
|
|
||||||
import 'package:pinball/select_character/select_character.dart';
|
|
||||||
import 'package:pinball_components/pinball_components.dart';
|
|
||||||
|
|
||||||
/// Updates the launch [Ball] to reflect character selections.
|
|
||||||
class BallThemingBehavior extends Component
|
|
||||||
with
|
|
||||||
FlameBlocListenable<CharacterThemeCubit, CharacterThemeState>,
|
|
||||||
HasGameRef {
|
|
||||||
@override
|
|
||||||
void onNewState(CharacterThemeState state) {
|
|
||||||
gameRef
|
|
||||||
.descendants()
|
|
||||||
.whereType<Ball>()
|
|
||||||
.single
|
|
||||||
.bloc
|
|
||||||
.onThemeChanged(state.characterTheme);
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,7 +1,9 @@
|
|||||||
export 'ball_spawning_behavior.dart';
|
export 'ball_spawning_behavior.dart';
|
||||||
export 'ball_theming_behavior.dart';
|
|
||||||
export 'bonus_ball_spawning_behavior.dart';
|
export 'bonus_ball_spawning_behavior.dart';
|
||||||
export 'bonus_noise_behavior.dart';
|
export 'bonus_noise_behavior.dart';
|
||||||
export 'bumper_noise_behavior.dart';
|
export 'bumper_noise_behavior.dart';
|
||||||
export 'camera_focusing_behavior.dart';
|
export 'camera_focusing_behavior.dart';
|
||||||
|
export 'character_selection_behavior.dart';
|
||||||
|
export 'cow_bumper_noise_behavior.dart';
|
||||||
|
export 'kicker_noise_behavior.dart';
|
||||||
export 'scoring_behavior.dart';
|
export 'scoring_behavior.dart';
|
||||||
|
@ -0,0 +1,31 @@
|
|||||||
|
import 'package:flame/components.dart';
|
||||||
|
import 'package:flame_bloc/flame_bloc.dart';
|
||||||
|
import 'package:pinball/select_character/select_character.dart';
|
||||||
|
import 'package:pinball_components/pinball_components.dart';
|
||||||
|
import 'package:pinball_flame/pinball_flame.dart';
|
||||||
|
import 'package:platform_helper/platform_helper.dart';
|
||||||
|
|
||||||
|
/// Updates the [ArcadeBackground] and launch [Ball] to reflect character
|
||||||
|
/// selections.
|
||||||
|
class CharacterSelectionBehavior extends Component
|
||||||
|
with
|
||||||
|
FlameBlocListenable<CharacterThemeCubit, CharacterThemeState>,
|
||||||
|
HasGameRef {
|
||||||
|
@override
|
||||||
|
void onNewState(CharacterThemeState state) {
|
||||||
|
if (!readProvider<PlatformHelper>().isMobile) {
|
||||||
|
gameRef
|
||||||
|
.descendants()
|
||||||
|
.whereType<ArcadeBackground>()
|
||||||
|
.single
|
||||||
|
.bloc
|
||||||
|
.onCharacterSelected(state.characterTheme);
|
||||||
|
}
|
||||||
|
gameRef
|
||||||
|
.descendants()
|
||||||
|
.whereType<Ball>()
|
||||||
|
.single
|
||||||
|
.bloc
|
||||||
|
.onCharacterSelected(state.characterTheme);
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,13 @@
|
|||||||
|
// ignore_for_file: public_member_api_docs
|
||||||
|
|
||||||
|
import 'package:flame_forge2d/flame_forge2d.dart';
|
||||||
|
import 'package:pinball_audio/pinball_audio.dart';
|
||||||
|
import 'package:pinball_flame/pinball_flame.dart';
|
||||||
|
|
||||||
|
class CowBumperNoiseBehavior extends ContactBehavior {
|
||||||
|
@override
|
||||||
|
void beginContact(Object other, Contact contact) {
|
||||||
|
super.beginContact(other, contact);
|
||||||
|
readProvider<PinballAudioPlayer>().play(PinballAudio.cowMoo);
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,11 @@
|
|||||||
|
import 'package:flame_forge2d/flame_forge2d.dart';
|
||||||
|
import 'package:pinball_audio/pinball_audio.dart';
|
||||||
|
import 'package:pinball_flame/pinball_flame.dart';
|
||||||
|
|
||||||
|
class KickerNoiseBehavior extends ContactBehavior {
|
||||||
|
@override
|
||||||
|
void beginContact(Object other, Contact contact) {
|
||||||
|
super.beginContact(other, contact);
|
||||||
|
readProvider<PinballAudioPlayer>().play(PinballAudio.kicker);
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,189 @@
|
|||||||
|
import 'dart:async';
|
||||||
|
|
||||||
|
import 'package:flame/components.dart';
|
||||||
|
import 'package:flame/input.dart';
|
||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:pinball/l10n/l10n.dart';
|
||||||
|
import 'package:pinball_components/pinball_components.dart';
|
||||||
|
import 'package:pinball_flame/pinball_flame.dart';
|
||||||
|
import 'package:pinball_ui/pinball_ui.dart';
|
||||||
|
import 'package:share_repository/share_repository.dart';
|
||||||
|
|
||||||
|
/// Signature for the callback called when the user tries to share their score
|
||||||
|
/// on the [ShareDisplay].
|
||||||
|
typedef OnSocialShareTap = void Function(SharePlatform);
|
||||||
|
|
||||||
|
final _descriptionTextPaint = TextPaint(
|
||||||
|
style: const TextStyle(
|
||||||
|
fontSize: 1.6,
|
||||||
|
color: PinballColors.white,
|
||||||
|
fontFamily: PinballFonts.pixeloidSans,
|
||||||
|
),
|
||||||
|
);
|
||||||
|
|
||||||
|
/// {@template share_display}
|
||||||
|
/// Display that allows users to share their score to social networks.
|
||||||
|
/// {@endtemplate}
|
||||||
|
class ShareDisplay extends Component with HasGameRef {
|
||||||
|
/// {@macro share_display}
|
||||||
|
ShareDisplay({
|
||||||
|
OnSocialShareTap? onShare,
|
||||||
|
}) : super(
|
||||||
|
children: [
|
||||||
|
_ShareInstructionsComponent(
|
||||||
|
onShare: onShare,
|
||||||
|
),
|
||||||
|
],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
class _ShareInstructionsComponent extends PositionComponent with HasGameRef {
|
||||||
|
_ShareInstructionsComponent({
|
||||||
|
OnSocialShareTap? onShare,
|
||||||
|
}) : super(
|
||||||
|
anchor: Anchor.center,
|
||||||
|
position: Vector2(0, -25),
|
||||||
|
children: [
|
||||||
|
_DescriptionComponent(),
|
||||||
|
_SocialNetworksComponent(
|
||||||
|
onShare: onShare,
|
||||||
|
),
|
||||||
|
],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
class _DescriptionComponent extends PositionComponent with HasGameRef {
|
||||||
|
_DescriptionComponent()
|
||||||
|
: super(
|
||||||
|
anchor: Anchor.center,
|
||||||
|
position: Vector2.zero(),
|
||||||
|
children: [
|
||||||
|
_LetEveryoneTextComponent(),
|
||||||
|
_SharingYourScoreTextComponent(),
|
||||||
|
_SocialMediaTextComponent(),
|
||||||
|
],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
class _LetEveryoneTextComponent extends TextComponent with HasGameRef {
|
||||||
|
_LetEveryoneTextComponent()
|
||||||
|
: super(
|
||||||
|
anchor: Anchor.center,
|
||||||
|
position: Vector2.zero(),
|
||||||
|
textRenderer: _descriptionTextPaint,
|
||||||
|
);
|
||||||
|
|
||||||
|
@override
|
||||||
|
Future<void> onLoad() async {
|
||||||
|
await super.onLoad();
|
||||||
|
text = readProvider<AppLocalizations>().letEveryone;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class _SharingYourScoreTextComponent extends TextComponent with HasGameRef {
|
||||||
|
_SharingYourScoreTextComponent()
|
||||||
|
: super(
|
||||||
|
anchor: Anchor.center,
|
||||||
|
position: Vector2(0, 2.5),
|
||||||
|
textRenderer: _descriptionTextPaint,
|
||||||
|
);
|
||||||
|
|
||||||
|
@override
|
||||||
|
Future<void> onLoad() async {
|
||||||
|
await super.onLoad();
|
||||||
|
text = readProvider<AppLocalizations>().bySharingYourScore;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class _SocialMediaTextComponent extends TextComponent with HasGameRef {
|
||||||
|
_SocialMediaTextComponent()
|
||||||
|
: super(
|
||||||
|
anchor: Anchor.center,
|
||||||
|
position: Vector2(0, 5),
|
||||||
|
textRenderer: _descriptionTextPaint,
|
||||||
|
);
|
||||||
|
|
||||||
|
@override
|
||||||
|
Future<void> onLoad() async {
|
||||||
|
await super.onLoad();
|
||||||
|
text = readProvider<AppLocalizations>().socialMediaAccount;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class _SocialNetworksComponent extends PositionComponent with HasGameRef {
|
||||||
|
_SocialNetworksComponent({
|
||||||
|
OnSocialShareTap? onShare,
|
||||||
|
}) : super(
|
||||||
|
anchor: Anchor.center,
|
||||||
|
position: Vector2(0, 12),
|
||||||
|
children: [
|
||||||
|
FacebookButtonComponent(onTap: onShare),
|
||||||
|
TwitterButtonComponent(onTap: onShare),
|
||||||
|
],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// {@template facebook_button_component}
|
||||||
|
/// Button for sharing on Facebook.
|
||||||
|
/// {@endtemplate}
|
||||||
|
class FacebookButtonComponent extends SpriteComponent
|
||||||
|
with HasGameRef, Tappable {
|
||||||
|
/// {@macro facebook_button_component}
|
||||||
|
FacebookButtonComponent({
|
||||||
|
OnSocialShareTap? onTap,
|
||||||
|
}) : _onTap = onTap,
|
||||||
|
super(
|
||||||
|
anchor: Anchor.center,
|
||||||
|
position: Vector2(-5, 0),
|
||||||
|
);
|
||||||
|
|
||||||
|
final OnSocialShareTap? _onTap;
|
||||||
|
|
||||||
|
@override
|
||||||
|
bool onTapUp(TapUpInfo info) {
|
||||||
|
_onTap?.call(SharePlatform.facebook);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
Future<void> onLoad() async {
|
||||||
|
await super.onLoad();
|
||||||
|
final sprite = Sprite(
|
||||||
|
gameRef.images.fromCache(Assets.images.backbox.button.facebook.keyName),
|
||||||
|
);
|
||||||
|
this.sprite = sprite;
|
||||||
|
size = sprite.originalSize / 25;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// {@template twitter_button_component}
|
||||||
|
/// Button for sharing on Twitter.
|
||||||
|
/// {@endtemplate}
|
||||||
|
class TwitterButtonComponent extends SpriteComponent with HasGameRef, Tappable {
|
||||||
|
/// {@macro twitter_button_component}
|
||||||
|
TwitterButtonComponent({
|
||||||
|
OnSocialShareTap? onTap,
|
||||||
|
}) : _onTap = onTap,
|
||||||
|
super(
|
||||||
|
anchor: Anchor.center,
|
||||||
|
position: Vector2(5, 0),
|
||||||
|
);
|
||||||
|
|
||||||
|
final OnSocialShareTap? _onTap;
|
||||||
|
|
||||||
|
@override
|
||||||
|
bool onTapUp(TapUpInfo info) {
|
||||||
|
_onTap?.call(SharePlatform.twitter);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
Future<void> onLoad() async {
|
||||||
|
await super.onLoad();
|
||||||
|
final sprite = Sprite(
|
||||||
|
gameRef.images.fromCache(Assets.images.backbox.button.twitter.keyName),
|
||||||
|
);
|
||||||
|
this.sprite = sprite;
|
||||||
|
size = sprite.originalSize / 25;
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,26 @@
|
|||||||
|
import 'package:flame/components.dart';
|
||||||
|
import 'package:flame_bloc/flame_bloc.dart';
|
||||||
|
import 'package:pinball/game/behaviors/behaviors.dart';
|
||||||
|
import 'package:pinball/game/game.dart';
|
||||||
|
import 'package:pinball_components/pinball_components.dart';
|
||||||
|
import 'package:pinball_flame/pinball_flame.dart';
|
||||||
|
|
||||||
|
/// Adds a [GameBonus.googleWord] when all [GoogleLetter]s are activated.
|
||||||
|
class GoogleWordBonusBehavior extends Component {
|
||||||
|
@override
|
||||||
|
Future<void> onLoad() async {
|
||||||
|
await super.onLoad();
|
||||||
|
await add(
|
||||||
|
FlameBlocListener<GoogleWordCubit, GoogleWordState>(
|
||||||
|
listenWhen: (_, state) => state.letterSpriteStates.values
|
||||||
|
.every((element) => element == GoogleLetterSpriteState.lit),
|
||||||
|
onNewState: (state) {
|
||||||
|
readBloc<GameBloc, GameState>()
|
||||||
|
.add(const BonusActivated(GameBonus.googleWord));
|
||||||
|
readBloc<GoogleWordCubit, GoogleWordState>().onBonusAwarded();
|
||||||
|
add(BonusBallSpawningBehavior());
|
||||||
|
},
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,47 @@
|
|||||||
|
import 'package:flame/components.dart';
|
||||||
|
import 'package:flame_bloc/flame_bloc.dart';
|
||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:pinball/game/behaviors/behaviors.dart';
|
||||||
|
import 'package:pinball/game/components/google_gallery/behaviors/behaviors.dart';
|
||||||
|
import 'package:pinball_components/pinball_components.dart';
|
||||||
|
import 'package:pinball_flame/pinball_flame.dart';
|
||||||
|
|
||||||
|
/// {@template google_gallery}
|
||||||
|
/// Middle section of the board containing the [GoogleWord] and the
|
||||||
|
/// [GoogleRollover]s.
|
||||||
|
/// {@endtemplate}
|
||||||
|
class GoogleGallery extends Component with ZIndex {
|
||||||
|
/// {@macro google_gallery}
|
||||||
|
GoogleGallery()
|
||||||
|
: super(
|
||||||
|
children: [
|
||||||
|
FlameBlocProvider<GoogleWordCubit, GoogleWordState>(
|
||||||
|
create: GoogleWordCubit.new,
|
||||||
|
children: [
|
||||||
|
GoogleRollover(
|
||||||
|
side: BoardSide.right,
|
||||||
|
children: [
|
||||||
|
ScoringContactBehavior(points: Points.fiveThousand),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
GoogleRollover(
|
||||||
|
side: BoardSide.left,
|
||||||
|
children: [
|
||||||
|
ScoringContactBehavior(points: Points.fiveThousand),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
GoogleWord(position: Vector2(-4.45, 1.8)),
|
||||||
|
GoogleWordBonusBehavior(),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
],
|
||||||
|
) {
|
||||||
|
zIndex = ZIndexes.decal;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Creates a [GoogleGallery] without any children.
|
||||||
|
///
|
||||||
|
/// This can be used for testing [GoogleGallery]'s behaviors in isolation.
|
||||||
|
@visibleForTesting
|
||||||
|
GoogleGallery.test();
|
||||||
|
}
|
@ -1,29 +0,0 @@
|
|||||||
import 'package:flame/components.dart';
|
|
||||||
import 'package:flame_bloc/flame_bloc.dart';
|
|
||||||
import 'package:pinball/game/game.dart';
|
|
||||||
import 'package:pinball_components/pinball_components.dart';
|
|
||||||
import 'package:pinball_flame/pinball_flame.dart';
|
|
||||||
|
|
||||||
/// Adds a [GameBonus.googleWord] when all [GoogleLetter]s are activated.
|
|
||||||
class GoogleWordBonusBehavior extends Component
|
|
||||||
with ParentIsA<GoogleWord>, FlameBlocReader<GameBloc, GameState> {
|
|
||||||
@override
|
|
||||||
void onMount() {
|
|
||||||
super.onMount();
|
|
||||||
|
|
||||||
final googleLetters = parent.children.whereType<GoogleLetter>();
|
|
||||||
for (final letter in googleLetters) {
|
|
||||||
letter.bloc.stream.listen((_) {
|
|
||||||
final achievedBonus = googleLetters
|
|
||||||
.every((letter) => letter.bloc.state == GoogleLetterState.lit);
|
|
||||||
|
|
||||||
if (achievedBonus) {
|
|
||||||
bloc.add(const BonusActivated(GameBonus.googleWord));
|
|
||||||
for (final letter in googleLetters) {
|
|
||||||
letter.bloc.onReset();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,52 +0,0 @@
|
|||||||
import 'package:flame/components.dart';
|
|
||||||
import 'package:flutter/material.dart';
|
|
||||||
import 'package:pinball/game/behaviors/scoring_behavior.dart';
|
|
||||||
import 'package:pinball/game/components/google_word/behaviors/behaviors.dart';
|
|
||||||
import 'package:pinball_components/pinball_components.dart';
|
|
||||||
import 'package:pinball_flame/pinball_flame.dart';
|
|
||||||
|
|
||||||
/// {@template google_word}
|
|
||||||
/// Loads all [GoogleLetter]s to compose a [GoogleWord].
|
|
||||||
/// {@endtemplate}
|
|
||||||
class GoogleWord extends Component with ZIndex {
|
|
||||||
/// {@macro google_word}
|
|
||||||
GoogleWord({
|
|
||||||
required Vector2 position,
|
|
||||||
}) : super(
|
|
||||||
children: [
|
|
||||||
GoogleLetter(
|
|
||||||
0,
|
|
||||||
children: [ScoringContactBehavior(points: Points.fiveThousand)],
|
|
||||||
)..initialPosition = position + Vector2(-13.1, 1.72),
|
|
||||||
GoogleLetter(
|
|
||||||
1,
|
|
||||||
children: [ScoringContactBehavior(points: Points.fiveThousand)],
|
|
||||||
)..initialPosition = position + Vector2(-8.33, -0.75),
|
|
||||||
GoogleLetter(
|
|
||||||
2,
|
|
||||||
children: [ScoringContactBehavior(points: Points.fiveThousand)],
|
|
||||||
)..initialPosition = position + Vector2(-2.88, -1.85),
|
|
||||||
GoogleLetter(
|
|
||||||
3,
|
|
||||||
children: [ScoringContactBehavior(points: Points.fiveThousand)],
|
|
||||||
)..initialPosition = position + Vector2(2.88, -1.85),
|
|
||||||
GoogleLetter(
|
|
||||||
4,
|
|
||||||
children: [ScoringContactBehavior(points: Points.fiveThousand)],
|
|
||||||
)..initialPosition = position + Vector2(8.33, -0.75),
|
|
||||||
GoogleLetter(
|
|
||||||
5,
|
|
||||||
children: [ScoringContactBehavior(points: Points.fiveThousand)],
|
|
||||||
)..initialPosition = position + Vector2(13.1, 1.72),
|
|
||||||
GoogleWordBonusBehavior(),
|
|
||||||
],
|
|
||||||
) {
|
|
||||||
zIndex = ZIndexes.decal;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Creates a [GoogleWord] without any children.
|
|
||||||
///
|
|
||||||
/// This can be used for testing [GoogleWord]'s behaviors in isolation.
|
|
||||||
@visibleForTesting
|
|
||||||
GoogleWord.test();
|
|
||||||
}
|
|
Before Width: | Height: | Size: 5.4 KiB After Width: | Height: | Size: 5.4 KiB |
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 26 KiB |
Before Width: | Height: | Size: 19 KiB After Width: | Height: | Size: 19 KiB |
Before Width: | Height: | Size: 33 KiB After Width: | Height: | Size: 33 KiB |
After Width: | Height: | Size: 3.1 KiB |
After Width: | Height: | Size: 3.5 KiB |
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 2.3 KiB |
Before Width: | Height: | Size: 637 KiB After Width: | Height: | Size: 544 KiB |
Before Width: | Height: | Size: 390 KiB After Width: | Height: | Size: 334 KiB |
Before Width: | Height: | Size: 79 KiB After Width: | Height: | Size: 7.7 KiB |
Before Width: | Height: | Size: 78 KiB After Width: | Height: | Size: 7.5 KiB |
Before Width: | Height: | Size: 1.3 MiB |
After Width: | Height: | Size: 257 KiB |
Before Width: | Height: | Size: 266 KiB After Width: | Height: | Size: 60 KiB |
Before Width: | Height: | Size: 39 KiB |
Before Width: | Height: | Size: 1012 KiB After Width: | Height: | Size: 245 KiB |
After Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 1.2 MiB After Width: | Height: | Size: 180 KiB |
Before Width: | Height: | Size: 1.7 MiB After Width: | Height: | Size: 471 KiB |
Before Width: | Height: | Size: 481 KiB After Width: | Height: | Size: 139 KiB |
Before Width: | Height: | Size: 56 KiB After Width: | Height: | Size: 56 KiB |
Before Width: | Height: | Size: 29 KiB After Width: | Height: | Size: 29 KiB |
Before Width: | Height: | Size: 588 B After Width: | Height: | Size: 588 B |
After Width: | Height: | Size: 866 B |
After Width: | Height: | Size: 842 B |
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 968 B |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
After Width: | Height: | Size: 84 KiB |
After Width: | Height: | Size: 2.5 KiB |
After Width: | Height: | Size: 83 KiB |
After Width: | Height: | Size: 2.2 KiB |
Before Width: | Height: | Size: 49 KiB |
After Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 43 KiB |
After Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 128 KiB After Width: | Height: | Size: 32 KiB |
Before Width: | Height: | Size: 290 KiB After Width: | Height: | Size: 62 KiB |
Before Width: | Height: | Size: 38 KiB After Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 16 KiB |
After Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 18 KiB |
After Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 18 KiB |
After Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 19 KiB |
After Width: | Height: | Size: 13 KiB |
Before Width: | Height: | Size: 45 KiB After Width: | Height: | Size: 6.3 KiB |
Before Width: | Height: | Size: 45 KiB After Width: | Height: | Size: 6.3 KiB |
Before Width: | Height: | Size: 45 KiB After Width: | Height: | Size: 6.4 KiB |
Before Width: | Height: | Size: 45 KiB After Width: | Height: | Size: 6.4 KiB |
Before Width: | Height: | Size: 94 KiB After Width: | Height: | Size: 8.3 KiB |
Before Width: | Height: | Size: 9.3 KiB After Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 9.9 KiB After Width: | Height: | Size: 2.4 KiB |
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 1.8 KiB |