Added ecode build script.

Force radix "." for StyleSheetLength::toString().
This commit is contained in:
Martín Lucas Golini
2022-06-07 14:40:38 -03:00
parent 8fcad7d273
commit 006cd2421e
7 changed files with 74 additions and 3 deletions

View File

@@ -2760,6 +2760,12 @@ void App::init( std::string file, const Float& pidelDensity, const std::string&
FileSystem::dirAddSlashAtEnd( mResPath );
mIsBundledApp = true;
}
#elif EE_PLATFORM == EE_PLATFORM_LINUX
if ( String::contains( mResPath, ".mount_" ) ) {
mResPath = FileSystem::getCurrentWorkingDirectory();
FileSystem::dirAddSlashAtEnd( mResPath );
mIsBundledApp = true;
}
#endif
mResPath += "assets";
FileSystem::dirAddSlashAtEnd( mResPath );