glow static method

VRMaterial glow({
  1. Color color = const Color(0xFF00CED1),
  2. double intensity = 1.0,
})

Emissive glow material.

Implementation

static VRMaterial glow({
  Color color = const Color(0xFF00CED1),
  double intensity = 1.0,
}) {
  return VRMaterial(color: color, emissive: color, opacity: intensity);
}