Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | renamed dlscript module to gdnative | Karroffel | 2017-04-09 | 1 | -213/+0 |
| | |||||
* | Merge pull request #8329 from touilleMan/dlscript-godot_get_global_constants | Rémi Verschelde | 2017-04-09 | 1 | -0/+14 |
|\ | | | | | GlobalConstants support in DLScript & api.json | ||||
| * | Change dlscript's godot_get_global_constants signature to return ↵ | Emmanuel Leblond | 2017-04-09 | 1 | -3/+6 |
| | | | | | | | | godot_dictionary | ||||
| * | Add GlobalConstants entry to the dlscript's api.json generator | Emmanuel Leblond | 2017-04-09 | 1 | -2/+2 |
| | | |||||
| * | Add godot_get_global_constants function to dlscript | Emmanuel Leblond | 2017-04-08 | 1 | -0/+11 |
| | | |||||
* | | Add "Godot Engine contributors" copyright line | Rémi Verschelde | 2017-04-08 | 1 | -0/+1 |
|/ | |||||
* | [DLScript] removed STL imports | Karroffel | 2017-04-06 | 1 | -4/+0 |
| | |||||
* | [DLScript] removed unused import | Karroffel | 2017-04-05 | 1 | -1/+0 |
| | | | | This hopefully fixes android builds | ||||
* | [DLScript] added variant constructor and a function to get userdata of a script | Karroffel | 2017-04-04 | 1 | -0/+10 |
| | | | | | | | The godot_dlinstance_get_userdata() function can be used to get the DLScript userdata pointer of any object that has a DLScript attached to it. This is particularly useful and even required for language bindings to work properly. This also fixes non-tool builds. | ||||
* | added dlscript module | Karroffel | 2017-04-03 | 1 | -0/+193 |
This module was written by bojidar-bg and me, with the help of ClikCode and touilleMan. This adds a module to Godot that enables the use of dynamic libraries as a source for scripts. That also allows third party libraries to be linked to Godot more easily and without creating modules. For a readme see https://github.com/GodotNativeTools/godot_headers/blob/master/README.md |