UNPKG
three.fbo-helper
Version:
latest (1.1.1)
1.1.1
1.1.0
1.0.1
1.0.0
FrameBuffer Object inspector for three.js
github.com/spite/THREE.FBOHelper
spite/THREE.FBOHelper
three.fbo-helper
/
demo
/
node_modules
/
three
/
src
/
objects
/
RenderObject.js
18 lines
(10 loc)
•
253 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/** *
@author
mrdoob / http://mrdoob.com/ */
THREE
.
RenderObject
=
function
(
) {
THREE
.
Object3D
.
call
(
this
);
this
.
type
=
'RenderObject'
; };
Object
.
extend
(
THREE
.
RenderObject
.
prototype
,
THREE
.
Object3D
.
prototype
, {
render
:
function
(
) {} } );