primitives.Rd
All aframe primitives.
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. |
x <- a_primitive("box", list(color = "red")) y <- a_box(color = "red") identical(x, y)#> [1] TRUEembed_aframe( a_scene( a_dep(), a_box( position = "-1 0.5 -3", rotation = "0 45 0", color = "#4CC3D9" ) ) )#> <div> #> <a-scene style="width:100%;height:400px;" embedded> #> <a-box position="-1 0.5 -3" rotation="0 45 0" color="#4CC3D9"></a-box> #> </a-scene> #> </div>