コード例 #1
0
void FNiagaraEditor::DuplicateNodes()
{
	CopySelectedNodes();
	PasteNodes();
}
コード例 #2
0
void FSoundCueEditor::DuplicateNodes()
{
	// Copy and paste current selection
	CopySelectedNodes();
	PasteNodes();
}
コード例 #3
0
ファイル: EditClipboard.cpp プロジェクト: Joincheng/lithtech
// Paste the clipboards nodes into the world
void CEditClipboard::Paste(CEditRegion *pRegion, PreActionList &undoList, BOOL bPasteAtMarker)
{	
	// Past the clipboard nodes
	PasteNodes(pRegion, m_Nodes, undoList, bPasteAtMarker);
}