| 1035 | } |
| 1036 | |
| 1037 | bool afxEffectron::activationCallInit(bool postponed) |
| 1038 | { |
| 1039 | if (postponed && (!started_with_newop || !postpone_activation)) |
| 1040 | { |
| 1041 | Con::errorf("afxEffectron::activate() -- activate() is only required when creating an effectron with the \"new\" operator " |
| 1042 | "and the postponeActivation field is set to \"true\"."); |
| 1043 | return false; |
| 1044 | } |
| 1045 | |
| 1046 | return true; |
| 1047 | } |
| 1048 | |
| 1049 | void afxEffectron::activate() |
| 1050 | { |
no test coverage detected