MCPcopy Create free account
hub / github.com/StrongPC123/Far-Cry-1-Source-Full / Set

Method Set

CryCommon/ScriptObjectVector.h:26–35  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

24 }
25
26 void Set(const Vec3 &v)
27 {
28 if(m_pSO->BeginSetGetChain())
29 {
30 m_pSO->SetValueChain("x",v.x);
31 m_pSO->SetValueChain("y",v.y);
32 m_pSO->SetValueChain("z",v.z);
33 m_pSO->EndSetGetChain();
34 }
35 }
36 Vec3 Get()
37 {
38 Vec3 v(0,0,0);

Callers

nothing calls this directly

Calls 3

BeginSetGetChainMethod · 0.80
SetValueChainMethod · 0.80
EndSetGetChainMethod · 0.80

Tested by

no test coverage detected