anaglym/tests/managed_objects.lua
Josh Holtrop c802886b11 not calling dGeomGetPosition/Rotation() for planes
git-svn-id: svn://anubis/anaglym/trunk@138 99a6e188-d820-4881-8870-2d33a10e2619
2009-10-29 02:51:55 +00:00

28 lines
748 B
Lua

ground = ag.createStaticPlane(0, 0, 0, 0, 0, 0)
--ground = ag.createStaticBox(1000, 1000, 1000)
--ground:setPosition(0, 0, -500)
ground:setColor(0.2, 1.0, 0.2)
ag.setCamera(10, -10, 10, 0, 0, 0)
function init(obj)
obj:setColor(math.random(), math.random(), math.random())
obj:setPosition((math.random() - 0.5) * 10, (math.random() - 0.5) * 10, 10)
end
function key_down_event(key)
if (key == "b") then
box = ag.createBox(1, 1, 1)
init(box)
elseif (key == "c") then
cyl = ag.createCylinder(0.5, 1)
init(cyl)
elseif (key == "a") then
ccyl = ag.createCCylinder(0.5, 1)
init(ccyl)
elseif (key == "s") then
sphere = ag.createSphere(0.8)
init(sphere)
end
end