summaryrefslogtreecommitdiff
path: root/editor/icons
AgeCommit message (Collapse)Author
2020-02-25Update PackedIint/FloatArray icons for the new typesMichael Alexsander
2020-02-24Use PascalCase file names for editor iconsHugo Locurcio
Using PascalCase file names without any conversion step is less confusing to new contributors.
2020-02-23Add icons for some new variantsMichael Alexsander
2020-02-19Merge pull request #35784 from Calinou/remove-3d-camera-gizmo-iconRémi Verschelde
Remove the 3D camera gizmo icon
2020-02-18Convert "Pool*Array" icons into "Packed*Array"Michael Alexsander
2020-02-11Visual GPU profiler and related profiling support in Vulkan.Juan Linietsky
2020-02-11Modernized default 3D material, fixes material bugs.Juan Linietsky
2020-02-10Remove AnimationTreePlayer nodeMichael Alexsander
2020-02-09Remove unused GodotDocs and ParticleAttractor2D editor iconsHugo Locurcio
2020-01-31Remove the 3D camera gizmo iconHugo Locurcio
The gizmo icon obstructed the line-based camera gizmo, which made it difficult to see the actual camera orientation. This also removes the unused SpatialStreamPlayer gizmo icon. This closes https://github.com/godotengine/godot-proposals/issues/425.
2020-01-15Add an icon for OGG samplesHugo Locurcio
The icon is the same as WAV samples, as both formats are accepted in AudioStreamPlayer. This closes #35163.
2020-01-13Add a crosshair to the 3D viewportHugo Locurcio
The crosshair makes freelook navigation a bit easier, while making it clearer that it's possible to select nodes by clicking while in freelook mode. The crosshair is only displayed while in freelook mode. It uses an icon designed to be visible on any background.
2020-01-01Tint 3D light gizmos using the light's colorHugo Locurcio
This makes navigation more convenient in the 3D viewport, especially when using the unshaded display mode.
2019-10-16Add editor icons for X509Certificate and CryptoKeyHugo Locurcio
Co-authored-by: bruvzg <7645683+bruvzg@users.noreply.github.com>
2019-09-27Draw an indicator to denote overbright colors in ColorPickerHugo Locurcio
This makes it faster to distinguish overbright colors from "standard" colors.
2019-09-26Changed the appearance of the rotation icons in the Tilemap.dankan1890
Make them more intuitive.
2019-09-25Replace "GuiMiniTabMenu" with "GuiTabMenu" and tweak itMichael Alexsander Silva Dias
2019-09-24Optimize editor icon SVGs using svgcleanerHugo Locurcio
This makes editor binaries about 230 KB smaller. The command used was: parallel svgcleaner --multipass {} {} ::: editor/icons/*.svg
2019-09-24Merge pull request #32267 from YeldhamDev/fix_tab_iconsRémi Verschelde
Fix various problems with tab-related icons
2019-09-23Merge pull request #32036 from Calinou/improve-soft-body-editor-iconRémi Verschelde
Improve the SoftBody node editor icon
2019-09-23Merge pull request #32035 from YeldhamDev/new_iconsRémi Verschelde
Add some missing icons
2019-09-23Merge pull request #32020 from Calinou/editor-audio-bus-display-tooltipRémi Verschelde
Display audio buses' current volume in a tooltip when hovering slider
2019-09-22Fix various problems with tab-related iconsMichael Alexsander Silva Dias
2019-09-21Improve the network profiler UIHugo Locurcio
- Add icons to the up/down bandwidth LineEdits for better visual grepping. - Make bandwidth LineEdit texts more prominent when data is being received/emitted. - Add more spacing between the up and down bandwidth LineEdits. - Initialize the bandwidth texts using `set_bandwidth()` to ensure consistency with the actual bandwidth texts once the profiler is started. - Fix icon colors when switching from a dark theme to a light theme and vice versa. - Add missing `EDSCALE` constants for hiDPI scaling.
2019-09-20Merge pull request #32206 from Calinou/remove-unused-tree-constantsRémi Verschelde
Remove an unused icon and constant in Tree
2019-09-20Remove an unused icon and constant in TreeHugo Locurcio
2019-09-19Improve folding appearance in the editor inspectorHugo Locurcio
The arrow is now displayed at the left to be consistent with other places where folding is used. The arrow icons used are now consistent with the rest of the editor. The `arrow_up` icon is no longer used anywhere, so it was removed. Additional spacing was also added for a better visual appearance.
2019-09-08Improve the SoftBody node editor iconHugo Locurcio
The new icon uses 2-pixel-thick lines for consistency with other icons. Its pixels are also aligned to the 16 pixel grid.
2019-09-07Add some missing iconsMichael Alexsander Silva Dias
2019-09-06Display audio buses' current volume in a tooltip when hovering sliderHugo Locurcio
This also removes an unused editor icon. This closes #30884.
2019-09-03Adds skip-breakpoints featureiwek7
2019-09-03Improve the animation autokey editor iconHugo Locurcio
The icon was redrawn to snap to a 16x16 grid, with a lower number of SVG nodes in the process.
2019-09-02Add icon for the ruler toolMichael Alexsander Silva Dias
2019-08-18Improve the appearance of 2D path editorsHugo Locurcio
- Add new handle icons for path/polygon editors - Add smooth path point icons and curve tangent icons - Use a gray color for tangent lines in the Path2D and Path editors - Use antialiasing for Path2D lines
2019-08-17Improve timeline drawing in the animation editorHugo Locurcio
A small arrow-like icon is now drawn at the top of the timeline. The timeline is now also wider as to be more visible.
2019-08-08Add particles icon to CPUParticlesCameron Reikes
2019-08-04Make keyframes easier to select in the animation easierHugo Locurcio
Keyframe SVG icons are now 10×10 instead of 8×8 (except for Bezier-related icons). This makes them easier to select since the empty space is part of the clickable area. Selected keyframes are now also visually larger to make them easier to distinguish from unselected keyframes. This closes #27276.
2019-07-29Make the expand icon in the bottom panel always be the sameMichael Alexsander Silva Dias
2019-07-24added pointMesh primitiveclayjohn
2019-07-19Adds contextual item in scene tree dock to wrap selection in a new nodeJulian Murgia
Fixes #20187
2019-07-13Remove unused Vulkan iconHugo Locurcio
This icon was likely added to be used in the renderer selection dropdown, but now that the GLES2 and GLES3 icons have been removed in favor of just using text, it'll probably never be used.
2019-06-28Add support for creating editor icons per moduleAndrii Doroshenko (Xrayez)
The functionality is similar to how `doc_classes` are retrieved per module. The build system will search for custom icons path defined per module via `get_icons_path()` method in `config.py` or default icons path. If such paths don't exist, only the editor's own icons will be built. Most module icons were moved from editor/icons to respective modules.
2019-06-23Display invalid value keys in AnimationTrackEditRémi Verschelde
Godot 2.1 and 3.0 had this feature but it was lost in the rewrite of the animation editor in 3.1. Drop unused KeyValid icon, since all valid keys now have a custom type icon.
2019-06-20Merge pull request #24116 from Calinou/editor-theme-improved-checkbuttonsRémi Verschelde
Improve CheckButtons in the default editor theme
2019-06-08Display a "loading" placeholder while icons are loading in the assetlibHugo Locurcio
2019-06-03added MultiMeshInstance2D node for using MultiMesh in 2Dclayjohn
2019-06-03Better visual shader iconMichael Alexsander Silva Dias
Closes #20695.
2019-04-30Issue-28355 - show spaces in editormiwanczuk
2019-04-23Merge pull request #25510 from groud/tilemap_editor_enhancementHein-Pieter van Braam
Move some tilemap options to the toolbar
2019-04-15Icon was missingJuan Linietsky