/////////////////////////////////////////////////////////////////////
| 237 | |
| 238 | ////////////////////////////////////////////////////////////////////////// |
| 239 | void CScriptObjectPlayer::SetMemberVector( SOP_MEMBER_LUA_TABLES member,const Vec3 &vec ) |
| 240 | { |
| 241 | IScriptObject *pVec = m_memberSO[member]; |
| 242 | pVec->BeginSetGetChain(); |
| 243 | pVec->SetValueChain("x",vec.x); |
| 244 | pVec->SetValueChain("y",vec.y); |
| 245 | pVec->SetValueChain("z",vec.z); |
| 246 | pVec->EndSetGetChain(); |
| 247 | } |
| 248 | |
| 249 | void CScriptObjectPlayer::SetPlayer(CPlayer *pPlayer) |
| 250 | { |
nothing calls this directly
no test coverage detected