| 1269 | namespace Poseidon |
| 1270 | { |
| 1271 | |
| 1272 | static void WriteEffects(Arguments& args, const ArcadeEffects& effects) |
| 1273 | { |
| 1274 | args.Set("EFFECT_CONDITION", effects.condition); |
| 1275 | args.Set("CAMERA_EFFECT", effects.cameraEffect); |
| 1276 | args.Set("CAMERA_EFFECT_POSITION", effects.cameraPosition); |
| 1277 | args.Set("SOUND_EFFECT", effects.sound); |
| 1278 | args.Set("VOICE_EFFECT", effects.voice); |
| 1279 | args.Set("SOUND_ENV_EFFECT", effects.soundEnv); |
| 1280 | args.Set("SOUND_DET_EFFECT", effects.soundDet); |
| 1281 | args.Set("MUSIC_EFFECT", effects.track); |
| 1282 | args.Set("TITLE_EFFECT_TYPE", effects.titleType); |
| 1283 | args.Set("TITLE_EFFECT_EFFECT", effects.titleEffect); |
| 1284 | args.Set("TITLE_EFFECT_TITLE", effects.title); |
| 1285 | } |
| 1286 | |
| 1287 | static void WriteTrigger(QOStream& out, const ArcadeSensorInfo& sensor, EditorObjectType& typeTrigger, |
no test coverage detected