mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-03-04 04:50:31 +00:00
place functions in cpp
stop cli bitching.....
This commit is contained in:
parent
457cdd00bb
commit
be0689549a
3 changed files with 110 additions and 0 deletions
|
|
@ -24,4 +24,45 @@
|
|||
|
||||
#include "gui/shaderEditor/nodes/shaderNode.h"
|
||||
|
||||
IMPLEMENT_CONOBJECT(ShaderNode);
|
||||
|
||||
ConsoleDocClass(ShaderNode,
|
||||
"@brief Base class for all nodes to derive from.\n\n"
|
||||
"Editor use only.\n\n"
|
||||
"@internal"
|
||||
);
|
||||
|
||||
|
||||
ShaderNode::ShaderNode()
|
||||
{
|
||||
}
|
||||
|
||||
bool ShaderNode::onWake()
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
void ShaderNode::onSleep()
|
||||
{
|
||||
}
|
||||
|
||||
void ShaderNode::initPersistFields()
|
||||
{
|
||||
}
|
||||
|
||||
bool ShaderNode::onAdd()
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
void ShaderNode::onRemove()
|
||||
{
|
||||
}
|
||||
|
||||
void ShaderNode::write(Stream& stream, U32 tabStop, U32 flags)
|
||||
{
|
||||
}
|
||||
|
||||
void ShaderNode::read(Stream& stream)
|
||||
{
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue