123456789101112131415161718192021222324252627 |
- (function () {
- 'use strict';
- var lights;
- QUnit.module( "Lights - PointLight", {
- beforeEach: function() {
- lights = [
- new THREE.PointLight( 0xaaaaaa ),
- ];
- }
- });
- QUnit.test( "standard light tests", function( assert ) {
- runStdLightTests( assert, lights );
- });
- })();
|