godot-cpp/.gitignore

19 lines
130 B
Plaintext
Raw Normal View History

2018-01-22 21:34:19 +00:00
# Misc
2017-10-20 23:42:10 +00:00
logs/*
2018-01-22 21:34:19 +00:00
# Binaries
*.o
2017-03-06 07:49:24 +00:00
*.os
2017-03-09 02:03:21 +00:00
*.so
2017-05-12 19:53:07 +00:00
*.obj
*.pyc
2017-06-16 13:50:48 +00:00
*.dblite
2018-01-22 21:34:19 +00:00
*.pdb
*.lib
2017-05-12 19:53:07 +00:00
bin
Nativescript 1.1 implemented instance binding data usage This commit changes the way C++ wrapper classes work. Previously, wrapper classes were merely wrapper *interfaces*. They used the `this` pointer to store the actual foreign Godot Object. With the NativeScript 1.1 extension it is now possible to have low-overhead language binding data attached to Objects. The C++ bindings use that feature to implement *proper* wrappers and enable regular C++ inheritance usage that way. Some things might still be buggy and untested, but the C++ SimpleDemo works with those changes. new and free change, custom free will crash engine, be wary fix exporting of non-object types fix free() crash with custom resources added type tags and safe object casting fix global type registration order fix cast_to changed build system to be more self contained updated .gitignore use typeid() for type tags now fix indentation in bindings generator remove accidentally added files fix gitignore Fixed up registering tool and updated godot_headers Fix crash when calling String::split/split_floats Was casting to the wrong object type. Also adds parse_ints function to String with the same logic Better warning/error macros Change gitignore so we get our gen folders New documentation based on nativescript 1.1 Fixed GODOT_SUBCLASS macro Preventing crash when function returned null ptr Adds needed include <typeinfo> Solves this issue #168 due to not having the include of typeinfo Fix compile error of 'WARN_PRINT' and 'ERR_PRINT'. cannot pass non-trivial object of type 'godot::String' to variadic function; expected type from format string was 'char *' [-Wnon-pod-varargs] update vector3::distance_to Remove godot_api.json as its now in the godot_headers submodule (api.json)
2018-02-11 14:50:01 +00:00
*.config
*.creator
*.creator.user
*.files
*.includes