Thanks for the release! However, I cannot seem to get the program to load. I downloaded the Linux binary. When I try to open the executable file in the full template (is that what I'm supposed to be doing?) I get the following error in terminal: greg@greg-GA-78LMT-USB3 ~/t3d-3.8/Templates/Full/game $ ./Torque3D
./Torque3D: error while loading shared libraries: libSDL2-2.0.so.1: cannot open shared object file: No such file or directory
Thanks!
Hi triggerfish,
the error means that Torque couldn't find libSDL2-2.0.so.1, depending on your Linux distribution the file could have a slightly different name. Stupid question first, have you installed libSDL? If yes, you can just create a symbolic link and the problem is gone.
1. Find where your libSDL-files are located (for example in Ubuntu: /usr/lib/x86_64-linux-gnu/)
2. than run the following command as superuser to create a symbolic link to your libSDL-file:
sudo ln libSDL2-2.0.so.0 libSDL2-2.0.so.1
I hope this helps.