summaryrefslogtreecommitdiff
path: root/doc/classes
AgeCommit message (Collapse)Author
2023-01-25Merge pull request #71982 from Sauermann/fix-heightmap-docuRémi Verschelde
Fix documentation about depth and width of Height map
2023-01-25Merge pull request #71330 from Geometror/richtextlabel-fit-contentRémi Verschelde
[RichTextLabel] Match minimum size calculation of Label (proper content fitting)
2023-01-24Improve clarity of Tree's activated/double-clicked signalsAaron Franke
Co-authored-by: Yuri Sizov <yuris@humnom.net>
2023-01-24Merge pull request #65137 from dalexeev/editor-namingYuri Sizov
Rearrange `editor/naming/*` project settings
2023-01-24Fix documentation about depth and width of Height mapMarkus Sauermann
2023-01-24Merge pull request #71757 from aXu-AP/animation_node_transition-improvementsYuri Sizov
Add missing property and method descriptions to AnimationNodeTransition class reference
2023-01-24Add missing property and method descriptions to AnimationNodeTransition classaXu-AP
Co-Authored-By: Yuri Sizov <11782833+YuriSizov@users.noreply.github.com> Co-Authored-By: Rémi Verschelde <rverschelde@gmail.com>
2023-01-24Merge pull request #64930 from raulsntos/dotnet/docsRémi Verschelde
Update C# signal documentation and remove bind array
2023-01-24Merge pull request #71957 from aXu-AP/remotetransform2d-docRémi Verschelde
Fix incorrect claim in RemoteTransform2D class reference
2023-01-24Fix incorrect claim in RemoteTransform2D class referenceaXu-AP
2023-01-24Merge pull request #71941 from aXu-AP/gpuparticles2d-docRémi Verschelde
Add documentation for GpuParticles2D collisions
2023-01-24Merge pull request #71938 from aXu-AP/curve2d-docRémi Verschelde
Add Curve2D/tessellate_even_length description class-reference
2023-01-23Add documentation for GpuParticles2D collisionsaXu-AP
2023-01-23Merge pull request #70377 from dsnopek/server-export-mk2Rémi Verschelde
Add "dedicated server" export mode which can strip unneeded visual resources
2023-01-23Add Curve2D/tessellate_even_length description class-referenceaXu-AP
Copied from Curve3D's corresponding method.
2023-01-23Add "dedicated server" export mode which can strip unneeded visual resourcesDavid Snopek
2023-01-23Fix bind " convergence_dist" containing spaceJan Haller
2023-01-23Document changing V-Sync at runtime in the class referenceHugo Locurcio
2023-01-23Merge pull request #71830 from BastiaanOlij/xr_naming_consistancyRémi Verschelde
Rename getters and signals on XR nodes to be consistant with input types
2023-01-23Update C# signal documentation and remove bind arrayRaul Santos
- Updates C# signal documentation and code examples to the new API in 4.0 - Replace all `nameof` usages with the exposed `StringName`
2023-01-23Merge pull request #70052 from bruvzg/key_unicode_actionsRémi Verschelde
Cleanup and unify keyboard input.
2023-01-23Merge pull request #57606 from SaracenOne/update_on_reimportRémi Verschelde
Update instances of scenes which have been reimported.
2023-01-23Merge pull request #63251 from ↵Rémi Verschelde
SaracenOne/disable_data_generation_on_foreign_resources Disable navmesh, lightmap, and VoxelGI generation on foreign data
2023-01-23Cleanup and unify keyboard input.bruvzg
- Unify keycode values (secondary label printed on a key), remove unused hardcoded Latin-1 codes. - Unify IME behaviour, add inline composition string display on Windows and X11. - Add key_label (localized label printed on a key) value to the key events, and allow mapping actions to the unshifted Unicode events. - Add support for physical keyboard (Bluetooth or Sidecar) handling on iOS. - Add support for media key handling on macOS. Co-authored-by: Raul Santos <raulsntos@gmail.com>
2023-01-23Convert en_GB spelling to en_US with codespellRémi Verschelde
2023-01-23Merge pull request #67847 from rburing/warn_non-uniformistsRémi Verschelde
Warn against using non-uniform scale for 3D physics (in the editor and class reference)
2023-01-23Merge pull request #71676 from vnen/gdscript-unicode-identifiersRémi Verschelde
Add support for Unicode identifiers in GDScript and Expression
2023-01-23Rename getters and signals on XR nodes to be consistant with input typesBastiaan Olij
2023-01-22Merge pull request #71686 from YuriSizov/stylebox-min-size-but-betterRémi Verschelde
Clean-up, harmonize, and improve StyleBox API
2023-01-22Merge pull request #71855 from reduz/audio-stream-polyphonicRémi Verschelde
Add AudioStreamPolyphonic to simplify sound playback from code
2023-01-22Add AudioStreamPolyphonic to make it easier to play polyphonic sound from codeJuan Linietsky
* This new audio stream allows to play multiple sounds and control them over time from code. * It greatly simplifies tasks such as generative music (music generated from code) or audio. This new type of stream was added with the goal of fixing audio blending in AnimationPlayer and AnimationTree, but can be used by others for their regular audio needs. Does not fix anything currently, but should help implement #69758 properly. Some demo code of how to use this: ```GDScript var player = $SomeNode as AudioStreamPlayer player.stream = AudioStreamPolyphonic.new() var playback = player.get_stream_playback() as AudioStreamPlaybackPolyphonic var id = playback.play_stream(preload("res://Clip1.ogg")) await get_tree().create_timer(1).timeout playback.set_stream_volume(id,-12) # Set volume to half after one second await get_tree().create_timer(2).timeout var id2 = playback.play_stream(preload("res://Clip2.ogg")) # 2 seconds later, start another clip await get_tree().create_timer(1).timeout playback.stop_stream(id) # 1 second later, kill the first clip playback.set_stream_pitch_scale(id2,1.5) # Make the second clip go 50% faster ```
2023-01-22Merge pull request #71663 from bruvzg/init_pos_xRémi Verschelde
Reorganize main and sub-window initial position properties.
2023-01-22Merge pull request #71839 from TokageItLab/expose-fading-from-statemachineRémi Verschelde
Expose `fading_from` from StateMachine
2023-01-22Merge pull request #71770 from KoBeWi/better_editing_or_somethingRémi Verschelde
Rework EditorPlugin editing logic
2023-01-22Expose fading_from_node from StateMachineSilc Renew
2023-01-22Rework EditorPlugin editing logickobewi
2023-01-21Merge pull request #68489 from KoBeWi/open_in_extraterrestrial_programRémi Verschelde
Add "Open in External Program" option
2023-01-21Add "Open in External Program" optionkobewi
2023-01-21Add support for Unicode identifiers in GDScriptGeorge Marques
This is using an adapted version of UAX#31 to not rely on the ICU database (which isn't available in builds without TextServerAdvanced). It allows most characters used in diverse scripts but not everything.
2023-01-21Merge pull request #65726 from KoBeWi/celllessRémi Verschelde
Don't print error in `get_cell_tile_data()`
2023-01-21Merge pull request #71687 from reduz/support-script-class-name-in-efsRémi Verschelde
Support script global resource name in EditorFileSystem
2023-01-21Merge pull request #71797 from reduz/cleanup-shader-parameter-remapRémi Verschelde
Clean up shader parameter remap
2023-01-21Support script global resource name in EditorFileSystemJuan Linietsky
* Works for binary and text files. * Makes EditorQuickOpen work with custom resources again. * Information is cached and easily accessible. Properly fixes #66179. Supersedes #66215 and supersedes #62417 **WARNING**: This required breaking backwards binary compatibility (.res and .scn files). Files saved after this PR is merged will no longer open in any earlier versions of Godot.
2023-01-21Clean up shader parameter remapJuan Linietsky
This PR is a follow up to #64092, which fixed important issues but it was implemented in an overly complex and inefficient way (because it forced the default code path to always go through string operations). This cleans up all the shader parameter code. This fixes #54336. Also fixes #56219 because, as the new code never queries the RenderingServer on load, potential deadlocks are avoided. **NOTE**: materials saved between #62972 and #64092 will no longer work and will need to be resaved in an earlier version.
2023-01-21Merge pull request #71390 from reduz/fix-json-as-resourceRémi Verschelde
Fixes to JSON as resource
2023-01-20Merge pull request #71709 from clayjohn/decals-lights-sortingRémi Verschelde
Sort decals and lights based on camera origin
2023-01-20Sort decals and lights based on camera originclayjohn
Also implement sort_offset for decals Co-authored-by: Hugo Locurcio <hugo.locurcio@hugo.pro>
2023-01-20Merge pull request #71718 from Calinou/doc-custom-mouse-cursor-max-size-webRémi Verschelde
Document image size restrictions for custom mouse cursors in HTML5
2023-01-20Merge pull request #71717 from Chaosus/vs_refactor_texture_get_codeYuri Rubinsky
2023-01-20Some refactoring for visual shader texture functionsYuri Rubinsky