Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-07-24 | Merge pull request #25090 from Chaosus/string_count | Rémi Verschelde | |
Added String.count method | |||
2019-07-23 | Update some dead links in the codebase | Michael Alexsander Silva Dias | |
2019-07-23 | Added count method to String | Chaosus | |
2019-07-23 | Merge pull request #30716 from qarmin/fixed_static_analiser_code | Rémi Verschelde | |
Fix some code found by Coverity Scan and PVS Studio | |||
2019-07-23 | Fix some code found by Coverity Scan and PVS Studio | qarmin | |
2019-07-22 | Revert "Expose "meta" to the Inspector" | Rémi Verschelde | |
2019-07-22 | Make it a build error if a GetTypeInfo specialization cannot be resolved | Ignacio Etcheverry | |
Previously it was a runtime error message. | |||
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-19 | Merge pull request #30354 from LikeLakers2/multinodeedit-same-type-properties | Rémi Verschelde | |
MultiNodeEdit now only shows properties with the exact same PropertyInfo data | |||
2019-07-19 | Merge pull request #23310 from aaronfranke/posmod-int | Rémi Verschelde | |
Add integer posmod and rename default arg names | |||
2019-07-19 | Merge pull request #22642 from YeldhamDev/inspector_metadata | Rémi Verschelde | |
Expose "meta" to the Inspector | |||
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-18 | Merge pull request #30226 from lawnjelly/interpolate | Rémi Verschelde | |
Add access to interpolation fraction for fixed timestep interpolation | |||
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-11 | Add access to interpolation fraction for fixed timestep interpolation | lawnjelly | |
Addresses #30068 This is a prerequisite for allowing proper support for fixed timestep interpolation, exposing the interpolation fraction to the engine, modules and gdscript. The interpolation fraction is the fraction through the current physics tick at the time of the current frame. | |||
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-09 | Merge pull request #30188 from Andrettin/Method-Binding-Free-Function-Support | Rémi Verschelde | |
Method Binding Free Function Support | |||
2019-07-09 | Added support for passing functions pointers (with a class instance as the ↵ | Andrettin | |
first parameter) to method bindings | |||
2019-07-09 | Merge pull request #30433 from akien-mga/cryptocore-string-escape | Rémi Verschelde | |
SCons: Fix MBEDTLS_CONFIG_FILE string escape | |||
2019-07-08 | SCons: Fix MBEDTLS_CONFIG_FILE string escape | Rémi Verschelde | |
Fixes #30431, regression from #30277. | |||
2019-07-08 | Add NULL-terminator the string passed to strtol. | Fabio Alessandrelli | |
This is actually expected by the function although it was apparently working in GCC without the terminator, it breaks (at least some) clang versions. | |||
2019-07-08 | Merge pull request #30422 from Faless/net/tcp_connect_timeout | Rémi Verschelde | |
Add TCP connect timeout. | |||
2019-07-08 | Add TCP connect timeout. | Fabio Alessandrelli | |
Default timeout is 30 seconds (i.e. after 30 seconds of calling connect_to_host if the TCP peer is not connected the connection will error out). This value can be configured in project settings: `network/limits/tcp/connect_timeout_seconds` | |||
2019-07-08 | Merge pull request #30392 from hbina/redundant_check_pool_vector | Rémi Verschelde | |
Removed a redundant check in PoolVector | |||
2019-07-08 | Merge pull request #30407 from qarmin/small_fixess | Rémi Verschelde | |
Fixes minor issues found by static analyzer | |||
2019-07-07 | Removed a redundant check in PoolVector | hbina085 | |
The set method of PoolVector<T> performs an indexing check twice. | |||
2019-07-07 | Fixes minor issues found by static analyzer | qarmin | |
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 | MultiNodeEdit now only shows properties with the exact same PropertyInfo data | LikeLakers2 | |
2019-07-05 | when doing Vector3 slerp it is not necessary to have it normalized. | Toshiwo | |
2019-07-05 | Merge pull request #30282 from neikeq/editor_in_cs_equals_win | Rémi Verschelde | |
Re-write mono module editor code in C# | |||
2019-07-05 | Merge pull request #24086 from RandomShaper/bundle-pck-to-executable | Rémi Verschelde | |
Enhance game export | |||
2019-07-05 | Fix localize_path not always working | Ignacio Etcheverry | |
We make sure the resource dir path ends with a trailing '/' for safety reasons, so we must make sure the path we compare it to does so as well. | |||
2019-07-05 | Re-write mono module editor code in C# | Ignacio Etcheverry | |
Make the build system automatically build the C# Api assemblies to be shipped with the editor. Make the editor, editor player and debug export templates use Api assemblies built with debug symbols. Always run MSBuild to build the editor tools and Api assemblies when building Godot. Several bugs fixed related to assembly hot reloading and restoring state. Fix StringExtensions internal calls not being registered correctly, resulting in MissingMethodException. | |||
2019-07-05 | Merge pull request #30296 from neikeq/issue-30127 | Rémi Verschelde | |
Expose ResourceImporter to the scripting API | |||
2019-07-05 | Merge pull request #29744 from GodotExplorer/gdscript-completion-icons | Rémi Verschelde | |
Show icons for code completion options | |||
2019-07-05 | Show icons for code completion options | Geequlim | |
2019-07-04 | Expose ResourceImporter to the scripting API | Ignacio Etcheverry | |
Fixes #30127 | |||
2019-07-04 | Merge pull request #30263 from Faless/ws/wslay_pr | Rémi Verschelde | |
Use wslay as a WebSocket library | |||
2019-07-04 | WebSocket module now uses wslay library. | Fabio Alessandrelli | |
Both client and server are supported on native builds (as usual). SSL server is still not supported, but will soon be possible with this new library. The API stays the same, we just need to work out potential issues due to this big library switch. | |||
2019-07-04 | Parse more informations for code completion | Geequlim | |
2019-07-03 | Add embedded PCK option to PC platforms | Pedro J. Estébanez | |
The basic point is as in 2.1 (appending the PCK into the executable), but this implementation also patches a dedicated section in the ELF/PE executable so that it matches the appended data perfectly. The usage of integer types is simplified in existing code; namely, using plain `int` for small quantities. | |||
2019-07-03 | Add TCP Server is_listening method | Fabio Alessandrelli | |
2019-07-03 | Add b64 to string helper in CryptoCore | Fabio Alessandrelli | |