light.castShadow 應該改成 spotlight.castShadow

解答: 將以下程式加到 init() 創造 renderer 之後:

1
renderer.shadowMapEnabled = true;

fillScene() 創造聚光燈後加入

1
spotlight.castShadow = true;

在創造 solidGround 之後加入:

1
solidGround.receiveShadow = true;