Fixed incorrect work of TextureRegion.found() when creating icons (#5879)
* Fixed incorrect work of TextureRegion.found() when creating icons * fixed comment text * fixed comment text
This commit is contained in:
@@ -225,6 +225,10 @@ public class Mods implements Loadable{
|
|||||||
var shadow = Core.atlas;
|
var shadow = Core.atlas;
|
||||||
//dummy texture atlas that returns the 'shadow' regions; used for mod loading
|
//dummy texture atlas that returns the 'shadow' regions; used for mod loading
|
||||||
Core.atlas = new TextureAtlas(){
|
Core.atlas = new TextureAtlas(){
|
||||||
|
{
|
||||||
|
//needed for the correct operation of the found() method in the TextureRegion
|
||||||
|
error = shadow.find("error");
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public AtlasRegion find(String name){
|
public AtlasRegion find(String name){
|
||||||
|
|||||||
Reference in New Issue
Block a user