fixed splitting bug

This commit is contained in:
itsmattkc
2019-09-24 14:45:42 +10:00
parent 85c9687f91
commit ef39151b53
4 changed files with 16 additions and 8 deletions
+3 -6
View File
@@ -33,13 +33,10 @@ Block *ClipBlock::copy()
{
ClipBlock* c = new ClipBlock();
// Duplicate connection
// FIXME: This behavior should probably be configurable
if (texture_input()->IsConnected()) {
NodeParam::ConnectEdge(texture_input()->edges().first()->output(), c->texture_input());
}
c->set_block_name(block_name());
c->set_length(length());
return new ClipBlock();
return c;
}
Block::Type ClipBlock::type()
+6 -1
View File
@@ -26,7 +26,12 @@ GapBlock::GapBlock()
Block *GapBlock::copy()
{
return new GapBlock();
GapBlock* c = new GapBlock();
c->set_block_name(block_name());
c->set_length(length());
return c;
}
Block::Type GapBlock::type()