Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-09-27 | Merge pull request #32249 from hbina/a_star_ignore_disabled | Rémi Verschelde | |
Add option to consider disable points | |||
2019-09-27 | Add option to consider disable points | Hanif Bin Ariffin | |
Previously, disabled points will not be considered when performing get_closest_point. This commit changes that by introducing an additional flag for this behavior. Related issue: #31814 | |||
2019-09-25 | Merge pull request #32051 from qarmin/some_error_explanation | Rémi Verschelde | |
Added some obvious errors explanations | |||
2019-09-25 | Added some obvious errors explanations | qarmin | |
2019-09-24 | Fix copyright headers and style issues | Rémi Verschelde | |
2019-09-23 | Merge pull request #32275 from godotengine/skin_support | Rémi Verschelde | |
Added skin support and simplified APIs to override bone position + glTF 2.0 import fixes | |||
2019-09-22 | Changed some code found by Clang Tidy and Coverity | qarmin | |
2019-09-20 | GLTF2 Import Fixes - Skin(s) to Skeleton - Skin Support | Marios Staikopoulos | |
2019-09-03 | Merge pull request #31756 from raphael10241024/fast_aabb_transform | Rémi Verschelde | |
a faster function to transform aabb | |||
2019-09-01 | Check for exact equality before approximate equality | Aaron Franke | |
2019-09-01 | Remove redundant transform method in Geometry singleton | Andrii Doroshenko (Xrayez) | |
Transform2D's xform method can be used instead which handles `PoolVector2Array` now (as well as 3D version). | |||
2019-09-01 | Merge pull request #31761 from Xrayez/trans2d-vector2array | Rémi Verschelde | |
Add transform methods for PoolVector*Array | |||
2019-09-01 | Merge pull request #31667 from YeldhamDev/geometry_point_circle_cleanup | Rémi Verschelde | |
Add 'is_point_in_circle()' to Geometry class, and general file cleanup | |||
2019-08-29 | Add transform methods for PoolVector*Array | Andrii Doroshenko (Xrayez) | |
Similarly to `Vector2` and `Rect2` transforms in 2D and Vector3, Plane, and AABB in 3D. PoolVector2Array and PoolVector3Array were the only missing Variant types in both Transform2D and Transform respectively. | |||
2019-08-29 | a faster funtion to transform aabb | RaphaelHunter | |
2019-08-27 | [Mono] Various Color improvements | Aaron Franke | |
I also slid in a fix to C++ Vector3 > and >= | |||
2019-08-27 | Add 'is_point_in_circle()' to Geometry class, and general file cleanup | Michael Alexsander Silva Dias | |
2019-08-27 | allow to reserve space in OAHashMap explicitly and also in AStar. | Robin Hübner | |
* also handle overflow occurring in _get_probe_length | |||
2019-08-23 | Merge pull request #31094 from aaronfranke/vector-sign-mod-etc | Rémi Verschelde | |
Add Vector2/3 sign and posmod functions, axis, docs, misc additions | |||
2019-08-21 | Merge pull request #29871 from Faless/crypto/initial_pr | Rémi Verschelde | |
More Crypto, SSL server, crt/key as Resource, HashingContext | |||
2019-08-21 | Merge pull request #31402 from profan/perf/astar-improvements | Rémi Verschelde | |
A* performance improvements, use OAHashMap. | |||
2019-08-21 | astar performance improvements, use oahashmap | Robin Hübner | |
2019-08-20 | Merge pull request #31395 from ptrojahn/floatsarenasty | Rémi Verschelde | |
Replace is_zero_approx(A.distance_to(B)) with A==B | |||
2019-08-19 | Replace is_zero_approx(A.distance_to(B)) with A==B | Paul Trojahn | |
Related to #22988 (Fixes the holes in the shape of the first comment) | |||
2019-08-19 | Move CryptoCore to it's own folder. | Fabio Alessandrelli | |
Crypto classes will be placed in core/crypto. | |||
2019-08-19 | Fix CryptoCore signatures, add SHA1 context. | Fabio Alessandrelli | |
Fix hash size in SHA256 signature Fix source parameter in hash context update function to be const. Add SHA1 hash context. | |||
2019-08-17 | Add Vector2/3 sign and posmod functions, misc additions | Aaron Franke | |
Also make the docs more consistent, add Axis enum to Vector2, add > and >=. and C# also gets % and an override for vector-vector mod. | |||
2019-08-17 | Replace 'ERR_EXPLAIN' with 'ERR_FAIL_*_MSG' in 'core/' and 'editor/' | Braden Bodily | |
Condensed some if and ERR statements. Added dots to end of error messages Couldn't figure out EXPLAINC. These files gave me trouble: core/error_macros.h, core/io/file_access_buffered_fa.h (where is it?), core/os/memory.cpp, drivers/png/png_driver_common.cpp, drivers/xaudio2/audio_driver_xaudio2.cpp (where is it?) | |||
2019-08-14 | Merge pull request #31266 from ↵ | Rémi Verschelde | |
IAmActuallyCthulhu/pr/remove-redundant-author-comments Remove redundant author doc comments | |||
2019-08-13 | remove unused self list include from astar | Robin Hübner | |
2019-08-12 | Remove redundant author doc comments | IAmActuallyCthulhu | |
2019-08-09 | Add Basis constants and format Transform constants | Aaron Franke | |
2019-08-04 | [Core] [Mono] Optimize Wrap functions | Aaron Franke | |
Use is_zero_approx(), avoid a negative, and also rename "rng" to "range". | |||
2019-07-25 | Merge pull request #30776 from akien-mga/editor-configurable-float-step | Rémi Verschelde | |
Inspector: Make default float step configurable | |||
2019-07-23 | Update some dead links in the codebase | Michael Alexsander Silva Dias | |
2019-07-23 | Inspector: Make default float step configurable | Rémi Verschelde | |
Also allow lifting the decimal step formatting with a hint range step of 0. A new `range_step_decimals()` is added for this to avoid breaking compatibility on the general purpose `step_decimals()` (which still returns 0 for an input step of 0). Supersedes #25470. Partial fix for #18251. | |||
2019-07-20 | Merge pull request #30693 from Chaosus/lerp_angle | Rémi Verschelde | |
Added lerp_angle built-in function | |||
2019-07-20 | Merge pull request #30576 from qarmin/lgtm_coverage | Rémi Verschelde | |
Changed some code reported by LGTM and Coverity | |||
2019-07-20 | Added lerp_angles built-in function | Chaosus | |
Co-authored-by: Xrayez <https://github.com/Xrayez> Co-authored-by: DleanJeans <https://github.com/DleanJeans> | |||
2019-07-20 | Changed some code showed in LGTM and Coverage | qarmin | |
2019-07-18 | Add integer posmod and rename default arg names | Aaron Franke | |
"posmod" is the integer version of "fposmod". We do not need a "mod" because of the % operator. I changed the default arg names from "x" and "y" to "a" and "b" because they are not coordinates. I also changed pow's arg names to "base" and "exp". Also, I reorganized the code in the VS built-in funcs switch statement. | |||
2019-07-12 | Merge pull request #30341 from Toshiwoz/master | Rémi Verschelde | |
when doing Vector3 slerp it is not necessary to have it normalized. | |||
2019-07-10 | Merge pull request #30455 from qarmin/const_reference | Rémi Verschelde | |
Pass by reference to const | |||
2019-07-10 | Use reference to constant in functions | qarmin | |
2019-07-08 | SCons: Fix MBEDTLS_CONFIG_FILE string escape | Rémi Verschelde | |
Fixes #30431, regression from #30277. | |||
2019-07-06 | Merge pull request #30382 from simonpuchert/geo-opt | Rémi Verschelde | |
Some small optimizations in core/math/geometry.h. | |||
2019-07-06 | Optimize get_closest_point_to_segment*. | Simon Puchert | |
By combining all scalar factors we can get rid of a scalar * vector multiplication and a square root operation, since the resulting formula only uses the squared length. | |||
2019-07-06 | Added release function to PoolVector::Access. | Ibrahn Sahir | |
For clarity, assign-to-release idiom for PoolVector::Read/Write replaced with a function call. Existing uses replaced (or removed if already handled by scope) | |||
2019-07-05 | when doing Vector3 slerp it is not necessary to have it normalized. | Toshiwo | |
2019-07-03 | Add b64 to string helper in CryptoCore | Fabio Alessandrelli | |