omt 0.1.2

A set of tiny tools mostly used for game development. A Texture atlas packer, a font converter, a pakfile creator.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
local lastStepDistance = 0

function nextStep()
	lastStepDistance = getDistanceInMeters()
	print("nextStep @", lastStepDistance)
end

function initialize()
	print("initialize")
--	doNotCallMe()
	nextStep()
end