Skip to content

Commit 206984d

Browse files
committed
Wrong use of default-constructed wrapper
1 parent e746bbf commit 206984d

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
@@ -1199,7 +1199,7 @@ static void Scene_DefineMeshExt2(luxcore::detail::SceneImpl *scene, const string
11991199
const py::object &p, const py::object &vi,
12001200
const py::object &n, const py::object &uv,
12011201
const py::object &cols, const py::object &alphas) {
1202-
Scene_DefineMeshExt1(scene, meshName, p, vi, n, uv, cols, alphas, py::object());
1202+
Scene_DefineMeshExt1(scene, meshName, p, vi, n, uv, cols, alphas, py::none());
12031203
}
12041204

12051205
static void Scene_SetMeshVertexAOV(luxcore::detail::SceneImpl *scene, const string &meshName,

0 commit comments

Comments
 (0)