Example #1
0
void FNiagaraEditor::DuplicateNodes()
{
	CopySelectedNodes();
	PasteNodes();
}
void FSoundCueEditor::DuplicateNodes()
{
	// Copy and paste current selection
	CopySelectedNodes();
	PasteNodes();
}
Example #3
0
// 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);
}