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
I am getting incorrect type errors for the following code:
game:GetService("RunService").Stepped:Connect(function(currTime, deltaTime) local e1 = currTime + 1 local e2 = deltaTime + 1 end)
This problem affects the other RunService events and also happens in Roblox Studio.
The text was updated successfully, but these errors were encountered:
This is related to #83 (comment)
For the diagnostics type checker, game is typed as any, so this leads to deltaTime being typed as any, so it doesn't know the correct type annotation
game
deltaTime
Sorry, something went wrong.
Closing as there are no solution for now
No branches or pull requests
I am getting incorrect type errors for the following code:
This problem affects the other RunService events and also happens in Roblox Studio.
The text was updated successfully, but these errors were encountered: