Hello i have the same problem of this ticket "Version 2024.10.24.323 startup crash", i solved the problem setting the Content folder but i think something must be done by Evergine stuff becouse some file it's missing on Content folder after compilation
The code to resolve temporany the problem it's this
on file MyApplication.cs
i have add this before lo load the scena
// Navigate to scene
var assetsDirectory = this.Container.Resolve();
if (assetsDirectory != null)
assetsDirectory.UpdateRootPath("C:\Users\[USERNAME]\AppData\Local\Temp\Automotive-Demo_0fb169\.evergine\AutomotiveDemo.Windows\Content");
[USERNAME] => must be replaced with you local acocunt name.
Automotive-Demo_0fb169 => Temporany folder for this example
Hello i have the same problem of this ticket "Version 2024.10.24.323 startup crash", i solved the problem setting the Content folder but i think something must be done by Evergine stuff becouse some file it's missing on Content folder after compilation The code to resolve temporany the problem it's this
on file MyApplication.cs
i have add this before lo load the scena
// Navigate to scene var assetsDirectory = this.Container.Resolve();
if (assetsDirectory != null)
assetsDirectory.UpdateRootPath("C:\Users\[USERNAME]\AppData\Local\Temp\Automotive-Demo_0fb169\.evergine\AutomotiveDemo.Windows\Content");
[USERNAME] => must be replaced with you local acocunt name. Automotive-Demo_0fb169 => Temporany folder for this example
Bye