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
Laserクラスの以下の部分がエラーを吐く Color = new asd.Color(255, 255, 255, startAlpha); DrawLineAdditionally(GetGlobalPosition(), destPos, new asd.Color(120, 160, 255, startAlpha), 5, asd.AlphaBlendMode.Add, 0); startAlphaが暗黙的に型変換されないことが原因。 (int)startAlphaと明示することによって解決
The text was updated successfully, but these errors were encountered:
修正しました
Sorry, something went wrong.
No branches or pull requests
Laserクラスの以下の部分がエラーを吐く
Color = new asd.Color(255, 255, 255, startAlpha);
DrawLineAdditionally(GetGlobalPosition(), destPos, new asd.Color(120, 160, 255, startAlpha), 5, asd.AlphaBlendMode.Add, 0);
startAlphaが暗黙的に型変換されないことが原因。
(int)startAlphaと明示することによって解決
The text was updated successfully, but these errors were encountered: