Skip to content

Commit 5f4c08d

Browse files
authored
Committing luabindings for commit 66ca90c (#1959)
1 parent 22ecef1 commit 5f4c08d

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

extensions/scripting/lua-bindings/auto/axlua_base_auto.cpp

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51412,6 +51412,23 @@ int lua_ax_base_ClippingNode_setStencil(lua_State* tolua_S)
5141251412
lua_settop(tolua_S, 1);
5141351413
return 1;
5141451414
}
51415+
if (argc == 2)
51416+
{
51417+
ax::Node* arg0;
51418+
bool arg1;
51419+
51420+
ok &= luaval_to_object<ax::Node>(tolua_S, 2, "ax.Node",&arg0, "ax.ClippingNode:setStencil");
51421+
51422+
ok &= luaval_to_boolean(tolua_S, 3,&arg1, "ax.ClippingNode:setStencil");
51423+
if(!ok)
51424+
{
51425+
tolua_error(tolua_S,"invalid arguments in function 'lua_ax_base_ClippingNode_setStencil'", nullptr);
51426+
return 0;
51427+
}
51428+
cobj->setStencil(arg0, arg1);
51429+
lua_settop(tolua_S, 1);
51430+
return 1;
51431+
}
5141551432
luaL_error(tolua_S, "%s has wrong number of arguments: %d, was expecting %d \n", "ax.ClippingNode:setStencil",argc, 1);
5141651433
return 0;
5141751434

0 commit comments

Comments
 (0)