aboutsummaryrefslogtreecommitdiff
path: root/tools/editor/plugins/navigation_polygon_editor_plugin.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Refactoring: rename tools/editor/ to editor/Rémi Verschelde2017-03-051-566/+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.
* Various fixes detected using PVS-Studio static analyzer.Thaer Razeq2017-02-281-1/+1
| | | | | | | - Add FIXME tags comments to some unfixed potential bugs - Remove some checks (always false: unsigned never < 0) - Fix some if statements based on reviews. - Bunch of missing `else` statements
* Rename the _MD macro to D_METHODHein-Pieter van Braam2017-02-131-4/+4
| | | | | | This new name also makes its purpose a little clearer This is a step towards fixing #56
* Style: Fix statements ending with ';;'Rémi Verschelde2017-01-161-1/+1
|
* Type renames:Juan Linietsky2017-01-111-2/+2
| | | | | | | | | | | | Matrix32 -> Transform2D Matrix3 -> Basis AABB -> Rect3 RawArray -> PoolByteArray IntArray -> PoolIntArray FloatArray -> PoolFloatArray Vector2Array -> PoolVector2Array Vector3Array -> PoolVector3Array ColorArray -> PoolColorArray
* PopupMenu now emits both index_pressed and id_pressed instead of ↵Juan Linietsky2017-01-081-1/+1
| | | | item_pressed, closes #3188
* renamed _input_event for GUI events to _gui_input, so it's more ↵Juan Linietsky2017-01-081-1/+1
| | | | differentiated than generalized _input
* Memory pool vectors (DVector) have been enormously simplified in code, and ↵Juan Linietsky2017-01-071-9/+9
| | | | renamed to PoolVector
* Editor settings categories are now tidy and beautiful!Juan Linietsky2017-01-051-1/+1
|
* ObjectTypeDB was renamed to ClassDB. Types are meant to be more generic to ↵Juan Linietsky2017-01-021-5/+5
| | | | | | | | Variant. All usages of "type" to refer to classes were renamed to "class" ClassDB has been exposed to GDScript. OBJ_TYPE() macro is now GDCLASS()
* Welcome in 2017, dear changelog reader!Rémi Verschelde2017-01-011-1/+1
| | | | | | | | That year should bring the long-awaited OpenGL ES 3.0 compatible renderer with state-of-the-art rendering techniques tuned to work as low as middle end handheld devices - without compromising with the possibilities given for higher end desktop games of course. Great times ahead for the Godot community and the gamers that will play our games!
* Removed unused variables (second pass) + dead codeRémi Verschelde2016-07-071-2/+0
| | | | Fixes various gcc 5.4.0 warnings for -Wunused-variable and -Wunused-but-set-variable
* Add missing license headers in our source files (#5255)Rémi Verschelde2016-06-181-0/+28
| | | Also removes a couple wrong Godot headers from third-party source files.
* i18n: Second pass at proofreadingRémi Verschelde2016-05-211-4/+4
| | | | | Mostly removing commented out strings, plus a few critical ones that should not be translated.
* Modified editor strings to be translatable in the futureJuan Linietsky2016-05-031-9/+9
|
* -fixed many memory initialization issuesJuan Linietsky2015-06-061-1/+1
| | | | | -fixed deadlock on previews thread -fixed compilation errors on unix
* Merge branch 'master' of https://github.com/not-surt/godot into snapping2Carl Olsson2015-03-231-1/+5
|\ | | | | | | | | | | Conflicts: tools/editor/plugins/canvas_item_editor_plugin.cpp tools/editor/plugins/canvas_item_editor_plugin.h
| * lot of work on 2D lighting and isometric mapsJuan Linietsky2015-03-091-1/+5
| | | | | | | | | | added a new demo, isometric_light that does full isometric sorting, lights, shadows, etc.
* | Better 2D SnappingCarl Olsson2015-02-151-13/+2
|/ | | | | | | | | Consolidated duplicate snapping functions into CanvasItemEditor. Allow non-square grids. Add grid origin offsets. Allow seperate toggling of grid display. Add rotation snapping. Add offset snapping.
* New Navigation & Pathfinding support for 2DJuan Linietsky2015-02-141-0/+547
-Added Navigation & NavigationPolygon nodes -Added corresponding visual editor -New pathfinding algorithm is modern and fast! -Similar API to 3D Pathfinding (more coherent)