Communicating with Modelers

Started by
6 comments, last by Orymus3 8 years, 5 months ago

I work with a very small team on which I am the main Programmer and Game Designer, and I can't seem to communicate effectively to the teams modelers what criteria I have for certain models for the game. We haven't been able to find anyone to do concept art for us, so we've been resorting to google image search where I try to identify major the main features of an image that I'd like to see in the model itself. But even with that, I still get models back that are borderline unusable because the design itself is flawed.

One example is a door that will be used throughout many of the games levels, in the prototype I created it as two blocks that slide apart and made sure to make it extremely wide (4 times as wide as it is tall) and the example that I gave the artists was also wider than it was tall; however the model that the artists created was more squarish. (Just as wide as it was tall). My reasoning for making to door so wide is because the player could otherwise get stuck on it very easily, so changing the design to fit the model is difficult here.

I don't blame the modelers for that kind of thing because I know we aren't giving them a whole lot to go on, but at the same time I'm not sure how to identify these possible issues before they occur (and as a programmer that drives me insane >.<). On one hand, I can't modify everything in the game to fit whatever crazy ideas the modelers come up with, but on the other I don't want to tell them that hours of their life have been wasted on a flawed design partially because I couldn't communicate the goal effectively.

I thought running through and blocking out all of the models and the basic collision for each level would be enough to relay the idea, but apparently it isn't. Another example is a mech we have in the game - the blocked version has one blaster on it with the other arm down to the side, and it only shoots from one arm. However, the modelers created one with blasters one both arms. (Which isn't that hard for them to fix, but I still am not sure where the error in communication is).

I'm currently tempted to go through the each level and model a 'concept' version of everything in blender, but I know that would almost double the estimated remaining development time. I'm just not sure what to do :/

Advertisement


We haven't been able to find anyone to do concept art for us

This is exactly your problem. Try drawing up simple sketches if you can't find anyone.

Zeyro, is there a language barrier? Have you tried talking to the modelers and explaining why the doors need to be wider, and why the mechs should have weapons in only one arm?
I mean, the job of coordinator/producer (which is your position, I guess) is mainly communication. Your being lead programmer and lead designer AND coordinator/producer ... well, that sounds very challenging!

-- Tom Sloper -- sloperama.com


One example is a door that will be used throughout many of the games levels, in the prototype I created it as two blocks that slide apart and made sure to make it extremely wide (4 times as wide as it is tall) and the example that I gave the artists was also wider than it was tall; however the model that the artists created was more squarish.

you know the scale used by the game, so you should be able to specify the size of all assets required. IE it helps if you tell them how big the door should be, if that's a constraint. fortunately, a door should be easy to scale to the correct size.


but at the same time I'm not sure how to identify these possible issues before they occur

you must clearly spell out all design constraints before modeling begins. even obvious ones like don't add a weapon on the other arm of the mech. artists will take artistic freedoms whenever possible, sometimes in detrimental ways - especially ones with little gamedev related experience. i've had to deal with experienced artists with little game related experience running amok myself in the past. adding another weapon does seems a bit much though. bet a dollar they never worked on games before.

you need to make them understand that they are there to build what you tell them to build, the way you tell them to build it, as specified by the game's design, not what they think looks cool. if they can't handle that, get someone who can.

Norm Barrows

Rockland Software Productions

"Building PC games since 1989"

rocklandsoftware.net

PLAY CAVEMAN NOW!

http://rocklandsoftware.net/beta.php

This type of communication often falls on the shoulders of the designer.

Designers need to document and explain the design to all the groups; the programmers, modelers, animators, audio, effects, and QA groups all need to understand what the thing is supposed to do.

Part of that understanding includes knowing why a thing needs to be that way. In this case, perhaps a single line would have prevented the problem: Doorway needs to be at least 4 units wide to accommodate pathfinding.

For doorways on other projects we've tended to ignore pathfinding and use a portal system. Doorway elements (bridges, doors, teleporters) include marked locations (like a named joint) to allow animations to hook up cleanly. The object needs to walk to the marked location with the correct orientation, play the animation set associated with the object's motion, then resume from the exit location. This allows for things like gates that need to be opened and closed, one-way portals, and other object properties.

We write up extremely detailed work briefs, outlining all of the requirements and constraints for that specific bit of art (and linking to the project-wide technical and style guideline documents). Usually they contain concepts, but a collage made of stock photos is often also used.

Asset briefs are a key. I spend a good lot of time writing these up with a number of key art refs, writeups and some sketches of my own. Simple assets can sometimes takes up to 2-3 pages depending on technical constraints (including small image refs mind you).

It takes a while to write, but it is a life saver as the projects move forward, I suggest you pause and start documenting these more efficiently, and if you have such technical constraints, clearly state them, and if you must, clearly identify a 'technical constraints' box in the asset brief. You can't have the artist run around based off conversation notes.

What I will say next is probably largely untrue, but from my experience, artists tend to be less technical and more creative, which also inherently tend to make them less efficient at making mental or physical notes of discussions, making asset briefs, charts, and refs much better tools of communication.

As a designer/programmer, you should be better acquainted with data manipulation and it should be easier for you to organize that information so use this advantage to process it for them and make it intelligible. Establish a system. Create asset briefs!

This topic is closed to new replies.

Advertisement