Godot 3.0 beta 1 docs

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By Antonb
:warning: Old Version Published before Godot 3 was released.

Hi,
where can I find correct C# docs for Godot 3 beta 1?

For example,
in the docs it says that I can use Input.is_action_pressed, where in reality the function is called Input.IsActionPressed, which makes sense because the former is Python format.

I searched in Google and in Godot documentation, but all I can see are the old function names.

Thanks

P.S. Don’t know if it’s important, but I’m running from Linux Manjaro.

:bust_in_silhouette: Reply From: Zylann

Functions and classes available in C# are strictly the same as those exposed in GDScript, the only difference is the casing due to formatting conventions and strong typing. So the latest docs already are the correct ones… however I have no idea if it was requested yet to make searching work both in snake_case and PascalCase, which is a valid concern.

Can you give me the link to correct docs with PascalCase? I haven’t found any, even on main website

Antonb | 2017-12-04 20:17

That’s my point, there isn’t any. The current doc really is the one for all languages, so if your language uses a different formatting you have to do the translation yourself. It’s easy to do the conversion once you know conventions, but it’s confusing so I asked about it here C# and GDScript search/display · Issue #828 · godotengine/godot-docs · GitHub

Zylann | 2017-12-04 20:25