Correct scene model light intensity
This commit is contained in:
parent
173c08454b
commit
ef007dd9e8
@ -546,6 +546,11 @@ namespace Passer.Humanoid {
|
|||||||
loadingModel = false;
|
loadingModel = false;
|
||||||
Transform parentTransform = await InstantiateGltf(gltfImport, msg.thingId, msg.scale);
|
Transform parentTransform = await InstantiateGltf(gltfImport, msg.thingId, msg.scale);
|
||||||
ScanModelForThings(parentTransform);
|
ScanModelForThings(parentTransform);
|
||||||
|
// Correct lights
|
||||||
|
Light[] lights = parentTransform.GetComponentsInChildren<Light>();
|
||||||
|
foreach (Light light in lights)
|
||||||
|
light.intensity = 1; // light.intensity / 1000;
|
||||||
|
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
this.transform.localScale = Vector3.one * 1;
|
this.transform.localScale = Vector3.one * 1;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user