You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-09 12:50:35 +00:00
Doc: Add "required" qualifier to methods
This commit is contained in:
@@ -148,6 +148,8 @@ static void _add_qualifiers_to_rt(const String &p_qualifiers, RichTextLabel *p_r
|
||||
hint = TTR("This method supports a variable number of arguments.");
|
||||
} else if (qualifier == "virtual") {
|
||||
hint = TTR("This method is called by the engine.\nIt can be overridden to customize built-in behavior.");
|
||||
} else if (qualifier == "required") {
|
||||
hint = TTR("This method is required to be overridden when extending its base class.");
|
||||
} else if (qualifier == "const") {
|
||||
hint = TTR("This method has no side effects.\nIt does not modify the object in any way.");
|
||||
} else if (qualifier == "static") {
|
||||
|
||||
Reference in New Issue
Block a user