mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-19 22:53:47 +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
|
|
@ -38,3 +38,68 @@ ConsoleDocClass(GuiShaderEditor,
|
|||
"Editor use only.\n\n"
|
||||
"@internal"
|
||||
);
|
||||
|
||||
GuiShaderEditor::GuiShaderEditor()
|
||||
{
|
||||
}
|
||||
|
||||
bool GuiShaderEditor::onWake()
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
void GuiShaderEditor::onSleep()
|
||||
{
|
||||
}
|
||||
|
||||
void GuiShaderEditor::initPersistFields()
|
||||
{
|
||||
}
|
||||
|
||||
bool GuiShaderEditor::onAdd()
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
void GuiShaderEditor::onRemove()
|
||||
{
|
||||
}
|
||||
|
||||
void GuiShaderEditor::onPreRender()
|
||||
{
|
||||
}
|
||||
|
||||
void GuiShaderEditor::onRender(Point2I offset, const RectI& updateRect)
|
||||
{
|
||||
}
|
||||
|
||||
bool GuiShaderEditor::onKeyDown(const GuiEvent& event)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
void GuiShaderEditor::onMouseDown(const GuiEvent& event)
|
||||
{
|
||||
}
|
||||
|
||||
void GuiShaderEditor::onMouseUp(const GuiEvent& event)
|
||||
{
|
||||
}
|
||||
|
||||
void GuiShaderEditor::onMouseMove(const GuiEvent& event)
|
||||
{
|
||||
}
|
||||
|
||||
void GuiShaderEditor::onMiddleMouseDown(const GuiEvent& event)
|
||||
{
|
||||
}
|
||||
|
||||
bool GuiShaderEditor::onMouseWheelUp(const GuiEvent& event)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
bool GuiShaderEditor::onMouseWheelDown(const GuiEvent& event)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue