I'm stuck trying to upload textures here:
// The FileSystem::getPath(...) is part of the GitHub repository so we can find files on any IDE/platform; replace it with your own image path.
unsigned char *data = stbi_load(FileSystem::getPath("resources/textures/container.jpg").c_str(), &width, &height, &nrChannels, 0);
In regards to the comment above, how do I replace it with my own image path? I tried something like this:
unsigned char *data = stbi_load("Desktop/container.jpg").c_str(), &width, &height, &nrChannels, 0);
But it didn't work, of course, my little brain is overloaded right now and I just can't think straight. So... how do I specify an image path?