From 1433c2cbbb89df1edb0b727c9781481af5705f59 Mon Sep 17 00:00:00 2001 From: Ibrahn Sahir Date: Wed, 16 May 2018 05:54:22 +0100 Subject: GDScript access to copyright, license, author and donor information. Adds following functions to the Engine singleton: get_author_info - names of Godot authors get_copyright_info - detailed source copyright get_license_info get_donor_info - donor names get_license_info - full text of licenses used, indexed by license names get_license_text - the text of the Godot Expat license --- doc/classes/Engine.xml | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) (limited to 'doc/classes') diff --git a/doc/classes/Engine.xml b/doc/classes/Engine.xml index cc2ae4e768..3273005395 100644 --- a/doc/classes/Engine.xml +++ b/doc/classes/Engine.xml @@ -11,6 +11,36 @@ + + + + + Returns engine author information in a Dictionary. + + "lead_developers" - Array of Strings, lead developer names + "founders" - Array of Strings, founder names + "project_managers" - Array of Strings, project manager names + "developers" - Array of Strings, developer names + + + + + + + Returns an Array of copyright information Dictionaries. + + "name" - String, component name + "parts" - Array of Dictionaries {"files", "copyright", "license"} describing subsections of the component + + + + + + + Returns a Dictionary of Arrays of donor names. + {"platinum_sponsors", "gold_sponsors", "mini_sponsors", "gold_donors", "silver_donors", "bronze_donors"} + + @@ -25,6 +55,20 @@ Returns the frames per second of the running game. + + + + + Returns Dictionary of licenses used by Godot and included third party components. + + + + + + + Returns Godot license text. + + -- cgit v1.2.3