-
Notifications
You must be signed in to change notification settings - Fork 44
ModLoaderDeprecated
KANAjetzt edited this page Jun 16, 2023
·
4 revisions
Extends: Node
API methods for deprecating funcs. Can be used by mods with public APIs.
const LOG_NAME: String = "ModLoader:Deprecated"func deprecated_changed(old_method: String, new_method: String, since_version: String, show_removal_note: bool = true) -> voidMarks a method that has changed its name or class.
Parameters:
- old_method (String): The name of the deprecated method.
- new_method (String): The name of the new method to use.
- since_version (String): The version number from which the method has been deprecated.
- show_removal_note (bool): (optional) If true, includes a note about future removal of the old method. Default is true.
Returns: void
func deprecated_removed(old_method: String, since_version: String, show_removal_note: bool = true) -> voidMarks a method that has been entirely removed, with no replacement. Note: This should rarely be needed but is included for completeness.
Parameters:
- old_method (String): The name of the removed method.
- since_version (String): The version number from which the method has been deprecated.
- show_removal_note (bool): (optional) If true, includes a note about future removal of the old method. Default is true.
Returns: void
func deprecated_message(msg: String, since_version: String = "") -> voidMarks a method with a freeform deprecation message.
Parameters:
- msg (String): The deprecation message.
- since_version (String): (optional) The version number from which the deprecation applies.
Returns: void
Warning
This documentation has moved!
You can find it here: https://wiki.godotmodding.com/
- Home
- Getting Started
- ModLoader API
- Reference
- Guides
- Versions & Releases