Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Riegel
VIS_exc3_AR_Riegel
Commits
9df414df
Commit
9df414df
authored
Jun 17, 2023
by
Riegel
Browse files
Update public/index.html
parent
95d35db3
Pipeline
#7739
passed with stage
in 5 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
public/index.html
View file @
9df414df
...
...
@@ -21,7 +21,6 @@ async function activateXR() {
document
.
body
.
appendChild
(
canvas
);
const
gl
=
canvas
.
getContext
(
"
webgl
"
,
{
xrCompatible
:
true
});
// To be continued in upcoming steps.
const
scene
=
new
THREE
.
Scene
();
// The cube will have a different color on each side.
...
...
@@ -35,9 +34,10 @@ const materials = [
];
// Create the cube and add it to the demo scene.
const
cube
=
new
THREE
.
Mesh
(
new
THREE
.
BoxBufferGeometry
(
0.
2
,
0.
2
,
0.
2
),
materials
);
cube
.
position
.
set
(
1
,
1
,
1
);
const
cube
=
new
THREE
.
Mesh
(
new
THREE
.
BoxBufferGeometry
(
0.
5
,
0.
5
,
0.
5
),
materials
);
cube
.
position
.
set
(
0
,
0
,
-
1
);
scene
.
add
(
cube
);
// Set up the WebGLRenderer, which handles rendering to the session's base layer.
const
renderer
=
new
THREE
.
WebGLRenderer
({
alpha
:
true
,
...
...
@@ -93,8 +93,6 @@ const onXRFrame = (time, frame) => {
session
.
requestAnimationFrame
(
onXRFrame
);
}
</script>
</body>
</html>
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment