Well, after spending quite a bit of time with this I realised FastNoiseLite doesnt do 'seamless' noise ; which is really what Im after.
So, does anyone know any library I can use to generate seamless noise in construct?
I saw a few but tried them and they all have very weird setups that I just dont understand how to import and use in construct. I just get errors. For example, one begins like this...
function Grad(x, y, z, t) {
this.x = x; this.y = y; this.z = z; this.t = t;
}
Grad.prototype.dot2 = function(x, y) {
return this.x*x + this.y*y;
};
..which is neither a class of regular function, others have other, even weirder looking setups and I just get errors everytime I try to hook them up.
I am well aware of using export and import but I cant get anything working.
Does anyone have any recommendations?
Thanks