Art Style (Zelda Wind Waker)

Started by
9 comments, last by Darkbouncer4689 12 years, 8 months ago
Hey all,

I'm hoping to get some help from some experienced artists/graphics programmers on determining what needs to be implemented in a game engine to support an art style similar to Zelda's wind waker.

A few images can be located here:
[media]http://www.n-sider.com/media/windwaker-r-3.jpg[/media]
[media]http://www.n-sider.com/media/windwaker-r-1.jpg[/media]
[media]http://www.n-sider.com/media/windwaker-r-2.jpg[/media]
[media]http://www.n-sider.com/media/windwaker-r-4.jpg[/media]

To me it looks like they just use some bright colors and a little bit of shadowing, but I'm a noob and inexperienced.

I'm not completely dedicated to this art style but I am hoping to be able to have lightweight models (low vertex count, low animation costs, low texturing quality) while still having a decent looking game, and I suspect that these cartoonish NPR art styles can accomplish that.
Advertisement
Your image links are broken for me.

I personally don't like wind-waker's graphics, but you might want to talk to the person who wrote this recently in the art forum:

Wind-Waker's graphics [...] I loved them, and have modeled quite a few things off of them.

I want to help design a "sandpark" MMO. Optional interactive story with quests and deeply characterized NPCs, plus sandbox elements like player-craftable housing and lots of other crafting. If you are starting a design of this type, please PM me. I also love pet-breeding games.


I personally don't like wind-waker's graphics, but you might want to talk to the person who wrote this recently in the art forum:


I'm not in love with them either, but I need low performance graphics and I assume they will deliver. Any comments on that topic?

Thanks =)

[quote name='sunandshadow' timestamp='1313960308' post='4852008']
I personally don't like wind-waker's graphics, but you might want to talk to the person who wrote this recently in the art forum:


I'm not in love with them either, but I need low performance graphics and I assume they will deliver. Any comments on that topic?

Thanks =)
[/quote]

Windwaker wasn't made of exactly low-performance graphics. The models were decently articulated,and the game made fair use of postprocessing, animations and particle effects. The DS versions on the other hand were quite low-poly. NPR can cost just as much as any other shading solution, they tend to be fairly heavy with processing steps.

I'm hoping to get some help from some experienced artists/graphics programmers on determining what needs to be implemented in a game engine to support an art style similar to Zelda's wind waker.
To me it looks like they just use some bright colors and a little bit of shadowing, but I'm a noob and inexperienced.
I'm not completely dedicated to this art style but I am hoping to be able to have lightweight models (low vertex count, low animation costs, low texturing quality) while still having a decent looking game, and I suspect that these cartoonish NPR art styles can accomplish that.

The trick with celshading is that you can do most lighting per vertex, based in the light intensity you calculate a UV coordinate into a gradient texture, all you need to do per pixel is to read a texture and show it.

if addition, especially for bigger objects, it can be useful to have a diffuse texture or even pre-baked lighting.




Windwaker wasn't made of exactly low-performance graphics. The models were decently articulated,and the game made fair use of postprocessing, animations and particle effects. The DS versions on the other hand were quite low-poly. NPR can cost just as much as any other shading solution, they tend to be fairly heavy with processing steps.


Interesting. If i had my choice I'd like to have graphics similar to sims 3. I assumed that the somewhat realism they have would be costly on performance. Would you say that this may not be true?

Thanks for all of the help!
.
Sorry some type of error occured that made me multiple post. Would delete if I could!

Interesting. If i had my choice I'd like to have graphics similar to sims 3. I assumed that the somewhat realism they have would be costly on performance. Would you say that this may not be true?
[/quote]

Ultra realism is costly on performance, but very few games pull that off anyway. Basic lighting and shadows are quite achieveable on low end hardware, look at the tech that was in doom3 engine (which was ported to iOS3 generation iPhones!).

My point is that NPR is just as expensive if it not more when you go for stylized looks:
- If you want everything cheap, don't light it at all. Or at least, restrict how many lights you have.
- Cell shading costs a fraction more performance wise than smooth lighting per light.
- Shadows will cost the same pretty much either way, its up to the shadowing technique used, not the lighting solution.

Also:
- Poly counts aren't as important these days as number of draw calls / state switches (though the cost of polys does build up due to vertex shader overheads & memory bandwidth etc)
- Sizes of textures wont help all that much, as long as you are correctly mip mapping them. Though cartoony texture can be compressed better.
- Animations can get expensive based on the number of instances & bones in each instance, but a well designed system can accomodate for this by doing interpolation/extrapolation tricks.

Whats your target hardware?
If you are only deving for PC, don't bother targetting low end hardware. You're only holding yourself back otherwise, the recent hardware and API changes are there to be used.
If you are aiming for handheld, don't restrict your vision but be prepared to sacrifice quality somewhere (and have a good LOD system!)


Sorry some type of error occured that made me multiple post. Would delete if I could!


Theres a delete button for any post you create yourself underneath it, where the quote/reply buttons usually are.


Interesting. If i had my choice I'd like to have graphics similar to sims 3. I assumed that the somewhat realism they have would be costly on performance. Would you say that this may not be true?


Ultra realism is costly on performance, but very few games pull that off anyway. Basic lighting and shadows are quite achieveable on low end hardware, look at the tech that was in doom3 engine (which was ported to iOS3 generation iPhones!).

Theres a delete button for any post you create yourself underneath it, where the quote/reply buttons usually are.
[/quote]

Amazing post Digital, thanks for all of the info. I checked out doom resurrection, can't believe thats running on a 1ghz processor.

My target is PC's but the engine is written in javascript and runs in the browser. I believe that with WebGL's hardware accelerated graphics I'm facing the same GPU constraints as a compiled PC game written in say c++, but I'm worried about the CPU constraints when having an engine in javascript. As there is no game logic yet, my biggest CPUconstraints are intersection tests and setting up my skeleton for animation (interpolating between keyframes). Also, I have to worry about the size of artwork as it all has to be sent across the wire at load time. Thanks for all of the info =)


I tried the delete button and I get a no mod error, not sure =/

This topic is closed to new replies.

Advertisement