Skip to content

Commit e746bbf

Browse files
committed
fix (partial): wrong type passed in default-constructed wrapper
1 parent eedc12c commit e746bbf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pyluxcore/pyluxcore.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -998,7 +998,7 @@ static void Scene_DefineMesh2(luxcore::detail::SceneImpl *scene, const string &m
998998
const py::object &p, const py::object &vi,
999999
const py::object &n, const py::object &uv,
10001000
const py::object &cols, const py::object &alphas) {
1001-
Scene_DefineMesh1(scene, meshName, p, vi, n, uv, cols, alphas, py::object());
1001+
Scene_DefineMesh1(scene, meshName, p, vi, n, uv, cols, alphas, py::none());
10021002
}
10031003

10041004
static void Scene_DefineMeshExt1(luxcore::detail::SceneImpl *scene, const string &meshName,

0 commit comments

Comments
 (0)