Remove ball (meshes must be loaded from file)
This commit is contained in:
19
scripting/lua/helpers.i
Normal file
19
scripting/lua/helpers.i
Normal file
@@ -0,0 +1,19 @@
|
||||
%module helpers
|
||||
|
||||
%luacode {
|
||||
function couch.TexturedMesh(meshfile, ...)
|
||||
local mesh = couch.Mesh.FromFile(meshfile)
|
||||
for i, texturefile in ipairs({...}) do
|
||||
local material = couch.Material()
|
||||
material.usesTex = true
|
||||
material.tex = couch.Texture.FromFile(texturefile)
|
||||
mesh:SetMaterial(i - 1, material)
|
||||
end
|
||||
return mesh
|
||||
end
|
||||
|
||||
} // luacode
|
||||
|
||||
// Local Variables:
|
||||
// mode: poly-swig
|
||||
// End:
|
||||
Reference in New Issue
Block a user