aboutsummaryrefslogtreecommitdiff
path: root/core/bind/core_bind.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* classref: Directory and ConfigFileRémi Verschelde2016-05-121-5/+5
|
* Add function to convert Date time from a dictionary to EpochKyle Luce2016-03-161-27/+154
| | | | | | | | - Also changed get_time_from_unix_time to get_date_time_from_unix_time to be consistent. Ticket: https://github.com/godotengine/godot/issues/4038
* Fixes the month consistency issue in enums and get_date etcKyle Luce2016-03-131-3/+4
| | | | | | | | | | - Also updated the docs to reflect this. - Added some vim temp files to gitignore - Changed NaCL to be consistent with the other OS_Unix::get_date implementation (added 1 to month to map to 1-12) Ticket: https://github.com/godotengine/godot/issues/4025
* Remove undefined bindsRémi Verschelde2016-03-121-2/+0
| | | | Bug introduced by 6eb4812
* Borderless window support for the Win32 build. Default window position is ↵Saracen2016-03-121-0/+12
| | | | now also centred.
* Merge pull request #3934 from Razzlegames/epocConvertRémi Verschelde2016-03-101-3/+72
|\ | | | | Added epoc to dictionary converter (for human readable display when only given an epoc time)
| * Added epoc to dictionary converterKyle Luce2016-03-051-3/+72
| | | | | | | | | | | | | | Useful for when user is storing time as epoc and wants to do operations on this time and then display in human readable form https://www.facebook.com/groups/godotengine/permalink/737469773056286/?comment_id=738011009668829&reply_comment_id=738192799650650&notif_t=group_comment_reply
* | Merge pull request #3833 from AlexHolly/feature-file-md5Rémi Verschelde2016-03-081-0/+10
|\ \ | |/ |/| expose md5 for file(s) to gdscript
| * expose md5 for file(s) to gdscriptAlexander Holland2016-02-251-0/+10
| |
* | Completed the support for plugins! It is not possible to add plugins.Juan Linietsky2016-02-271-0/+6
|/ | | | | | Not all APIs are provided yet, please request whathever you are missing. Some example plugins are provided in demos/plugins. Just copy them to a folder in your project named addons/ and then enable them from the project settings. Have fun!
* Reject any native video player calls on iOS that point to files within .pck ↵Aren Villanueva2016-02-191-0/+5
| | | | | | archives. Fix the paths for both res:// and user:// specified video files.
* Merge pull request #3502 from trtstm/csvRémi Verschelde2016-02-031-3/+3
|\ | | | | Added delimiter to File.get_csv_line
| * File: Added delimiter to get_csv_linetmt2016-01-281-3/+3
| |
* | thread renamingAriel Manzur2016-01-311-19/+9
|/
* Add ability to set "keep screen on" for androidvolzhs2016-01-161-0/+11
|
* -Removed OS.get_system_time_msec(), this is undoable on Windows and also ↵Juan Linietsky2016-01-101-3/+3
| | | | | | unusable from GDscript due to precision. -Added, instead an OS.get_system_time_secs(), which is 32 bits friendly, fixes #3143
* -Added a new mode, WRITE_READ to File, to recover compatibility with old ↵Juan Linietsky2016-01-101-0/+1
| | | | projects but also achieve desired functionality. Closes #3272
* Add missing argument names in GDScript bindingsRémi Verschelde2015-12-281-6/+6
| | | | | All classes were reviewed apart from VisualServer for which no argument name is documented at all. While doing this review, I found quite a few bugs that were fixed either in earlier commits or this one (mostly documentation bugs though, i.e. some arguments were listed at the wrong place).
* thread can't rename itself on initialization :(Ariel Manzur2015-12-181-2/+3
|
* thread renaming by core_bindAriel Manzur2015-12-181-3/+7
|
* thread set nameAriel Manzur2015-12-171-0/+15
|
* replaced :var by :Variant in documentation, fixes #2897Juan Linietsky2015-12-141-1/+1
|
* Properly implement OS.alert() from script, and use xmessage on X11Juan Linietsky2015-09-211-0/+6
|
* Add OS.get_system_time_msecMaximillian2015-08-061-0/+5
|
* added bindings for screen rotation in OSJuan Linietsky2015-08-041-0/+22
|
* adding some base64 marshallspunto-2015-07-281-0/+77
|
* Several performance improvements, mainly in loading and instancing scenes ↵Juan Linietsky2015-06-291-0/+2
| | | | | | | | and resources. A general speedup should be apparent, with even more peformance increase when compiling optimized. WARNING: Tested and it seems to work, but if something breaks, please report.
* Add OS.get_time_zone_info functionest312015-06-061-0/+10
| | | | | | The returned dictionary maps "name" to the name of the current time zone, and "bias" to a bias from UTC in minutes.
* Add utc param to get_time and get_date methodsest312015-06-061-6/+6
| | | | | | If utc == false, we return the local time, like before. Otherwise, we return UTC time. utc defaults to false to not break behaviour.
* fixes on sample importingJuan Linietsky2015-05-191-1/+1
|
* fix a crash situation when starting a thread and other small fixesJuan Linietsky2015-05-181-2/+9
|
* properly save external resources, fixes #1924Juan Linietsky2015-05-171-1/+18
| | | | added API to get scancode names to OS
* -Changed bootsplash option to use a file, fixes #1539Juan Linietsky2015-04-121-0/+5
| | | | -Added OS.get_splash_tick_msec() to query when splash appeared
* set screen parameter names for gdscripthurikhan2015-04-031-5/+5
|
* fixes to new window management APIJuan Linietsky2015-03-221-34/+34
| | | | | | -needs testing on Linux -needs testing on Windows -NEED SOMEONE TO IMPLEMENT IT ON OSX!! PLEASE HELP!
* Renamed EXPERIMENTAL_WM_API to NEW_WM_APIhurikhan2015-02-151-2/+2
|
* Merge remote-tracking branch 'upstream/master' into x11-window-managementhurikhan2015-02-151-0/+14
|\
| * begin new serialization frameworkJuan Linietsky2015-02-151-0/+7
| | | | | | | | also got rid of STL dependency on triangulator
| * New Navigation & Pathfinding support for 2DJuan Linietsky2015-02-141-0/+7
| | | | | | | | | | | | | | -Added Navigation & NavigationPolygon nodes -Added corresponding visual editor -New pathfinding algorithm is modern and fast! -Similar API to 3D Pathfinding (more coherent)
* | added the following methods:hurikhan2015-01-171-1/+21
| | | | | | | | | | | | | | * set_minimized(bool) * bool is_minimized() * set_maximized(bool) * bool is_maximized()
* | WIP -- set_resizable() + is_resizable addedhurikhan2015-01-151-1/+10
| |
* | get_screen() + set_screen() addedhurikhan2015-01-141-3/+13
| |
* | get_screen_position() addedhurikhan2015-01-131-0/+5
| |
* | introduced the scons experimental_wm_api switch:hurikhan2015-01-131-0/+4
| | | | | | | | | | | | | | ================================================ Usage: scons p=x11 experimental_wm_api=yes
* | get_screen_size() addedhurikhan2015-01-111-0/+5
| |
* | get_screen_count() addedhurikhan2015-01-111-0/+5
| |
* | get_window_size() + set_window_size() addedhurikhan2015-01-111-1/+10
| |
* | get_window_position() + set_window_position() addedhurikhan2015-01-111-0/+10
| |
* | API change to set_fullscreen(enabled,screen)hurikhan2015-01-101-3/+3
| |
* | x11-fullscreen support through GDScript( OS.set_fullscreen(bool) )hurikhan2015-01-101-0/+12
|/