Fabio Alessandrelli
7bff71a9f5
Fix Rect2::distance_to not returning 0.
...
Was relying on comparison with 1e20 which cannot be represented as
float, causing some epsilon to always be returned and compilers
complaining when using -Werror.
2022-06-27 10:40:24 +02:00
Rémi Verschelde
7a3ad31dc4
Update copyright year
2022-04-04 12:28:54 +02:00
BimDav
a93f7f9e73
Call Variant destructor in operator=
2021-12-03 11:11:32 +01:00
Rémi Verschelde
4e8508ad53
Fixup style after #563
2021-09-27 12:26:32 +02:00
Rémi Verschelde
3de367920f
Merge pull request #563 from LinwoodCloud/master
2021-09-27 11:41:41 +02:00
Rémi Verschelde
7a693df988
Merge pull request #601 from colugomusic/fix-string-args-constness
2021-09-27 11:31:56 +02:00
Rémi Verschelde
0fba89df67
Merge pull request #595 from Calinou/add-license-headers
2021-09-27 11:31:31 +02:00
Sam
6b31e67dd3
Fix Clang 11 build failure over -Wabsolute-value
2021-09-01 23:08:30 +01:00
Colugo
bba8393af7
Fix argument constness in String::begins_with, String::ends_with
2021-08-22 16:02:14 +01:00
Hugo Locurcio
cf5428e103
Add license headers to all source and header files
...
This is consistent with the core Godot source code, and ensures the
license isn't detached from its original code when individual files
are distributed.
2021-08-02 18:34:58 +02:00
DhruvMaroo
7a1890345b
edited according to clang-format
2021-06-01 23:16:09 +05:30
DhruvMaroo
67e2c6145c
used godot_string_new_copy to copy
2021-05-31 09:31:11 +05:30
DhruvMaroo
b44b98a94c
removed _deleted class member
2021-05-31 09:10:59 +05:30
DhruvMaroo
cd05371ce8
added class member, safety check in the destructor
2021-05-31 00:52:36 +05:30
DhruvMaroo
492285f681
changed spaces to tabs
2021-05-30 22:29:41 +05:30
DhruvMaroo
bdc5674ace
added move assignment operator
2021-05-30 12:33:40 +05:30
DhruvMaroo
689b5fb98b
added mover constructor
2021-05-30 12:30:11 +05:30
kb1000
3fe276c02f
Stop including iostream in Variant.hpp (to produce smaller binaries)
2021-05-23 16:28:11 +02:00
Erik Abair
2ccc5e08f2
Populates incorrect constants for Vector2 and 3 types.
2021-05-02 15:35:21 -07:00
George Marques
cba90d6301
Update clang-format to version 11
...
This is taken from the Godot repository, so formatting is similar. This
updates the style rules as well.
Also fix style in files to conform with this version.
2021-02-28 16:57:34 -03:00
Hrishikesh
8558d2360a
Removed redundant function definitions in CameraMatrix and used the ones in Math.hpp
2021-02-03 06:32:44 +05:30
Marc
b400dba875
Merge branch 'master' into container_leaks
2021-01-31 20:06:56 +00:00
Marc
05ba977cc6
Merge pull request #485 from colugomusic/fix-array-const
...
Fix constness of Array::find, Array::find_last and Array::rfind
2021-01-31 20:03:47 +00:00
Marc
e76efdd3ab
Merge pull request #481 from Zylann/vec_constants
...
Added missing constants to Vector2, Vector3, Basis and Quat
2021-01-31 20:02:06 +00:00
Marc
1aab5e3962
Merge branch 'master' into master
2021-01-31 19:32:56 +00:00
Marc Gilleron
fb71edd45b
Fix container and string leaks
...
Some functions return a new instance of such containers,
but instead we made a copy of them, without taking ownership of the
original created by the function.
Now we use a specific constructor taking ownership on the godot_* struct.
2021-01-07 01:05:12 +00:00
Colugo
38c9b624db
Fix constness of Array::find, Array::find_last and Array::rfind
2020-12-20 16:53:40 +00:00
Marc Gilleron
8e1cc29c66
Added missing constants to Vector2, Vector3, Basis and Quat
2020-12-08 23:35:17 +00:00
Marc
c9a740be34
Merge pull request #451 from Zylann/math
...
Added Godot's math functions
2020-09-08 19:31:54 +01:00
Marc Gilleron
0d1511695d
Added Godot's math functions
2020-09-04 02:14:45 +01:00
Marc
e5334579db
Merge branch 'master' into arcore_support
2020-08-31 15:05:09 +01:00
Fredia Huya-Kouadio
31b0ca80d5
Additions to the library to support the ARCore plugin
2020-08-23 14:11:47 -07:00
Marc Gilleron
469e9da86c
Rename `RID::get_rid()` => `get_id()` to match Godot
2020-08-23 21:32:05 +01:00
Marc
a3fe496ad6
Merge pull request #441 from TerraAr/master
...
Create an operator
2020-08-16 17:36:49 +01:00
TerraAr
7d347edb12
Updated operator
...
I've updated the operator that I had created to use the private constructor of the class.
2020-08-15 15:10:16 -03:00
Marc
756c1e1c79
Merge pull request #307 from aqnuep/string_memory_leak_fix
...
Fixed memory leak with String objects
2020-08-15 17:57:02 +01:00
Daniel Rakos
0939d0f6d1
Fixed memory leak with String objects
...
The member _godot_string should never be straight out overwritten ever without
first destroying the underlying string object's memory. This change solves the
problem through the introduction of a new private constructor to create String
objects with a pre-existing godot_string handle.
2020-08-15 09:46:23 +02:00
TerraAr
5e656923cf
Fixed operator
...
Fixed String::operator+=(const wchar_t). The problem was that a temporary variable don't have an address.
2020-08-14 23:32:38 -03:00
TerraAr
a1ba843f36
Created operator.
...
Created String::operator+=(const wchar_t), that was mark as Todo.
2020-08-14 21:42:10 -03:00
Marc
ceae5be727
Merge pull request #356 from sheepandshepherd/variantleak2
...
Add C conversion constructors and fix new leak
2020-06-05 21:16:37 +01:00
Bastiaan Olij
e2a5fdee3b
Merge pull request #406 from Zylann/color_operators
...
Added missing Color operators
2020-06-02 20:31:24 +10:00
Marc Gilleron
0f4ea6cc35
Added missing Color operators
2020-05-29 20:38:14 +01:00
Fredia Huya-Kouadio
3747ffe871
Fix godot-cpp types registration
...
A initialization bug was causing the registration to occur prior to a key required field being set (see https://github.com/GodotNativeTools/godot-cpp/issues/394#issuecomment-613636985 for more details).
Fixes #394
2020-04-14 13:51:02 -07:00
Mika Pi
2559c70e27
Fix compilation warnings about unused vars
2020-02-23 07:40:54 -08:00
sheepandshepherd
66c671b59d
Add C conversion constructors to fix leak of default-constructed empty arrays
2020-01-31 00:08:02 +01:00
Rémi Verschelde
81783c6045
Merge pull request #333 from sheepandshepherd/string-plus-leak
...
Fix String::operator+ memory leak
2020-01-19 23:35:06 +01:00
sheepandshepherd
95feb486c9
Fix leaks caused by implicitly called copy constructors
2019-12-04 03:27:39 +01:00
sheepandshepherd
9560cbff09
Fix String::operator+ memory leak
2019-10-05 01:14:23 +02:00
Bastiaan Olij
8443486a19
Call register types and init earlier
2019-09-14 11:24:15 +10:00
Bastiaan Olij
fc1fe720c3
Store all main entry points to the currently available APIs
2019-08-12 19:55:29 +10:00