summaryrefslogtreecommitdiff
path: root/scene
AgeCommit message (Collapse)Author
2019-01-07Merge pull request #24806 from timoschwarzer/camera2d-process-modeRémi Verschelde
Add process_mode property to Camera2D
2019-01-06Merge pull request #24777 from volzhs/font-kerningRémi Verschelde
Fix font kerning
2019-01-06Add process_mode property to Camera2DTimo Schwarzer
This allows the user to choose if the camera should update in _process or _physics_process.
2019-01-06Fix jumping when scrolling down fast with smooth scroll enabledTimo Schwarzer
Fixes #24773
2019-01-05Fix text edit wrapping beyond control size, issue 23896Paulb23
2019-01-05Fix font kerningvolzhs
2019-01-04Merge pull request #24689 from BrodyEller/masterRémi Verschelde
Fix viewport not updating with make_current() for Camera2D
2019-01-04Merge pull request #24504 from harrisyu/AtlasCheckPixelOpaqueRémi Verschelde
Fix #24470 Atlas Texture with margin setting cause error in editor.
2019-01-04Merge pull request #24738 from timoschwarzer/24725-fit-child-in-rect-null-checkRémi Verschelde
Check if p_child is not null in Container.fit_child_rect()
2019-01-03Check if p_child is not null in Container.fit_child_rect()Timo Schwarzer
Fixes #24725
2019-01-03Merge pull request #24683 from SoIAS/autocompletion_menu_position_24674Rémi Verschelde
Fixed autocompletion menu vertical position
2019-01-03Allow offset and unit_offset to be set higher than one loopTimo Schwarzer
Fixes #24745
2019-01-03Merge pull request #24736 from timoschwarzer/ltex-thumbnailsRémi Verschelde
Add thumbnails to LargeTexture
2019-01-03Merge pull request #24722 from Calinou/improve-graphedit-line-drawingRémi Verschelde
Make GraphEdit lines smoother and scale their width on hiDPI displays
2019-01-03Add thumbnails to LargeTextureTimo Schwarzer
2019-01-03Fixed autocompletion menu vertical positionDawid Wdowiak
2019-01-02Make GraphEdit lines smoother and scale their width on hiDPI displaysHugo Locurcio
2019-01-02Merge pull request #24691 from BlackCatter/line2d-fixRémi Verschelde
Fix line 2D intersection behavior
2019-01-02Fix line 2D intersection behaviorArtem Burjachenko
2019-01-01Fix viewport not updating with make_current() for Camera2DBrody Eller
2019-01-01Update copyright statements to 2019Rémi Verschelde
Happy new year to the wonderful Godot community!
2018-12-30Merge pull request #24506 from JFonS/expose_gizmosRémi Verschelde
Expose the new gizmo plugin system to scripting
2018-12-30Add undo-redo to the TileSet editor, and other improvementsMichael Alexsander Silva Dias
2018-12-27Merge pull request #24588 from volzhs/tree-relationship-lineRémi Verschelde
Draw relationship lines when its value is higher than 0
2018-12-27doc: Sync classref with current sourceRémi Verschelde
Fix various code formatting issues and argument names.
2018-12-27Merge pull request #24566 from ↵Rémi Verschelde
thomasruiz/fix/completion-box-center-text-vertically Center lines vertically in completion box
2018-12-25Draw relationship lines when its value is higher than 0volzhs
2018-12-23Fix caret size with font smaller than row heightThomas Ruiz
2018-12-23Center lines vertically in completion boxThomas Ruiz
2018-12-21Expose the new gizmo plugin system to scriptingJFonS
2018-12-21Merge pull request #24509 from guilhermefelipecgs/fix_24273Rémi Verschelde
Add bind for TileMap::get_cell_autotile_coord
2018-12-21Merge pull request #24508 from guilhermefelipecgs/fix_22756Rémi Verschelde
Fixes for TileSetEditor and TileMapEditor
2018-12-20Add bind for TileMap::get_cell_autotile_coordGuilherme Felipe
2018-12-20Fixes for TileSetEditor and TileMapEditorGuilherme Felipe
[TileSetEditor] Hide Bitmask and Priority for ATLAS_TILE [TileMapEditor] Hide "Disable autotile" if the selected tile isn't autotile Fix #22756, don't update bitmask when tilemode is ATLAS_TILE
2018-12-20Fix #24470 Atlas Texture with margin setting cause error in editor.harrisyu
2018-12-20Fix TextureLayered::create not retaining formatShinryuuji
2018-12-19Merge pull request #24439 from staalduinen/mouse-motion-fixRémi Verschelde
fix near infinite loop when no previous mouse position
2018-12-19fix near infinite loop when no previous mouse positionArjen van Staalduinen
Added physics_has_last_mousepos to better deal with situations where there is no last_mousepos
2018-12-19Fix colored font rendered in wrong sizevolzhs
Fix #24456 The character->rect.size is properly update at DynamicFontAtSize::_bitmap_to_character so no need to multiply scale again. It was changed with 5cd12f6649387f91d08fd17bf3c70e732798ab58
2018-12-18Fix Word wrap cache desync causing crashPaulb23
2018-12-18Merge pull request #24432 from YeldhamDev/animationtree_editor_fixesRémi Verschelde
General fixes for the AnimationTree editor
2018-12-18Merge pull request #24428 from akien-mga/label-uppercaseRémi Verschelde
Label: Fix kerning when using Uppercase mode
2018-12-17General fixes for the AnimationTree editorMichael Alexsander Silva Dias
2018-12-17Don't accidentally convert string content to charHein-Pieter van Braam
Due to the right hand side of the :? trickery the rhs was cast to a char losing precision. Previously this didn't matter, but with CharProxy it does. (Previously we could just happily cast it back to a wchar_t and get the original 16 - 32 bits. Now we'll only ever get the first 8).
2018-12-17Label: Fix kerning when using Uppercase modeRémi Verschelde
Seemingly a typo, I did not check what exact impact it had, but the x_ofs would likely have accumulated errors when using fonts with varying char widths.
2018-12-17Merge pull request #24422 from guilhermefelipecgs/fix_z_index_atlasRémi Verschelde
Add z-index to ATLAS_TILE
2018-12-17Add z-index to ATLAS_TILEGuilherme Felipe
2018-12-17Fix maybe-uninitialized warnings from GCC 4.8.xRémi Verschelde
Fixes the following warnings in `p=server target=release_debug` builds on Travis CI: ``` ./core/os/memory.h: In function 'MainLoop* TestOAHashMap::test()': ./core/os/memory.h:108:111: warning: 'dummy' may be used uninitialized in this function [-Wmaybe-uninitialized] #define memnew_placement(m_placement, m_class) _post_initialize(new (m_placement, sizeof(m_class), "") m_class) ^ main/tests/test_oa_hash_map.cpp:98:7: note: 'dummy' was declared here int dummy; ^ scene/resources/bit_mask.cpp:447:3: warning: 'next_i' may be used uninitialized in this function [-Wmaybe-uninitialized] scene/resources/bit_mask.cpp:448:4: warning: 'next_j' may be used uninitialized in this function [-Wmaybe-uninitialized] ```
2018-12-16Fix sub-transitions not using end_node correctlyGuilherme Felipe
Fix #22389
2018-12-16Merge pull request #24366 from BastiaanOlij/adjust_sky_orientationRémi Verschelde
Adding option to re-orient our sky