EgtExecutor :

- aggiunta funzione Exe e Lua GetBackground per colori top e bottom dello sfondo della scena.
This commit is contained in:
Dario Sassi
2019-09-19 13:48:57 +00:00
parent 922dc27c56
commit f90534e36e
2 changed files with 34 additions and 0 deletions
+11
View File
@@ -86,6 +86,17 @@ ExeSetBackground( Color TopCol, Color BottomCol, bool bRedraw)
return true ;
}
//-----------------------------------------------------------------------------
bool
ExeGetBackground( Color& TopCol, Color& BottomCol)
{
IEGrScene* pScene = GetCurrScene() ;
VERIFY_SCENE( pScene, false)
// recupero lo sfondo
pScene->GetBackground( TopCol, BottomCol) ;
return true ;
}
//-----------------------------------------------------------------------------
bool
ExeSetMarkAttribs( Color MarkCol)