Merge pull request #99089 from Mickeon/documentation-truth-csharp-rabbit-hoole
Fix C# boolean "Prints" comments in documentation
This commit is contained in:
@ -629,10 +629,10 @@
|
||||
print(OS.is_keycode_unicode(KEY_ESCAPE)) # Prints false
|
||||
[/gdscript]
|
||||
[csharp]
|
||||
GD.Print(OS.IsKeycodeUnicode((long)Key.G)); // Prints true
|
||||
GD.Print(OS.IsKeycodeUnicode((long)Key.Kp4)); // Prints true
|
||||
GD.Print(OS.IsKeycodeUnicode((long)Key.Tab)); // Prints false
|
||||
GD.Print(OS.IsKeycodeUnicode((long)Key.Escape)); // Prints false
|
||||
GD.Print(OS.IsKeycodeUnicode((long)Key.G)); // Prints True
|
||||
GD.Print(OS.IsKeycodeUnicode((long)Key.Kp4)); // Prints True
|
||||
GD.Print(OS.IsKeycodeUnicode((long)Key.Tab)); // Prints False
|
||||
GD.Print(OS.IsKeycodeUnicode((long)Key.Escape)); // Prints False
|
||||
[/csharp]
|
||||
[/codeblocks]
|
||||
</description>
|
||||
|
||||
Reference in New Issue
Block a user