fix content control (#538)
* update ContentControl * feat: more debug logging * fix engine paths
This commit is contained in:
@@ -149,8 +149,12 @@ void EnginePaths::setProjectFolder(std::filesystem::path folder) {
|
||||
}
|
||||
|
||||
void EnginePaths::setCurrentWorldFolder(io::path folder) {
|
||||
if (folder.empty()) {
|
||||
io::remove_device("world");
|
||||
} else {
|
||||
io::create_subdevice("world", "user", folder);
|
||||
}
|
||||
this->currentWorldFolder = std::move(folder);
|
||||
io::create_subdevice("world", "user", currentWorldFolder);
|
||||
}
|
||||
|
||||
std::string EnginePaths::mount(const io::path& file) {
|
||||
|
||||
Reference in New Issue
Block a user