| 258 | } |
| 259 | |
| 260 | bool ConvexShape::protectedSetSurfaceTexture(void *object, const char *index, const char *data) |
| 261 | { |
| 262 | ConvexShape *shape = static_cast< ConvexShape* >(object); |
| 263 | |
| 264 | surfaceMaterial surface; |
| 265 | |
| 266 | surface._setMaterial(StringTable->insert(data)); |
| 267 | |
| 268 | shape->mSurfaceTextures.push_back(surface); |
| 269 | |
| 270 | return false; |
| 271 | } |
| 272 | |
| 273 | ConvexShape::ConvexShape() |
| 274 | : |
nothing calls this directly
no test coverage detected