perbone / luascript

Lua language support for Godot Engine
Apache License 2.0
633 stars 45 forks source link

Is Godot-luascript compatible with IOS and android? #17

Closed LoveFaithForgiveness closed 4 years ago

LoveFaithForgiveness commented 4 years ago

I was just wondering I plan to export my game to IOS and android and I know Lua alot better than c# thanks

perbone commented 4 years ago

There's no problem with running Lua code on iOS. The only thing that is banned by Apple is executing scripts that were downloaded from the network. All your executable code should be either bundled along with your app or user-created. Android has even less restrictions about the use of embedded scripts. So yes, Godot Luascript is fully compatible with both iOS and Android! -- Perbone

LoveFaithForgiveness commented 4 years ago

Thanks a bunch!

jbromberg commented 9 months ago

Just a clarification on this point, would it be possible to write the scripts on iOS and run them there or does it require an export from a desktop machine?