| 1965 | #include "object_lighting.h" |
| 1966 | |
| 1967 | void CLightingDialog::OnClearLightmaps() { |
| 1968 | if (OutrageMessageBox( |
| 1969 | MBOX_YESNO, |
| 1970 | "Are you sure you want to clear the lightmaps? If you say yes, your level will have no lighting.") != IDYES) |
| 1971 | return; |
| 1972 | |
| 1973 | ClearAllRoomLightmaps(0); |
| 1974 | ClearAllObjectLightmaps(0); |
| 1975 | } |
| 1976 | |
| 1977 | int CopyFaceLightMultipleRoom(room *rp, int tmap, float multiple) { |
| 1978 | int n_changed = 0; |
nothing calls this directly
no test coverage detected