is this the edge of the universe?
Travis Fort
Creator of
Recent community posts
My first thought is that the movement is not pixel-perfect.
Let's say your games resolution is 640x360, but it is scaled up to 1920x1080. When the sprite moves, the pixels on the sprite move at a subpixel level (essentially occupying space between two pixels), causing a visual effect that appears to be jitter. Now, this is just speculation, and may be totally wrong. But if this is the case, a way to fix it in unity would to draw your scene to a render texture.
Hm. That's a tough question, because there's so many different directions you can go with procedural generation!
A good place to start, I believe, is the PCG (Procedural Content Generation) Wiki (http://pcg.wikidot.com/). Here you can browse and gain a cursory sense of the different areas that procedural generation covers.
After you've identified an area that you like, I'd recommend diving into academic papers, blog and forum posts, and especially look at games that utilize procedural generation. Then start fiddling around in Unity or whatever. That's how I did it.
Here's some procedural generation stuff I've used in the past.
http://tinysubversions.com/spelunkyGen/ - Spelunky procedural generation
http://philipgalanter.com/generative_art/wiki/inde... - For creating tree-like stuff
http://jayelinda.com/modelling-by-numbers-part-1a/ - Procedural 3D meshes in Unity (my favorite tutorial for proc gen)
There's a lot more, obviously, and if you have an interest in a certain field than I can potentially point you in a good direction. But that's my advice for getting started.
Good luck!
If I go to https://itch.io/app and try to download, I get a bad gateway error.
For anyone using Unity, I recommend using Visual Studio Code as an editor. It has the speed and customization of Sublime Text, with debugging support and omnisense for Unity C# projects.
https://code.visualstudio.com/
-Unity Integration info : https://code.visualstudio.com/Docs/runtimes/unity
-Unity Debugging info : http://forum.unity3d.com/threads/vs-code-unity-deb...
Hey everyone I'm Travis!
I like making games that are colorful and different. I'm pretty big into non-violence... more specifically not having violence as a main mechanic or influential element in a game. I'm on twitter, mainly.
Currently I'm doing contract work to keep myself afloat, since I don't like the idea of being chained to my games making me money. Instead, I prefer creative freedom and giving myself time to explore mechanics and game stuff.
Hope that this itch community takes off!
Awesome! I did something similar with my game Dreamscape. Are you using Unity terrain or are you building a mesh procedurally?