summaryrefslogtreecommitdiffstats
path: root/modules/gdnative/godot/basis.cpp
Commit message (Collapse)AuthorAgeFilesLines
* merged gdnative and nativescript moduleKarroffel2017-09-031-254/+0
|
* Remove 10778 related methods from GDNativeHein-Pieter van Braam2017-08-301-18/+0
| | | | | | After #10778 master didn't build any longer with GDNative. This removes the methods removed in that PR from the GDNative bindings for Basis also.
* Use HTTPS URL for Godot's website in the headersRémi Verschelde2017-08-271-1/+1
|
* [GDNative] better header include pathsKarroffel2017-08-021-2/+2
| | | | | The old include paths caused some problems on some compilers, for example including "string.h" was ambiguous.
* [GDNative] new GDNative APIKarroffel2017-07-241-0/+272
This adds GDNative as a separate class type. It can be used to interface with native libraries by using "native calls", which can be registered by modules (and in future other GDNative libraries?). It also reworks the currently called "GDNativeScript" into a "NativeScript" that just makes use of the new GDNative instead of it being the component that implements that functionality.