/////////////////////////////////////////////////////////////////////
| 69 | |
| 70 | ////////////////////////////////////////////////////////////////////////// |
| 71 | void CScriptObjectEntity::SetMemberVector( SOE_MEMBER_LUA_TABLES member,const Vec3 &vec ) |
| 72 | { |
| 73 | IScriptObject *pVec = m_memberSO[member]; |
| 74 | pVec->BeginSetGetChain(); |
| 75 | pVec->SetValueChain("x",vec.x); |
| 76 | pVec->SetValueChain("y",vec.y); |
| 77 | pVec->SetValueChain("z",vec.z); |
| 78 | pVec->EndSetGetChain(); |
| 79 | } |
| 80 | |
| 81 | void CScriptObjectEntity::SetEntity(IEntity *pEntity) |
| 82 | { |
nothing calls this directly
no test coverage detected