| 841 | //----------------------------------------------------------------------------- |
| 842 | |
| 843 | bool SceneObject::_setRenderEnabled( void *object, const char *index, const char *data ) |
| 844 | { |
| 845 | SceneObject* obj = reinterpret_cast< SceneObject* >( object ); |
| 846 | obj->setRenderEnabled( dAtob( data ) ); |
| 847 | return false; |
| 848 | } |
| 849 | |
| 850 | //----------------------------------------------------------------------------- |
| 851 |
nothing calls this directly
no test coverage detected