| 924 | } |
| 925 | |
| 926 | LSError AttachedOnVehicle::Serialize(ParamArchive& ar) |
| 927 | { |
| 928 | PARAM_CHECK(ar.SerializeRef("Entity", _vehicle, 1)) |
| 929 | PARAM_CHECK(ar.Serialize("pos", _pos, 1)) |
| 930 | PARAM_CHECK(ar.Serialize("dir", _dir, 1)) |
| 931 | if (ar.IsLoading() && ar.GetPass() == ParamArchive::PassSecond) |
| 932 | { |
| 933 | UpdatePosition(); |
| 934 | } |
| 935 | return LSOK; |
| 936 | } |
| 937 | |
| 938 | float Object::CamEffectFOV() const |
| 939 | { |
no test coverage detected