Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-10-13 | Remove junk output | Ruslan Mustakov | |
Remove several prints that were added for engine debugging, but are of no use to the end user, and only pollute the editor and game logs. | |||
2017-10-12 | Merge pull request #12032 from Grosskopf/seperation-bugfix | Rémi Verschelde | |
Turned around minimum size scaling for seperator. Fixes #12020 | |||
2017-10-12 | turned arround minimum Size for Seperator in reaction to issue #12020 | Grosskopf | |
2017-10-11 | Merge pull request #12026 from hickop/default-theme-sliders | Rémi Verschelde | |
Added grabber_area to default_theme sliders. Fixes #11261 | |||
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 | Added grabber_area to default_theme sliders. Fixes #11261 | hickop | |
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 | Fix AnimatedSprite frame property slider in editor | Hiroshi Ogawa | |
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 | 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 #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 #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 #11884 from Noshyaar/pr-fd2 | Rémi Verschelde | |
FileDialog: fix select index out of range [ci skip] | |||
2017-10-08 | Consistant scroll when using members overview, issue 11648 | Paulb23 | |
2017-10-07 | Added a name/path description when there is an error in the Animation Track | Marcelo Fernandez | |
2017-10-06 | FileDialog: fix select index out of range | Poommetee Ketson | |
2017-10-06 | Fix LINK/UNLINK console spam with navmeshes | Bartłomiej T. Listwon | |
Removed unnecessary debug messages. Fixes #10804 | |||
2017-10-06 | Merge pull request #11859 from marcelofg55/invalid_customtheme_crashfix | Andreas Haas | |
Fix crash when a custom theme can't be loaded | |||
2017-10-06 | Merge pull request #11854 from endragor/fix-few-classdb-defs | Andreas Haas | |
Add NIL_IS_VARIANT usage to few definitions | |||
2017-10-06 | Made a few tweaks to the interface | BastiaanOlij | |
2017-10-05 | Fix crash when a custom theme can't be loaded | Marcelo Fernandez | |
2017-10-05 | Add NIL_IS_VARIANT usage to few definitions | Ruslan Mustakov | |
The missing usage flag led to GDNative API descriptions containting arguments with "void" type. | |||
2017-10-05 | Merge pull request #11840 from djrm/pr_fix_drive_selection | Gilles Roudiere | |
Match file dialog drive with the current folder. | |||
2017-10-04 | Match file dialog drive with the current folder. | Daniel J. Ramirez | |
2017-10-04 | Merge pull request #11816 from terahxluna/video_player_set_stream_position | Hein-Pieter van Braam | |
Add function set_stream_position to VideoPlayer. Closes #8727 | |||
2017-10-04 | Restored normal bias as default bias in GIProbe | Juan Linietsky | |
2017-10-04 | Add function set_stream_position to VideoPlayer | Terah | |
Also add docucmentation for set_stream_position in VideoPlayer | |||
2017-10-03 | Merge pull request #11770 from Noshyaar/pr-๓ | Andreas Haas | |
CurveEditor: fix can't edit right tangent | |||
2017-10-02 | Merge pull request #11659 from AndreaCatania/prephysics | Andreas Haas | |
Renamed fixed_process to physics_process | |||
2017-10-03 | CurveEditor: fix can't edit right tangent | Poommetee Ketson | |
2017-10-02 | Merge pull request #11754 from magyar123/master | Andreas Haas | |
Fixed center align in LineEdit | |||
2017-10-02 | Merge pull request #11646 from djrm/pr_visual_improvements | Poommetee Ketson | |
Several visual improvements. | |||
2017-10-02 | Merge pull request #11650 from kitsune/fix-range-unshare-crash | Poommetee Ketson | |
Fix crash when unsharing a range that is not shared | |||
2017-10-02 | Merge pull request #11713 from dracc/master | Poommetee Ketson | |
Added VehicleWheel::get_skidinfo() | |||
2017-10-01 | Switched Burley/Lambert, and restored diffuse term to 0-1 range for ↵ | Juan Linietsky | |
compatibility. | |||
2017-10-01 | Fixed center align in LineEdit | balint magyar | |
2017-10-01 | Fix GraphEdit mouse scroll axis. | jagt | |
maps BUTTON_WHEEL_UP/DOWN to vscroll of GraphEdit. maps KEY_SHIFT + BUTTON_WHEER_UP/DOWN to hscroll of GraphEdit. | |||
2017-09-30 | Renamed fixed_process to physics_process | AndreaCatania | |
2017-09-30 | Merge pull request #11684 from toger5/tab_container_menu_button_center | Gilles Roudiere | |
Vertical alignement (TabContainer menu button) | |||
2017-09-30 | Merge pull request #11701 from toger5/coustom_script_bg_fix | Gilles Roudiere | |
fixed custom background weird offset for code editor | |||
2017-09-30 | Added VehicleWheel::get_skidinfo(). | Lucas Eriksson | |
2017-09-29 | Ability to set a custom FOV makes it possible to use sky on orthogonal view. ↵ | Juan Linietsky | |
Closes #9186 | |||
2017-09-29 | fixed coustom bg weired offset for code editor | toger5 | |
2017-09-29 | Vertical alignement (TabContainer menu button) | toger5 | |
2017-09-29 | Fixed typo: 'texure' to 'texture' | Indah Sylvia | |
2017-09-28 | Several visual improvements. | Daniel J. Ramirez | |
Added proper label sizing Improved text editor status bar Fixed some issues with ItemList and also some style fixes Added background to color picker samples (the mrcdk fix) Fixed slider ticks. Added VS breakpoint and error styleboxes. | |||
2017-09-28 | Fix crash when unsharing a range that is not shared | Dylan Enloe | |
Added a guard to Range::_unref_shared to prevent it from doing anything in the event that shared is null. Fixes Issue: #11521 | |||
2017-09-27 | Merge pull request #11617 from groud/fix_bad_display | Rémi Verschelde | |
Fixes bad display | |||
2017-09-27 | Merge pull request #11618 from tagcup/button_toggle | Rémi Verschelde | |
Fix toggle mode of BaseButton. [ci skip] |