2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 01:07:43 +00:00

Add adjacent area lightmap cooking

This commit is contained in:
Jack Andersen
2018-04-08 14:08:33 -10:00
parent 396790181a
commit 2c5a662fec
3 changed files with 251 additions and 121 deletions

View File

@@ -265,7 +265,8 @@ static bool RegFileExists(const hecl::SystemChar* path)
Connection::Connection(int verbosityLevel)
{
#if !WINDOWS_STORE
BlenderLog.report(logvisor::Info, "Establishing BlenderConnection...");
if (hecl::VerbosityLevel >= 1)
BlenderLog.report(logvisor::Info, "Establishing BlenderConnection...");
/* Put hecl_blendershell.py in temp dir */
const SystemChar* TMPDIR = GetTmpDir();
@@ -2401,7 +2402,8 @@ void Token::shutdown()
{
m_conn->quitBlender();
m_conn.reset();
BlenderLog.report(logvisor::Info, "Blender Shutdown Successful");
if (hecl::VerbosityLevel >= 1)
BlenderLog.report(logvisor::Info, "Blender Shutdown Successful");
}
}