Absolutely, as long as proper credit is given, go for it! I'm happy the game made you feel so nostalgic, that's what I was going for with this project :)
Spinning Punch Studios
Creator of
Recent community posts
https://www.fiverr.com/jokeriino/provide-a-pixel-art-planet-animation-or-sprites...
this guy is charging people for pixel art planets he's making with this page. Report this to get it taken down
the controls are impossible to get down and they feel inconsistant. There is no consistant build from easy to hard the game just starts with these frustrating controls and obsticals which discouraged me from even playing further than half of this game, I did finish however but in the end i felt i accomplished nothing but stress and irritation. This game is not "challenging", its just flat out so irritating its boring.
I'm pretty sure i did something like this in the code:
if(Input.GetAxis("Mouse ScrollWheel") > 0) block++;
if(Input.GetAxis("Mouse ScrollWheel") < 0) block--;
if(block < 0) block = maxBlock;
if(block > maxBlock) block = 0;
I looked for an input axis rather than a Input.GetKeyDown, so just replace this section with something like that.
the graphics and gamplay all tie together very well. however the controls are too fast and feel uncontrollable. it's to the point where timing jumps properly would only occur from pure luck. There are also no given goals in the game and you have to find them out for yourself, some direction would be nice. overall very cute and fun game though but it has room for improvement!
I have over 6 years experience in music composition and production as well ass sfx and miscellaneous sound design. I can produce any kind of music/sfx you need for your game or any project of the sort.
for music I offer $40 per 2-4 minute track, for Sounds I offer roughly a $1-$2 per sound clip depending on how long it needs to be (wether it's an ambiance loop, or like a simple quick sound effect) prices are negotiable as well.
I can create a wide varity of genres you need for your music including orchestral, ambient, retro/chiptune, electronic, upbeat, EDM, dubstep, melodic, etc.
I have a wide skillset for sound and I'd love to hear from you if any of this would play useful to your projects!
Thanks for playing! Yeah the game has it's bugs.
Looks like i must have uploaded the game with a save file that already exists. So in turn it loads that world that i last generated, however each time it does generate a different terrain.
I really appreciate the feedback and I'm glad you enjoyed my recreation!
In a way, yes. Except not Unity's built in Mathf.PerlinNoise. As that method generates 2D noise. What i did was i used a 3D perlin noise script (that was not made by me) and modified it to be more concentrated the lower the y axis is, thus making a hilly terrain. I used the same algorithm but without the y axis modification to generate the caves, as well.