478

Creating new node types
IS example code

PROTO Robot [
    field SFColor eyeColor 1.0 0.0 0.0
    . . .
] {
    Shape {
        appearance Appearance {
            material Material {
                diffuseColor IS eyeColor
            }
        }
        . . .
    }
}