Kaba class Material ed

...

Syntax ed

class Material
    var albedo: Color
    var cast_shadow: bool
    var emission: Color
    var friction: Friction
    var metal: f32
    var pass0: Pass
    var roughness: f32
    var shader_path: Path
    var textures: shared![Texture][]

    # constructors
    func mut __init__()

    # nested classes
    class Friction
    class Pass

Nested classes ed

Elements ed

var albedo: Color
...

var cast_shadow: bool
...

var emission: Color
...

var friction: Friction
...

var metal: f32
...

var pass0: Pass
...

var roughness: f32
...

var shader_path: Path
...

var textures: shared![Texture][]
...