Преглед на файлове

SpotLightShadow: Add missing copy() method. (#21527)

Michael Herzog преди 4 години
родител
ревизия
9ce67faf79
променени са 1 файла, в които са добавени 10 реда и са изтрити 0 реда
  1. 10 0
      src/lights/SpotLightShadow.js

+ 10 - 0
src/lights/SpotLightShadow.js

@@ -33,6 +33,16 @@ class SpotLightShadow extends LightShadow {
 
 	}
 
+	copy( source ) {
+
+		super.copy( source );
+
+		this.focus = source.focus;
+
+		return this;
+
+	}
+
 }
 
 SpotLightShadow.prototype.isSpotLightShadow = true;