-
Notifications
You must be signed in to change notification settings - Fork 73
/
Copy pathimage.js
35 lines (32 loc) · 887 Bytes
/
image.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import React, { Component } from "react";
import { render } from "react-dom";
import { AFrameRenderer, Marker } from "../src";
/**
* In this example, we use an image as a source type for analysing the marker.
*/
class ReactArApp extends Component {
render() {
return (
<AFrameRenderer
arToolKit={{
sourceType: "image",
sourceUrl: "./images/hiro_marker.png"
}}
inherent={true}
>
<Marker parameters={{ preset: "hiro" }}>
<a-box color="blue" position="0 0.09 0" scale="0.4 0.8 0.8">
<a-animation
attribute="rotation"
to="360 0 0"
dur="2000"
easing="linear"
repeat="indefinite"
/>
</a-box>
</Marker>
</AFrameRenderer>
);
}
}
render(<ReactArApp />, document.getElementById("root"));