Skip to content

Commit aa6ed41

Browse files
committed
r103
1 parent 6646710 commit aa6ed41

File tree

7 files changed

+63
-81
lines changed

7 files changed

+63
-81
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Please also include a live example if possible. You can start from these templat
1919
##### Three.js version
2020

2121
- [ ] Dev
22-
- [ ] r102
22+
- [ ] r103
2323
- [ ] ...
2424

2525
##### Browser

build/three.js

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@
185185

186186
} );
187187

188-
var REVISION = '103dev';
188+
var REVISION = '103';
189189
var MOUSE = { LEFT: 0, MIDDLE: 1, RIGHT: 2 };
190190
var CullFaceNone = 0;
191191
var CullFaceBack = 1;
@@ -45182,13 +45182,6 @@
4518245182

4518345183
function GridHelper( size, divisions, color1, color2 ) {
4518445184

45185-
this.parameters = {
45186-
size: size,
45187-
divisions: divisions,
45188-
color1: color1,
45189-
color2: color2
45190-
};
45191-
4519245185
size = size || 10;
4519345186
divisions = divisions || 10;
4519445187
color1 = new Color( color1 !== undefined ? color1 : 0x444444 );
@@ -45232,8 +45225,6 @@
4523245225

4523345226
LineSegments.prototype.copy.call( this, source );
4523445227

45235-
Object.assign( this.parameters, source.parameters );
45236-
4523745228
this.geometry.copy( source.geometry );
4523845229
this.material.copy( source.material );
4523945230

build/three.min.js

Lines changed: 57 additions & 57 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/three.module.js

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ Object.assign( EventDispatcher.prototype, {
179179

180180
} );
181181

182-
var REVISION = '103dev';
182+
var REVISION = '103';
183183
var MOUSE = { LEFT: 0, MIDDLE: 1, RIGHT: 2 };
184184
var CullFaceNone = 0;
185185
var CullFaceBack = 1;
@@ -45176,13 +45176,6 @@ HemisphereLightHelper.prototype.update = function () {
4517645176

4517745177
function GridHelper( size, divisions, color1, color2 ) {
4517845178

45179-
this.parameters = {
45180-
size: size,
45181-
divisions: divisions,
45182-
color1: color1,
45183-
color2: color2
45184-
};
45185-
4518645179
size = size || 10;
4518745180
divisions = divisions || 10;
4518845181
color1 = new Color( color1 !== undefined ? color1 : 0x444444 );
@@ -45226,8 +45219,6 @@ GridHelper.prototype = Object.assign( Object.create( LineSegments.prototype ), {
4522645219

4522745220
LineSegments.prototype.copy.call( this, source );
4522845221

45229-
Object.assign( this.parameters, source.parameters );
45230-
4523145222
this.geometry.copy( source.geometry );
4523245223
this.material.copy( source.material );
4523345224

editor/sw.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// r102.1
1+
// r103
22

33
const staticAssets = [
44
'./',

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "three",
3-
"version": "0.102.1",
3+
"version": "0.103.0",
44
"description": "JavaScript 3D library",
55
"main": "build/three.js",
66
"repository": "mrdoob/three.js",

src/constants.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export var REVISION = '103dev';
1+
export var REVISION = '103';
22
export var MOUSE = { LEFT: 0, MIDDLE: 1, RIGHT: 2 };
33
export var CullFaceNone = 0;
44
export var CullFaceBack = 1;

0 commit comments

Comments
 (0)