Sandy Maguire
Sandy Maguire
these would be fantastic!
Wow! I had no idea anyone had ever looked at adventure, let alone written a game on it! For the last few years I've considered this project to be abandoned,...
PS, I had a quick look through your game code, and it looks like maybe you haven't discovered the editor mode yet =) Hitting `E` in the game will drop...
You should be able to install tinyxml through your package manager. Hopefully the cmake files will automatically link it from your /lib. Same goes for jansson. That being said, I'm...
I'm using a new middleware engine, so I don't have any control over that. MY code will work on OSX , but there's no guarantee there will be an environment...
Here are the splices: ```haskell typecheck_delEntity :: Id -> System w_a3mz0 -> System w_a3mz0 typecheck_delEntity ix_a3mz2 w_a3mz3 = (unmodel $ (\ ix'_a3mz4 -> case (ix_a3mz2 == ix'_a3mz4) of True ->...
What's going wrong here? It's the `unmodel`! That thing is picking the _ModelOf_ for functions, which is wrong in this context, because we're explicitly not using those ctors. The fix?...
Does ModeledBy buy us anything now? I am not sure. The original goal for it was to be easy for humans to work with, but that is no longer a...
But I guess that's not relevant. The problem here is just that `ModelOf` is wrong for functions; it should be `ModelOf (a -> b) = ModelOf a -> ModelOf b`...
But now we have the wrong variance and can't actually implement that. https://www.youtube.com/watch?v=Fr0A7TofowE