From 1bc03d9d650e9338e0a5b3b8f1631a3917e96907 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Tue, 23 May 2023 11:47:25 +0200 Subject: [PATCH] GDNative: Add Core API 1.4, move `Transform2D::determinant` there It was added in #77283 but broke compatibility by being introduced in an already released core API (1.0). Fixes #77283. --- modules/gdnative/gdnative_api.json | 25 +++++++++++++++++-------- 1 file changed, 17 insertions(+), 8 deletions(-) diff --git a/modules/gdnative/gdnative_api.json b/modules/gdnative/gdnative_api.json index c8827a3b6ef..9245cf01cf3 100644 --- a/modules/gdnative/gdnative_api.json +++ b/modules/gdnative/gdnative_api.json @@ -23,7 +23,23 @@ "major": 1, "minor": 3 }, - "next": null, + "next": { + "type": "CORE", + "version": { + "major": 1, + "minor": 4 + }, + "next": null, + "api": [ + { + "name": "godot_transform2d_determinant", + "return_type": "godot_real", + "arguments": [ + ["const godot_transform2d *", "p_self"] + ] + } + ] + }, "api": [ { "name": "godot_dictionary_merge", @@ -4431,13 +4447,6 @@ ["const godot_transform2d *", "p_self"] ] }, - { - "name": "godot_transform2d_determinant", - "return_type": "godot_real", - "arguments": [ - ["const godot_transform2d *", "p_self"] - ] - }, { "name": "godot_transform2d_orthonormalized", "return_type": "godot_transform2d",