setLightDirection method
Implementation
@override
Future setLightDirection(
ThermionEntity lightEntity,
Vector3 direction,
) async {
direction.normalize();
LightManager_setPosition(
app.lightManager,
lightEntity,
direction.x,
direction.y,
direction.z,
);
}