Newer
Older
AegisforEcosystem / next / AR.js-3.4.0 / aframe / examples / location-based / click-places / index.js
@KAOKA Daisuke KAOKA Daisuke on 31 May 2022 213 bytes into AR.js
import 'arjs/aframe/build/aframe-ar-nft.js'

AFRAME.registerComponent('clicker', {
    init: function() {
        this.el.addEventListener('click', e => {
            alert('Box clicked!');
        });
    }
});