@@ -102,7 +102,6 @@ module.exports = {
102
102
relativePath : './cameras/CubeCamera' ,
103
103
superClass : 'Object3D' ,
104
104
properties : {
105
- type : new Types . String ( 'CubeCamera' ) ,
106
105
}
107
106
} ,
108
107
OrthographicCamera : {
@@ -116,7 +115,6 @@ module.exports = {
116
115
bottom : new Types . Float ( ) ,
117
116
near : new Types . Float ( 0.1 ) ,
118
117
far : new Types . Float ( 2000 ) ,
119
- type : new Types . String ( 'OrthographicCamera' ) ,
120
118
} ,
121
119
constructorArgs : [ 'left' , 'right' , 'top' , 'bottom' , 'near' , 'far' ] ,
122
120
} ,
@@ -133,15 +131,13 @@ module.exports = {
133
131
// view: new Types.Dict(),
134
132
// filmGauge: new Types.Float(35.0),
135
133
// filmOffset: new Types.Float(0.0),
136
- type : new Types . String ( 'PerspectiveCamera' ) ,
137
134
} ,
138
135
constructorArgs : [ 'fov' , 'aspect' , 'near' , 'far' ] ,
139
136
} ,
140
137
ArrayCamera : {
141
138
relativePath : './cameras/ArrayCamera' ,
142
139
superClass : 'PerspectiveCamera' ,
143
140
properties : {
144
- type : new Types . String ( 'ArrayCamera' ) ,
145
141
} ,
146
142
constructorArgs : [ 'fov' , 'aspect' , 'near' , 'far' ] ,
147
143
} ,
@@ -347,7 +343,6 @@ module.exports = {
347
343
attributes : new Types . ThreeTypeDict ( [ 'BufferAttribute' , 'InterleavedBufferAttribute' ] ) ,
348
344
morphAttributes : new Types . BufferMorphAttributes ( ) ,
349
345
MaxIndex : new Types . Int ( 65535 ) ,
350
- type : new Types . String ( 'BufferGeometry' ) ,
351
346
// TODO: These likely require special types:
352
347
//groups: new Types.GeometryGroup(),
353
348
//drawRange: new Types.DrawRange(),
@@ -675,7 +670,6 @@ module.exports = {
675
670
refractionRatio : new Types . Float ( 0.98 ) ,
676
671
skinning : new Types . Bool ( false ) ,
677
672
specularMap : new Types . ThreeType ( 'Texture' ) ,
678
- type : new Types . String ( 'MeshBasicMaterial' ) ,
679
673
wireframe : new Types . Bool ( false ) ,
680
674
wireframeLinewidth : new Types . Float ( 1 ) ,
681
675
wireframeLinecap : new Types . String ( 'round' ) , // TODO: enum?
@@ -1044,7 +1038,6 @@ module.exports = {
1044
1038
geometry : new Types . ThreeType ( [ 'BaseGeometry' , 'BaseBufferGeometry' ] , { nullable : false } ) ,
1045
1039
drawMode : new Types . Enum ( 'DrawModes' , 'TrianglesDrawMode' ) ,
1046
1040
morphTargetInfluences : new Types . Array ( ) ,
1047
- type : new Types . String ( 'Mesh' ) ,
1048
1041
} ,
1049
1042
propsDefinedByThree : [ 'morphTargetInfluences' ] ,
1050
1043
} ,
@@ -1682,7 +1675,6 @@ module.exports = {
1682
1675
hex : new Types . Int ( 0 ) ,
1683
1676
headLength : new Types . Float ( null , { nullable : true } ) ,
1684
1677
headWidth : new Types . Float ( null , { nullable : true } ) ,
1685
- type : new Types . String ( 'ArrowHelper' ) ,
1686
1678
} ,
1687
1679
} ,
1688
1680
AxesHelper : {
0 commit comments