Hey guys, I’m just a noob for dev games…I have some basic questions for dev games on Ardunio IDE
1.Which program language should I must learn for dev games on Arduboy? Is it JS?
2.I haven’t seen any tool can make me easier to creat UI or something else like Unity, should I must code everything by myself?
Arduino devices use C++ because C++ gives a good balance of high-level things (like classes) and low level things (like pointers).
The code can be structured and still communicate directly with hardware.
C# is reliant on its garbage collector, and Javascript is dynamically typed, so neither are a particularly good match for something with a small amount of memory.