summaryrefslogtreecommitdiffstats
path: root/scene/2d/touch_screen_button.cpp
Commit message (Collapse)AuthorAgeFilesLines
...
* Update copyright statements to 2020Rémi Verschelde2020-01-011-2/+2
| | | | | | | | | | | Happy new year to the wonderful Godot community! We're starting a new decade with a well-established, non-profit, free and open source game engine, and tons of further improvements in the pipeline from hundreds of contributors. Godot will keep getting better, and we're looking forward to all the games that the community will keep developing and releasing with it.
* Revert "Fixed TouchScreenButton::shape_centered having no effect"Rémi Verschelde2019-11-081-6/+2
| | | | | | | | | | This reverts commit 127c2d75ad109fe4a905f9061fcbc25d1e8b0ca9. This was a misunderstanding as #32725 is not a bug but expected behavior. Reverts #32927. Supersedes and closes #33436.
* Fixed TouchScreenButton::shape_centered having no effectMuller-Castro2019-10-191-2/+6
| | | | The problem was that the shape_centered depended on TouchScreenButton::texture having a Texture
* Scene: Ensure classes match their header filenameRémi Verschelde2019-02-121-0/+424
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`