ZVISION: Implement action:dissolve
This commit is contained in:
parent
7ddfcfd17e
commit
b8ef942f69
4 changed files with 22 additions and 1 deletions
|
@ -221,6 +221,20 @@ bool ActionDisplayMessage::execute() {
|
|||
return true;
|
||||
}
|
||||
|
||||
//////////////////////////////////////////////////////////////////////////////
|
||||
// ActionDissolve
|
||||
//////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
ActionDissolve::ActionDissolve(ZVision *engine) :
|
||||
ResultAction(engine, 0) {
|
||||
}
|
||||
|
||||
bool ActionDissolve::execute() {
|
||||
// Cause black screen flick
|
||||
// _engine->getRenderManager()->bkgFill(0, 0, 0);
|
||||
return true;
|
||||
}
|
||||
|
||||
//////////////////////////////////////////////////////////////////////////////
|
||||
// ActionDistort
|
||||
//////////////////////////////////////////////////////////////////////////////
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue