Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-10-11 | Merge pull request #11998 from ↵ | Rémi Verschelde | |
DmitryKrutskikh/filter-input-events-in-project-manager-3-0 Skip unhandled input events on asset library tab. (3.0) [ci skip] | |||
2017-10-11 | Merge pull request #11966 from BastiaanOlij/stereo_sky | Rémi Verschelde | |
Fix issues when rendering panoramic sky in stereoscopic | |||
2017-10-11 | Merge pull request #11951 from hungrymonkey/fix_issue11873 | Rémi Verschelde | |
fix issue 11873. AudioStreamSample get_data() seems to be misaligned. | |||
2017-10-11 | Merge pull request #11875 from endragor/fix-export-loop | Rémi Verschelde | |
Fix command-line export looping infinitely | |||
2017-10-11 | Merge pull request #11818 from tagcup/anisotropic_ggx | Rémi Verschelde | |
Fix anisotropic GGX D function, and introduce and use anistropic GGX … | |||
2017-10-11 | Merge pull request #12018 from ↵ | Gilles Roudiere | |
hi-ogawa/fix-animated-sprite-frame-property-slider Fix AnimatedSprite frame property slider in editor | |||
2017-10-11 | Merge pull request #11954 from neikeq/d | Ignacio Etcheverry | |
Added 'exposed' field to ClassInfo for registered classes | |||
2017-10-11 | Merge pull request #11958 from hi-ogawa/fix-shadow-map-front-face | Gilles Roudiere | |
Fix front face definition | |||
2017-10-11 | Fix AnimatedSprite frame property slider in editor | Hiroshi Ogawa | |
2017-10-10 | Merge pull request #11999 from Grosskopf/AudioServerAndStream-docs | Chris Bradfield | |
[DOCS] Updated AudioStream docs and added AudioServer docs | |||
2017-10-11 | updated AudioStream docs and added AudioServer docs | Grosskopf | |
2017-10-10 | Merge pull request #11945 from saltares/docs-os | Chris Bradfield | |
[DOCS] - Completes the docs for the OS class | |||
2017-10-10 | [DOCS] - Completes the docs for the OS class | David Saltares | |
2017-10-10 | Merge pull request #11942 from saltares/docs-engine | Chris Bradfield | |
[DOCS] - Complete Engine docs | |||
2017-10-10 | [DOCS] - Complete Engine docs | David Saltares | |
2017-10-10 | Merge pull request #11959 from hi-ogawa/fix-shadow-atlas-invalidation | Andreas Haas | |
Track LightInstance::shadow_atlases so that it will be freed properly | |||
2017-10-10 | Merge pull request #11971 from volzhs/freetype-2.8.1 | Andreas Haas | |
Update freetype to 2.8.1 | |||
2017-10-10 | Merge pull request #11919 from Toizi/array_sort_ref | Andreas Haas | |
Array::sort/invert now return reference to Array | |||
2017-10-10 | Merge pull request #11775 from endragor/android-keyboard-input | Andreas Haas | |
Improve input handling on Android | |||
2017-10-10 | Merge pull request #12000 from neikeq/f | Ignacio Etcheverry | |
Fix wrong array index | |||
2017-10-10 | Fix wrong array index | Ignacio Etcheverry | |
2017-10-10 | Skip unhandled input events on asset library tab. | DmitryKrutskikh | |
2017-10-10 | Merge pull request #11987 from endragor/define-va-copy | Ignacio Etcheverry | |
Define va_copy with --std=c++03 (fixes #11979) | |||
2017-10-10 | Fix issues when rendering panoramic sky in stereoscopic | Bastiaan Olij | |
2017-10-10 | Define va_copy with --std=c++03 (fixes #11979) | Ruslan Mustakov | |
2017-10-10 | Fix getting struct elements from MonoArray (#11978) | Ignacio Etcheverry | |
* Fix getting struct elements from MonoArray * Revert undesired change | |||
2017-10-09 | Mono: Make use of ClassInfo's exposed API | Ignacio Etcheverry | |
- BindingsGenerator only generates exposed classes. - Fix creation of managed instances of non-exposed classes. | |||
2017-10-09 | Adds 'exposed' field to ClassInfo | Ignacio Etcheverry | |
This field represents if the class is exposed to the scripting API. The value is 'true' if the class was registered manually ('ClassDB::register_*class()'), otherwise it's false (registered on '_post_initialize'). - Added missing registration of classes that are meant to be exposed. | |||
2017-10-09 | Merge pull request #11921 from mhilbrunner/docs-tree-treeitem | Chris Bradfield | |
[DOCS] Document Tree & TreeItem | |||
2017-10-09 | [DOCS] Document Tree | mhilbrunner | |
2017-10-09 | Fix data alignment issues in get_data() in AudioStreamSample | hungrymonkey | |
I am fixing the issue by adding DATA_PAD to the return pointer as suggested by hi-ogawa When using set_data in AudioStreamSample in PoolByteArray, the data is set using a DATA_PAD to pad the pointer to the correct place as such uint8_t *dataptr = (uint8_t *)data; copymem(dataptr + DATA_PAD, r.ptr(), datalen); data_bytes = datalen; godot/scene/resources/audio_stream_sample.cpp#L473 All I am doing is adding a DATA_PAD to the return pointer to get_data() in AudioStreamSample to change godot/scene/resources/audio_stream_sample.cpp#L48 PoolVector<uint8_t>::Write w = pv.write(); copymem(w.ptr(), data, data_bytes); to PoolVector<uint8_t>::Write w = pv.write(); uint8_t *dataptr = (uint8_t *)data; copymem(w.ptr(), dataptr + DATA_PAD, data_bytes); Please review whether or not set or get is correct. Because this issue seems to be fixable by removing DATA_PAD in set_data() instead of adding DATA_PAD to get_data(). I have not tested the latter fix Fixes #issue, 11873 | |||
2017-10-09 | Merge pull request #11019 from poke1024/refactor-polygon-v2 | Gilles Roudiere | |
Refactoring of polygon editors to a common code base (v2) | |||
2017-10-10 | Update freetype to 2.8.1 | volzhs | |
2017-10-09 | Fix anisotropic GGX D function, and introduce and use anistropic GGX G function. | Ferenc Arn | |
Also fixed isotropic GGX G function with Schlick approximation, and added a commented out version without the approximation. Added references. | |||
2017-10-09 | Array::sort, sort_custom and invert now return reference to Array to allow ↵ | Marius Guggenmos | |
chaining of operations | |||
2017-10-09 | Merge pull request #11965 from SaracenOne/navgen_fix | Rémi Verschelde | |
Navmesh Generation Fix [ci skip] | |||
2017-10-09 | Merge pull request #11941 from Paulb23/members_selected_scroll_issue_11648 | Rémi Verschelde | |
Consistant scroll when using members overview, issue 11648 | |||
2017-10-09 | Merge pull request #11926 from RameshRavone/patch-11 | Rémi Verschelde | |
flatDir support [Android] (Master) [ci skip] | |||
2017-10-09 | Merge pull request #11922 from Toizi/editor_double_escape | Rémi Verschelde | |
Fixed double escape for quotes in generated about files [ci skip] | |||
2017-10-09 | Merge pull request #11915 from marcelofg55/desc_animation_errors | Rémi Verschelde | |
Added a name/path description when there is an error in the Animation Track | |||
2017-10-09 | Merge pull request #11908 from mhilbrunner/docstatus-flagerror | Rémi Verschelde | |
doc_status.py: Error message for unknown CLI flag, shebang change [ci skip] | |||
2017-10-09 | Apply a few recent chages in Quat and Basis to their respective Mono ↵ | Ferenc Arn | |
counterparts. (#11899) | |||
2017-10-09 | Fix bug in navmesh generation when using meshes with multiple | Saracen | |
surfaces. | |||
2017-10-09 | Merge pull request #11950 from sheepandshepherd/gdnative_property_index | Thomas Herzog | |
Include property index in GDNative class API | |||
2017-10-09 | Added VisualScript* descriptions | Chris Bradfield | |
[ci skip] | |||
2017-10-09 | [DOCS] Review and improve 17 classes (#11890) | Jérôme GULLY | |
2017-10-09 | Merge pull request #11887 from Hinsbart/vs_crash_get_node | Rémi Verschelde | |
VisualScript: Fix crash with get_node(). [ci skip] | |||
2017-10-09 | Merge pull request #11884 from Noshyaar/pr-fd2 | Rémi Verschelde | |
FileDialog: fix select index out of range [ci skip] | |||
2017-10-09 | Merge pull request #11878 from endragor/gradle-repository-urls | Rémi Verschelde | |
Use additional repositories for gradle build dependencies too [ci skip] | |||
2017-10-09 | Merge pull request #11846 from gabrielformiga/fix-ik-bone-drag | Rémi Verschelde | |
Fix IK Bone Drag on Viewport |