Hi thanks for answer my PR.
I want discuss about ( Added getTexture() method by aram-ahak · Pull Request #929) PR. You added getTexture() method, but the method is't called from newRegionAttachment() and newMeshAttachment methods. sorry but your commit no sence for me. Is possible adding calls of the method?. Tell me please why this PR did't merge fully (I think i made code optimization)?. What is wrong?
I am expecting this
public function newRegionAttachment(skin : Skin, name : String, path : String) : RegionAttachment {
var texture : Texture = getTexture(path);
public function newMeshAttachment(skin : Skin, name : String, path : String) : MeshAttachment {
var texture : Texture = getTexture(path);
I will extend my class from StarlingAtlasAttachmentLoader
public class MyAttachmentLoader extends StarlingAtlasAttachmentLoader{
override protected function getTexture(path:String):Texture {
return myTexture;
}
}