Description Usage Arguments See Also Examples
All aframe primitives.
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 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 | a_primitive(primitive, opts = list())
a_entity(...)
a_box(...)
a_camera(...)
a_circle(...)
a_collada_model(...)
a_cone(...)
a_cursor(...)
a_curvedimage(...)
a_event(...)
a_cylinder(...)
a_gltf_model(...)
a_icosahedron(...)
a_image(...)
a_light(...)
a_link(...)
a_obj_model(...)
a_octahedron(...)
a_plane(...)
a_ring(...)
a_ring(...)
a_sky(...)
a_sound(...)
a_sphere(...)
a_tetrahedron(...)
a_text(...)
a_torus_knot(...)
a_torus(...)
a_triangle(...)
a_video(...)
a_videosphere(...)
|
primitive |
The primitive, excluding |
opts |
A |
... |
Any aframe element or named options. |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | x <- a_primitive("box", list(color = "red"))
y <- a_box(color = "red")
identical(x, y)
embed_aframe(
a_scene(
a_dep(),
a_box(
position = "-1 0.5 -3",
rotation = "0 45 0",
color = "#4CC3D9"
)
)
)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.