hi everyone, i’m corona sdk developer and I’ve been following Defold for two years. i’ll make a html5 game so i decided to learn defold. Because, Defold uses Lua and King is very reliable organization. (sorry for my poor english)
These are my questions:
1-in corona sdk you have one code and you can build it to multiple platforms. is this possible in Defold.
for example:
if platform=="android" then
IAPfunctionForAndroid()
elseif platform=="ios" then
IAPfunctionForIOS()
end
2-corona sdk have dynamic content scaling feature. So you can build your application for any devices and any resolutions.
for example : if you have an enemy image somethink like “enemy.png”. you should have “enemy@2.png” and/or “enemy@4.png” for higher resolutions. Corona sdk can use these files automatically. is this possible in defold?
thanks in advance.