mirror of
https://github.com/godotengine/godot-docs.git
synced 2026-01-07 02:12:07 +03:00
Fix unsupported C# syntax in Input examples code sample
This caused a warning in the Sphinx lexer, which turns into an error on the GitHub Actions CI.
This commit is contained in:
@@ -141,7 +141,7 @@ avoid this, make sure to test the event type first:
|
||||
{
|
||||
if (inputEvent is InputEventMouseButton mouseEvent)
|
||||
{
|
||||
GD.Print($"mouse button event at {mouseEvent.Position}");
|
||||
GD.Print("mouse button event at ", mouseEvent.Position);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user