Hi devs, does anyone know how I can get the image of the tilebackground as blob or image64?
OnCreate()
{
var self = this;
const object = self.GetProject().GetObjectClassByName("TiledBackground");
try {
console.log(object.GetImage().GetCachedWebGLTexture())
} catch (err) {
console.log(err)
}
}