1
Game announcements / Re: Oknytt, an adventure through Swedish folklore
« on: September 13, 2013, 09:22:24 PM »
This is a great game for a small amount of money! I'd recommend it to everyone
For WME related articles and tutorials visit WME Resource Center.
function Splice(var array, var place){
//Move the unwanted object in the array to the end.
for (var i = place; i <= array.Length -1; i = i +1)
{
array[i] = array[i + 1];
}
//And pop it.
array.Pop();
}