-----------------------------------------------------------------------
| 56 | } |
| 57 | //----------------------------------------------------------------------- |
| 58 | ControllerFloat* ControllerManager::createController( |
| 59 | const ControllerValueRealPtr& src, const ControllerValueRealPtr& dest, |
| 60 | const ControllerFunctionRealPtr& func) |
| 61 | { |
| 62 | ControllerFloat* c = OGRE_NEW ControllerFloat(src, dest, func); |
| 63 | |
| 64 | mControllers.push_back(c); |
| 65 | return c; |
| 66 | } |
| 67 | //----------------------------------------------------------------------- |
| 68 | ControllerFloat* ControllerManager::createFrameTimePassthroughController( |
| 69 | const ControllerValueRealPtr& dest) |
no test coverage detected