summaryrefslogtreecommitdiff
path: root/modules/dlscript
AgeCommit message (Collapse)Author
2017-04-09Add GlobalConstants entry to the dlscript's api.json generatorEmmanuel Leblond
2017-04-08Add godot_get_global_constants function to dlscriptEmmanuel Leblond
2017-04-06[DLScript] fixed android builds nowKarroffel
... really.
2017-04-06Merge pull request #8280 from karroffel/dlscript-inheritanceRĂ©mi Verschelde
[DLScript] inheritance fixes
2017-04-06[DLScript] inheritance fixesKarroffel
This properly implements script inheritance for DLScripts.
2017-04-06[DLScript] more API fixesKarroffel
2017-04-06[DLScript] removed STL importsKarroffel
2017-04-05[DLScript] fixed virtual method exportKarroffel
2017-04-05[DLScript] removed unused importKarroffel
This hopefully fixes android builds
2017-04-04[DLScript] added variant constructor and a function to get userdata of a scriptKarroffel
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.
2017-04-03added dlscript moduleKarroffel
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