Search found 1 match

by nander
Sun Jan 28, 2018 3:09 pm
Forum: General
Topic: Hot reload plugin that actually works?
Replies: 49
Views: 32101

Re: Hot reload plugin that actually works?

Hot reloading is basically impossible if you want to maintain state*. The problem is, your data may have been put in a state that doesn't fit your new code as well. If you only want to be able reload when the data-model doesn't change, then an Entity Component System can help you out. You would need...