Implemented scanline and silhouette effect #363

Merged
Xenosas1337 merged 12 commits from SP3-1-Rendering into main 2023-02-24 17:20:46 +08:00
2 changed files with 5 additions and 1 deletions
Showing only changes of commit 8e9854a130 - Show all commits

View File

@ -441,6 +441,10 @@ namespace SHADE
if (genMeta)
{
GenerateNewMeta(newPath);
}
else
{
//send event here
}
}

View File

@ -233,7 +233,7 @@ namespace SHADE
{
if(ImGui::Selectable("Compile"))
{
SHAssetManager::CompileAsset(file.path, !file.compiled, file.assetMeta->id);
SHAssetManager::CompileAsset(file.path, !file.compiled, file.assetMeta ? file.assetMeta->id : 0);
QueueRefresh();
}
ImGui::EndPopup();