summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-10-11Merge 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-11Merge pull request #11966 from BastiaanOlij/stereo_skyRémi Verschelde
Fix issues when rendering panoramic sky in stereoscopic
2017-10-11Merge pull request #11951 from hungrymonkey/fix_issue11873Rémi Verschelde
fix issue 11873. AudioStreamSample get_data() seems to be misaligned.
2017-10-11Merge pull request #11875 from endragor/fix-export-loopRémi Verschelde
Fix command-line export looping infinitely
2017-10-11Merge pull request #11818 from tagcup/anisotropic_ggxRémi Verschelde
Fix anisotropic GGX D function, and introduce and use anistropic GGX …
2017-10-11Merge pull request #12018 from ↵Gilles Roudiere
hi-ogawa/fix-animated-sprite-frame-property-slider Fix AnimatedSprite frame property slider in editor
2017-10-11Merge pull request #11954 from neikeq/dIgnacio Etcheverry
Added 'exposed' field to ClassInfo for registered classes
2017-10-11Merge pull request #11958 from hi-ogawa/fix-shadow-map-front-faceGilles Roudiere
Fix front face definition
2017-10-11Fix AnimatedSprite frame property slider in editorHiroshi Ogawa
2017-10-10Merge pull request #11999 from Grosskopf/AudioServerAndStream-docsChris Bradfield
[DOCS] Updated AudioStream docs and added AudioServer docs
2017-10-11updated AudioStream docs and added AudioServer docsGrosskopf
2017-10-10Merge pull request #11945 from saltares/docs-osChris Bradfield
[DOCS] - Completes the docs for the OS class
2017-10-10[DOCS] - Completes the docs for the OS classDavid Saltares
2017-10-10Merge pull request #11942 from saltares/docs-engineChris Bradfield
[DOCS] - Complete Engine docs
2017-10-10[DOCS] - Complete Engine docsDavid Saltares
2017-10-10Merge pull request #11959 from hi-ogawa/fix-shadow-atlas-invalidationAndreas Haas
Track LightInstance::shadow_atlases so that it will be freed properly
2017-10-10Merge pull request #11971 from volzhs/freetype-2.8.1Andreas Haas
Update freetype to 2.8.1
2017-10-10Merge pull request #11919 from Toizi/array_sort_refAndreas Haas
Array::sort/invert now return reference to Array
2017-10-10Merge pull request #11775 from endragor/android-keyboard-inputAndreas Haas
Improve input handling on Android
2017-10-10Merge pull request #12000 from neikeq/fIgnacio Etcheverry
Fix wrong array index
2017-10-10Fix wrong array indexIgnacio Etcheverry
2017-10-10Skip unhandled input events on asset library tab.DmitryKrutskikh
2017-10-10Merge pull request #11987 from endragor/define-va-copyIgnacio Etcheverry
Define va_copy with --std=c++03 (fixes #11979)
2017-10-10Fix issues when rendering panoramic sky in stereoscopicBastiaan Olij
2017-10-10Define 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-09Mono: Make use of ClassInfo's exposed APIIgnacio Etcheverry
- BindingsGenerator only generates exposed classes. - Fix creation of managed instances of non-exposed classes.
2017-10-09Adds 'exposed' field to ClassInfoIgnacio 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-09Merge pull request #11921 from mhilbrunner/docs-tree-treeitemChris Bradfield
[DOCS] Document Tree & TreeItem
2017-10-09[DOCS] Document Treemhilbrunner
2017-10-09Fix data alignment issues in get_data() in AudioStreamSamplehungrymonkey
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-09Merge pull request #11019 from poke1024/refactor-polygon-v2Gilles Roudiere
Refactoring of polygon editors to a common code base (v2)
2017-10-10Update freetype to 2.8.1volzhs
2017-10-09Fix 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-09Array::sort, sort_custom and invert now return reference to Array to allow ↵Marius Guggenmos
chaining of operations
2017-10-09Merge pull request #11965 from SaracenOne/navgen_fixRémi Verschelde
Navmesh Generation Fix [ci skip]
2017-10-09Merge pull request #11941 from Paulb23/members_selected_scroll_issue_11648Rémi Verschelde
Consistant scroll when using members overview, issue 11648
2017-10-09Merge pull request #11926 from RameshRavone/patch-11Rémi Verschelde
flatDir support [Android] (Master) [ci skip]
2017-10-09Merge pull request #11922 from Toizi/editor_double_escapeRémi Verschelde
Fixed double escape for quotes in generated about files [ci skip]
2017-10-09Merge pull request #11915 from marcelofg55/desc_animation_errorsRémi Verschelde
Added a name/path description when there is an error in the Animation Track
2017-10-09Merge pull request #11908 from mhilbrunner/docstatus-flagerrorRémi Verschelde
doc_status.py: Error message for unknown CLI flag, shebang change [ci skip]
2017-10-09Apply a few recent chages in Quat and Basis to their respective Mono ↵Ferenc Arn
counterparts. (#11899)
2017-10-09Fix bug in navmesh generation when using meshes with multipleSaracen
surfaces.
2017-10-09Merge pull request #11950 from sheepandshepherd/gdnative_property_indexThomas Herzog
Include property index in GDNative class API
2017-10-09Added VisualScript* descriptionsChris Bradfield
[ci skip]
2017-10-09[DOCS] Review and improve 17 classes (#11890)Jérôme GULLY
2017-10-09Merge pull request #11887 from Hinsbart/vs_crash_get_nodeRémi Verschelde
VisualScript: Fix crash with get_node(). [ci skip]
2017-10-09Merge pull request #11884 from Noshyaar/pr-fd2Rémi Verschelde
FileDialog: fix select index out of range [ci skip]
2017-10-09Merge pull request #11878 from endragor/gradle-repository-urlsRémi Verschelde
Use additional repositories for gradle build dependencies too [ci skip]
2017-10-09Merge pull request #11846 from gabrielformiga/fix-ik-bone-dragRémi Verschelde
Fix IK Bone Drag on Viewport