| Commit message (Collapse) | Author | Files | Lines | ||
|---|---|---|---|---|---|
| 2017-10-13 | EditorHelp: use '<' to show inheritance | Poommetee Ketson | 1 | -1/+1 | |
| ...making it consistent with official docs | |||||
| 2017-10-13 | Move GDNative docs into gdnative folder | BastiaanOlij | 5 | -2/+6 | |
| 2017-10-13 | Add .xml to .gitattributes | Bastiaan Olij | 1 | -0/+1 | |
| 2017-10-13 | Remove junk output | Ruslan Mustakov | 4 | -11/+2 | |
| 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-13 | Drop unusued LEGACYGL_ENABLED check | Rémi Verschelde | 10 | -12/+12 | |
| [ci skip] | |||||
| 2017-10-12 | Added and improved some icons, plus some other minor visual fixes. | Daniel J. Ramirez | 22 | -41/+46 | |
| 2017-10-12 | [DOCS] BitmapFont | Dio | 1 | -8/+23 | |
| 2017-10-12 | Prevent a possible crash at collision_object_2d_sw.h | Marcelo Fernandez | 1 | -9/+36 | |
| 2017-10-12 | [DOCS] DynamicFontData | Dio | 1 | -0/+5 | |
| 2017-10-12 | [DOCS] DynamicFont | Dio | 1 | -0/+28 | |
| 2017-10-12 | updated libpng to version 1.6.33 (September 28, 2017) | Indah Sylvia | 11 | -77/+87 | |
| 2017-10-12 | Fix viewport vflip | Hiroshi Ogawa | 1 | -6/+1 | |
| 2017-10-12 | turned arround minimum Size for Seperator in reaction to issue #12020 | Grosskopf | 1 | -1/+5 | |
| 2017-10-11 | doc: Sync classref with current source | Rémi Verschelde | 40 | -113/+292 | |
| Ensure that s/fixed_process/physics_process/ is handled properly. [ci skip] | |||||
| 2017-10-11 | Fix argument names in method bindings. | Andreas Haas | 2 | -4/+4 | |
| Adds a couple of missing argument names. | |||||
| 2017-10-11 | Input: expose joy_connection_changed() | Andreas Haas | 1 | -0/+1 | |
| 2017-10-11 | Bind VisualServer.sync() method to GDScript | Julian Murgia | 1 | -0/+1 | |
| This function is needed in Escoria's resource queue (https://github.com/godotengine/escoria/blob/master/device/globals/resource_queue.gd#L94) | |||||
| 2017-10-11 | Added grabber_area to default_theme sliders. Fixes #11261 | hickop | 1 | -0/+2 | |
| 2017-10-11 | Fix AnimatedSprite frame property slider in editor | Hiroshi Ogawa | 1 | -3/+1 | |
| 2017-10-11 | fix script editor clear recent scripts crash | jagt | 1 | -1/+4 | |
| 2017-10-11 | Improve JavaScript calls | Leon Krause | 1 | -29/+53 | |
| - Allow returning ArrayBuffer and views as PoolByteArray - Return real_t for integral numbers - Read all color channels as 0.0 - 1.0 floating point numbers | |||||
| 2017-10-11 | Use execvp instead of execv to allow OS.execute() to search through PATH. | Elia Argentieri | 1 | -1/+1 | |
| Fix #12003. | |||||
| 2017-10-11 | updated AudioStream docs and added AudioServer docs | Grosskopf | 6 | -6/+55 | |
| 2017-10-10 | [DOCS] - Completes the docs for the OS class | David Saltares | 1 | -28/+56 | |
| 2017-10-10 | [DOCS] - Complete Engine docs | David Saltares | 1 | -5/+14 | |
| 2017-10-10 | Fix wrong array index | Ignacio Etcheverry | 1 | -6/+6 | |
| 2017-10-10 | Skip unhandled input events on asset library tab. | DmitryKrutskikh | 1 | -0/+3 | |
| 2017-10-10 | Made directory scan optional | BastiaanOlij | 3 | -46/+15 | |
| 2017-10-10 | Fix issues when rendering panoramic sky in stereoscopic | Bastiaan Olij | 2 | -27/+64 | |
| 2017-10-10 | Define va_copy with --std=c++03 (fixes #11979) | Ruslan Mustakov | 1 | -0/+11 | |
| 2017-10-10 | Fix getting struct elements from MonoArray (#11978) | Ignacio Etcheverry | 2 | -4/+5 | |
| * Fix getting struct elements from MonoArray * Revert undesired change | |||||
| 2017-10-09 | Mono: Make use of ClassInfo's exposed API | Ignacio Etcheverry | 2 | -15/+13 | |
| - BindingsGenerator only generates exposed classes. - Fix creation of managed instances of non-exposed classes. | |||||
| 2017-10-09 | Adds 'exposed' field to ClassInfo | Ignacio Etcheverry | 7 | -0/+53 | |
| 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 | [DOCS] Document Tree | mhilbrunner | 2 | -31/+100 | |
| 2017-10-09 | Fix data alignment issues in get_data() in AudioStreamSample | hungrymonkey | 1 | -1/+2 | |
| 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-10 | Update freetype to 2.8.1 | volzhs | 79 | -1118/+2091 | |
| 2017-10-09 | Fix anisotropic GGX D function, and introduce and use anistropic GGX G function. | Ferenc Arn | 1 | -18/+59 | |
| 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 | 3 | -10/+19 | |
| chaining of operations | |||||
| 2017-10-09 | Apply a few recent chages in Quat and Basis to their respective Mono ↵ | Ferenc Arn | 3 | -19/+70 | |
| counterparts. (#11899) | |||||
| 2017-10-09 | Fix bug in navmesh generation when using meshes with multiple | Saracen | 1 | -1/+3 | |
| surfaces. | |||||
| 2017-10-09 | Added VisualScript* descriptions | Chris Bradfield | 4 | -5/+26 | |
| [ci skip] | |||||
| 2017-10-09 | [DOCS] Review and improve 17 classes (#11890) | Jérôme GULLY | 17 | -89/+120 | |
| 2017-10-09 | Added documenation for Line2D | Unknown | 1 | -2/+24 | |
| [ci skip] | |||||
| 2017-10-09 | Fix trailing whitespaces in project settings header comment | Emmanuel Leblond | 1 | -2/+2 | |
| 2017-10-08 | A minor documentation typo fix. | authenticate | 1 | -1/+1 | |
| 2017-10-09 | Track LightInstance::shadow_atlases so that it will be freed properly | Hiroshi Ogawa | 1 | -0/+2 | |
| 2017-10-09 | Fix front face definition | Hiroshi Ogawa | 1 | -1/+2 | |
| 2017-10-09 | [GDnative] fix crash at cleanup time when singleton_gdnatives is not empty | Emmanuel Leblond | 1 | -0/+1 | |
| 2017-10-09 | Fixed IntPtr unboxing (#11949) | Ignacio Etcheverry | 5 | -53/+31 | |
| - Fix boolean never reset to false - Fix IntPtr unboxing and cleanup | |||||
| 2017-10-08 | Include property index in GDNative class API | sheepandshepherd | 1 | -1/+5 | |
| Needed by properties that share set/get functions. Fixes #10329. | |||||
