mirror of
https://github.com/MapMakersAndProgrammers/Alternativa3D.git
synced 2025-10-27 02:19:11 -07:00
Fixed spot lights parsing from A3D
This commit is contained in:
@@ -426,7 +426,7 @@ package alternativa.engine3d.loaders {
|
|||||||
|
|
||||||
for each (a3DSpotLight in a3d.spotLights) {
|
for each (a3DSpotLight in a3d.spotLights) {
|
||||||
var resSpotLight:SpotLight = new SpotLight(a3DSpotLight.color, a3DSpotLight.attenuationBegin, a3DSpotLight.attenuationEnd, a3DSpotLight.hotspot, a3DSpotLight.falloff);
|
var resSpotLight:SpotLight = new SpotLight(a3DSpotLight.color, a3DSpotLight.attenuationBegin, a3DSpotLight.attenuationEnd, a3DSpotLight.hotspot, a3DSpotLight.falloff);
|
||||||
resSpotLight.intensity = a3DOmniLight.intensity;
|
resSpotLight.intensity = a3DSpotLight.intensity;
|
||||||
resSpotLight.visible = a3DSpotLight.visible;
|
resSpotLight.visible = a3DSpotLight.visible;
|
||||||
resSpotLight.name = a3DSpotLight.name;
|
resSpotLight.name = a3DSpotLight.name;
|
||||||
parents[resSpotLight] = a3DSpotLight.parentId;
|
parents[resSpotLight] = a3DSpotLight.parentId;
|
||||||
|
|||||||
Reference in New Issue
Block a user