diff options
| author | Karroffel | 2017-07-14 01:44:14 +0200 |
|---|---|---|
| committer | Karroffel | 2017-07-24 04:23:37 +0200 |
| commit | 534d62d2f4ea1ff4be11b50bc79684b5780e4615 (patch) | |
| tree | 0d299c22cbffc2a353c126372a44f067914b71d0 /modules/gdnative/godot/basis.cpp | |
| parent | 85aa0adeef6ab89e98105fdaa49f441e5763d970 (diff) | |
| download | godot-534d62d2f4ea1ff4be11b50bc79684b5780e4615.tar.gz godot-534d62d2f4ea1ff4be11b50bc79684b5780e4615.tar.zst godot-534d62d2f4ea1ff4be11b50bc79684b5780e4615.zip | |
[GDNative] new GDNative API
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.
Diffstat (limited to '')
| -rw-r--r-- | modules/gdnative/godot/basis.cpp (renamed from modules/gdnative/godot/godot_basis.cpp) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/gdnative/godot/godot_basis.cpp b/modules/gdnative/godot/basis.cpp index 46464932c..7188215d0 100644 --- a/modules/gdnative/godot/godot_basis.cpp +++ b/modules/gdnative/godot/basis.cpp @@ -1,5 +1,5 @@ /*************************************************************************/ -/* godot_basis.cpp */ +/* basis.cpp */ /*************************************************************************/ /* This file is part of: */ /* GODOT ENGINE */ @@ -27,7 +27,7 @@ /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */ /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /*************************************************************************/ -#include "godot_basis.h" +#include "basis.h" #include "core/variant.h" #include "core/math/matrix3.h" |
