Skip to content

Commit

Permalink
Merge pull request nicolasgramlich#9 from skennedy/hwf_development
Browse files Browse the repository at this point in the history
Made target fields in SmoothCamera protected.
  • Loading branch information
Nicolas Gramlich committed Aug 2, 2012
2 parents a28dafd + c74cab7 commit 62ad950
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/org/andengine/engine/camera/SmoothCamera.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ public class SmoothCamera extends ZoomCamera {
// Fields
// ===========================================================

private float mMaxVelocityX;
private float mMaxVelocityY;
private float mMaxZoomFactorChange;
protected float mMaxVelocityX;
protected float mMaxVelocityY;
protected float mMaxZoomFactorChange;

private float mTargetCenterX;
private float mTargetCenterY;
protected float mTargetCenterX;
protected float mTargetCenterY;

private float mTargetZoomFactor;
protected float mTargetZoomFactor;

// ===========================================================
// Constructors
Expand Down

0 comments on commit 62ad950

Please sign in to comment.