GSoC/GCI Archive
Google Code-in 2012 Copyleft Games Group

PySoy: Flat Materials

completed by: Мартин Кирилов

mentors: Amaury Medeiros, Arc Riley, Tony Young, David Czech, Mayank Singh

Tweaking the properties of a material to look good takes time, its often useful to have standard named materials ready to use, ie:

material = soy.materials.Colored() material.ambient = soy.atoms.Color('red') material.diffuse = soy.atoms.Color('red') material.specular = soy.atoms.Color('white') material.shininess = 0.2

Could instead be written as:

material = soy.materials.Colored('red')

Design 10 flat materials of different colors (eg, red, white, green, blue) which shade well under white light and add them to the soy.materials.Colored class.

While working on this task you should join and remain in #PySoy on Freenode to get help, feedback, and guidance from mentors and other developers. Code updates which may affect your work are also announced here as they happen.

When you've done, commit your work and post the resulting changeset url to this task.