Hacker News new | ask | show | jobs
by vvanders 3689 days ago
3D stuff is definitely fun(I say this as someone who's been doing it for almost 10 years across various industries), however the one thing is the amount of work you need to do is an order of magnitude higher than traditional 2D media + code.

That usually scares off all but the most serious funding.

Once you start playing with Unity you'll see there's a whole nother side of the 3D pipeline that takes just as much effort.

1 comments

I have no experience with Unity. Can you please explain the kind of work involved? (btw I have no interest in gaming, but am interested in all non-gaming things you could possibly do with 3d-modeling, Unity, etc.)
Dealing with interchange formats(which Maya and 3DSM excel at, no idea on C4D). It's very common to find that something you've build in your authoring package doesn't import cleanly and figuring out why can take time. If you bring animation in at all you'll have to deal with skeletal rigging, and then the tooling you want to build around interaction on the unity side of things.

There's a reason that games budgets end up running very high unless you're dealing with 2D/simplified content.

There's a lot of optimization that needs done for realtime.

For any given asset you may have a pipeline like so:

Sculpt hi rez model in Z brush > create low rez model and retopologize (can be a very manual process) > UV unwrap and bake the high rez details down to Normal maps for the low rez mesh > Use DDO or Substance painter to create custom textures for diffuse, metalness, etc > Rig model (if you are animating it) Then export to the engine. Rinse and repeat based on major art changes.