Back to project page FlappyCow.
The source code is released under:
MIT License
If you think the Android project FlappyCow listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/** * The tutorial that says you should tap * /*w w w .j a va 2 s. c o m*/ * @author Lars Harmsen * Copyright (c) <2014> <Lars Harmsen - Quchen> */ package com.quchen.flappycow.sprites; import com.quchen.flappycow.Game; import com.quchen.flappycow.GameView; import com.quchen.flappycow.R; import com.quchen.flappycow.Util; import android.graphics.Bitmap; public class Tutorial extends Sprite { public static Bitmap globalBitmap; public Tutorial(GameView view, Game game) { super(view, game); if(globalBitmap == null){ globalBitmap = Util.getScaledBitmapAlpha8(game, R.drawable.tutorial); } this.bitmap = globalBitmap; this.width = this.bitmap.getWidth(); this.height = this.bitmap.getHeight(); } /** * Sets the position to the center of the view. */ @Override public void move() { this.x = view.getWidth() / 2 - this.width / 2; this.y = view.getHeight() / 2 - this.height / 2; } }