aboutsummaryrefslogtreecommitdiff
path: root/modules/gdnative/gdnative_api.json
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #12284 from bojidar-bg/allow-subproperty-setRémi Verschelde2017-11-211-1/+1
|\ | | | | Allow for getting/setting "dotted" properties of objects
| * Allow for getting/setting indexed properties of objects using get/set_indexedBojidar Marinov2017-11-211-1/+1
| | | | | | | | Performance is around the same as using pure set() through GDScript.
* | Add bsearch and bsearch_custom to Arraypoke10242017-11-211-0/+20
| |
* | [GDNative] add a way to register call typesKarroffel2017-11-201-0/+8
| |
* | [GDNative] removed godot_string_c_strKarroffel2017-11-201-7/+0
| |
* | Rename Rect3 to AABB.Ferenc Arn2017-11-171-73/+73
|/ | | | Fixes #12973.
* [GDNative] renamed nativearvr to arvr in api.jsonKarroffel2017-11-101-2/+2
|
* [GDNative] better API struct versioningKarroffel2017-11-101-4/+20
|
* [GDNative] refactored API struct into core and extensionsKarroffel2017-11-091-5749/+5768
|
* [GDNative] even more API fixesKarroffel2017-11-071-0/+23
|
* Merge pull request #12612 from karroffel/gdnative-poolarray-accessorsThomas Herzog2017-11-041-0/+406
|\ | | | | [GDNative] added Read and Write accessors to pool arrays
| * [GDNative] added Read and Write accessors to pool arraysKarroffel2017-11-031-0/+406
| |
* | Merge pull request #12557 from BastiaanOlij/arvr_add_rumble_supportBastiaan Olij2017-11-041-0/+7
|\ \ | | | | | | Adding rumble support to ARVR controllers
| * | Adding rumble support to ARVR controllers (if implemented on the ARVR interface)Bastiaan Olij2017-11-011-0/+7
| |/
* / [GDNative] small API bug fixesKarroffel2017-11-031-1/+9
|/
* Couple of small changes so our ARVRInterfaceGDNative gets constructed and ↵BastiaanOlij2017-10-151-1/+0
| | | | registered automatically when a module loads
* update ARVRInterfaceGDNative to use API structKarroffel2017-10-141-0/+8
|
* Redoing the ARVR GDNative interface as module and tighter implementationBastiaanOlij2017-10-141-0/+72
|
* [GDnative] Add string_name apiEmmanuel Leblond2017-10-081-0/+60
|
* Store GDNative API in array instead of dictionarysheepandshepherd2017-10-071-664/+1326
|
* [GDNative] added API struct wrapper generatorKarroffel2017-10-031-4/+4
| | | | | | | | | | | | Previously functions of the GDNative API were accessed by letting the loader at load-time resolve the symbols. This causes troubles on Windows (...sigh...), so now the GDNative API isn't exported anymore. This means, that a library that wants to call a GDNative function needs to access it via a struct of pointers that's passed to it at right after the library was loaded. To make the usage easier, those function pointers in the struct can be wrapped in actual function in the global scope. This commit adds a generator for that wrapper code.
* [GDnative] replace gdnative_api_struct.h by a json-based autogenerated systemEmmanuel Leblond2017-10-031-0/+4512