OSDN Git Service

three.jsをThirdPartyに追加
[webglgame/webgl_framework.git] / webglFramework / Thirdparty / three.js-master / test / unit / src / lights / AmbientLight.tests.js
1 (function () {
2
3         'use strict';
4
5         var lights;
6
7         QUnit.module( "Lights - AmbientLight", {
8
9                 beforeEach: function() {
10
11                         lights = [
12
13                                 new THREE.AmbientLight( 0xaaaaaa ),
14
15                         ];
16
17                 }
18
19         });
20
21         QUnit.test( "standard light tests", function( assert ) {
22
23                 runStdLightTests( assert, lights );
24
25         });
26
27 })();