Definition at line 291 of file background_sound_manager.h.
Public Member Functions | |
void | serial (NLMISC::IStream &s) |
Data Fields | |
NLMISC::TStringId | FxName |
Name of the env fx. | |
NLMISC::CVector | MaxBox |
The max vector of the bounding box. | |
NLMISC::CVector | MinBox |
The min vector of the bounding box. | |
std::vector< NLMISC::CVector > | Points |
The vector of points compositing the primitive. |
|
Definition at line 1487 of file background_sound_manager.cpp. References FxName, NLMISC::CStringMapper::map(), and s.
01488 { 01489 std::string str; 01490 01491 if (s.isReading()) 01492 { 01493 s.serial(str); 01494 FxName= NLMISC::CStringMapper::map(str); 01495 } 01496 else 01497 { 01498 s.serial(const_cast<std::string&>(NLMISC::CStringMapper::unmap(FxName))); 01499 } 01500 01501 s.serialCont(Points); 01502 s.serial(MinBox); 01503 s.serial(MaxBox); 01504 } |
|
Name of the env fx.
Definition at line 294 of file background_sound_manager.h. Referenced by NLSOUND::CBackgroundSoundManager::addFxZone(), and serial(). |
|
The max vector of the bounding box.
Definition at line 300 of file background_sound_manager.h. Referenced by NLSOUND::CBackgroundSoundManager::addFxZone(). |
|
The min vector of the bounding box.
Definition at line 298 of file background_sound_manager.h. Referenced by NLSOUND::CBackgroundSoundManager::addFxZone(). |
|
The vector of points compositing the primitive.
Definition at line 296 of file background_sound_manager.h. Referenced by NLSOUND::CBackgroundSoundManager::addFxZone(). |