All Questions
Tagged with mvc javascript
1 question
3
votes
2
answers
734
views
Are javascript MVC model implementations too slow for games?
I wanted to implement a game in javascript with an MVC design pattern, with each entity's state stored in a model.
So for example,
In an update loop we iterate over all models and apply the velocity ...