backup before connections

everything in shaderEditor now finished only thing left to add is the connections.
This commit is contained in:
marauder2k7 2024-03-03 19:24:49 +00:00
parent be0689549a
commit 6e85b43088
4 changed files with 577 additions and 9 deletions

View file

@ -39,20 +39,29 @@ ShaderNode::ShaderNode()
bool ShaderNode::onWake()
{
return false;
if (!Parent::onWake())
return false;
return true;
}
void ShaderNode::onSleep()
{
Parent::onSleep();
}
void ShaderNode::initPersistFields()
{
docsURL;
Parent::initPersistFields();
}
bool ShaderNode::onAdd()
{
return false;
if (!Parent::onAdd())
return false;
return true;
}
void ShaderNode::onRemove()