summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-10-19Merge pull request #67208 from Mickeon/doc-peeves-the-peeveningMax Hilbrunner
Tweak `@GlobalScope` functions documentation overall
2022-10-19Merge pull request #67249 from wuyingnan/fix_quaternion_typoMax Hilbrunner
Fix a comment typo in node_3d.h
2022-10-19Merge pull request #67576 from m4gr3d/delete_old_godot_lib_mainFredia Huya-Kouadio
Delete Android godot-lib with the old naming scheme
2022-10-19Merge pull request #67527 from BastiaanOlij/fix_tracker_namesMax Hilbrunner
Fix two typos in tracker names and a bug in OpenXR haptic feedback
2022-10-19Merge pull request #67583 from paddy-exe/fix-distane-fade-nodeYuri Rubinsky
2022-10-18Delete Android godot-lib with the old naming schemeFredia Huya-Kouadio
Update the `clean` task configuration: running `gradlew clean` will now properly delete the generated build artifacts
2022-10-18Fix typo in VisualShader DistanceFade nodePatrick
2022-10-19Merge pull request #67529 from BastiaanOlij/filter_out_htc_pathsBastiaan Olij
Filter out HTC OpenXR paths based on extension
2022-10-18Tweak `@GlobalScope` functions documentation overallMicky
Generally: - Made use of [param] more frequently; - Link to other classes' documentation more often; - Improve and add more examples; - Ensure that multiple comments of an codeblock example are spaced out equally for better readability; - Made the writing style closer to how the rest of the documentation is formatted; - Ensure these are called "functions", not "methods". - Fixed a few typos. - Touched up a few cases of zero being written as "zero" or "0" where "0" or "0.0" would be more appropriate. - Removed mentions of "(real)". In 3.x, this was associated with floats, because TYPE_FLOAT was called TYPE_REAL. More specifically: - Every type-safe version of a function (such as `ceili` has a consistent final note ("A type-safe version of [method ceil], returning a [int]"). - Added more details to `randomize`, `seed`. - Corrected `floori()`'s description. It's not the same as `int()`. This was not correct behavior and has been fixed.
2022-10-19Filter out HTC OpenXR paths based on extensionBastiaan Olij
2022-10-18Merge pull request #67561 from BastiaanOlij/fix_openxr_missing_itosBastiaan Olij
Fix missing itos for OpenXR logging
2022-10-18Fix missing itos for OpenXR loggingBastiaan Olij
2022-10-17Merge pull request #67532 from Faless/ws/4.x_fix_pollRémi Verschelde
[WebSocket] Fix client failing to connect to direct IP.
2022-10-17Merge pull request #67539 from bruvzg/check_ctxRémi Verschelde
Check if Vulkan context for the window exists before resizing it to avoid unnecessary error messages.
2022-10-17Merge pull request #67179 from BastiaanOlij/openxr_add_refresh_rate_extensionRémi Verschelde
Adding support for the OpenXR Display Refresh Rate extension
2022-10-17Merge pull request #67521 from nikitalita/speed_up_texture_posRémi Verschelde
Speed up `find_texture_pos_for_glyph()`
2022-10-17Merge pull request #67463 from aaronfranke/num-real-negativeRémi Verschelde
Fix big negative numbers printing incorrect decimals in `num_real`
2022-10-17Merge pull request #67514 from timothyqiu/deferRémi Verschelde
Fix memory leak when `_ensure_cache_for_size()` fails
2022-10-17Merge pull request #67469 from anvilfolk/resource-load-clarificationRémi Verschelde
Clarified reason why a resource cannot be preload()'ed
2022-10-17Merge pull request #67491 from Paulb23/fix-undo-redo-viewport-adjustRémi Verschelde
Fix undo redo not adjusting TextEdit viewport to caret
2022-10-17Merge pull request #67485 from kdada/kdada/masterRémi Verschelde
Fix peer visiblity in SceneReplicationInterface._update_sync_visibility
2022-10-17Merge pull request #64277 from KoBeWi/script_editor🧹🧹Rémi Verschelde
Reorganize script editor menu
2022-10-17Merge pull request #67411 from rburing/editor_cast_rays_in_physics_processRémi Verschelde
Node3D editor: cast rays in `NOTIFICATION_PHYSICS_PROCESS`
2022-10-17Merge pull request #67458 from ↵Rémi Verschelde
Sauermann/fix-expose-viewport-get-screen-transform Expose Viewport::get_screen_transform to GDScript
2022-10-17Merge pull request #67322 from ztc0611/add-ios-ui-optionsRémi Verschelde
Add iOS UI Options
2022-10-17Merge pull request #67428 from aaronfranke/gltf-additional-dataRémi Verschelde
Add a way to store additional data in GLTFState and GLTFNode
2022-10-17Merge pull request #67441 from Zylann/fix_tileset_editor_mutexRémi Verschelde
Fix case where mutex is never unlocked
2022-10-17Merge pull request #67118 from Mickeon/⬛Rémi Verschelde
Fix Typed Array of Objects not accepting `null`.
2022-10-17Merge pull request #67259 from lucasnlm/optimiza-android-exportFredia Huya-Kouadio
Optimize Android export process
2022-10-17Check if Vulkan context for the window exists before resizing it to avoid ↵bruvzg
unnecessary error messages.
2022-10-17[WebSocket] Fix client failing to connect to direct IP.Fabio Alessandrelli
The bug was caused by not checking the TCP CONNECTING state appropriately during the client handshake, and not checking the TCP CONNECTED state during connection (which is unlikely, but might still happen).
2022-10-17Fix two typos in tracker names and a bug in OpenXR haptic feedbackBastiaan Olij
2022-10-16Speed up `find_texture_pos_for_glyph()`nikitalita
2022-10-17Merge pull request #67488 from Iniquitatis/patch-1Yuri Rubinsky
2022-10-17Fix memory leak when `_ensure_cache_for_size()` failsHaoyu Qiu
2022-10-17Merge pull request #67440 from raulsntos/dotnet/bindings-conflictsIgnacio Roldán Etcheverry
Guard against more potential conflicts in C# bindings generator
2022-10-16Clarified reason why a resource cannot be loaded.João Martins
2022-10-16Fix undo redo not adjusting TextEdit viewport to caretPaulb23
2022-10-16Fix MultiplayerSynchronizer peer visibilityWei Guo
2022-10-16Merge pull request #67477 from Chaosus/plane_constructorYuri Rubinsky
2022-10-16Fix missing parenthesis in the documentationDominus Iniquitatis
2022-10-16Add a `Plane(Vector3, Vector3)` constructor for C#Yuri Rubinsky
2022-10-16Merge pull request #66979 from rburing/gdextension_abstract_classRémi Verschelde
GDExtension: add support for virtual and abstract classes
2022-10-16GDExtension: add support for abstract and virtual classesRicardo Buring
2022-10-15Fix big negative numbers printing incorrect decimals in num_realAaron Franke
2022-10-15Expose Viewport::get_screen_transform to GDScriptMarkus Sauermann
2022-10-15Add a way to store additional data in GLTFState and GLTFNodeAaron Franke
2022-10-15Fix case where mutex is never unlockedMarc Gilleron
2022-10-15Merge pull request #63332 from KoBeWi/static_images_aka_photosRémi Verschelde
Make some Image methods static
2022-10-15Merge pull request #67403 from bitbrain/rename-to-positionRémi Verschelde
Rename `pos` to `index` on Node