Since stb_perlin.h doesn’t seem to be included in the third party list (it’s listed but the file isn’t there and the GitHub link is dead), I found the file on stb’s GitHub and just copied it into my project folder.
I have this at the top of my class:
#define STB_PERLIN_IMPLEMENTATION
#include "stb_perlin.h"
I get access to the function I need “stb_perlin_noise3_seed” with autofill so it’s seeing the function. But when I try to build I get this:
Can anyone help? Is this stb_perlin.h file already included in Urho or something? If so how can I access it? I would think it would be #include <STB/stb_perlin.h> but like I said, that file is not there.
Thanks for your help!