FoonLudum Dare ExplorerUsers → MathFehr

MathFehr

Games

YearLDThemeGameDivisionRankOvFuInThGrAuMo
201740The more you have, the worse it is👥Stealing Cubesjam1193.923.753.973.633.883.373.62

Performance over time

overall score (left axis) percentile (right axis)

Scatterplots

Fun vs Overall

Innovation vs Overall

Theme vs Overall

Graphics vs Overall

Audio vs Overall

Mood vs Overall

Comments by MathFehr

LD40 — The more you have, the worse it is

Heart Of Stone by holgk 2017-12-05T03:27:38Z

Wow, that's some very nice art ;)

Cherry Creek by SecondDimension 2017-12-05T04:18:46Z

I Really enjoyed the aesthetic and the music. Also, your level generator works particularly well !

Stealing Cubes by VengeurK 2017-12-07T03:00:32Z

Thanks you all for your encouraging comments! That's our first game jam for all of us, and we are really happy to see that you like the game ;).

Stealing Cubes by VengeurK 2017-12-07T03:37:55Z

I also see that many of you liked the idea of being inside a sphere. Since some of you might be interested (like @kapura), i'll try to explain simply how we implemented it!

We did it in three simple steps: - We created the sphere in blender to reverse the normals (so we can see the interior of the sphere). - We added a central gravity with a simple script. (To have the same effect with the particles, we added a central wind force). - We added a script to update the rotation of the moving entities (the player) at each update. That part is important, because otherwise you would need constantly to look up when walking. To do the update, we project the forward vector of the entity to the plane tangent to the sphere to get the new forward vector.

That's basically all we did to have a world inside a sphere. If you have any questions, feel free to ask ;).