Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-01-16 | Style: Various fixes to play nice with clang-format | Rémi Verschelde | |
2017-01-16 | Style: Fix statements ending with ';;' | Rémi Verschelde | |
2017-01-15 | Merge pull request #7127 from BastiaanOlij/ios_meters | Rémi Verschelde | |
Core motion implementation for iPhone (Accelerometer/Gyro/Magnetometer support) | |||
2017-01-14 | Style: Fix whole-line commented code | Rémi Verschelde | |
They do not play well with clang-format which aligns the `//` part with the rest of the code block, thus producing badly indented commented code. | |||
2017-01-14 | Fixed dir access return value, changed it to Error like all other funcs | Juan Linietsky | |
2017-01-13 | rename Input.get_mouse_speed() to Input.get_last_mouse_speed() | Juan Linietsky | |
2017-01-13 | Replace Engine version API by preexisting OS one | Rémi Verschelde | |
It outputs a single Dictionary with all relevant information as keys, that will less bloat the documentation and provide all details in one function call. | |||
2017-01-13 | Created new Engine singleton, and moved engine related OS functions to it. | Juan Linietsky | |
2017-01-12 | Added support for getting gravity vector from iOS | BastiaanOlij | |
2017-01-12 | Made InputEvent use floating point coordinates. | Juan Linietsky | |
2017-01-11 | Added a BACK notification besides QUIT, so they go in separate channels. | Juan Linietsky | |
2017-01-11 | Type renames: | Juan Linietsky | |
Matrix32 -> Transform2D Matrix3 -> Basis AABB -> Rect3 RawArray -> PoolByteArray IntArray -> PoolIntArray FloatArray -> PoolFloatArray Vector2Array -> PoolVector2Array Vector3Array -> PoolVector3Array ColorArray -> PoolColorArray | |||
2017-01-09 | -Translation text will change automatically for in-game buttons, labels, ↵ | Juan Linietsky | |
poups when translation is changed. -Added a NOTIFICATION_TRANSLATION_CHANGED for controls that need custom code -Sorry, editor will not update automatically because it uses a different translatio method. | |||
2017-01-08 | renamed joystick to joypad everywhere around source code! | Juan Linietsky | |
2017-01-07 | Memory pool vectors (DVector) have been enormously simplified in code, and ↵ | Juan Linietsky | |
renamed to PoolVector | |||
2017-01-06 | -Changed memory functions, Memory::alloc_static*, simplified them, made them ↵ | Juan Linietsky | |
aligned to 16 -Changed Vector<> template to fit this. | |||
2017-01-05 | -Changed most project settings in the engine, so they have major and minor ↵ | Juan Linietsky | |
categories. -Changed SectionedPropertyEditor to support this -Renamed Globals singleton to GlobalConfig, makes more sense. -Changed the logic behind persisten global settings, instead of the persist checkbox, a revert button is now available | |||
2017-01-02 | ObjectTypeDB was renamed to ClassDB. Types are meant to be more generic to ↵ | Juan Linietsky | |
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() | |||
2017-01-02 | Merge remote-tracking branch 'origin/gles3' into gles3-on-master | Rémi Verschelde | |
Various merge conflicts have been fixed manually and some mistakes might have been made - time will tell :) | |||
2017-01-01 | Welcome in 2017, dear changelog reader! | Rémi Verschelde | |
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! | |||
2016-11-18 | memory ops implemented as OS functions by default | Ariel Manzur | |
(cherry picked from commit 67f65f66391327b2967a20a89c3627e1dd6e84eb) | |||
2016-11-08 | vsnc --> vsync | ISylvox | |
2016-11-01 | style: Fix PEP8 whitespace issues in Python files | Rémi Verschelde | |
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. | |||
2016-10-23 | Fix comparison bug with InputEvent | volzhs | |
2016-10-17 | SCsub: Add python shebang as a hint for syntax highlighting | Rémi Verschelde | |
Also switch existing shebangs to "better" /usr/bin/env python. | |||
2016-10-10 | 2D Shaders are working again using the new syntax, though all is buggy in ↵ | Juan Linietsky | |
general | |||
2016-10-03 | Merge pull request #6479 from RandomShaper/improve-debug-focus | Rémi Verschelde | |
Improve debug focus behavior | |||
2016-09-26 | Code completion for is_action_just_{pressed, released} | Andreas Haas | |
fixes #6621 | |||
2016-09-26 | Merge pull request #6568 from Hinsbart/joy_names | Rémi Verschelde | |
Add functions to get readable names for joystick events | |||
2016-09-20 | Add function to get readable names for joystick events | Andreas Haas | |
Closes #6476 | |||
2016-09-15 | Fix input action pressed state not changing for quick joystick movements. | Andreas Haas | |
fixes #6488 Also removes a bunch of dead code related to checking if a joystick axis is pressed. | |||
2016-09-14 | Improve debug focus behavior | Pedro J. Estébanez | |
Fix focusing debugged game on Windows Add re-focusing editor on continue | |||
2016-09-02 | InputEvent: Fix event comparisons when type is NONE | Rémi Verschelde | |
Was a regression from 2e5a4cb5ca33576ea81601f949b2e633ff92213c. Fixes #6376. | |||
2016-09-01 | -Modified Input and added is_action_just_pressed() as well as ↵ | Juan Linietsky | |
is_action_just_released() | |||
2016-08-28 | Show last added action on Input Map and implement InputEvent "==" | volzhs | |
2016-08-07 | Automatically turn on process callbacks if relevant callbacks in node exists | Juan Linietsky | |
2016-08-07 | -Added yield nodes to visual script | Juan Linietsky | |
-Added input selection nodes to visual script -Added script create icon for those who miss it, will only appear when it can be used. | |||
2016-07-22 | Merge pull request #5847 from 29jm/patch-3 | Rémi Verschelde | |
Expose virtual keyboard functions to GDScript | |||
2016-07-21 | Expose virtual keyboard functions to GDScript | Johan Manuel | |
2016-07-21 | Merge pull request #5560 from vnen/os-request-attention | Rémi Verschelde | |
Add OS.request_attention() for Windows | |||
2016-07-18 | Merge pull request #5709 from akien-mga/pr-get-engine-version | Rémi Verschelde | |
OS: Add get_engine_version method | |||
2016-07-18 | OS: Add get_engine_version method | Rémi Verschelde | |
Fixes #5693. | |||
2016-07-16 | Added gyroscope support to Godot and Android | Jamil Halabi | |
2016-07-05 | Add OS.request_attention() for Windows | George Marques | |
2016-07-05 | Input: add get_connected_joysticks() method. | Andreas Haas | |
fixes #5465 | |||
2016-06-27 | Properly deliver localized coordinates when passing gui events through ↵ | Juan Linietsky | |
parents, closes #4215 | |||
2016-06-25 | Added function to notify ScriptLanguage when a thread is created/freed, ↵ | Juan Linietsky | |
allows scripts to allocate a stack there via TLS | |||
2016-06-21 | Set default duration parameter of joystick vibration to 0. | Andreas Haas | |
2016-06-18 | Fixed make_dir and make_dir_recursive erros, closes #1680 closes #1872 | Juan Linietsky | |
2016-06-17 | Add sha256 to String and File/FileAccess. | Bojidar Marinov | |
Probably does #4166 |