| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| | * | make register_signal and auto-generated variadic funcitons use variadic ↵ | danielytics | 2018-03-06 | 2 | -0/+41 | |
| | | | | | | | | | templates to streamline their use | |||||
| | * | fix #101 | karroffel | 2018-03-02 | 1 | -0/+2 | |
| | | | ||||||
| * | | fixed forward decl | Nickolai Korshunov | 2018-02-24 | 1 | -2/+1 | |
| | | | ||||||
| * | | NULL -> nullptr | Nickolai Korshunov | 2018-02-23 | 5 | -31/+31 | |
| | | | ||||||
| * | | Strict enums | Nickolai Korshunov | 2018-02-23 | 1 | -1/+1 | |
| | | | ||||||
| * | | fixed some includes. replace cycle include with forward declaration | Nickolai Korshunov | 2018-02-23 | 2 | -6/+7 | |
| | | | ||||||
| * | | fixed forward declarations | Nickolai Korshunov | 2018-02-23 | 2 | -2/+2 | |
| |/ | ||||||
| * | Add const qualifier to PoolArray's size() | lupoDharkael | 2018-02-12 | 1 | -7/+7 | |
| | | ||||||
| * | Merge pull request #88 from Zylann/fix_ref_return_leak | Thomas Herzog | 2018-01-26 | 1 | -0/+9 | |
| |\ | | | | | Fix Ref leak when using Godot getters | |||||
| | * | Fix Ref leak when using Godot getters | Marc Gilleron | 2018-01-25 | 1 | -0/+9 | |
| | | | ||||||
| * | | Fix RID::is_valid() | Marc Gilleron | 2018-01-25 | 1 | -1/+1 | |
| |/ | ||||||
| * | String and math fixes | Marc Gilleron | 2018-01-23 | 3 | -5/+21 | |
| | | | | | | | | | - Added missing static String constructors - Implemented String operator for math types - Added XYZ and YXZ euler angles methods - Fixed wrong det checks in Basis - Fixed operator Quat in Basis | |||||
| * | Rewrite Ref<T> to behave like Godot again | Marc Gilleron | 2018-01-22 | 1 | -108/+152 | |
| | | ||||||
| * | Added RID::is_valid() and comparison operators | Marc Gilleron | 2018-01-20 | 1 | -1/+13 | |
| | | | | | - is_valid() is worked around by comparing a default RID() | |||||
| * | allow const getter functions | karroffel | 2018-01-19 | 1 | -0/+6 | |
| | | ||||||
| * | Don't leak memory from Ref<>() | karroffel | 2018-01-19 | 1 | -57/+36 | |
| | | ||||||
| * | Added copy constructors to PoolArray Read and Write | Marc Gilleron | 2018-01-18 | 1 | -0/+105 | |
| | | ||||||
| * | Added missing copy constructors and assign operators to PoolVectors | Marc Gilleron | 2018-01-17 | 1 | -0/+14 | |
| | | ||||||
| * | Merge pull request #67 from Zylann/rename_aabb_position | Thomas Herzog | 2018-01-17 | 1 | -4/+4 | |
| |\ | | | | | Renamed AABB::pos --> AABB::position | |||||
| | * | Renamed AABB::pos --> AABB::position | Marc Gilleron | 2018-01-17 | 1 | -4/+4 | |
| | | | ||||||
| * | | Merge pull request #68 from Zylann/ref_instance | Thomas Herzog | 2018-01-17 | 1 | -0/+5 | |
| |\ \ | | | | | | | Added Ref<T>::instance() | |||||
| | * | | Added Ref<T>::instance() | Marc Gilleron | 2018-01-17 | 1 | -0/+5 | |
| | |/ | ||||||
| * | | Merge pull request #70 from Zylann/fix_register_signal | Thomas Herzog | 2018-01-17 | 1 | -4/+8 | |
| |\ \ | | | | | | | Fix potential malloc(0) | |||||
| | * | | Fix potential malloc(0) | Marc Gilleron | 2018-01-17 | 1 | -4/+8 | |
| | |/ | ||||||
| * / | Added copy constructors and assignment operators to Array and Dictionary | Marc Gilleron | 2018-01-17 | 2 | -0/+4 | |
| |/ | ||||||
| * | custom types can now be used as method parameters | karroffel | 2018-01-14 | 1 | -7/+13 | |
| | | ||||||
| * | Added Read and Write access for PoolArrays | karroffel | 2018-01-11 | 1 | -0/+338 | |
| | | ||||||
| * | caller-defined entry methods and string API update | karroffel | 2018-01-11 | 3 | -8/+19 | |
| | | ||||||
| * | Fixed building | Grosskopf | 2017-12-11 | 1 | -4/+4 | |
| | | | | | without this, the clang command fails | |||||
| * | Added alloc_c_string | Bastiaan Olij | 2017-11-25 | 1 | -0/+1 | |
| | | ||||||
| * | Update bindings to use new Api extensions and rename Rect3->AABB | BastiaanOlij | 2017-11-23 | 9 | -34/+36 | |
| | | ||||||
| * | Implemented using api struct | Bastiaan Olij | 2017-10-23 | 3 | -26/+30 | |
| | | ||||||
| * | Fixes #41 | Ramesh Ravone | 2017-10-03 | 1 | -1/+1 | |
| | | ||||||
| * | String bindings updated (at most) | Ramesh Ravone | 2017-10-03 | 1 | -40/+82 | |
| | | ||||||
| * | updated bindings | Ramesh Ravone | 2017-10-03 | 10 | -12/+12 | |
| | | ||||||
| * | Fix `_arg_cast` | Ramesh Ravone | 2017-10-03 | 1 | -1/+1 | |
| | | | | | | This has been an issue from the day one, A lot of people mentioned this on discord too | |||||
| * | Fix bindings generation for enums | Maxim Sheronov | 2017-09-13 | 1 | -0/+40 | |
| | | ||||||
| * | Replaced 'char *' with 'const char *' for consistency with C API | Sergey Kurson | 2017-07-27 | 1 | -12/+11 | |
| | | | | | Also makes gcc and clang happy | |||||
| * | updated to use the new NativeScript and GDNative interface | Karroffel | 2017-07-24 | 11 | -31/+33 | |
| | | ||||||
| * | Merge pull request #20 from GodotNativeTools/static-linking | Thomas Herzog | 2017-07-24 | 19 | -219/+28 | |
| |\ | | | | | Use static linking instead of dynamic linking | |||||
| | * | Use static linking instead of dynamic linking | Karroffel | 2017-07-23 | 19 | -219/+28 | |
| | | | ||||||
| * | | template magic | Karroffel | 2017-07-23 | 1 | -338/+50 | |
| |/ | ||||||
| * | String operator_plus fix | Ramesh Ravone | 2017-07-22 | 1 | -2/+1 | |
| | | ||||||
| * | implement registering const methods | Karroffel | 2017-06-21 | 1 | -1/+16 | |
| | | | | | fixes #6 | |||||
| * | Wohoo, Ref<>s are now working | Karroffel | 2017-06-21 | 2 | -6/+11 | |
| | | ||||||
| * | some Ref WIP, memory leaks and invalid returns | Karroffel | 2017-06-21 | 2 | -5/+25 | |
| | | ||||||
| * | fixed ArgCast again | Karroffel | 2017-06-19 | 1 | -0/+8 | |
| | | ||||||
| * | better Variant casting | Karroffel | 2017-06-19 | 1 | -1/+1 | |
| | | ||||||
| * | [experimental] constructors and Ref<T> | Karroffel | 2017-06-19 | 1 | -0/+163 | |
| | | ||||||
| * | updated scripting interface | Karroffel | 2017-06-18 | 1 | -1/+0 | |
| | | ||||||
