Search Issue Tracker
Fixed in 2021.1.X
Votes
1
Found in
2018.1.0f1
Issue ID
1227393
Regression
No
P/Invoking into non-existent library crashes player on WebGL instead of throwing a managed exception
Sample code:
[DllImport("SomeRaNdOmNaMeThatDoesntExist.dll")]
extern static void NonExistingAPI();
public void Start()
{
try
{
NonExistingAPI();
}
catch
{
}
}
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- Top-level lists are handled differently than nested lists when using JsonUtility.FromJson
- Console does not display Deprecation Warnings for certain packages
- Decal's fade occurs inconsistently when Scene and Game views are both open
- Not all Post-processing Overrides are visible when Camera Stack is applied
- Framebuffer blends material instead of rendering opaque when using Built-in Render Pipeline
Add comment