Search Issue Tracker
Won't Fix
Votes
0
Found in
4.6.9f1
Issue ID
758056
Regression
No
Different output with GameObject.SendMessage() when defined methods have different sequence in class
Having such method sequence in class as showed below, SendMessage() always calls the method with no parameter, no matter what parameter it sends:
//No parameter
public void Method(){}
// String paprameter.
public void Method(string str){}
If we switch method's places in script, SendMessage() works as expected, regarding parameter's variable.
Reproducible on 4.6 - 5.4 versions.
Repro steps:
1. open "SendMessageTest.zip".
2. open "Test1" scene and press play. Press keyboard buttons according to instructions. Observe that sending different parameters, always getting "No parameters" function message.
3. open "Test2" scene and press play. Press the same buttons and observe, that different parameters are recognized as expected.
The only difference is the methods sequence in scripts.
Expected result: should work despite the methods sequence.
---
Won't fix:
This issue will not be fixed, because SendMessage() does not try to handle method overloads, for performance reasons. We have updated documentation to reflect this.
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- [Android] Light2D with Light type "Spot" does not work in the Player on some Pixel devices
- [Android] Loading the asset using an old reference returns null even when the "FormerlySerializedAs" attribute is used
- Crash on ParticleSystemTrailGeometryJob::RenderJobCommon when changing trail Mode change with a large particle count
- Mouse cursor does not revert to the default mouse cursor when pressing the "Add column" button in the Search window
- ArgumentException is thrown and textures become unreadable when AssetBundle.Unload(false) is called
Add comment