| 96 | } |
| 97 | |
| 98 | bool Scene::_editPostEffects(void* object, const char* index, const char* data) |
| 99 | { |
| 100 | Scene* scene = static_cast<Scene*>(object); |
| 101 | |
| 102 | #ifdef TORQUE_TOOLS |
| 103 | if(Con::isFunction("editScenePostEffects")) |
| 104 | Con::executef("editScenePostEffects", scene); |
| 105 | #endif |
| 106 | |
| 107 | return false; |
| 108 | } |
| 109 | |
| 110 | void Scene::addObject(SimObject* object) |
| 111 | { |
nothing calls this directly
no test coverage detected