aboutsummaryrefslogtreecommitdiff
path: root/demos/2d/navpoly (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Removed demosJuan Linietsky2016-06-036-99/+0
| | | | they go to their own project now
* Port 2D demos to TSCN/TRES formatsRémi Verschelde2016-04-023-1/+35
| | | | Part of #4196.
* Remove systematic "Init(i)alization here" from _ready()Rémi Verschelde2015-12-091-1/+0
|
* Improve code formattingRémi Verschelde2015-12-091-36/+27
| | | | | | | | | | | The scripts were streamlined using more or less the following conventions: - space after a comma in lists of arguments - spaces around weak operators (+, -), no spaces around strong operators (*, /) - spaces around comparison operators and compound assignment operators - space after a comment start (#) - removed trailing spaces or tabs, apart from those that delimit the function indentation level (those could be removed too but since they are added automatically by the editor when typing code, keeping them for now) - function blocks separate by two newlines - comment sentences start with an upper-case letter
* Update 2D demos scenes for 2.0 formatRémi Verschelde2015-12-092-0/+0
|
* Make all demo icons 8-bit/color RGB(A)Rémi Verschelde2015-11-231-0/+0
| | | | | Godot does not seem to like 8-bit colormaps. Fixes #2874.
* Added some demo iconsneikeq2015-10-292-0/+1
|
* more fixesJuan Linietsky2015-05-191-0/+7
| | | | | | -only refuse to load an older file if version major is different, fixes #1944 -fix drive letter default value, fixes #1939
* support for light and normal mapping in 2DJuan Linietsky2015-02-181-0/+0
|
* begin new serialization frameworkJuan Linietsky2015-02-151-0/+0
| | | | also got rid of STL dependency on triangulator
* New Navigation & Pathfinding support for 2DJuan Linietsky2015-02-145-0/+67
-Added Navigation & NavigationPolygon nodes -Added corresponding visual editor -New pathfinding algorithm is modern and fast! -Similar API to 3D Pathfinding (more coherent)