소스 검색

Remove alloc on capsule light.

clementlandrin 1 년 전
부모
커밋
daea2d886f
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      h3d/scene/pbr/CapsuleLight.hx

+ 1 - 1
h3d/scene/pbr/CapsuleLight.hx

@@ -70,7 +70,7 @@ class CapsuleLight extends Light {
 		pbr.radius = radius;
 		pbr.halfLength = length * 0.5;
 		pbr.occlusionFactor = occlusionFactor;
-		pbr.left = absPos.front();
+		pbr.left.load(absPos.front());
 		var d = range - radius;
 		pbr.invRange4 = 1 / (d * d * d * d);
 	}