Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-09-24 | doc: Sync classref with current source | Rémi Verschelde | |
Fix a few missing bindings or unspecified argument names and default values. | |||
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 | Merge pull request #32150 from luzpaz/typos | Rémi Verschelde | |
Fix misc. source comment typos | |||
2019-09-19 | Fix misc. source comment typos | luz.paz | |
Found using `codespell -q 3 -S ./thirdparty,*.po -L ang,ba,cas,dof,doubleclick,fave,hist,leapyear,lod,nd,numer,ois,paket,seeked,sinc,switchs,te,uint -D ~/Projects/codespell/codespell_lib/data/dictionary.txt ` | |||
2019-09-19 | Merge pull request #31202 from azagaya/light-data | Rémi Verschelde | |
Create shadow_vec for altering shadow computation | |||
2019-09-18 | Added skin support and simplified APIs to override bone position. | Juan Linietsky | |
2019-09-14 | Implement shader array support for varyings | Chaosus | |
2019-09-06 | Create shadow_vec for altering shadow computation | azagaya | |
In 2.1 and 3.0, light_vec could be modified for altering shadow_computations. But it broke shadows when rotating light. shadow_vec would do the same, but without breaking shadows in rotated lights if not used. Add inverse light transformation to shadow vec, so it's not affected when rotating lights; Added usage define for shadow vec. For shadow vec working properly when rotating a light, it's needed to multiply it by light_matrix normalized. Added usage define in order to don't do that if shadow_vec not used. | |||
2019-08-28 | Merge pull request #31600 from Chaosus/shader_func_return_fix | Yuri Roubinsky | |
Fix shader crash when users miss the return statement | |||
2019-08-28 | Fix shader crash when users miss the return statement | Yuri Roubinski | |
2019-08-28 | Typo fix: "differt" -> "different" | follower | |
2019-08-24 | Merge pull request #31596 from Chaosus/shader_switch | Rémi Verschelde | |
Implements switch flow control operator in shaders | |||
2019-08-23 | Fix uninitialized inertia value in Body2DSW | Andrii Doroshenko (Xrayez) | |
2019-08-23 | Implements switch to shaders | Yuri Roubinski | |
2019-08-22 | Fix custom inertia in physics2d, closes#30838 | RaphaelHunter | |
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 | Implemented do/while loops for shaders | Yuri Roubinski | |
2019-08-13 | Force user to initialize local shader constants | Yuri Roubinski | |
2019-08-12 | Remove redundant author doc comments | IAmActuallyCthulhu | |
2019-08-12 | Fix recording bus regression. | Saracen | |
2019-08-09 | Show that identifier found in function names | Cameron Reikes | |
2019-08-09 | Replace 'ERR_EXPLAIN' with 'ERR_FAIL_*_MSG' in "main" and "servers" directories | Michael Alexsander Silva Dias | |
2019-08-07 | Merge pull request #31099 from Chaosus/shader_local_const | Rémi Verschelde | |
Implemented local shader constants | |||
2019-08-07 | Merge pull request #31077 from qarmin/coverity_bugs | Rémi Verschelde | |
Change some code proposed by Coverity and Cppcheck | |||
2019-08-07 | Merge pull request #30468 from SaracenOne/expose_audio_capture | Rémi Verschelde | |
Exposes capture methods to AudioServer + documentation | |||
2019-08-07 | Add some code changes/fixes proposed by Coverity and Clang Tidy | qarmin | |
2019-08-05 | Implemented local shader constants | Yuri Roubinski | |
2019-07-31 | Merge pull request #30999 from nekomatata/fix-regression-godot-physics | Rémi Verschelde | |
Fixed regression in Godot Physics | |||
2019-07-31 | Reverted fix that makes sense for collision_solver_2d_sat but not for the 3d ↵ | PouleyKetchoupp | |
version (original commit: aab8da25ad2c3e6d2df03abbc8e35c1725938c40) Fixes #30886 | |||
2019-07-30 | Correct typo and format of comments | IAmActuallyCthulhu | |
2019-07-27 | Remove physics thread getting the gl context | santouits | |
2019-07-23 | Update some dead links in the codebase | Michael Alexsander Silva Dias | |
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-20 | Merge pull request #30349 from qarmin/fix_arvr_crash_at_exit | Rémi Verschelde | |
Fix ARVRServer crash at exit | |||
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 | Changed some code showed in LGTM and Coverage | qarmin | |
2019-07-16 | Merge pull request #30548 from Calinou/tweak-audio-cutoff-property-hints | Rémi Verschelde | |
Tweak audio cutoff property hints to allow reasonable values only | |||
2019-07-16 | Allows to use non-constants in the local shader array initializer | Chaosus | |
2019-07-16 | Added local array initializer | Chaosus | |
2019-07-16 | Expose audio callbacks as signals. | Saracen | |
2019-07-15 | Exposes capture methods to AudioServer, variable renames for consistency, | Saracen | |
added documentation. | |||
2019-07-15 | Implemented local shader arrays | Chaosus | |
2019-07-15 | Added missed "textureProjLod" shader built-in overload for 3D textures | Chaosus | |
2019-07-12 | Tweak audio cutoff property hints to allow reasonable values only | Hugo Locurcio | |
This also makes all cutoff property hints consistent. This closes #29588. | |||
2019-07-11 | Make the default return value on crash explicit | hbina085 | |
Noticed that the error condition will return a NULL instead of something more explicit like "false". Should make the code more readable at a glance. | |||
2019-07-11 | Removed invalid mix shader overloads | Chaosus | |
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 | |