Created
March 30, 2023 13:38
-
-
Save mi-skam/8cfe327013cd633171d06bcec59b5c05 to your computer and use it in GitHub Desktop.
AFRAME: js example for singleton use of a-scene and custom component
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<script src="https://aframe.io/releases/1.4.0/aframe.min.js"></script> | |
<title>AFRAME example</title> | |
</head> | |
<body> | |
<script> | |
let sceneEl = getScene(); | |
boxEl = document.createElement("a-box"); | |
boxEl.setAttribute("color", "blue"); | |
boxEl.setAttribute("position", "0 1.5 -2"); | |
boxEl.setAttribute("log", "hello.log.component"); | |
sceneEl.appendChild(boxEl); | |
function getScene() { | |
let sceneEl; | |
if (document.getElementsByTagName("a-scene").length == 0) { | |
// create a-scene if not existing | |
sceneEl = document.createElement("a-scene"); | |
document.body.appendChild(sceneEl); | |
} else { | |
// get a-scene element | |
sceneEl = document.getElementsByTagName("a-scene")[0]; | |
} | |
return sceneEl; | |
} | |
AFRAME.registerComponent("log", { | |
schema: { type: "string" }, | |
init: function () { | |
stringToLog = this.data; | |
console.log(stringToLog); | |
}, | |
}); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment