aboutsummaryrefslogtreecommitdiff
path: root/core/bind (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Removal of Image from Variant, converted to a Resource.Juan Linietsky2017-05-172-2/+3
|
* Move core thirdparty files to thirdparty/{minizip,misc}Rémi Verschelde2017-04-281-1/+3
|
* Rename [gs]et_pos to [gs]et_position for ControlsSergey Pusnei2017-04-102-4/+4
| | | | | | | | Control set_pos -> set_position Control set_global_pos -> set_global_position [gs]et_mouse_pos -> [gs]et_mouse_position [gs]et_global_mouse_pos -> [gs]et_global_mouse_position fixes #8005
* Merge pull request #8333 from touilleMan/classdb-class_sget_property-bindingRémi Verschelde2017-04-092-0/+21
|\ | | | | Add _ClassDB.class_[g|s]et_property to ClassDB exposed methods
| * Add return value in ClassDB.class_[g|s]et_property bindingsEmmanuel Leblond2017-04-091-2/+2
| |
| * Add _ClassDB.class_[g|s]et_property to ClassDB exposed methodsEmmanuel Leblond2017-04-092-0/+21
| |
* | Add "Godot Engine contributors" copyright lineRémi Verschelde2017-04-082-0/+2
|/
* fixed ClassDB inconsistenciesKarroffel2017-03-131-1/+1
| | | | fixes #7960
* A Whole New World (clang-format edition)Rémi Verschelde2017-03-052-965/+801
| | | | | | | | | | | | | | | | | | | | | | | | I can show you the code Pretty, with proper whitespace Tell me, coder, now when did You last write readable code? I can open your eyes Make you see your bad indent Force you to respect the style The core devs agreed upon A whole new world A new fantastic code format A de facto standard With some sugar Enforced with clang-format A whole new world A dazzling style we all dreamed of And when we read it through It's crystal clear That now we're in a whole new world of code
* Merge pull request #7950 from RandomShaper/expose-more-geomRémi Verschelde2017-03-052-0/+15
|\ | | | | Expose uncapped versions of closest-point-to-segment utilities
| * Expose uncapped versions of closest-point-to-segment utilitiesPedro J. Estébanez2017-03-042-0/+15
| |
* | Add API to access battery power stateJulian Murgia2017-03-042-0/+26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Done: - X11, server (tested) - Windows (developed, would be nice to retest) - OSX (not tested) Prepared (not developed): - Android (code is here, but may not compile) - iphone - winrt - bb10 - haiku - javascript
* | Expose Geometry::get_closest_point_to_segment_2d()Pedro J. Estébanez2017-03-042-0/+7
|/
* -renamed globals.h to global_config.cpp (this seems to have caused a few ↵Juan Linietsky2017-02-211-1/+1
| | | | | | modified files) -.pck and .zip exporting redone, seems to be working..
* Rename the _MD macro to D_METHODHein-Pieter van Braam2017-02-131-230/+230
| | | | | | This new name also makes its purpose a little clearer This is a step towards fixing #56
* corrected ClassDB::insatnce() return typeKarroffel2017-01-301-1/+1
|
* Removed import/export system, will start new one from scratch.Juan Linietsky2017-01-252-6/+0
|
* Merge pull request #7563 from RayKoopa/extended_list_dir_beginRémi Verschelde2017-01-252-4/+19
|\ | | | | Add parameters to Directory.list_dir_begin() to skip navigational or hidden entries
| * Added parameters to skip hidden and/or navigational file system entriesRay Koopa2017-01-242-4/+19
| |
* | Add ClassDB binding for File.get_modified_timeAndreas Haas2017-01-232-0/+8
|/ | | | Closes #7613
* Style: Keep long lines for nowRémi Verschelde2017-01-161-22/+11
| | | | | clang-format does not play well with tab-aligned multiline statements... Some more research will be needed if we want to set a column limit.
* Style: No break before list braceRémi Verschelde2017-01-161-2/+1
| | | | | | | clang-format does not handle that well *at all*. For the reference, found the relevant pieces of code with: `ag "=[ "$'\t'"]?"$'\n'"[ "$'\t'"]?{" --ignore=thirdparty`
* Fix _Directory::get_current_drive error conditionWilhem Barbier2017-01-141-1/+1
|
* Merge pull request #7524 from neikeq/pr-dir-getcurdriveRémi Verschelde2017-01-142-1/+7
|\ | | | | Directory: Bind get_current_drive() method
| * Directory: Bind get_current_drive() methodIgnacio Etcheverry2017-01-142-1/+7
| |
* | removed duplicated functions in class hierarchy that were bound more than onceJuan Linietsky2017-01-141-10/+10
| | | | | | | | added a check to detect this case in the future
* | Style: Fix whole-line commented codeRémi Verschelde2017-01-141-1/+1
| | | | | | | | | | 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.
* | Unexpose the video mode API, will be completely removed when multi-window ↵Juan Linietsky2017-01-141-5/+6
| | | | | | | | support is implemented.
* | Fixed dir access return value, changed it to Error like all other funcsJuan Linietsky2017-01-142-3/+3
|/
* Replace Engine version API by preexisting OS oneRémi Verschelde2017-01-132-61/+4
| | | | | | 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.
* Created new Engine singleton, and moved engine related OS functions to it.Juan Linietsky2017-01-132-67/+168
|
* Type renames:Juan Linietsky2017-01-112-12/+12
| | | | | | | | | | | | Matrix32 -> Transform2D Matrix3 -> Basis AABB -> Rect3 RawArray -> PoolByteArray IntArray -> PoolIntArray FloatArray -> PoolFloatArray Vector2Array -> PoolVector2Array Vector3Array -> PoolVector3Array ColorArray -> PoolColorArray
* Merge pull request #7462 from karroffel/error_codeRémi Verschelde2017-01-102-0/+16
|\ | | | | expose OS.set_exit_code and OS.get_exit_code to ClassDB
| * exposed OS.set_exit_code and OS.get_exit_code to ClassDBkarroffel2017-01-072-0/+16
| |
* | Memory pool vectors (DVector) have been enormously simplified in code, and ↵Juan Linietsky2017-01-072-62/+62
|/ | | | renamed to PoolVector
* -Changed most project settings in the engine, so they have major and minor ↵Juan Linietsky2017-01-051-1/+1
| | | | | | | | 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
* ObjectTypeDB was renamed to ClassDB. Types are meant to be more generic to ↵Juan Linietsky2017-01-022-224/+463
| | | | | | | | 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()
* Welcome in 2017, dear changelog reader!Rémi Verschelde2017-01-012-2/+2
| | | | | | | | 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!
* vsnc --> vsyncISylvox2016-11-082-4/+4
|
* Merge pull request #7048 from neikeq/pr-marshals-singletonGeorge Marques2016-11-062-1/+13
|\ | | | | Add singleton instance to _Marshalls
| * Core: Add singleton instance to _MarshallsIgnacio Etcheverry2016-11-052-1/+13
| |
* | style: Fix PEP8 whitespace issues in Python filesRémi Verschelde2016-11-011-1/+1
|/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* SCsub: Add python shebang as a hint for syntax highlightingRémi Verschelde2016-10-171-0/+2
| | | | Also switch existing shebangs to "better" /usr/bin/env python.
* Fixed bug in make_dir_recursive, closes #6016Juan Linietsky2016-08-081-0/+7
|
* Merge pull request #5847 from 29jm/patch-3Rémi Verschelde2016-07-222-0/+18
|\ | | | | Expose virtual keyboard functions to GDScript
| * Expose virtual keyboard functions to GDScriptJohan Manuel2016-07-212-0/+18
| |
* | Merge pull request #5560 from vnen/os-request-attentionRémi Verschelde2016-07-212-0/+7
|\ \ | |/ |/| Add OS.request_attention() for Windows
| * Add OS.request_attention() for WindowsGeorge Marques2016-07-052-0/+7
| |
* | Merge pull request #5709 from akien-mga/pr-get-engine-versionRémi Verschelde2016-07-182-0/+9
|\ \ | | | | | | OS: Add get_engine_version method
| * | OS: Add get_engine_version methodRémi Verschelde2016-07-182-0/+9
| | | | | | | | | | | | Fixes #5693.