summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-06-25Add ability to export Node pointers as NodePathsreduz
This PR implements: * A new hint: PROPERTY_HINT_NODE_TYPE for variant type OBJECT, which can take specific node types as hint string. * The editor will show it as a node path, but will set it as a pointer to a node from the current scene if you select a path. * When scene is saved, the node path is saved, then restored as a pointer. NOTE: This is a proof of concept and this approach will most likely not work. The reason if that, if the node referenced is deleted, then when trying to edit this the node will become invalid. Potential workarounds: Since this uses the Variant API, it should obtain the pointer from the Variant object ID. Yet, this would either only really work in GDScript or it would need to be implemented with workarounds in every language. Alternative ways to make this work: Nodes could export an additional property with a node path (like for which_node, it could be which_node_path). Another alternative: Path editing could happen as a hidden metadata (ignoring the pointer).
2022-06-23Merge pull request #62323 from Maran23/window-title-changed-data-fixRémi Verschelde
2022-06-23Merge pull request #62297 from gumaciel/update_android_targetSdkVersion_30_to_31Rémi Verschelde
2022-06-23Merge pull request #61628 from Vitika9/61617Rémi Verschelde
2022-06-23Merge pull request #61931 from KoBeWi/how_to_windowRémi Verschelde
Document most of the Window's members
2022-06-23Update android:targetSdkVersion from 30 to 31Gustavo Maciel
Starting in August 2022, new apps will need to target API level 31 (Android 12) or higher and adjust for behavioral changes. Read more here: https://developer.android.com/google/play/requirements/target-sdk
2022-06-23Merge pull request #62326 from KoBeWi/userbindRémi Verschelde
2022-06-23Merge pull request #62317 from Black-Cat/release-return-fixRémi Verschelde
2022-06-23Merge pull request #61966 from Rindbee/fix-internal-nodes-ownedRémi Verschelde
Fix setting owner on internal nodes when save branch as scene
2022-06-23Merge pull request #62335 from reduz/fix-editor-only-visibilityRémi Verschelde
2022-06-23Remove userdata from Thread.start()kobewi
2022-06-23Merge pull request #62268 from V-Sekai/lightmap-errorsJFonS
2022-06-23Merge pull request #61221 from BastiaanOlij/split_gi_effectsRémi Verschelde
2022-06-23Mend crash importing a scene with static lightmaps.K. S. Ernest (iFire) Lee
2022-06-23Merge pull request #61885 from TokageItLab/fix-method-seekRémi Verschelde
Improved way of getting MethodTrack keys
2022-06-23Merge pull request #61826 from guilhermefelipecgs/fix_leakRémi Verschelde
Fix ObjectDB instances leaked on state machine when editor closes
2022-06-23Merge pull request #62338 from BastiaanOlij/openxr_1_0_23Rémi Verschelde
Update OpenXR to 1.0.23
2022-06-23Merge pull request #62337 from reduz/respect-disabled-animation-tracksRémi Verschelde
Respect disabled animation tracks
2022-06-23Merge pull request #62336 from reduz/fix-reset-animationRémi Verschelde
Fix animation reset on save
2022-06-23Update OpenXR to 1.0.23Bastiaan Olij
2022-06-23Merge pull request #62321 from reduz/surface-indices-on-trianglemeshRémi Verschelde
Add surface indices to TriangleMesh
2022-06-23Respect disabled animation tracksreduz
Fixes #25537, supersedes #60509
2022-06-23Fix editor-only visibility for lightsreduz
* Update visibility again for editor-only lights if owner changes. Fixes #26399, supersedes #52327
2022-06-23Merge pull request #62334 from timothyqiu/title-ttrRémi Verschelde
Add missing TTR in dialog title
2022-06-23Merge pull request #62306 from Calinou/doc-moviewriterRémi Verschelde
Document the MovieWriter class and associated project settings
2022-06-23Fix animation reset on savereduz
Old (prototype) name was left in code Supersedes #60565
2022-06-23Add missing TTR in dialog titleHaoyu Qiu
2022-06-23Document the MovieWriter class and associated project settingsHugo Locurcio
2022-06-22Update the window title when the project settings were changed or when the ↵Marius Hanl
unsaved cache was changed (either by editing something or by saving) This makes sure that: 1.) The title is always up-to-date with project settings 2.) The title always reflects the changes made in the editor by showing or hiding the '(*)'
2022-06-22Merge pull request #55846 from ellenhp/fix_ogg_edge_casesRémi Verschelde
Fix ogg edge cases
2022-06-23improved way of getting method track keysSilc 'Tokage' Renew
2022-06-22Add surface indices to TriangleMeshreduz
Helps unblock #56597
2022-06-22Merge pull request #62234 from skyace65/AudioEffectsRémi Verschelde
Cleanup audio effect class reference pages
2022-06-22Document most of the Window's memberskobewi
2022-06-22Merge pull request #62053 from skyace65/MaterialDescriptionMax Hilbrunner
Add a description to ORMMaterial3D and StandardMaterial3D
2022-06-22Do not reset return value in release buildBlack Cat
2022-06-22Fixed dragging curve pointsVitika9
2022-06-22Merge pull request #35758 from zmanuel/eliminate-draw-pendingRémi Verschelde
Remove redundant thread sync counter draw_pending
2022-06-22Merge pull request #58544 from Calinou/tileset-source-allow-canvasitemmaterialRémi Verschelde
2022-06-22Merge pull request #62286 from JFonS/taa_global_timeRémi Verschelde
2022-06-22Merge pull request #62308 from Calinou/makerst-fix-error-printRémi Verschelde
2022-06-22Merge pull request #62305 from JFonS/taa_molten_mobile_workaroundRémi Verschelde
2022-06-22Merge pull request #56185 from nikitalita/fix-save-as-binaryRémi Verschelde
Fix ResourceLoaderText::save_as_binary()
2022-06-22Move TIME to a global shader variablejfons
This makes it work consistently for motion vectors in all functions, including user-defined ones.
2022-06-22makerst: Fix file name not appearing in error messageHugo Locurcio
2022-06-22Workaround MoltenVK shader conversion errorJFonS
2022-06-22Split GI effects and fix stereoscopic rendering of GI effectsBastiaan Olij
2022-06-21Merge pull request #61770 from aaronfranke/webpRémi Verschelde
2022-06-21Allow using CanvasItemMaterial in the TileSet editorHugo Locurcio
Previously, only ShaderMaterial overrides could be added.
2022-06-21Merge pull request #62262 from fire-forge/suffix2Rémi Verschelde