3D

AmbientLight3D

Ambient light node.

AmbientLight3D is part of the 3D light family. It carries transform/visibility directly instead of a Node3D base field.

Base node: Node3D

Source: perro_core/src/nodes/node_3d/ambient_light_3d.rs

pub struct AmbientLight3D {    pub transform: Transform3D,    pub visible: bool,    pub color: [f32; 3],    pub intensity: f32,    pub active: bool,}