| 690 | |
| 691 | |
| 692 | int LuaObstacle::GetFaceSmoothBounce(lua_State* L) { |
| 693 | const MeshFace* face = ParseMeshFace(L, 1); |
| 694 | if (face == NULL) { |
| 695 | return luaL_pushnil(L); |
| 696 | } |
| 697 | lua_pushboolean(L, face->isSmoothBounce()); |
| 698 | return 1; |
| 699 | } |
| 700 | |
| 701 | |
| 702 | //============================================================================// |
nothing calls this directly
no test coverage detected