- make TextureAssetKey flipY option a proper bean property

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@10206 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
This commit is contained in:
nor..67 2013-01-27 21:54:54 +00:00
parent 437d34636b
commit f31c1395e8

View File

@ -95,6 +95,10 @@ public class TextureKey extends AssetKey<Texture> {
return flipY; return flipY;
} }
public void setFlipY(boolean flipY) {
this.flipY = flipY;
}
public int getAnisotropy() { public int getAnisotropy() {
return anisotropy; return anisotropy;
} }