We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Func<float, float>
In my code, I found out that a Func<float, float> is crashing the game when it gets executed.
I'm able to reproduce the crash with the minimal code below. Nothing related to the crash is logged to the client.
Alt.OnConnectionComplete += () => { var x = (float y) => y; x(1); // crashes here };
This seems to happen only to local declared function and lambda expression because this static method works fine.
private static float x(float y) => y;
The text was updated successfully, but these errors were encountered:
I also stucked with this problem and similar with int/byte (#843) Any updates?
Sorry, something went wrong.
No branches or pull requests
In my code, I found out that a
Func<float, float>
is crashing the game when it gets executed.I'm able to reproduce the crash with the minimal code below. Nothing related to the crash is logged to the client.
This seems to happen only to local declared function and lambda expression because this static method works fine.
The text was updated successfully, but these errors were encountered: