Compare commits

...

4 Commits

Author SHA1 Message Date
Rémi Verschelde
df0514f159 Update files to Godot 3.4.5-stable (3.4 branch) 2022-08-03 10:08:09 +02:00
Rémi Verschelde
a0fd98d4ba Update copyright year
(cherry picked from commit e00386d464)
(cherry picked from commit 26b49b9ac6)
2022-04-04 12:27:07 +02:00
Rémi Verschelde
4ea4d82618 Update files to Godot 3.4.3-stable (3.4 branch) 2022-02-24 10:14:25 +01:00
Rémi Verschelde
c941c6076f Update files to Godot 3.4.1-stable (3.4 branch) 2021-12-17 11:25:42 +01:00
28 changed files with 451 additions and 63 deletions

View File

@@ -1,6 +1,6 @@
# MIT License
Copyright (c) 2017-2021 Godot Engine contributors.
Copyright (c) 2017-2022 Godot Engine contributors.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal

View File

@@ -5,8 +5,8 @@
/* GODOT ENGINE */
/* https://godotengine.org */
/*************************************************************************/
/* Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2021 Godot Engine contributors (cf. AUTHORS.md). */
/* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
/* */
/* Permission is hereby granted, free of charge, to any person obtaining */
/* a copy of this software and associated documentation files (the */

406
api.json
View File

@@ -6,7 +6,7 @@
"singleton": true,
"singleton_name": "GlobalConstants",
"instanciable": false,
"is_reference": false,
"is_reference": true,
"constants": {
"BUTTON_LEFT": 1,
"BUTTON_MASK_LEFT": 1,
@@ -118,7 +118,7 @@
"JOY_BUTTON_7": 7,
"JOY_BUTTON_8": 8,
"JOY_BUTTON_9": 9,
"JOY_BUTTON_MAX": 23,
"JOY_BUTTON_MAX": 128,
"JOY_DPAD_DOWN": 13,
"JOY_DPAD_LEFT": 14,
"JOY_DPAD_RIGHT": 15,
@@ -13908,6 +13908,13 @@
"setter": "set_fadeout_time",
"index": -1
},
{
"name": "mix_mode",
"type": "int",
"getter": "get_mix_mode",
"setter": "set_mix_mode",
"index": -1
},
{
"name": "sync",
"type": "bool",
@@ -57885,6 +57892,43 @@
}
]
},
{
"name": "edit_script",
"return_type": "void",
"is_editor": false,
"is_noscript": false,
"is_const": false,
"is_reverse": false,
"is_virtual": false,
"has_varargs": false,
"is_from_script": false,
"arguments": [
{
"name": "script",
"type": "Script",
"has_default_value": false,
"default_value": ""
},
{
"name": "line",
"type": "int",
"has_default_value": true,
"default_value": "-1"
},
{
"name": "column",
"type": "int",
"has_default_value": true,
"default_value": "0"
},
{
"name": "grab_focus",
"type": "bool",
"has_default_value": true,
"default_value": "True"
}
]
},
{
"name": "get_base_control",
"return_type": "Control",
@@ -60532,7 +60576,7 @@
},
{
"name": "handle_menu_selected",
"return_type": "void",
"return_type": "bool",
"is_editor": false,
"is_noscript": false,
"is_const": false,
@@ -62058,7 +62102,7 @@
"arguments": [
{
"name": "mesh",
"type": "ArrayMesh",
"type": "Mesh",
"has_default_value": false,
"default_value": ""
},
@@ -81283,6 +81327,7 @@
"COMPRESS_PVRTC4": 2,
"COMPRESS_S3TC": 0,
"COMPRESS_SOURCE_GENERIC": 0,
"COMPRESS_SOURCE_LAYERED": 3,
"COMPRESS_SOURCE_NORMAL": 2,
"COMPRESS_SOURCE_SRGB": 1,
"FORMAT_BPTC_RGBA": 22,
@@ -82434,7 +82479,8 @@
"values": {
"COMPRESS_SOURCE_GENERIC": 0,
"COMPRESS_SOURCE_SRGB": 1,
"COMPRESS_SOURCE_NORMAL": 2
"COMPRESS_SOURCE_NORMAL": 2,
"COMPRESS_SOURCE_LAYERED": 3
}
},
{
@@ -83686,6 +83732,25 @@
}
]
},
{
"name": "is_physical_key_pressed",
"return_type": "bool",
"is_editor": false,
"is_noscript": false,
"is_const": true,
"is_reverse": false,
"is_virtual": false,
"has_varargs": false,
"is_from_script": false,
"arguments": [
{
"name": "scancode",
"type": "int",
"has_default_value": false,
"default_value": ""
}
]
},
{
"name": "joy_connection_changed",
"return_type": "void",
@@ -119454,6 +119519,55 @@
}
]
},
{
"name": "intersect_point",
"return_type": "Array",
"is_editor": false,
"is_noscript": false,
"is_const": false,
"is_reverse": false,
"is_virtual": false,
"has_varargs": false,
"is_from_script": false,
"arguments": [
{
"name": "point",
"type": "Vector3",
"has_default_value": false,
"default_value": ""
},
{
"name": "max_results",
"type": "int",
"has_default_value": true,
"default_value": "32"
},
{
"name": "exclude",
"type": "Array",
"has_default_value": true,
"default_value": "[]"
},
{
"name": "collision_layer",
"type": "int",
"has_default_value": true,
"default_value": "2147483647"
},
{
"name": "collide_with_bodies",
"type": "bool",
"has_default_value": true,
"default_value": "True"
},
{
"name": "collide_with_areas",
"type": "bool",
"has_default_value": true,
"default_value": "False"
}
]
},
{
"name": "intersect_ray",
"return_type": "Dictionary",
@@ -124026,7 +124140,7 @@
},
{
"name": "bones",
"type": "bool",
"type": "Array",
"getter": "_get_bones",
"setter": "_set_bones",
"index": -1
@@ -130019,7 +130133,7 @@
},
{
"name": "get_debug_shape_thickness",
"return_type": "float",
"return_type": "int",
"is_editor": false,
"is_noscript": false,
"is_const": true,
@@ -130266,7 +130380,7 @@
"arguments": [
{
"name": "debug_shape_thickness",
"type": "float",
"type": "int",
"has_default_value": false,
"default_value": ""
}
@@ -137150,6 +137264,13 @@
"setter": "set_pvs_mode",
"index": -1
},
{
"name": "roaming_expansion_margin",
"type": "float",
"getter": "get_roaming_expansion_margin",
"setter": "set_roaming_expansion_margin",
"index": -1
},
{
"name": "room_simplify",
"type": "float",
@@ -137286,6 +137407,19 @@
"arguments": [
]
},
{
"name": "get_roaming_expansion_margin",
"return_type": "float",
"is_editor": false,
"is_noscript": false,
"is_const": true,
"is_reverse": false,
"is_virtual": false,
"has_varargs": false,
"is_from_script": false,
"arguments": [
]
},
{
"name": "get_room_simplify",
"return_type": "float",
@@ -137548,6 +137682,25 @@
}
]
},
{
"name": "set_roaming_expansion_margin",
"return_type": "void",
"is_editor": false,
"is_noscript": false,
"is_const": false,
"is_reverse": false,
"is_virtual": false,
"has_varargs": false,
"is_from_script": false,
"arguments": [
{
"name": "roaming_expansion_margin",
"type": "float",
"has_default_value": false,
"default_value": ""
}
]
},
{
"name": "set_room_simplify",
"return_type": "void",
@@ -156211,6 +156364,19 @@
"arguments": [
]
},
{
"name": "_repaint",
"return_type": "void",
"is_editor": false,
"is_noscript": false,
"is_const": false,
"is_reverse": false,
"is_virtual": true,
"has_varargs": false,
"is_from_script": false,
"arguments": [
]
},
{
"name": "_update_current_tab",
"return_type": "void",
@@ -157475,6 +157641,13 @@
"SEARCH_WHOLE_WORDS": 2
},
"properties": [
{
"name": "bookmark_gutter",
"type": "bool",
"getter": "is_bookmark_gutter_enabled",
"setter": "set_bookmark_gutter_enabled",
"index": -1
},
{
"name": "breakpoint_gutter",
"type": "bool",
@@ -158321,6 +158494,25 @@
}
]
},
{
"name": "get_line_column_at_pos",
"return_type": "Vector2",
"is_editor": false,
"is_noscript": false,
"is_const": true,
"is_reverse": false,
"is_virtual": false,
"has_varargs": false,
"is_from_script": false,
"arguments": [
{
"name": "position",
"type": "Vector2",
"has_default_value": false,
"default_value": ""
}
]
},
{
"name": "get_line_count",
"return_type": "int",
@@ -158334,6 +158526,82 @@
"arguments": [
]
},
{
"name": "get_line_height",
"return_type": "int",
"is_editor": false,
"is_noscript": false,
"is_const": true,
"is_reverse": false,
"is_virtual": false,
"has_varargs": false,
"is_from_script": false,
"arguments": [
]
},
{
"name": "get_line_width",
"return_type": "int",
"is_editor": false,
"is_noscript": false,
"is_const": true,
"is_reverse": false,
"is_virtual": false,
"has_varargs": false,
"is_from_script": false,
"arguments": [
{
"name": "line",
"type": "int",
"has_default_value": false,
"default_value": ""
},
{
"name": "wrap_index",
"type": "int",
"has_default_value": true,
"default_value": "-1"
}
]
},
{
"name": "get_line_wrap_count",
"return_type": "int",
"is_editor": false,
"is_noscript": false,
"is_const": true,
"is_reverse": false,
"is_virtual": false,
"has_varargs": false,
"is_from_script": false,
"arguments": [
{
"name": "line",
"type": "int",
"has_default_value": false,
"default_value": ""
}
]
},
{
"name": "get_line_wrapped_text",
"return_type": "PoolStringArray",
"is_editor": false,
"is_noscript": false,
"is_const": true,
"is_reverse": false,
"is_virtual": false,
"has_varargs": false,
"is_from_script": false,
"arguments": [
{
"name": "line",
"type": "int",
"has_default_value": false,
"default_value": ""
}
]
},
{
"name": "get_menu",
"return_type": "PopupMenu",
@@ -158360,6 +158628,56 @@
"arguments": [
]
},
{
"name": "get_pos_at_line_column",
"return_type": "Vector2",
"is_editor": false,
"is_noscript": false,
"is_const": true,
"is_reverse": false,
"is_virtual": false,
"has_varargs": false,
"is_from_script": false,
"arguments": [
{
"name": "line",
"type": "int",
"has_default_value": false,
"default_value": ""
},
{
"name": "column",
"type": "int",
"has_default_value": false,
"default_value": ""
}
]
},
{
"name": "get_rect_at_line_column",
"return_type": "Rect2",
"is_editor": false,
"is_noscript": false,
"is_const": true,
"is_reverse": false,
"is_virtual": false,
"has_varargs": false,
"is_from_script": false,
"arguments": [
{
"name": "line",
"type": "int",
"has_default_value": false,
"default_value": ""
},
{
"name": "column",
"type": "int",
"has_default_value": false,
"default_value": ""
}
]
},
{
"name": "get_selection_from_column",
"return_type": "int",
@@ -158438,6 +158756,19 @@
"arguments": [
]
},
{
"name": "get_total_gutter_width",
"return_type": "int",
"is_editor": false,
"is_noscript": false,
"is_const": true,
"is_reverse": false,
"is_virtual": false,
"has_varargs": false,
"is_from_script": false,
"arguments": [
]
},
{
"name": "get_v_scroll",
"return_type": "float",
@@ -158541,6 +158872,19 @@
}
]
},
{
"name": "is_bookmark_gutter_enabled",
"return_type": "bool",
"is_editor": false,
"is_noscript": false,
"is_const": true,
"is_reverse": false,
"is_virtual": false,
"has_varargs": false,
"is_from_script": false,
"arguments": [
]
},
{
"name": "is_breakpoint_gutter_enabled",
"return_type": "bool",
@@ -158753,6 +159097,25 @@
}
]
},
{
"name": "is_line_wrapped",
"return_type": "bool",
"is_editor": false,
"is_noscript": false,
"is_const": true,
"is_reverse": false,
"is_virtual": false,
"has_varargs": false,
"is_from_script": false,
"arguments": [
{
"name": "line",
"type": "int",
"has_default_value": false,
"default_value": ""
}
]
},
{
"name": "is_overriding_selected_font_color",
"return_type": "bool",
@@ -159041,6 +159404,25 @@
"arguments": [
]
},
{
"name": "set_bookmark_gutter_enabled",
"return_type": "void",
"is_editor": false,
"is_noscript": false,
"is_const": false,
"is_reverse": false,
"is_virtual": false,
"has_varargs": false,
"is_from_script": false,
"arguments": [
{
"name": "enable",
"type": "bool",
"has_default_value": false,
"default_value": ""
}
]
},
{
"name": "set_breakpoint_gutter_enabled",
"return_type": "void",
@@ -163809,6 +164191,12 @@
"type": "bool",
"has_default_value": true,
"default_value": "False"
},
{
"name": "autotile_coord",
"type": "Vector2",
"has_default_value": true,
"default_value": "(0, 0)"
}
]
},
@@ -197934,7 +198322,7 @@
},
{
"name": "handshake_timeout",
"type": "bool",
"type": "float",
"getter": "get_handshake_timeout",
"setter": "set_handshake_timeout",
"index": -1

View File

@@ -5,8 +5,8 @@
/* GODOT ENGINE */
/* https://godotengine.org */
/*************************************************************************/
/* Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2021 Godot Engine contributors (cf. AUTHORS.md). */
/* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
/* */
/* Permission is hereby granted, free of charge, to any person obtaining */
/* a copy of this software and associated documentation files (the */

View File

@@ -5,8 +5,8 @@
/* GODOT ENGINE */
/* https://godotengine.org */
/*************************************************************************/
/* Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2021 Godot Engine contributors (cf. AUTHORS.md). */
/* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
/* */
/* Permission is hereby granted, free of charge, to any person obtaining */
/* a copy of this software and associated documentation files (the */

View File

@@ -5,8 +5,8 @@
/* GODOT ENGINE */
/* https://godotengine.org */
/*************************************************************************/
/* Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2021 Godot Engine contributors (cf. AUTHORS.md). */
/* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
/* */
/* Permission is hereby granted, free of charge, to any person obtaining */
/* a copy of this software and associated documentation files (the */

View File

@@ -5,8 +5,8 @@
/* GODOT ENGINE */
/* https://godotengine.org */
/*************************************************************************/
/* Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2021 Godot Engine contributors (cf. AUTHORS.md). */
/* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
/* */
/* Permission is hereby granted, free of charge, to any person obtaining */
/* a copy of this software and associated documentation files (the */

View File

@@ -5,8 +5,8 @@
/* GODOT ENGINE */
/* https://godotengine.org */
/*************************************************************************/
/* Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2021 Godot Engine contributors (cf. AUTHORS.md). */
/* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
/* */
/* Permission is hereby granted, free of charge, to any person obtaining */
/* a copy of this software and associated documentation files (the */

View File

@@ -5,8 +5,8 @@
/* GODOT ENGINE */
/* https://godotengine.org */
/*************************************************************************/
/* Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2021 Godot Engine contributors (cf. AUTHORS.md). */
/* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
/* */
/* Permission is hereby granted, free of charge, to any person obtaining */
/* a copy of this software and associated documentation files (the */

View File

@@ -5,8 +5,8 @@
/* GODOT ENGINE */
/* https://godotengine.org */
/*************************************************************************/
/* Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2021 Godot Engine contributors (cf. AUTHORS.md). */
/* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
/* */
/* Permission is hereby granted, free of charge, to any person obtaining */
/* a copy of this software and associated documentation files (the */

View File

@@ -5,8 +5,8 @@
/* GODOT ENGINE */
/* https://godotengine.org */
/*************************************************************************/
/* Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2021 Godot Engine contributors (cf. AUTHORS.md). */
/* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
/* */
/* Permission is hereby granted, free of charge, to any person obtaining */
/* a copy of this software and associated documentation files (the */

View File

@@ -5,8 +5,8 @@
/* GODOT ENGINE */
/* https://godotengine.org */
/*************************************************************************/
/* Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2021 Godot Engine contributors (cf. AUTHORS.md). */
/* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
/* */
/* Permission is hereby granted, free of charge, to any person obtaining */
/* a copy of this software and associated documentation files (the */

View File

@@ -5,8 +5,8 @@
/* GODOT ENGINE */
/* https://godotengine.org */
/*************************************************************************/
/* Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2021 Godot Engine contributors (cf. AUTHORS.md). */
/* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
/* */
/* Permission is hereby granted, free of charge, to any person obtaining */
/* a copy of this software and associated documentation files (the */

View File

@@ -5,8 +5,8 @@
/* GODOT ENGINE */
/* https://godotengine.org */
/*************************************************************************/
/* Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2021 Godot Engine contributors (cf. AUTHORS.md). */
/* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
/* */
/* Permission is hereby granted, free of charge, to any person obtaining */
/* a copy of this software and associated documentation files (the */

View File

@@ -5,8 +5,8 @@
/* GODOT ENGINE */
/* https://godotengine.org */
/*************************************************************************/
/* Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2021 Godot Engine contributors (cf. AUTHORS.md). */
/* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
/* */
/* Permission is hereby granted, free of charge, to any person obtaining */
/* a copy of this software and associated documentation files (the */

View File

@@ -5,8 +5,8 @@
/* GODOT ENGINE */
/* https://godotengine.org */
/*************************************************************************/
/* Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2021 Godot Engine contributors (cf. AUTHORS.md). */
/* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
/* */
/* Permission is hereby granted, free of charge, to any person obtaining */
/* a copy of this software and associated documentation files (the */

View File

@@ -5,8 +5,8 @@
/* GODOT ENGINE */
/* https://godotengine.org */
/*************************************************************************/
/* Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2021 Godot Engine contributors (cf. AUTHORS.md). */
/* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
/* */
/* Permission is hereby granted, free of charge, to any person obtaining */
/* a copy of this software and associated documentation files (the */

View File

@@ -5,8 +5,8 @@
/* GODOT ENGINE */
/* https://godotengine.org */
/*************************************************************************/
/* Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2021 Godot Engine contributors (cf. AUTHORS.md). */
/* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
/* */
/* Permission is hereby granted, free of charge, to any person obtaining */
/* a copy of this software and associated documentation files (the */

View File

@@ -5,8 +5,8 @@
/* GODOT ENGINE */
/* https://godotengine.org */
/*************************************************************************/
/* Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2021 Godot Engine contributors (cf. AUTHORS.md). */
/* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
/* */
/* Permission is hereby granted, free of charge, to any person obtaining */
/* a copy of this software and associated documentation files (the */

View File

@@ -5,8 +5,8 @@
/* GODOT ENGINE */
/* https://godotengine.org */
/*************************************************************************/
/* Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2021 Godot Engine contributors (cf. AUTHORS.md). */
/* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
/* */
/* Permission is hereby granted, free of charge, to any person obtaining */
/* a copy of this software and associated documentation files (the */

View File

@@ -5,8 +5,8 @@
/* GODOT ENGINE */
/* https://godotengine.org */
/*************************************************************************/
/* Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2021 Godot Engine contributors (cf. AUTHORS.md). */
/* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
/* */
/* Permission is hereby granted, free of charge, to any person obtaining */
/* a copy of this software and associated documentation files (the */

View File

@@ -5,8 +5,8 @@
/* GODOT ENGINE */
/* https://godotengine.org */
/*************************************************************************/
/* Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2021 Godot Engine contributors (cf. AUTHORS.md). */
/* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
/* */
/* Permission is hereby granted, free of charge, to any person obtaining */
/* a copy of this software and associated documentation files (the */

View File

@@ -5,8 +5,8 @@
/* GODOT ENGINE */
/* https://godotengine.org */
/*************************************************************************/
/* Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2021 Godot Engine contributors (cf. AUTHORS.md). */
/* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
/* */
/* Permission is hereby granted, free of charge, to any person obtaining */
/* a copy of this software and associated documentation files (the */

View File

@@ -5,8 +5,8 @@
/* GODOT ENGINE */
/* https://godotengine.org */
/*************************************************************************/
/* Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2021 Godot Engine contributors (cf. AUTHORS.md). */
/* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
/* */
/* Permission is hereby granted, free of charge, to any person obtaining */
/* a copy of this software and associated documentation files (the */
@@ -145,7 +145,7 @@ typedef struct {
} godot_method_attributes;
typedef struct {
// instance pointer, method data, user data, num args, args - return result as varaint
// instance pointer, method data, user data, num args, args - return result as variant
GDCALLINGCONV godot_variant (*method)(godot_object *, void *, void *, int, godot_variant **);
void *method_data;
GDCALLINGCONV void (*free_func)(void *);

View File

@@ -5,8 +5,8 @@
/* GODOT ENGINE */
/* https://godotengine.org */
/*************************************************************************/
/* Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2021 Godot Engine contributors (cf. AUTHORS.md). */
/* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
/* */
/* Permission is hereby granted, free of charge, to any person obtaining */
/* a copy of this software and associated documentation files (the */

View File

@@ -5,8 +5,8 @@
/* GODOT ENGINE */
/* https://godotengine.org */
/*************************************************************************/
/* Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2021 Godot Engine contributors (cf. AUTHORS.md). */
/* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
/* */
/* Permission is hereby granted, free of charge, to any person obtaining */
/* a copy of this software and associated documentation files (the */

View File

@@ -5,8 +5,8 @@
/* GODOT ENGINE */
/* https://godotengine.org */
/*************************************************************************/
/* Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2021 Godot Engine contributors (cf. AUTHORS.md). */
/* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
/* */
/* Permission is hereby granted, free of charge, to any person obtaining */
/* a copy of this software and associated documentation files (the */

View File

@@ -5,8 +5,8 @@
/* GODOT ENGINE */
/* https://godotengine.org */
/*************************************************************************/
/* Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2021 Godot Engine contributors (cf. AUTHORS.md). */
/* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
/* */
/* Permission is hereby granted, free of charge, to any person obtaining */
/* a copy of this software and associated documentation files (the */