What the difference in (OSX) and (Web)? (SOLVED)

Greeting all.
I am beginner and still fresh in deflod sector.
My question so simple as you can see at photo attachment.
What the difference in (OSX) and (Web), whilst both of them using web browser concept, OSX or other devices in world technology which connected in Internet laptop or desktop.

Sorry if my question not coding, but I noticed that.

Thanks

Defold supports a number of different platforms: Mobile (Android, iOS), Desktop (Linux, Windows, OSX/macOS) and Web (asm.js, WebAssembly).

We provide native builds for all platforms:

In the case of Android it’s the engine written in C/C++ and some Java. The application is packaged as an APK or AAB file.

In the case of iOS it’s the engine written in C/C++ and some Objective-C. The application is packaged into an IPA file.

For desktop platforms it’s native C/C++ throughout. The application is packaged as a platform specific executable with the additional engine resources and game assets as extra files.

On the web we transpile the native C/C++ engine code into optimized Javascript or WebAssembly code and add some additional JavaScript “glue” code to tie it all together.

2 Likes

Nice; Crystal clear answer, Thanks

1 Like