Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-11-10 | [GDNative] renamed nativearvr to arvr in api.json | Karroffel | |
2017-11-10 | [GDNative] better API struct versioning | Karroffel | |
2017-11-09 | [GDNative] refactored API struct into core and extensions | Karroffel | |
2017-11-07 | [GDNative] even more API fixes | Karroffel | |
2017-11-04 | Merge pull request #12612 from karroffel/gdnative-poolarray-accessors | Thomas Herzog | |
[GDNative] added Read and Write accessors to pool arrays | |||
2017-11-04 | Merge pull request #12557 from BastiaanOlij/arvr_add_rumble_support | Bastiaan Olij | |
Adding rumble support to ARVR controllers | |||
2017-11-03 | [GDNative] added Read and Write accessors to pool arrays | Karroffel | |
2017-11-03 | [GDNative] small API bug fixes | Karroffel | |
2017-11-01 | Adding rumble support to ARVR controllers (if implemented on the ARVR interface) | Bastiaan Olij | |
2017-10-15 | Couple of small changes so our ARVRInterfaceGDNative gets constructed and ↵ | BastiaanOlij | |
registered automatically when a module loads | |||
2017-10-14 | update ARVRInterfaceGDNative to use API struct | Karroffel | |
2017-10-14 | Redoing the ARVR GDNative interface as module and tighter implementation | BastiaanOlij | |
2017-10-08 | [GDnative] Add string_name api | Emmanuel Leblond | |
2017-10-07 | Store GDNative API in array instead of dictionary | sheepandshepherd | |
2017-10-03 | [GDNative] added API struct wrapper generator | Karroffel | |
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. | |||
2017-10-03 | [GDnative] replace gdnative_api_struct.h by a json-based autogenerated system | Emmanuel Leblond | |