{"author_link":"\/users\/nnnnneeeedddd","author_name":"Nnnnneeeedddd","author_uid":"1000766","comments":[{"author_name":"bwalter","author_uid":"1003086","time":"2017-08-01T18:56:02Z","epoch":1501613762,"modified":1501613762,"text":"a nice little game :)","likes":1,"format":"md"},{"author_name":"BaconGamer88","author_uid":1003300,"time":"2017-08-02T13:41:33Z","epoch":1501681293,"modified":1501681293,"text":"Looks awesome, but I sadly can't rate :(","likes":1,"format":"md"},{"author_name":"zulubo","author_uid":"1032846","time":"2017-08-02T13:47:57Z","epoch":1501681677,"modified":1501681677,"text":"Very fun! My one complaint is that the gravity is much too high. It makes it feel like the whole game is in fast-motion","likes":1,"format":"md"},{"author_name":"Simon Millard","author_uid":"1003645","time":"2017-08-02T13:48:37Z","epoch":1501681717,"modified":1501681717,"text":"Very neat game! The graphics are awesome, and it's fun to play! I have to subtract a little bit from the otherwise excellent overall score because the theme isn't very strong, and it's quite a generic game without much innovation. But there is no doubt that this is a little gem - well done :)","likes":2,"format":"md"},{"author_name":"rigdonware","author_uid":"1034728","time":"2017-08-02T13:48:49Z","epoch":1501681729,"modified":1501681729,"text":"That was a pretty fun game! Level 4 was pretty difficult! ","likes":1,"format":"md"},{"author_name":"Bonelazy","author_uid":"1033874","time":"2017-08-02T19:09:51Z","epoch":1501700991,"modified":1501700991,"text":"It was pretty difficult and eventually I had to give up at the end to keep my sanity :) It was a fun little platformer though. My only complaint is what @zulubo said. Good job.","likes":1,"format":"md"},{"author_name":"mathijs750","author_uid":"1001012","time":"2017-08-03T13:28:43Z","epoch":1501766923,"modified":1501766923,"text":"Fun little platformer. The camera could use some love, it feels too snappy in tight spaces and too slow when you fall down a pit. As others have said level 4 is very difficult, I think that is partially because how the controls and camera work. I liked the in-game tutorial, but the text should have been 2D, the parallax on the letters mad it hard to read.","likes":0,"format":"md"},{"author_name":"Epono","author_uid":"1036131","time":"2017-08-03T15:13:15Z","epoch":1501773195,"modified":1501773195,"text":"Nice gameplay, jumps are a little too rigid though I think.","likes":2,"format":"md"},{"author_name":"Nnnnneeeedddd","author_uid":"1000766","time":"2017-08-04T11:20:41Z","epoch":1501845641,"modified":1501847910,"text":"@mathijs Yea, so, this game was made without an engine, if you look at the code you will see what I mean ;).\nSo I didn't really have time to make small tweaks with the camera, text, gravity etc... Valid points though, next Ludum Dare, I will write some base code or something. Also, the gravity is still way lower than it is in the real world, I feel like some of you are just comparing it to other platformers, and you shouldn't just complain when stuff is different to other games. It's just *different* it's not *wrong*.","likes":1,"format":"md"},{"author_name":"Snirp","author_uid":"1033942","time":"2017-08-12T19:16:23Z","epoch":1502565383,"modified":1502565383,"text":"Tough as nails, I couldn't get very far. ","likes":0,"format":"md"},{"author_name":"IcyLava","author_uid":"1002251","time":"2017-08-15T16:12:03Z","epoch":1502813523,"modified":1502813523,"text":"@nnnnneeeedddd You say that you've set the gravity to be much lower than in the real world, but it's clearly very intense, so I looked at your code and...\n```\nvoid Player::update() {\n  ...\n\n  acceleration += glm::vec2(0.f, -0.025f);\/\/gravity\n  velocity += glm::vec3(acceleration, 0.);\n}\n```\nAre you... accelerating acceleration??\n\nGravity doesn't increase acceleration, it IS acceleration, so it should be\n```\n\/\/ = not +=\nacceleration = glm::vec2(0.f, -9.8f \/ 60.0f);\n\/\/ 9.8 might not be the right value for your game, though. In my game, I used 9.8 * 4.\n\/\/ You might need to decrease the jumping force too.\n\n\/\/ Also, since it's constant, you don't need to set it every frame.\n\n\/\/ You can actually just do this instead:\nvelocity += glm::vec3(0.0, -9.8f \/ 60.0f, 0.0); \/\/ gravity\n```\nWith the code you have now, gravity accelerates up to 45 m\/s^2 in just 0.5 seconds! So at that point, it's almost 5 times stronger than normal gravity. That's why it feels like the gravity is strong, it's because it mostly is :P . How tall your player is also affects how intense the gravity feels, if it's human-like it should be about 1.8 meters.\n\nYou might want to watch this when you have some time: https:\/\/www.youtube.com\/watch?v=hG9SzQxaCm8\n\nAlso, you're doing this in `void Player::doMovement(GLFWwindow* window)` too, although in this case maybe it's not that bad.\n\nSo, yeah... anyway, mainly I had the same issues with the game as other people (the jump, camera etc.)\n\nBut great job on making this with no engine!","likes":1,"format":"md"},{"author_name":"IcyLava","author_uid":"1002251","time":"2017-08-15T16:12:03Z","epoch":1502813523,"modified":1502813852,"text":"I've published my comment multiple times and made duplicates, sorry :P","likes":0,"format":"md"},{"author_name":"IcyLava","author_uid":"1002251","time":"2017-08-15T16:12:03Z","epoch":1502813523,"modified":1502813792,"text":"-duplicate","likes":0,"format":"md"},{"author_name":"IcyLava","author_uid":"1002251","time":"2017-08-15T16:14:19Z","epoch":1502813659,"modified":1502813802,"text":"-duplicate","likes":0,"format":"md"},{"author_name":"Manumeq","author_uid":"1038969","time":"2017-08-22T14:58:34Z","epoch":1503413914,"modified":1503413914,"text":"Superb game. It was a lot of fun and I found it challenging in a good way. The music and effects are really nice too, and fit with the theme of the Jam. However the movement speed for the character is a bit to high for some parts of the levels. I would strongly suggest to add some kind of \"walking button\" to hold when you need to go a bit slower. Also incredible work, specially since the game is pure c++ and not some typical engine. Cheers!","likes":1,"format":"md"},{"author_name":"Nnnnneeeedddd","author_uid":"1000766","time":"2017-08-28T13:52:09Z","epoch":1503928329,"modified":1503928329,"text":"@icyLava thanks for the in depth comment, I will check out that video. In terms of accelerating acceleration, that's not actually what is happening here, although it looks like it, this code isn't written particularly well (not very readable as demonstrated), but.... It's a Ludum Dare. Anyway, the acceleration variable, is actually acting as the velocity variable here, that is why there is confusion, the reason for that is it's set up so the 'velocity' variable is zeroed every tick(), this is for collision reasons, and the terminology is fucked because of later changes in design (but rushed). Anyway, you are completely right that the code is technically wrong, but because it doesn't read right, not because it doesn't work... I loved your comment :) :)\n\nNed","likes":1,"format":"md"}],"format":"md","images":["ld39\/33183-3ff404ec29fde26ab55c6b51c2b5bff9.png"],"links":[{"url":"https:\/\/drive.google.com\/open?id=0B9e_ZRFruqXvbWIzYWFIenpqbmM","text":"Windows"},{"url":"","text":"Windows"}],"metadata":{"g_key":"50652","g_author":"1000766","g_event":"LD39","g_eventkey":"74","g_subevent":"COMPO","g_urlkey":"233888","g_title":"Plutonium","g_status":"USEAR3","g_place":"489","g_commentcount":"16","g_site2_node_id":"33183","g_hide":"N","g_has_icon":"Y","g_rqueue":"0","g_random":"0"},"nds":{"n_key":"33183","n_urlkey":"233888","n_parent":"32802","n_path":"\/events\/ludum-dare\/39\/plutonium","n_slug":"plutonium","n_type":"item","n_subtype":"game","n_subsubtype":"compo","n_author":"766","n_created":"1499887915","n_modified":"1501669306","n_version":"132788","n_status":"COMMIT"},"node":{"id":33183,"parent":32802,"superparent":9,"author":766,"type":"item","subtype":"game","subsubtype":"compo","published":"2017-07-31T02:58:28Z","created":"2017-07-12T19:31:55Z","modified":"2017-08-02T10:21:46Z","version":132788,"slug":"plutonium","name":"Plutonium","body":"For this Ludum Dare I wanted to make a 3D platformer, whether it fit the theme or not.\nThe platformer that I made, sort of follows the theme.\nI am very happy with it.\nThe last two levels are very tricky, until then it's ok.\n\nIf you are downloading the source, you have a Visual Studio 2017 solution.\nJust make sure that you run in x86, and it should run, you may need to add OpenAL32.dll (from OpenAL Soft) to the Release, or Debug folders.\n\nHave fun!!\n\nNed\n\nEDIT--------------------------\n\nSo after playing the game, I have realized that the last level is very difficult. It is all possible in separate parts, but I cannot personally complete it in all one part. Since I put time and effort into creating a win screen, I made a new version just now, that simply splits the last level into multiple. The original is still in the links section.\n\n[New Version](https:\/\/drive.google.com\/open?id=0B9e_ZRFruqXvVE1TcU1Ha05CdDA)\n\nMy friend completed the original, so it is possible :)","meta":{"cover":"\/\/\/content\/ef2\/z\/621a.png","link-01":"https:\/\/drive.google.com\/open?id=0B9e_ZRFruqXvUENoY3ZsaVN3SGs","link-02":"https:\/\/drive.google.com\/open?id=0B9e_ZRFruqXvbWIzYWFIenpqbmM","link-02-tag":"42337","link-03":"","link-03-tag":"42337","author":[766]},"path":"\/events\/ludum-dare\/39\/plutonium","parents":[1,5,9,32802],"love":0,"notes":16,"notes-timestamp":"2017-08-28T13:52:09Z","grade":{"grade-01":14,"grade-02":14,"grade-03":14,"grade-04":14,"grade-05":14,"grade-06":13,"grade-07":14,"grade-08":14},"magic":{"cool":102.87139676239,"feedback":9,"given":13.625,"grade":13.875,"grade-01-average":3,"grade-01-result":489,"grade-02-average":3,"grade-02-result":401,"grade-03-average":2.083,"grade-03-result":642,"grade-04-average":2.667,"grade-04-result":609,"grade-05-average":2.833,"grade-05-result":472,"grade-06-average":2.545,"grade-07-average":2.083,"grade-07-result":388,"grade-08-average":2.667,"grade-08-result":453,"smart":8.5754018467298}},"text":"For this Ludum Dare I wanted to make a 3D platformer, whether it fit the theme or not.\nThe platformer that I made, sort of follows the theme.\nI am very happy with it.\nThe last two levels are very tricky, until then it's ok.\n\nIf you are downloading the source, you have a Visual Studio 2017 solution.\nJust make sure that you run in x86, and it should run, you may need to add OpenAL32.dll (from OpenAL Soft) to the Release, or Debug folders.\n\nHave fun!!\n\nNed\n\nEDIT--------------------------\n\nSo after playing the game, I have realized that the last level is very difficult. It is all possible in separate parts, but I cannot personally complete it in all one part. Since I put time and effort into creating a win screen, I made a new version just now, that simply splits the last level into multiple. The original is still in the links section.\n\n[New Version](https:\/\/drive.google.com\/open?id=0B9e_ZRFruqXvVE1TcU1Ha05CdDA)\n\nMy friend completed the original, so it is possible :)","title":"Plutonium"}