Дядя Женя
Design/Pattern/Architecture help needed
of course I could make insanely large class containing every possible delta and make a tower of
if
statements in the response handler. That would even be fast server-side because server is on TypeScript and doesn't need to create full object to serialize. But I feel there is something better12 replies
Design/Pattern/Architecture help needed
And this was just one example. What I want is the underlying system that would help me to synchronize any data that could've possibly changed during any request processing. As well as triggering any animations or popups that may be needed in the process.
12 replies
✅ Is there a library for processing FBX or GLTF files?
If you need that for Unity, however, unity can also act as rendering engine, and in case you're ok with the result quality just load all of the models to unity, bump it on the scene and render to texture via script, no need in 3rd party plugins for that
21 replies
Are there multiple types of compiled code? Can I get a simplified explanation of what it is?
not truly an expect of super-low-level stuff myself, but trying to answer your general question: every program you create in some way ends up being a list of assembly instructions that are given to your OS to interpret further to run commands on your CPU.
Some programming languages, often referred to as low-level programming languages are compiled directly into those assembly instructions. Other languages do it other ways. Some are compiling themselves into one of those low-level languages that are then compiled into assembly, some, like javascrtipt, are interpreted in runtime by other programs
24 replies