wip feat/handmenu

This commit is contained in:
Leon van Kammen 2025-03-10 17:28:54 +01:00
parent c5f1f066dd
commit a8c14764b2
2 changed files with 13 additions and 7 deletions

View File

@ -44,7 +44,7 @@ AFRAME.registerComponent('controlattach', {
let placeholder = this.data.el.querySelector(selector)
if( !placeholder ){
placeholder = this.data.el.querySelector(`.${this.data.class}`)
console.log("fallback")
console.warn(`controlattach.js: '${selector}' not found, fallback to default`)
}
if( !placeholder ) return console.warn("controlattach.js: could not find placeholder to attach to")
this.attachPlaceHolder(type,e,placeholder, controllerName)
@ -52,17 +52,18 @@ AFRAME.registerComponent('controlattach', {
attachPlaceHolder: function(type, el, placeholder, controllerName){
this.el.object3DMap = {} // unsync THREE <-> AFRAME entity
placeholder.object3D.add( this.obj )
// these are handled by the placeholder entity
this.obj.position.set(0,0,0);
this.obj.rotation.set(0,0,0);
this.obj.scale.set(1,1,1);
if( controllerName != 'hand-tracking-controls' ){
// re-add for controller-models which don't re-add children ('meta-touch-controls' e.g.)
if( this.data.el.getObject3D("mesh") ){
this.data.el.getObject3D("mesh").add(placeholder.object3D)
}
}
// these are handled by the placeholder entity
this.obj.position.set(0,0,0);
this.obj.rotation.set(0,0,0);
this.obj.scale.set(1,1,1);
placeholder.object3D.add( this.obj )
},
detach: function(){

View File

@ -13,6 +13,12 @@ AFRAME.registerComponent('pressable', {
this.distance = -1
// we throttle by distance, to support scenes with loads of clickable objects (far away)
this.tick = this.throttleByDistance( () => this.detectPress() )
this.el.addEventListener("raycaster-intersected", (e) => this.el.emit('click', e.detail ) )
this.el.addEventListener('click', (e) => {
document.querySelector('[isoterminal]').components.isoterminal.term.term.write("\r\nclick")
})
},
throttleByDistance: function(f){
return function(){
@ -58,7 +64,6 @@ AFRAME.registerComponent('pressable', {
if( !this.pressed ){
this.el.emit('pressedstarted', intersects);
this.el.emit('click', intersects);
document.querySelector('[isoterminal]').components.isoterminal.term.term.write("\r\nclick"+(++this.i))
this.pressed = setTimeout( () => {
this.el.emit('pressedended', intersects);
this.pressed = null