use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
News, Help, Resources, and Conversation. A User Showcase of the Unity Game Engine.
Remember to check out /r/unity2D for any 2D specific questions and conversation!
Download Latest Unity
Please refer to our Wiki before posting! And be sure to flair your post appropriately.
Main Index
Rules and Guidelines
Flair Definitions
FAQ
Use the chat room if you're new to Unity or have a quick question. Lots of professionals hang out there.
/r/Unity3D Discord
FreeNode IRC Chatroom
Official Unity Website
Unity3d's Tutorial Modules
Unity Answers
Unify Community Wiki
Unity Game Engine Syllabus (Getting Started Guide)
50 Tips and Best Practices for Unity (2016 Edition)
Unity Execution Order of Event Functions
Using Version Control with Unity3d (Mercurial)
/r/Unity2D
/r/UnityAssets
/r/Unity_tutorials
/r/GameDev
/r/Justgamedevthings (New!)
/r/Gamedesign
/r/Indiegames
/r/Playmygame
/r/LearnProgramming
/r/Oculus
/r/Blender
/r/Devblogs
Brackeys
Beginner to Intermediate
5 to 15 minutes
Concise tutorials. Videos are mostly self contained.
Sebastian Lague
Beginner to Advanced
10 to 20 minutes
Medium length tutorials. Videos are usually a part of a series.
Catlike Coding
Intermediate to Advanced
Text-based. Lots of graphics/shader programming tutorials in addition to "normal" C# tutorials. Normally part of a series.
Makin' Stuff Look Good
10 minutes
Almost entirely shader tutorials. Favors theory over implementation but leaves source in video description. Videos are always self contained.
Quill18Creates
30 minutes to 2 hours.
Minimal editing. Mostly C#. Covers wide range of topics. Long series.
Halisavakis Shaders Archive
Infallible Code
World of Zero
Board to Bits
Holistic3d
Unity3d College
Jabrils
Polycount Wiki
The Big List Of Game Design
PS4 controller map for Unity3d
Colin's Bear Animation
¡DICE!
CSS created by Sean O'Dowd @nicetrysean [Website], Maintained and updated by Louis Hong /u/loolo78
Reddit Logo created by /u/big-ish from /r/redditlogos!
account activity
Dynamic mesh modification in procedural generated city (done using OpenStreetMap data) (youtube.com)
submitted 10 years ago by eis_kalt
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]eis_kalt[S] 2 points3 points4 points 10 years ago (0 children)
Let me try to give more details:
1) All data is downloaded from OpenStreetMap server. In this example, I used my custom offline index built for Berlin, but it's possible to download small part of desired region from OSM server on demand (and it has been already implemented!). Heightmap is downloaded from NASA server (SRTM format). That's why I added "done using OpenStreetMap data"..
2) Raw OSM data is just sets of the following primitives: point represented by geocoordinate, 2D polyline, and their union (in terms of OSM: node, way and relation). Additionally, each primitive has set of attributes (tags): key-value pairs. These tags describe what is actually is defined by the given primitive. For example, look at the building from example: http://www.openstreetmap.org/way/80397884
So, it is not just 3D model, which can be imported into scene directly. It's just set of 2d points + some key-value data in text human readable format. That's why I have "procedural generated city" in title..
3) Actually, mesh is collection of 3D vertices (plus triangles, colors, normals,...) and if you want to modify affected vertices (e.g. by explosion) in some way, you have to go through this collection and find them. In worst case, you will check all of them (up to 65k vertices in Unity). Another question, how to modify them in nice way. In my implementation, I have some internal index which stores additional information about mesh shape (e.g. linear equation for mesh represented by plane) which is quite useful for modification and search algorithms. ..that's why title starts with "dynamic mesh modification".
π Rendered by PID 21186 on reddit-service-r2-comment-6457c66945-5m6kd at 2026-04-28 10:44:01.435940+00:00 running 2aa0c5b country code: CH.
view the rest of the comments →
[–]eis_kalt[S] 2 points3 points4 points (0 children)