Update Atlas system

This commit is contained in:
Troispoils 2024-02-26 19:54:28 +01:00
parent 18203c539f
commit e7cf3bdf5a
3 changed files with 45 additions and 12 deletions

View file

@ -0,0 +1,26 @@
using AC2RE.Definitions;
using ImageMagick;
using LandblockExtraction.DatEngine;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Numerics;
using System.Text;
using System.Threading.Tasks;
namespace LandblockExtraction.AtlasMaker;
public class AtlasBuilder {
private readonly int TEXTURESIZE = 64;
private TexturesImage texturesImage;
private List<MagickImage> textures;
public AtlasBuilder(PortalEngine portalEngine) {
textures = new();
texturesImage = new TexturesImage(portalEngine);
}
public AddTexture(DataId vdesc) {
}
}