本文整理汇总了C++中MHRoot::MakeClone方法的典型用法代码示例。如果您正苦于以下问题:C++ MHRoot::MakeClone方法的具体用法?C++ MHRoot::MakeClone怎么用?C++ MHRoot::MakeClone使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MHRoot
的用法示例。
在下文中一共展示了MHRoot::MakeClone方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: CallAction
// Clone - make a copy of the target and set the object reference variable to the new object ref.
void MHClone::CallAction(MHEngine *engine, MHRoot *pTarget, MHRoot *pRef)
{
// We need to get the group (scene or application) that contains the target.
MHObjectRef groupRef;
groupRef.m_GroupId.Copy(pTarget->m_ObjectReference.m_GroupId);
groupRef.m_nObjectNo = 0; // The group always has object ref zero.
MHRoot *pGroup = engine->FindObject(groupRef);
// Get the group to make the clone and add it to its ingredients.
pGroup->MakeClone(pTarget, pRef, engine);
}