-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix client running #34
Conversation
Client application no more fails from the start.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Overall looks ok to me
;;; Missles related stuff | ||
;;; Player-related stuff: | ||
|
||
(defn enrich-player |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What do you mean by "enriching" stuff? Is that some kind of commonly known term?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The module is called richworld
. The process of conversion of ordinary world into a rich one I call "enrichment"; the same goes for player. Consulted with my dictionary.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok, thx
@@ -35,22 +49,39 @@ | |||
(if (<= delta-time simulation/simulation-step) | |||
[world delta-time] | |||
(let [broken-particles (mapcat #(break-particle % planets) | |||
(concat missiles fragments)) | |||
(concat missiles fragments)) | |||
;; FIXME: Duplicate code |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd create an issue for that
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Here it is: #35.
Thanks for the review! 🐙 |
Closes #33.
Also I've added a client startup shortcut to ease the debug experience.