A Unity ID allows you to buy and/or subscribe to Unity products and services, shop in the Asset Store and participate in the Unity community.
That is the crazy thing, there are literally no strings. You can use any engine you want, you can release on any store you want. They are really...
They are in breach but they do not have 500,000,000 dollars so Unity gives them a pass (for now).
That SpatialOS was fine and the TOS was just changed to put them out of business?
Because they got $500,000,000 investment capital and Unity wants a part of that.
Unity says that but in my eyes the new one clearly covers more cases than the old one. It is not a clarification, it is an extension. This...
Can you explain what exactly is the violation? From what I get from the old TOS and from what I know about how SpatialOS works I don't get what...
Especially since the Unity blog post did not point out how exactly the old TOS were violated. They for sure would explain that if it was water...
Flappy Bird is much too simple, the net will learn to play perfectly after a few iterations. Typical student projects often include physics, e.g....
There were solutions without IIS that were equally bad. E.g. pure .NET HTTP Listener. It did just not scale, you could add an extra CPU and gain...
The techempower benchmarks (https://www.techempower.com/benchmarks/), there are different ones. E.g. just responding to clients as fast as...
An important thing to consider is GC. If you do not code with zero allocations, which can be a pain, you will get some stutter one way or another....
Another thing is the security of your server. Just follow web-application security guidelines. E.g. only use prepared statements for SQL, and...
As other said, the server is the master. E.g. player position on the client is updated from client info (so it seems responsive), but interpolated...
Check out the comments of the community, e.g.:...
I have a deep neural net in python (using Theano), I use it from Java (it is not a game, so no Unity). I just send the data I need using TCP/IP...
Lol. All that does is turn on subdivision, it does not actually add more detail, it just gets smoother. The main hero of todays games have many...
I think if you aim for a AAA look, you have the opposite problem: the Daz model has too few polys. Most games today have much more polys for the...
The only legit answer. But why write code that only runs on one platform?
For me it was the opposite: my first companion was some guy with arrows, took him through the whole game (except final fight were he cannot join,...
Depends on how good a coder you are. If you are good, look at Ogre3D or OpenGL, should be easy. But if you are a good coder, why did you never use...