summaryrefslogtreecommitdiffstats
path: root/include/core
Commit message (Collapse)AuthorAgeFilesLines
* Replace bindgins to work with extensionsGeorge Marques2021-09-2727-5567/+0
|
* Fixup style after #563Rémi Verschelde2021-09-271-1/+0
|
* Merge pull request #563 from LinwoodCloud/masterRémi Verschelde2021-09-272-1/+2
|\
| * Stop including iostream in Variant.hpp (to produce smaller binaries)kb10002021-05-232-1/+2
| |
* | Merge pull request #588 from aaronfranke/signal-no-argRémi Verschelde2021-09-271-1/+12
|\ \
| * | Add ability to easily register signals with no argumentsAaron Franke2021-07-101-1/+12
| | |
* | | Merge pull request #601 from colugomusic/fix-string-args-constnessRémi Verschelde2021-09-271-2/+2
|\ \ \
| * | | Fix argument constness in String::begins_with, String::ends_withColugo2021-08-221-2/+2
| | | |
* | | | Merge pull request #595 from Calinou/add-license-headersRémi Verschelde2021-09-2727-0/+810
|\ \ \ \
| * | | | Add license headers to all source and header filesHugo Locurcio2021-08-0227-0/+810
| |/ / / | | | | | | | | | | | | | | | | | | | | 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.
* / / / Remove extraneous Error enum values that were removed in Godot 3.0Hugo Locurcio2021-08-021-2/+0
|/ / /
* / / Fix typo in CRASH_COND leading to unexpected continuation after failMai Lavelle2021-08-011-1/+1
|/ /
* | Merge pull request #567 from DhruvMaroo/stringMarc2021-06-011-0/+2
|\ \ | | | | | | added String's move constructor and move assignment operator
| * | edited according to clang-formatDhruvMaroo2021-06-011-2/+2
| | |
| * | removed _deleted class memberDhruvMaroo2021-05-311-1/+0
| | |
| * | added class member, safety check in the destructorDhruvMaroo2021-05-311-0/+1
| | |
| * | changed spaces to tabsDhruvMaroo2021-05-301-1/+1
| | |
| * | added move assignment operatorDhruvMaroo2021-05-301-0/+1
| | |
| * | added mover constructorDhruvMaroo2021-05-301-0/+1
| |/
* | changed spaces to tabsDhruvMaroo2021-05-301-6/+6
| |
* | Revert "Revert "added inverse trigonometric functions in Math.hpp""DhruvMaroo2021-05-301-0/+21
| | | | | | | | This reverts commit 8ef2e4f1396723427f3d374e55573a4cee052b4f.
* | Revert "added inverse trigonometric functions in Math.hpp"DhruvMaroo2021-05-301-21/+0
| | | | | | | | This reverts commit 5128858b1e9b4c0e5275e11fbef7bac1fd445130.
* | added inverse trigonometric functions in Math.hppDhruvMaroo2021-05-301-0/+21
|/
* Update clang-format to version 11George Marques2021-02-2811-39/+0
| | | | | | | 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.
* Re-added clang-format checks to the CIMarc Gilleron2021-02-032-5/+2
|
* Removed the redundant functions in CameraMatrix.hppHrishikesh2021-02-031-6/+0
|
* Removed redundant function definitions in CameraMatrix and used the ones in ↵Hrishikesh2021-02-031-1/+2
| | | | Math.hpp
* Revert comment, this raised another warning, and I could not find a pattern ↵Marc Gilleron2021-01-311-2/+5
| | | | that works
* Merge branch 'master' into container_leaksMarc2021-01-3111-53/+92
|\
| * Merge pull request #485 from colugomusic/fix-array-constMarc2021-01-311-3/+3
| |\ | | | | | | Fix constness of Array::find, Array::find_last and Array::rfind
| | * Fix constness of Array::find, Array::find_last and Array::rfindColugo2020-12-201-3/+3
| | |
| * | Merge pull request #481 from Zylann/vec_constantsMarc2021-01-316-0/+44
| |\ \ | | | | | | | | Added missing constants to Vector2, Vector3, Basis and Quat
| | * | Added missing constants to Vector2, Vector3, Basis and QuatMarc Gilleron2020-12-086-0/+44
| | |/
| * | Merge pull request #480 from Zylann/ref_safer_castMarc2021-01-311-25/+15
| |\ \ | | | | | | | | Use safer casts in Ref<T>
| | * | Use safer casts in Ref<T>Marc Gilleron2020-12-081-25/+15
| | |/
| * | Merge pull request #479 from Zylann/fix_math_warningsMarc2021-01-312-14/+19
| |\ \ | | | | | | | | Fix some Math warnings
| | * | Fix some Math warningsMarc Gilleron2020-12-082-14/+19
| | |/
| * | Merge branch 'master' into masterMarc2021-01-3111-85/+635
| |\|
| * | Fix compilation warnings about unused varsMika Pi2020-02-231-13/+13
| | |
* | | Fix container and string leaksMarc Gilleron2021-01-076-3/+58
| |/ |/| | | | | | | | | | | 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.
* | Merge pull request #459 from Silver1063/masterMarc2020-12-081-1/+10
|\ \ | | | | | | Added some missing Vector3 functions and Fixed Vector3 slide
| * | Added missing Vector3 slerp and Vector3 projectSilver10632020-10-111-0/+9
| | | | | | | | | | | | Vector3 slerp and Vector3 project were missing from godot cpp so I added them.
| * | Update Vector3 slide to match godot implementationSilver10632020-10-111-1/+1
| | | | | | | | | | | | It wasn't the same before and resulted in weird behavior, its better now.
* | | Remove the need to use GODOT_SUBCLASSMarc Gilleron2020-09-121-61/+95
|/ /
* | Merge pull request #451 from Zylann/mathMarc2020-09-084-5/+272
|\ \ | | | | | | Added Godot's math functions
| * | Added Godot's math functionsMarc Gilleron2020-09-044-5/+272
| | |
* | | Merge branch 'master' into arcore_supportMarc2020-08-315-18/+42
|\| |
| * | Merge pull request #447 from Zylann/rename_rid_get_idMarc2020-08-301-1/+1
| |\ \ | | | | | | | | Rename `RID::get_rid()` => `get_id()` to match Godot
| | * | Rename `RID::get_rid()` => `get_id()` to match GodotMarc Gilleron2020-08-231-1/+1
| | | |
| * | | Merge pull request #371 from NHodgesVFX/VectorBounceReflectFixMarc2020-08-232-4/+4
| |\ \ \ | | |/ / | |/| | Fix Vector's Bounce Reflect