Search Issue Tracker
Won't Fix
Votes
0
Found in
5.0.0b1
Issue ID
628069
Regression
No
Missing Method Exceptions not caught at compile time
Repro:
1. Open and run the project notice the MissingMethodException after play.
2.Notice that the snippet below (from Test.cs) is compiled fine, and the error is thrown only after playing:
public CanvasGroup canvasGroup;
void Start ()
{
this.canvasGroup.alpha = 0.5f;
}
same with 'this.Canvas' and probably other types as long as the variable of the same name is defined e.g 'public Canvas canvas;', if it's 'Canvas canvas123' it sill compiles fine as long as 'this.canvas123' is used.
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- The Game view and Scene view fail to render when launching the Editor with a maximized Render Graph Viewer window
- "List is empty" is poorly visible in the "Create Node" window
- [Android] GameObject with a custom shader becomes invisible when deployed with the Vulkan Graphics API
- “ReferenceError: Pointer_stringify is not defined” error is thrown when downloading a file
- GameObjects are not rendered when using a fragment shader with RWStructuredBuffer in URP
Add comment