3D

PointLight3D

Point light node.

PointLight3D embeds Node3D and includes light intensity/range fields.

Base node: Node3D

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

pub struct PointLight3D {    pub base: Node3D,    pub color: [f32; 3],    pub intensity: f32,    pub range: f32,    pub active: bool,}