summaryrefslogtreecommitdiff
path: root/scene
AgeCommit message (Collapse)Author
2019-02-15Revert "Fix MenuButton item label disappearing when setting shortcut."Rémi Verschelde
2019-02-15Merge pull request #25894 from marcelofg55/last_mouse_focus_crashRémi Verschelde
Fix possible crash with an invalid last_mouse_focus pointer
2019-02-15Merge pull request #25841 from Awkor/menubutton-fixRémi Verschelde
Fix MenuButton item label disappearing when setting shortcut.
2019-02-14Fix possible crash with an invalid last_mouse_focus pointerMarcelo Fernandez
2019-02-14Fix MenuButton item label disappearing when setting shortcut.Unknown
2019-02-14Fix AnimationPlayer bug where it wouldn't reset its position when finishedLuiz
2019-02-14-Fixes to undo redo to avoid crash, closes #24251Juan Linietsky
-Changed Animation to have a special signal when tracks are changed, to avoid unnecesary track cache rebuilds in AnimationPlayer -Added missing emit_changed whe modifying keys to Animation -Changed AnimationPlayer to use the new refcounted connections instead of the previous hacky way to keep references -Changed AnimationEditor to update the current track when keys are edited -Fixed bug where undo/redo did not work with AnimationKeyEdit (was not being updated) -Made sure UndoRedo does not mind deleted objects in undo/redo history, this would corrupt the history or clear it without need.
2019-02-14Merge pull request #25717 from nekomatata/dynamic-font-settings-fixRémi Verschelde
Fixed undefined behavior when loading dynamic font settings
2019-02-13Merge pull request #25776 from luizcarlos1405/masterRémi Verschelde
Fixes some AnimationPlayer bugs
2019-02-13Merge pull request #25422 from azagaya/optionbuttonRémi Verschelde
Fix docs about item_selected and item_focused . Fixes #25273
2019-02-13Fix some AnimationPlayer bugs and update documentationLuiz
2019-02-13Fix button alignment of Package Installer on OSXNaoto Kondo
This problem occurs only in the HiDPI environment.
2019-02-13Fix typos with codespellRémi Verschelde
Using codespell 1.14.0. Method: ``` $ cat > ../godot-word-whitelist.txt << EOF ang doubleclick lod nd numer que te unselect EOF $ codespell -w -q 3 -I ../godot-word-whitelist.txt --skip="./thirdparty,*.po" $ git diff // undo unwanted changes ```
2019-02-13Merge pull request #25821 from akien-mga/sync-class-and-filenamesRémi Verschelde
Ensure classes match their header filename
2019-02-12Fixed undefined setting values when loading dynamic fontsPouleyKetchoupp
2019-02-12Fix state machine priority for auto advanceGuilherme Felipe
2019-02-12Scene: Ensure classes match their header filenameRémi Verschelde
Also drop some unused files. Renamed: - `scene/2d/navigation2d.h` -> `navigation_2d.h` - `scene/2d/screen_button.h` -> `touch_screen_button.h` - `scene/3d/scenario_fx.h` -> `world_environment.h` - `scene/audio/audio_player.h` -> `audio_stream_player.h` - `scene/resources/bit_mask.h` -> `bit_map.h` - `scene/resources/color_ramp.h` -> `gradient.h` - `scene/resources/shape_line_2d.h` -> `line_shape_2d.h` - `scene/resources/scene_format_text.h` -> `resource_format_text.h` - `scene/resources/sky_box.h` -> `sky.h` Dropped: - `scene/resources/bounds.h`
2019-02-12Merge pull request #25496 from ptrojahn/lookatRémi Verschelde
Fix look_at with non uniform scaling
2019-02-12Core: Ensure classes match their header filenameRémi Verschelde
Also drop some unused files. Renamed: - `core/dvector.h` -> `pool_vector.h` - `core/io/resource_import.h` -> `resource_importer.h` - `core/sort.h` -> `sort_array.h` - `core/string_db.h` -> `string_name.h` Dropped: - `core/allocators.h` - `core/os/shell.h` - `core/variant_construct_string.cpp`
2019-02-12Merge pull request #25602 from mcccclean/dont-ignore-listener-nodesRémi Verschelde
Fix 3D Listener nodes not being used
2019-02-12Merge pull request #25481 from hpvb/fix-ubsan-asan-reportsRémi Verschelde
Fix many asan and ubsan reported issues
2019-02-12Merge pull request #25725 from clayjohn/multimesh_transform_2dRémi Verschelde
Added ability to set_instance_transform_2d in multimesh
2019-02-12Merge pull request #25754 from JFonS/fix_25567Rémi Verschelde
Fix canvas particle material for old GLSL versions
2019-02-11Fix canvas particle material for old GLSL versionsJFonS
2019-02-11Fixes differences between docs and item_selected and item_focused signals in ↵azagaya
optionbutton Description in docs about item_selected and item_focused signals in optionbutton is fixed to match the real behaviour. Also, get_item_index function is added.
2019-02-10Add disabled tab styleMichael Alexsander Silva Dias
2019-02-10General cleanup of script and doc search barsMichael Alexsander Silva Dias
2019-02-10TSCN: Remove extra newline after [resource]/[ext_resource]Rémi Verschelde
Some cases had been handled in #17602, but those two were missed. Fixes #24677.
2019-02-09Warn when using GPU particles with GLES2Rémi Verschelde
Closes #25733.
2019-02-09Merge pull request #25653 from BastiaanOlij/fix_hide_skyrotationRémi Verschelde
Hide new sky properties if we don't have sky as a background
2019-02-09Merge pull request #25671 from vnen/physics-material-2dRémi Verschelde
Include PhysicsMaterial when 3D is disabled
2019-02-08added ability to set instance_transform_2d in multimeshclayjohn
2019-02-08Merge pull request #25627 from clayjohn/visual_shader_texture_bugRémi Verschelde
Change hint_color to hint_albedo for sampler2ds
2019-02-08Fix look_at with non uniform scalingPaul Trojahn
The angle function doesn't consider the scaling of the local coordinates, so it needs to be removed first. Fixes #23247
2019-02-08Merge pull request #25551 from JFonS/fix_rogue_cpu_particlesRémi Verschelde
Fix local_delta when resetting CPUParticles
2019-02-08Merge pull request #25524 from Calinou/fix-font-oversampling-warningRémi Verschelde
Fix a font oversampling warning being printed when it shouldn't
2019-02-08Merge pull request #25509 from bojidar-bg/25504-update-bitmask-crashRémi Verschelde
Fix crashes when calling update_bitmask_area
2019-02-08Merge pull request #25467 from fire/folding_spamRémi Verschelde
Add check in folding to see if the nodepath exists to avoid message spam and expose get_node_or_null
2019-02-06Include PhysicsMaterial when 3D is disabledGeorge Marques
It's still needed by 2D physics.
2019-02-06Fix particles animation on GLES2JFonS
2019-02-06Prefer a viewport's listener over a camera where availableTom McLean
Fix clang formatting issue
2019-02-06Hide new sky properties if we don't have sky as a backgroundBastiaan Olij
2019-02-06Merge pull request #25606 from Paulb23/fix_textedit_scroll_selectionRémi Verschelde
Fixed selection being activated when using scroll lines.
2019-02-04change hint_color to hint_albedo for sampler2dsclayjohn
2019-02-04Add frame support for Sprite3D with region enabledMichael Alexsander Silva Dias
2019-02-04Fixed selection being activated when using scroll linesPaulb23
2019-02-01Fix local_delta when resetting CPUParticlesJFonS
2019-02-01When an animationplayer sets a property on itself recreate the cachesHein-Pieter van Braam
this fixes #25507
2019-01-31Fix a font oversampling warning being printed when it shouldn'tHugo Locurcio
2019-01-31Fix crashes when calling update_bitmask_areaBojidar Marinov
Fixes #25504