forked from alfa256/aframe-mirror-component
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaframe-mirror-component.js
150 lines (122 loc) · 4.4 KB
/
aframe-mirror-component.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
/******/ // The require function
/******/ function __webpack_require__(moduleId) {
/******/ // Check if module is in cache
/******/ if(installedModules[moduleId])
/******/ return installedModules[moduleId].exports;
/******/ // Create a new module (and put it into the cache)
/******/ var module = installedModules[moduleId] = {
/******/ exports: {},
/******/ id: moduleId,
/******/ loaded: false
/******/ };
/******/ // Execute the module function
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
/******/ // Flag the module as loaded
/******/ module.loaded = true;
/******/ // Return the exports of the module
/******/ return module.exports;
/******/ }
/******/ // expose the modules object (__webpack_modules__)
/******/ __webpack_require__.m = modules;
/******/ // expose the module cache
/******/ __webpack_require__.c = installedModules;
/******/ // __webpack_public_path__
/******/ __webpack_require__.p = "";
/******/ // Load entry module and return exports
/******/ return __webpack_require__(0);
/******/ })
/************************************************************************/
/******/ ([
/* 0 */
/***/ (function(module, exports) {
/* global AFRAME */
if (typeof AFRAME === 'undefined') {
throw new Error('Component attempted to register before AFRAME was available.');
}
/**
* Mirror Material component for A-Frame by Alfredo Consebola 2017.
*/
AFRAME.registerComponent('mirror', {
schema: {
resolution: { type:'number', default: 128},
refraction: { type:'number', default: 0.95},
color: {type:'color', default: 0xffffff},
distance: {type:'number', default: 3000},
interval: { type:'number', default: 1000},
repeat: { type:'boolean', default: false}
},
/**
* Set if component needs multiple instancing.
*/
multiple: false,
/**
* Called once when component is attached. Generally for initial setup.
*/
init: function(){
this.counter = this.data.interval;
this.cam = new THREE.CubeCamera( 0.5, this.data.distance, this.data.resolution);
this.el.object3D.add( this.cam );
this.mirrorMaterial = new THREE.MeshBasicMaterial( { color: this.data.color, refractionRatio: this.data.refraction, envMap: this.cam.renderTarget.texture } );
this.done = false;
var mirrormat = this.mirrorMaterial;
this.mesh = this.el.getObject3D('mesh');
if(this.mesh){
this.mesh.traverse( function( child ) {
if ( child instanceof THREE.Mesh ) child.material = mirrormat;
});
}
},
tick: function(t,dt){
if(!this.done){
if( this.counter > 0){
this.counter-=dt;
}else{
this.mesh = this.el.getObject3D('mesh');
if(this.mesh){
this.mesh.visible = false;
AFRAME.scenes[0].renderer.autoClear = true;
this.cam.position.copy(this.el.object3D.worldToLocal(this.el.object3D.getWorldPosition()));
this.cam.updateCubeMap( AFRAME.scenes[0].renderer, this.el.sceneEl.object3D );
var mirrormat = this.mirrorMaterial;
this.mesh.traverse( function( child ) {
if ( child instanceof THREE.Mesh ) child.material = mirrormat;
});
this.mesh.visible = true;
if(!this.data.repeat){
this.done = true;
this.counter = this.data.interval;
}
}
}
}
},
/**
* Called when component is attached and when component data changes.
* Generally modifies the entity based on the data.
*/
update: function (oldData) {},
/**
* Called when a component is removed (e.g., via removeAttribute).
* Generally undoes all modifications to the entity.
*/
remove: function () {},
/**
* Called on each scene tick.
*/
// tick: function (t) { },
/**
* Called when entity pauses.
* Use to stop or remove any dynamic or background behavior such as events.
*/
pause: function () { },
/**
* Called when entity resumes.
* Use to continue or add any dynamic or background behavior such as events.
*/
play: function () { }
});
/***/ })
/******/ ]);