aboutsummaryrefslogtreecommitdiff
path: root/tools/editor/icons (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Refactoring: rename tools/editor/ to editor/Rémi Verschelde2017-03-051715-50758/+0
| | | | | | The other subfolders of tools/ had already been moved to either editor/, misc/ or thirdparty/, so the hiding the editor code that deep was no longer meaningful.
* Merge pull request #7352 from Zylann/polylineRémi Verschelde2017-02-123-0/+82
|\ | | | | Polyline
| * Added Line2D node that draws a polygon-based lineMarc Gilleron2017-01-153-0/+82
| | | | | | | | | | | | It supports unlimited width, color gradient, texture and some geometry options for joints and caps. Also transparency without artifacts (provided that line joints aren't too sharp).
* | Reorder the folders in tools to prepare moving tools/editorRémi Verschelde2017-02-091-1/+1
| | | | | | | | | | | | | | | | | | - `certs` and `editor_fonts` go to `thirdparty` - `dist` and `scripts` go to a new `misc` folder - `collada` and `doc` go to `tools/editor` The next step will be to rename `tools/editor` to `editor` directly, but this will be done at the right time to avoid breaking too many PRs.
* | Merge pull request #7542 from volzhs/modulate-transparencyRémi Verschelde2017-01-252-0/+0
|\ \ | | | | | | Show transparency and accurate color for modulate
| * | Show transparency and accurate color for modulatevolzhs2017-01-242-0/+0
| | |
* | | WIP new AudioServer, with buses, effects, etc.Juan Linietsky2017-01-216-0/+0
| | |
* | | Added some missing icons and modified othersDaniel J. Ramirez2017-01-169-42/+212
| | |
* | | icon fixesDaniel J. Ramirez2017-01-1680-1087/+381
|/ /
* / Added missing icons (#7514)Daniel Ramirez2017-01-1511-18/+370
|/
* Finish renaming *Frame GUI classes to *RectRémi Verschelde2017-01-149-3/+3
| | | | | ReferenceFrame had been overlooked, and the cpp files still used the old names. Also ripgrep'ed it all to find some forgotten references.
* Added resources iconsDaniel J. Ramirez2017-01-0997-163/+3206
|
* Added missing node icons, plus some icon changesDaniel J. Ramirez2017-01-0814-24/+281
|
* Add clamp and wrap loop modes for animation tracks.Juan Linietsky2017-01-092-0/+0
|
* Finish replacement of joystick by joypadRémi Verschelde2017-01-083-1/+1
| | | | Some parts were forgotten in 547a577.
* Merge remote-tracking branch 'origin/gles3' into gles3-on-masterRémi Verschelde2017-01-021-1/+1
|\ | | | | | | | | Various merge conflicts have been fixed manually and some mistakes might have been made - time will tell :)
| * Begining of GLES3 renderer:Juan Linietsky2016-10-031-1/+1
| | | | | | | | | | | | | | | | -Most 2D drawing is implemented -Missing shaders -Missing all 3D -Editor needs to be set on update always to be used, otherwise it does not refresh -Large parts of editor not working
* | Fix #7016, add script create iconPawel Kowal2016-11-053-0/+96
| |
* | style: Various other PEP8 fixes in Python filesRémi Verschelde2016-11-011-18/+18
| | | | | | | | | | | | | | | | | | | | | | | | Done with `autopep8 --select=E7`, fixes: - E701 - Put colon-separated compound statement on separate lines. - E702 - Put semicolon-separated compound statement on separate lines. - E703 - Put semicolon-separated compound statement on separate lines. - E711 - Fix comparison with None. - E712 - Fix (trivial case of) comparison with boolean. - E713 - Fix (trivial case of) non-membership check. - E721 - Fix various deprecated code (via lib2to3).
* | style: Fix PEP8 blank lines issues in Python filesRémi Verschelde2016-11-011-3/+1
| | | | | | | | | | | | | | | | | | | | | | Done with `autopep8 --select=E3,W3`, fixes: - E301 - Add missing blank line. - E302 - Add missing 2 blank lines. - E303 - Remove extra blank lines. - E304 - Remove blank line following function decorator. - E309 - Add missing blank line. - W391 - Remove trailing blank lines.
* | style: Fix PEP8 whitespace issues in Python filesRémi Verschelde2016-11-011-28/+28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Done with `autopep8 --select=E2,W2`, fixes: - E201 - Remove extraneous whitespace. - E202 - Remove extraneous whitespace. - E203 - Remove extraneous whitespace. - E211 - Remove extraneous whitespace. - E221 - Fix extraneous whitespace around keywords. - E222 - Fix extraneous whitespace around keywords. - E223 - Fix extraneous whitespace around keywords. - E224 - Remove extraneous whitespace around operator. - E225 - Fix missing whitespace around operator. - E226 - Fix missing whitespace around operator. - E227 - Fix missing whitespace around operator. - E228 - Fix missing whitespace around operator. - E231 - Add missing whitespace. - E231 - Fix various deprecated code (via lib2to3). - E241 - Fix extraneous whitespace around keywords. - E242 - Remove extraneous whitespace around operator. - E251 - Remove whitespace around parameter '=' sign. - E261 - Fix spacing after comment hash. - E262 - Fix spacing after comment hash. - E265 - Format block comments. - E271 - Fix extraneous whitespace around keywords. - E272 - Fix extraneous whitespace around keywords. - E273 - Fix extraneous whitespace around keywords. - E274 - Fix extraneous whitespace around keywords. - W291 - Remove trailing whitespace. - W293 - Remove trailing whitespace.
* | style: Start applying PEP8 to Python files, indentation issuesRémi Verschelde2016-11-011-60/+60
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Done with `autopep8 --select=E1`, fixes: - E101 - Reindent all lines. - E112 - Fix under-indented comments. - E113 - Fix over-indented comments. - E115 - Fix under-indented comments. - E116 - Fix over-indented comments. - E121 - Fix a badly indented line. - E122 - Fix a badly indented line. - E123 - Fix a badly indented line. - E124 - Fix a badly indented line. - E125 - Fix indentation undistinguish from the next logical line. - E126 - Fix a badly indented line. - E127 - Fix a badly indented line. - E128 - Fix a badly indented line. - E129 - Fix a badly indented line.
* | SCsub: Add python shebang as a hint for syntax highlightingRémi Verschelde2016-10-171-0/+2
| | | | | | | | Also switch existing shebangs to "better" /usr/bin/env python.
* | New load icon, removed unused open iconPawel Kowal2016-10-115-0/+85
|/
* New distraction free mode iconDaniel J. Ramirez2016-09-185-0/+104
|
* -Added VeryLowDPI and MidDPI modes to Godot editor.Juan Linietsky2016-09-131-2/+4
| | | | -Improved HiDPI detection (requires resolution of > 2000 in X axis)
* Distraction free icon was missingJuan Linietsky2016-09-131-0/+0
|
* -Added a ColorFrame control, kind of like Texture but for color.Juan Linietsky2016-09-111-0/+0
| | | | | -Added dropping nodes to text editor for them to become a path -Fixed issues with font not properly being set in code editor
* Merge pull request #5692 from kubecz3k/remoteTransformJuan Linietsky2016-09-103-0/+124
|\ | | | | Remote transform node (for 3d)
| * Remote transform node (for 3d)Jakub Grzesik2016-07-143-0/+124
| | | | | | It's code is based on RemoteTransform2D node.
* | Tweaked some icons, including xform oneDaniel J. Ramirez2016-09-086-24/+18
| |
* | Colors for VS sockets and iconsDaniel J. Ramirez2016-08-2882-383/+328
| |
* | VS icons improvementsDaniel J. Ramirez2016-08-2852-273/+274
| |
* | Icons for VScript typesDaniel J. Ramirez2016-08-2388-0/+4273
| |
* | 2d collision shape icons now uses the color for shape iconsDaniel J. Ramirez2016-08-1524-125/+575
| |
* | Some new icons for visual script and graphsDaniel J. Ramirez2016-08-0812-32/+300
| |
* | Merge branch 'master' of https://github.com/godotengine/godotJuan Linietsky2016-08-029-1086/+78
|\ \
| * \ Merge pull request #5957 from djrm/new_iconsRémi Verschelde2016-07-297-1034/+77
| |\ \ | | | | | | | | New http request and tutorials icon
| | * | New http request and tutorials iconDaniel J. Ramirez2016-07-287-1034/+77
| | | | | | | | | | | | | | | | Remove garbage in group icon
| * | | Fix editor icons source file generationGeorge Marques2016-07-282-52/+1
| |/ / | | | | | | | | | Also removes the unused make_icons.py file.
* / / WIP visual scripting, not working yet but you can check out stuffJuan Linietsky2016-08-0236-0/+0
|/ /
* | Modified some iconsDaniel J. Ramirez2016-07-229-37/+1126
| |
* | Property convert images to RGBA before applying hq2x, fixes #5168Juan Linietsky2016-07-181-1/+1
|/
* Revert "Added toggle for loop interpolation based on adolson's code"Rémi Verschelde2016-06-261-0/+0
| | | | | | | | | | | | | | | This reverts commits 8884b8f51963553dd1ecc0bc4accf64deb4f645f bd5c8f2aa086c2cacc704dfef249c124760ab569 and 5cb31f6d5b667a551092b699de6f4786e0bb5b6d. <reduz> Akien, I understand the need for the second loop mode, but I think the current UI is pretty confusing. I think this should be changed for an enum, both there and in the animation.. otherwise we should revert it [...] <reduz> alternatively this could be added per track, which I think should make it a little less confusing Reopens #959..
* Merge pull request #5307 from MarianoGnu/masterRémi Verschelde2016-06-267-0/+104
|\ | | | | TextureRegion improvements
| * Chance Snap for SnapMode and add AutoSlice option.MarianoGNU2016-06-207-0/+104
| |
* | Added high resolution icons for the Gizmos, fixes #1638Daniel J. Ramirez2016-06-2415-158/+141
|/
* Added loop interpolation and track trigger iconsDaniel J. Ramirez2016-06-196-0/+220
|
* Merge pull request #5290 from djrm/new_iconsRémi Verschelde2016-06-1918-17/+647
|\ | | | | Added missing icons for some nodes
| * Added missing icons for some nodesDaniel J. Ramirez2016-06-1818-17/+647
| |