ShiVa

Using STK Packs in ShiVa

Most ShiVa games have a single STK pack file. The reason why is because it’s easy to hit the export button and dump everything into one giant file when you publish. On many PC platforms like Desura and Steam, […]

ShiVa

ShiVa Localization

As we are nearing our first Steam release, we wanted to make a strong effort to localize our game in as many different languages as possible. This brought up an interesting problem involving workflow and […]

ShiVa

Quicksort for ShiVa3D

If you ever need to sort a table of numbers in shiva, I adapted this Rosetta Code entry for shiva. — Adapted from http://rosettacode.org/wiki/Sorting_algorithms/Quicksort#Lua function quicksort (t, start, endi) start = start or 0 endi = […]