mirror of
https://github.com/MaurycyLiebner/enve.git
synced 2024-12-20 15:42:16 +00:00
Compare commits
No commits in common. "831c4b5cb8948dcdd7ee4be170f5495c84bb65bb" and "6dd0f78f5137a8a45c8962567ebf925543feddf8" have entirely different histories.
831c4b5cb8
...
6dd0f78f51
@ -193,6 +193,7 @@ void RenderHandler::interruptPreview() {
|
||||
|
||||
void RenderHandler::outOfMemory() {
|
||||
if(mRenderingPreview) {
|
||||
TaskScheduler::sClearTasks();
|
||||
playPreview();
|
||||
}
|
||||
}
|
||||
|
Binary file not shown.
Before Width: | Height: | Size: 33 KiB |
@ -1,2 +0,0 @@
|
||||
Adding Nodes
|
||||
You can add nodes to existing paths by clicking on them while holding <b>CTRL</b>.
|
@ -83,6 +83,7 @@ Node Node::sInterpolateNormal(const Node &node1, const Node &node2,
|
||||
} else {
|
||||
result.mCtrlsMode = CtrlsMode::symmetric;
|
||||
}
|
||||
result.setCtrlsMode(result.mCtrlsMode);
|
||||
return result;
|
||||
}
|
||||
|
||||
|
@ -93,6 +93,8 @@ int SmartPath::actionInsertNodeBetween(const int prevId,
|
||||
const auto next = getNodePtr(nextId);
|
||||
|
||||
if(!mNodesList.nodesConnected(prevId, nextId)) {
|
||||
if(!prev->isNormal() || !next->isNormal())
|
||||
RuntimeThrow("Invalid insert between not connected nodes");
|
||||
const int prevNormalId = prev->getNodeId();
|
||||
const int nextNormalId = next->getNodeId();
|
||||
const int nDiss = prevNormalId < nextNormalId ?
|
||||
|
Loading…
Reference in New Issue
Block a user