aboutsummaryrefslogtreecommitdiff
path: root/core
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | | all light types and shadows are working, pending a lot of clean-upJuan Linietsky2016-11-093-1/+25
| | | | |
| * | | | Everything returning to normal in 3D, still a long way to goJuan Linietsky2016-10-192-0/+110
| | | | | | | | | | | | | | | | | | | | -implemented the scene part of visual server and rasterizer, objects without lighting and material are rendererd only
| * | | | 2D Shaders are working again using the new syntax, though all is buggy in ↵Juan Linietsky2016-10-104-2/+8
| | | | | | | | | | | | | | | | | | | | general
| * | | | Begining of GLES3 renderer:Juan Linietsky2016-10-0311-1571/+762
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | -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
* | | | | Merge pull request #7271 from Faless/ipv6_cleanupRémi Verschelde2017-01-0213-98/+153
|\ \ \ \ \ | | | | | | | | | | | | Fixes and improvementes for IPv6 implementation.
| * | | | | Expose HTTP classes' set_ip_type to scriptingFabio Alessandrelli2016-12-132-6/+10
| | | | | |
| * | | | | Separate hostname resolve cache based on ip_typeFabio Alessandrelli2016-12-091-11/+15
| | | | | |
| * | | | | IP_Address now handle IPv4 and IPv6 transparentlyFabio Alessandrelli2016-12-093-47/+65
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | IP_Address changes: - Converts to and from String transparently while handling IPv4 as IPv6 mapped (::ffff:[IP]) address internally. - Completely remove AddrType enum. - Setting/Getting of ip array is now only possible through dedicated functions (ie. set_ipv4, get_ipv4, set_ipv6, get_ipv6) - Add function to know if the address is a valid IPv4 (for IP implementation and enet)
| * | | | | Allow setting ip_type for TCP/UDP and HTTP classesFabio Alessandrelli2016-12-098-0/+26
| | | | | |
| * | | | | Migrate int.IP_TYPE_ constants to IP.TYPE_Fabio Alessandrelli2016-12-0911-36/+30
| | | | | |
| * | | | | Use an instance variable for ip_type in raw socketsFabio Alessandrelli2016-12-096-15/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PacketPeerUDP/StreamPeerTCP/TCP_Server now uses an instance variable to store the selected ip_type (IPv4/IPv6/ANY, where ANY = dual stack). All calls to resolve addresses, sending/receving data, connecting/listening will use that socket type.
* | | | | | Welcome in 2017, dear changelog reader!Rémi Verschelde2017-01-01230-230/+230
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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!
* | | | | | Remove extraneous line in .po reader, which caused it to disregard first lineBojidar Marinov2016-12-201-2/+0
|/ / / / / | | | | | | | | | | | | | | | Fixes #7337
* | | | | Merge pull request #7149 from Kazuo256/array-lastGeorge Marques2016-11-223-0/+17
|\ \ \ \ \ | | | | | | | | | | | | Add Array.front() and Array.back()
| * | | | | Add Array.front() and Array.back()Kazuo2562016-11-183-0/+17
| | | | | |
* | | | | | Properly localize absolute path.Fabio Alessandrelli2016-11-221-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Calling localize_path will return a localized path in res:// if the path starts with the resource file-system/folder, and will return the unchanged absolute path otherwise. Closes #6979 and #7161.
* | | | | | memory ops implemented as OS functions by defaultAriel Manzur2016-11-182-121/+8
|/ / / / / | | | | | | | | | | | | | | | (cherry picked from commit 67f65f66391327b2967a20a89c3627e1dd6e84eb)
* | | | | Blimey! Ye Pirate locale be anchor' a'port!Rémi Verschelde2016-11-151-0/+2
| | | | |
* | | | | Merge pull request #6968 from neikeq/pr-register-trnglmeshIgnacio Etcheverry2016-11-121-0/+2
|\ \ \ \ \ | | | | | | | | | | | | Core: Register TriangleMesh type
| * | | | | Core: Register TriangleMesh typeIgnacio Etcheverry2016-10-301-0/+2
| | | | | |
* | | | | | Merge pull request #6802 from henriquelalves/masterRémi Verschelde2016-11-112-2/+53
|\ \ \ \ \ \ | | | | | | | | | | | | | | Added small modification on gdscript parser to allow users insert '+' before variables
| * | | | | | Added small modification on parser for '+'Henrique L. Alves2016-10-222-2/+53
| | | | | | |
* | | | | | | Merge pull request #6862 from Faless/fix_6388Rémi Verschelde2016-11-112-4/+4
|\ \ \ \ \ \ \ | |_|_|_|/ / / |/| | | | | | Fix Keyboard Input Hangs when using modifiers
| * | | | | | Fix Keyboard Input Hangs when using modifiersFabio Alessandrelli2016-10-192-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Main input parsing loop only update actions for keyboard if the state has changed. `InputMap::event_is_action` now ignores keyboard modifiers if the event is not pressed. Clarify difference between `InputMap::action_has_event` and `InputMap::event_is_action` in docs. Fixes #6388.
* | | | | | | Merge pull request #7039 from RandomShaper/fix-triangulationRémi Verschelde2016-11-092-13/+5
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Clean/fix triangulation internals
| * | | | | | | Clean/fix triangulation internalsPedro J. Estébanez2016-11-052-13/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Drop unused variable Remove commented-out code Fix leak by using Vector instead of raw memory
* | | | | | | | Merge pull request #7070 from ISylvox/vsnc-to-vsyncRémi Verschelde2016-11-094-6/+6
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Renames vsnc to vsync
| * | | | | | | | vsnc --> vsyncISylvox2016-11-084-6/+6
| | | | | | | | |
* | | | | | | | | Some missing License notice has been addedSPTelur2016-11-072-0/+59
|/ / / / / / / /
* | | | | | | | Merge pull request #7048 from neikeq/pr-marshals-singletonGeorge Marques2016-11-063-2/+14
|\ \ \ \ \ \ \ \ | |/ / / / / / / |/| | | | | | | Add singleton instance to _Marshalls
| * | | | | | | Core: Add singleton instance to _MarshallsIgnacio Etcheverry2016-11-053-2/+14
| | |_|/ / / / | |/| | | | |
* | | | | | | Fix wrong number for ERR_* on commentvolzhs2016-11-041-12/+12
| |_|_|_|/ / |/| | | | |
* | | | | | style: Various other PEP8 fixes in Python filesRémi Verschelde2016-11-011-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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-016-101/+101
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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-012-98/+98
| |_|_|_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | | | | Set proper ip_type default for listen() and resolve_hostname()Fabio Alessandrelli2016-10-303-4/+4
| | | | |
* | | | | Add optional IP type param in TCP/UDP connect/set_send_addressFabio Alessandrelli2016-10-304-5/+24
| | | | |
* | | | | TCPServer listen now default to IP type ANY (v6 socket with v4 support)Fabio Alessandrelli2016-10-302-3/+3
| | | | |
* | | | | Merge pull request #6751 from SuperUserNameMan/new_PRNG_for_rand_from_seedRémi Verschelde2016-10-301-29/+8
|\ \ \ \ \ | | | | | | | | | | | | xorshift32 PRNG for Math::rand_from_seed()
| * | | | | xorshift32 PRNG for Math::rand_from_seed()yg2f2016-10-101-29/+8
| | |_|_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | should fixes #1043 PRNG adapted from : http://excamera.com/sphinx/article-xorshift.html
* | | | | Merge pull request #6901 from volzhs/fix-inputevent-compareIgnacio Etcheverry2016-10-291-1/+2
|\ \ \ \ \ | | | | | | | | | | | | Fix comparison bug with InputEvent
| * | | | | Fix comparison bug with InputEventvolzhs2016-10-231-1/+2
| | |_|/ / | |/| | |
* | | | | Fix locale for macOS-style localesDamon2016-10-271-6/+12
| | | | |
* | | | | Change set_locale to fallback to the global language (#6910)Damon Myers2016-10-271-6/+27
| |_|/ / |/| | |
* | | | Merge pull request #6925 from godotengine/ipv6Rémi Verschelde2016-10-2613-72/+336
|\ \ \ \ | |/ / / |/| | | Adding IPv6 support
| * | | added implementation of is_valid_ip_address()Ariel Manzur2016-10-202-20/+73
| | | |
| * | | added windows support for ipv6, cleaned up unix codeAriel Manzur2016-10-202-2/+15
| | | |
| * | | address type for http clientAriel Manzur2016-10-192-4/+5
| | | |
| * | | fixed some byte order and parsing problemsAriel Manzur2016-10-191-20/+32
| | | |