diff --git a/index.html b/index.html index ab017fd..9de533d 100644 --- a/index.html +++ b/index.html @@ -2176,29 +2176,19 @@ function changeColorLastId(){ if (id) document.querySelector("#"+id).setAttribute("color", "red") } -/* - -generalize selector to pick last Nth rather than very last - adapt getIdFromPick() with .slice() after filter then map on length-N instead of length-1 - -selector pickers : pickClass and pickId - display result in 3D HUD with rotating objects and selector value - ideally themselves also selectable/usable, e.g clone from HUD to bring back "out" - requires extra work as becoming a child will not work, own positionning - should fix that - could compare to world coordinates instead of "just" position attribute - add a clear selector function to avoid making the HUD unusable - -could also pick via volume, e.g wireframe box - start with https://threejs.org/docs/#api/en/math/Box3.containsPoint - can iterate with https://threejs.org/docs/#api/en/math/Box3.containsBox - consider also https://threejs.org/docs/#api/en/math/Box3.intersectsBox - -consider pick then apply, i.e changeColorLastId() but for next Id - should be cancealable - -*/ - +AFRAME.registerComponent('thumbstick-shifting',{ +/* illustrated in https://twitter.com/utopiah/status/1617460261111173121 */ + init: function () { + this.el.addEventListener('thumbstickmoved', this.logThumbstick); + }, + logThumbstick: function (evt) { + let className = getClassFromPick() + if (evt.detail.y > 0.95) { console.log("DOWN"); pushFrontClass(className)} + if (evt.detail.y < -0.95) { console.log("UP"); pushBackClass(className)} + if (evt.detail.x < -0.95) { console.log("LEFT"); pushLeftClass(className)} + if (evt.detail.x > 0.95) { console.log("RIGHT"); pushRightClass(className)} + } +});