Changed the default vertical tile alignment from top to bottom.

This commit is contained in:
Leon Styhre 2022-09-15 23:49:08 +02:00
parent 16880028d7
commit 79a661b744

View file

@ -37,7 +37,7 @@ ImageComponent::ImageComponent(bool forceLoad, bool dynamic)
, mLinearInterpolation {false} , mLinearInterpolation {false}
, mMipmapping {false} , mMipmapping {false}
, mTileHorizontalAlignment {ALIGN_LEFT} , mTileHorizontalAlignment {ALIGN_LEFT}
, mTileVerticalAlignment {ALIGN_TOP} , mTileVerticalAlignment {ALIGN_BOTTOM}
, mTopLeftCrop {0.0f, 0.0f} , mTopLeftCrop {0.0f, 0.0f}
, mBottomRightCrop {1.0f, 1.0f} , mBottomRightCrop {1.0f, 1.0f}
, mClipRegion {0.0f, 0.0f, 0.0f, 0.0f} , mClipRegion {0.0f, 0.0f, 0.0f, 0.0f}