Browse Source

Update AmbientLight.d.ts

ycw 4 years ago
parent
commit
38ab026122
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/lights/AmbientLight.d.ts

+ 2 - 2
src/lights/AmbientLight.d.ts

@@ -21,9 +21,9 @@ export class AmbientLight extends Light {
 	type: string;
 	type: string;
 
 
 	/**
 	/**
-	 * @default undefined
+	 * This light cannot be used to cast shadows as it does not have a direction. 
 	 */
 	 */
-	castShadow: boolean;
+	castShadow: false;
 	readonly isAmbientLight: true;
 	readonly isAmbientLight: true;
 
 
 }
 }