Age | Commit message (Collapse) | Author |
|
|
|
According to MSDN's
documentation (https://msdn.microsoft.com/en-us/library/windows/desktop/bb762181(v=vs.85).aspx),
CSIDL_PERSONAL represents the default path to Windows Document's folder:
"Previous to Version 6.0. The file system directory used to physically
store a user's common repository of documents. A typical path is
C:\Documents and Settings\username\My Documents. This should be
distinguished from the virtual My Documents folder in the namespace. To
access that virtual folder, use SHGetFolderLocation, which returns the
ITEMIDLIST for the virtual location, or refer to the technique described
in Managing the File System."
|
|
|
|
|
|
Fix #3149
|
|
Add some joystick functions to input. Enables manipulation of mapping…
|
|
Remove unnecessary null pointer checks
|
|
unusable from GDscript due to precision.
-Added, instead an OS.get_system_time_secs(), which is 32 bits friendly, fixes #3143
|
|
runtime
|
|
|
|
|
|
|
|
-changed default windowed resolution to 1280x720
|
|
|
|
the error message above. Also removed the dot after the file location.
|
|
otherwise text background will be black, which looks strange if the terminal color is not black.
|
|
|
|
not support them.
See: http://stackoverflow.com/questions/16755142/how-to-make-win32-console-recognize-ansi-vt100-escape-sequences
See: http://stackoverflow.com/questions/22777142/is-there-a-way-to-make-windows-output-ansi-escape-sequences?lq=1
|
|
|
|
Fixed Audio System Crash
|
|
Display error type (error, warning, script error) in OS::print_error + cleanup error ANSI coloring
|
|
|
|
This is achieved using the "no specific formatting" \E[0m tag.
Fixes #2566.
Also remove the hardcoded black background colour and use default bolded terminal font for error message.
Error logs should now look good both on terminals with a dark and light background colour.
|
|
Previously all types of errors would be shown as ERROR, thus making for example warnings (WARN_PRINT) somewhat aggressive.
ERROR is displayed in red, WARNING in yellow and SCRIPT ERROR in magenta (though the latter does not seem used so far).
Fixes #1127.
|
|
server to prevent crash when exiting.
|
|
|
|
|
|
Thanks @volzhs for testing :)
|
|
|
|
The returned dictionary maps "name" to the
name of the current time zone, and "bias" to
a bias from UTC in minutes.
|
|
If utc == false, we return the local time, like before.
Otherwise, we return UTC time.
utc defaults to false to not break behaviour.
|
|
On unix and nacl, both date and time are expressed in local time.
|
|
also, 2D physics is now thread safe too.
see physics_2d/thread_model
|
|
Conflicts:
drivers/windows/dir_access_windows.cpp
|
|
|
|
|
|
but still side-functions, all API needs to be migrated to them
|
|
-needs testing on Linux
-needs testing on Windows
-NEED SOMEONE TO IMPLEMENT IT ON OSX!! PLEASE HELP!
|
|
allows to use 3D environment effects for post processing such as Glow,
Bloom, HDR, etc. in 2D.
|
|
|
|
also got rid of STL dependency on triangulator
|
|
-can warp now from viewport and control, in their respective coordinate
systems
-warp is now local to the window on Windows and OSX.
IF YOU RUN OSX, PLEASE TEST THIS! And make sure it works!, new code is
in OS_OSX::warp_mouse_pos. I don't have OSX so i can't test!
|
|
|
|
Modifiers are unset on events for the modifier key itself
|
|
Choose tabs or spaces, not both!
|
|
This patch removes modifiers when processing key events for the
particular modifier key. For example, previously a Shift keypress
would register as a Shift + Shift modifier event.
This would cause issues when a modifier key as the action key in
the input map, because unpresses of the modifier key don't match as
matching inputs for that action. E.g. if Shift is used as an action,
the stored action event is Shift + Shift modifier (as indicated
in the editor as "Shift + Shift". The unpress event does not have the
Shift modifier set, so the event of unpressing Shift + no modifier
doesn't match the action which has the modifier set.
This patch removes the shift modifier on just pressing the Shift
key down, so the action event is registered as just Shift with
no modifier (as indicated in the editor as "Shift"), which matches
the unpress event.
|
|
|
|
|
|
fixed later.
-fixed issue of opacity not working
|
|
-=-=-=-=-=-=-=-=-=-
-Moved drawing code to a single function that takes linked list (should make it easier to optimize in the future).
-Implemented Z ordering of 2D nodes. Node2D and those that inherit have a visibility/Z property that affects drawing order (besides the tree order)
-Removed OpenGL ES 1.x support. Good riddance!
|