fixed bug in argument order in ag.loadModel()

git-svn-id: svn://anubis/anaglym/trunk@318 99a6e188-d820-4881-8870-2d33a10e2619
This commit is contained in:
Josh Holtrop 2010-09-22 02:38:07 +00:00
parent 283d84aa25
commit e1aa35b4cd

2
ag.lua
View File

@ -126,7 +126,7 @@ ag.loadModel = function(name, args)
blending = args.enable_blending
end
end
return ag.loadModelSpecify(name, scale, static, blending, reference)
return ag.loadModelSpecify(name, scale, static, reference, blending)
end
ag.createBox = function(x, y, z, args)