| 622 | |
| 623 | #include "postprocessanimator.h" |
| 624 | void add_pp_effector(LPCSTR fn, int id, bool cyclic) |
| 625 | { |
| 626 | CPostprocessAnimator* pp = xr_new<CPostprocessAnimator>(id, cyclic); |
| 627 | pp->Load(fn); |
| 628 | Actor()->Cameras().AddPPEffector(pp); |
| 629 | } |
| 630 | |
| 631 | void remove_pp_effector(int id) |
| 632 | { |
nothing calls this directly
no test coverage detected